forked from openwebwork/webwork-open-problem-library
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathTextbooks
2326 lines (2144 loc) · 78.3 KB
/
Textbooks
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
# Comments start with #
# The first line of a new text is TitleText
# Edition and Author must be there too
# Blank lines are only for decoration
TitleText('Financial Mathematics')
EditionText('1')
AuthorText('Holt')
1 >>> Introduction to Interest
1.0 >>> Algebra Prerequisites
1.1 >>> Simple Interest
1.2 >>> Compound Interest
1.3 >>> Effective and Nominal Rates of Interest
1.4 >>> Present and Future Value
2 >>> Equations of Value
2.1 >>> Time Value of Money
2.2 >>> Unknown Time and Logarithms
2.3 >>> Dollar Weighted Rate of Return
2.4 >>> Time Weighted Rate of Return
3 >>> Annuities
3.1 >>> Geometric Sums
3.2 >>> Annuities
3.3 >>> Loans
3.4 >>> Sinking Funds
3.5 >>> Varying Payments
3.6 >>> Perpetuities
4 >>> Bonds
4.1 >>> Yield Rates
4.2 >>> Bonds
4.3 >>> Book Value
4.4 >>> Other Bonds
5 >>> Probability and Contingent Payments
5.1 >>> Introduction to Probability
5.2 >>> Expected Values
5.3 >>> Contingent Payments
6 >>> Options
6.1 >>> Introduction to Options
6.2 >>> Hedging Strategies
6.3 >>> Binomial Trees
TitleText('Mathematical Statistics')
EditionText('6')
AuthorText('Wackerly, Mendenhall, Scheaffer')
1 >>> What Is Statistics?
1.1 >>> Introduction
1.2 >>> Characterizing a Set of Measurements: Graphical Methods
1.3 >>> Characterizing a Set of Measurements: Numerical Methods
1.4 >>> How Inferences Are Made
1.5 >>> Theory and Reality
1.6 >>> Summary
2 >>> Probability
2.1 >>> Introduction
2.2 >>> Probability and Inference
2.3 >>> A Review of Set Notation
2.4 >>> A Probabilistic Model for an Experiment: The Discrete Case
2.5 >>> Calculating the Probability of an Event: The Sample-Point Method
2.6 >>> Tools for Counting Sample Points
2.7 >>> Conditional Probability and the Independence of Events
2.8 >>> Two Laws of Probability
2.9 >>> Calculating the Probability of an Event: The Event-Composition Methods
2.10 >>> The Law of Total Probability and Bayes's Rule
2.11 >>> Numerical Events and Random Variables
2.12 >>> Random Sampling
2.13 >>> Summary
3 >>> Discrete Random Variables and Their Probability Distributions
3.1 >>> Basic Definition
3.2 >>> The Probability Distribution for Discrete Random Variable
3.3 >>> The Expected Value of Random Variable or a Function of Random Variable
3.4 >>> The Binomial Probability Distribution
3.5 >>> The Geometric Probability Distribution
3.6 >>> The Negative Binomial Probability Distribution
3.7 >>> The Hypergeometric Probability Distribution
3.8 >>> Moments and Moment-Generating Functions
3.9 >>> Probability-Generating Functions
3.10 >>> Tchebysheff's Theorem
3.11 >>> Summary
4 >>> Continuous Random Variables and Their Probability Distributions
4.1 >>> Introduction
4.2 >>> The Probability Distribution for Continuous Random Variable
4.3 >>> The Expected Value for Continuous Random Variable
4.4 >>> The Uniform Probability Distribution
4.5 >>> The Normal Probability Distribution
4.6 >>> The Gamma Probability Distribution
4.7 >>> The Beta Probability Distribution
4.8 >>> Some General Comments
4.9 >>> Other Expected Values
4.10 >>> Tchebysheff's Theorem
4.11 >>> Expectations of Discontinuous Functions and Mixed Probability Distributions
4.12 >>> Summary
5 >>> Multivariate Probability Distributions
5.1 >>> Introduction
5.2 >>> Bivariate and Multivariate Probability Distributions
5.3 >>> Independent Random Variables
5.4 >>> The Expected Value of a Function of Random Variables
5.5 >>> Special Theorems
5.6 >>> The Covariance of Two Random Variables
5.7 >>> The Expected Value and Variance of Linear Functions of Random Variables
5.8 >>> The Multinomial Probability Distribution
5.9 >>> The Bivariate Normal Distribution
5.10 >>> Conditional Expectations
5.11 >>> Summary
6 >>> Functions of Random Variables
6.1 >>> Introductions
6.2 >>> Finding the Probability Distribution of a Function of Random Variables
6.3 >>> The Method of Distribution Functions
6.4 >>> The Methods of Transformations
6.5 >>> Multivariable Transformations Using Jacobians
6.6 >>> Order Statistics
6.7 >>> Summary
7 >>> Sampling Distributions and the Central Limit Theorem
7.1 >>> Introduction
7.2 >>> Sampling Distributions Related to the Normal Distribution
7.3 >>> The Central Limit Theorem
7.4 >>> A Proof of the Central Limit Theorem
7.5 >>> The Normal Approximation to the Binomial Distributions
7.6 >>> Summary
8 >>> Estimation
8.1 >>> Introduction
8.2 >>> The Bias and Mean Square Error of Point Estimators
8.3 >>> Some Common Unbiased Point Estimators
8.4 >>> Evaluating the Goodness of Point Estimator
8.5 >>> Confidence Intervals
8.6 >>> Large-Sample Confidence Intervals Selecting the Sample Size
8.7 >>> Small-Sample Confidence Intervals for u and u1-u2
8.8 >>> Confidence Intervals for o2
8.9 >>> Summary
9 >>> Properties of Point Estimators and Methods of Estimation
9.1 >>> Introduction
9.2 >>> Relative Efficiency
9.3 >>> Consistency
9.4 >>> Sufficiency
9.5 >>> The Rao-Blackwell Theorem and Minimum-Variance Unbiased Estimation
9.6 >>> The Method of Moments
9.7 >>> The Method of Maximum Likelihood
9.8 >>> Some Large-Sample Properties of MLEs
9.9 >>> Summary
10 >>> Hypothesis Testing
10.1 >>> Introduction
10.2 >>> Elements of a Statistical Test
10.3 >>> Common Large-Sample Tests
10.4 >>> Calculating Type II Error Probabilities and Finding the Sample Size for the Z Test
10.5 >>> Relationships Between Hypothesis Testing Procedures and Confidence Intervals
10.6 >>> Another Way to Report the Results of a Statistical Test: Attained Significance Levels or p-Values
10.7 >>> Some Comments on the Theory of Hypothesis Testing
10.8 >>> Small-Sample Hypothesis Testing for u and u1-u2
10.9 >>> Testing Hypotheses Concerning Variances
10.10 >>> Power of Test and the Neyman-Pearson Lemma
10.11 >>> Likelihood Ration Test
10.12 >>> Summary
11 >>> Linear Models and Estimation by Least Squares
11.1 >>> Introduction
11.2 >>> Linear Statistical Models
11.3 >>> The Method of Least Squares
11.4 >>> Properties of the Least Squares Estimators for the Simple Linear Regression Model
11.5 >>> Inference Concerning the Parameters BI
11.6 >>> Inferences Concerning Linear Functions of the Model Parameters: Simple Linear Regression
11.7 >>> Predicting a Particular Value of Y Using Simple Linear Regression
11.8 >>> Correlation
11.9 >>> Some Practical Examples
11.10 >>> Fitting the Linear Model by Using Matrices
11.11 >>> Properties of the Least Squares Estimators for the Multiple Linear Regression Model
11.12 >>> Inferences Concerning Linear Functions of the Model Parameters: Multiple Linear Regression
11.13 >>> Prediction a Particular Value of Y Using Multiple Regression
11.14 >>> A Test for H0: Bg+1 + Bg+2 = ? = Bk = 0
11.15 >>> Summary and Concluding Remarks
12 >>> Considerations in Designing Experiments
12.1 >>> The Elements Affecting the Information in a Sample
12.2 >>> Designing Experiment to Increase Accuracy
12.3 >>> The Matched Pairs Experiment
12.4 >>> Some Elementary Experimental Designs
12.5 >>> Summary
13 >>> The Analysis of Variance
13.1 >>> Introduction
13.2 >>> The Analysis of Variance Procedure
13.3 >>> Comparison of More than Two Means: Analysis of Variance for a One-way Layout
13.4 >>> An Analysis of Variance Table for a One-Way Layout
13.5 >>> A Statistical Model of the One-Way Layout
13.6 >>> Proof of Additivity of the Sums of Squares and E (MST) for a One-Way Layout
13.7 >>> Estimation in the One-Way Layout
13.8 >>> A Statistical Model for the Randomized Block Design
13.9 >>> The Analysis of Variance for a Randomized Block Design
13.10 >>> Estimation in the Randomized Block Design
13.11 >>> Selecting the Sample Size
13.12 >>> Simultaneous Confidence Intervals for More than One Parameter
13.13 >>> Analysis of Variance Using Linear Models
13.14 >>> Summary
14 >>> Analysis of Categorical Data
14.1 >>> A Description of the Experiment
14.2 >>> The Chi-Square Test
14.3 >>> A Test of Hypothesis Concerning Specified Cell Probabilities: A Goodness-of-Fit Test
14.4 >>> Contingency Tables
14.5 >>> r x c Tables with Fixed Row or Column Totals
14.6 >>> Other Applications
14.7 >>> Summary and Concluding Remarks
15 >>> Nonparametric Statistics
15.1 >>> Introduction
15.2 >>> A General Two-Sampling Shift Model
15.3 >>> A Sign Test for a Matched Pairs Experiment
15.4 >>> The Wilcoxon Signed-Rank Test for a Matched Pairs Experiment
15.5 >>> The Use of Ranks for Comparing Two Population Distributions: Independent Random Samples
15.6 >>> The Mann-Whitney U Test: Independent Random Samples
15.7 >>> The Kruskal-Wallis Test for One-Way Layout
15.8 >>> The Friedman Test for Randomized Block Designs
15.9 >>> The Runs Test: A Test for Randomness
15.10 >>> Rank Correlation Coefficient
15.11 >>> Some General Comments on Nonparametric Statistical Test
16 >>> Appendix 1: Matrices and Other Useful Mathematical Results
16.1 >>> Appendix 1.1: Matrices and Matrix Algebra
16.2 >>> Appendix 1.2: Addition of Matrices
16.3 >>> Appendix 1.3: Multiplication of a Matrix by a Real Number
16.4 >>> Appendix 1.4: Matrix Multiplication
16.5 >>> Appendix 1.5: Identity Elements
16.6 >>> Appendix 1.6: The Inverse of a Matrix
16.7 >>> Appendix 1.7: The Transpose of a Matrix
16.8 >>> Appendix 1.8: A Matrix Expression for a System of Simultaneous Linear Equations
16.9 >>> Appendix 1.9: Inverting a Matrix
16.10 >>> Appendix 1.10: Solving a System of Simultaneous Linear Equations
16.11 >>> Appendix 1.11: Other Useful Mathematical Results
17 >>> Appendix 2: Common Probability Distributions, Means, Variances, and Moment Generating Functions
17.1 >>> Appendix 2.1: Discrete Distributions
17.2 >>> Appendix 2.2: Continuous Distributions.
18 >>> Appendix 3: Tables
18.1 >>> Appendix 3.1: Binomial Probabilities
18.2 >>> Appendix 3.2: Table of e-x
18.3 >>> Appendix 3.3: Poisson Probabilities
18.4 >>> Appendix 3.4: Normal Curve Areas
18.5 >>> Appendix 3.5: Percentage Points of the t Distributions
18.6 >>> Appendix 3.6: Percentage Points of the F Distributions
18.7 >>> Appendix 3.7: Distribution of Function U
18.8 >>> Appendix 3.8: Critical Values of T in the Wilcoxon Matched-Pairs, Signed-Ranks Test
18.9 >>> Appendix 3.9: Distribution of the Total Number of Runs R in Sample Size (n1,n2); P(R < a)
18.10 >>> Appendix 3.10: Critical Values of Pearman's Rank Correlation Coefficient
18.11 >>> Appendix 3.11: Random Numbers
TitleText('Calculus')
EditionText('5')
AuthorText('Stewart')
1 >>> Functions and Models
1.1 >>> Four Ways to Represent a Function
1.2 >>> Mathematical Models: A Catalog of Essential Functions
1.3 >>> New Functions from Old Functions
1.4 >>> Graphing Calculators and Computers
2 >>> Limits and Rates of Change
2.1 >>> The Tangent and Velocity Problems
2.2 >>> The Limit of a Function
2.3 >>> Calculating Limits Using the Limit Laws
2.4 >>> The Precise Definition of a Limit
2.5 >>> Continuity
2.6 >>> Tangents, Velocities, and Other Rates of Change
3 >>> Derivatives
3.1 >>> Derivatives
3.2 >>> The Derivative as a Function
3.3 >>> Differentiation Formulas
3.4 >>> Rates of Change in the Natural and Social Sciences
3.5 >>> Derivatives of Trigonometric Functions
3.6 >>> The Chain Rule
3.7 >>> Implicit Differentiation
3.8 >>> Higher Derivatives
3.9 >>> Related Rates
3.10 >>> Linear Approximations and Differentials
4 >>> Applications of Differentiation
4.1 >>> Maximum and Minimum Values
4.2 >>> The Mean Value Theorem
4.3 >>> How Derivatives Affect the Shape of a Graph
4.4 >>> Limits at Infinity; Horizontal Asymptotes
4.5 >>> Summary of Curve Sketching
4.6 >>> Graphing with Calculus and Calculators
4.7 >>> Optimization Problems
4.8 >>> Applications to Business and Economics
4.9 >>> Newton's Method
4.10 >>> Antiderivatives
5 >>> Integrals
5.1 >>> Areas and Distances
5.2 >>> The Definite Integral
5.3 >>> The Fundamental Theorem of Calculus
5.4 >>> Indefinite Integrals and the Net Change Theorem
5.5 >>> The Substitution Rule
6 >>> Applications of Integration
6.1 >>> Areas between Curves
6.2 >>> Volumes
6.3 >>> Volumes by Cylindrical Shells
6.4 >>> Work
6.5 >>> Average Value of a Function
7 >>> Inverse Functions
7.1 >>> Inverse Functions
7.2 >>> Exponential Functions and Their Derivatives
7.3 >>> Logarithmic Functions
7.4 >>> Derivatives of Logarithmic Functions
7.5 >>> Inverse Trigonometric Functions
7.6 >>> Hyperbolic Functions
7.7 >>> Indeterminate Forms and L'Hospital's Rule
8 >>> Techniques of Integration
8.1 >>> Integration by Parts
8.2 >>> Trigonometric Integrals
8.3 >>> Trigonometric Substitution
8.4 >>> Integration of Rational Functions by Partial Fractions
8.5 >>> Strategy for Integration
8.6 >>> Integration Using Tables and Computer Algebra Systems
8.7 >>> Approximate Integration
8.8 >>> Improper Integrals
9 >>> Further Applications of Integration
9.1 >>> Arc Length
9.2 >>> Area of a Surface of Revolution
9.3 >>> Applications to Physics and Engineering
9.4 >>> Applications to Economics and Biology
9.5 >>> Probability
10 >>> Differential Equations
10.1 >>> Modeling with Differential Equations
10.2 >>> Direction Fields and Euler's Method
10.3 >>> Separable Equations
10.4 >>> Exponential Growth and Decay
10.5 >>> The Logistic Equation
10.6 >>> Linear Equations
10.7 >>> Predator-Prey Systems
11 >>> Parametric Equations and Polar Coordinates
11.1 >>> Curves Defined by Parametric Equations
11.2 >>> Calculus with Parametric Curves
11.3 >>> Polar Coordinates
11.4 >>> Areas and Lengths in Polar Coordinates
11.5 >>> Conic Sections
11.6 >>> Conic Sections in Polar Coordinates
12 >>> Infinite Sequences and Series
12.1 >>> Sequences
12.2 >>> Series
12.3 >>> The Integral Test and Estimates of Sums
12.4 >>> The Comparison Tests
12.5 >>> Alternating Series
12.6 >>> Absolute Convergence and the Ratio and Root Tests
12.7 >>> Strategy for Testing Series
12.8 >>> Power Series
12.9 >>> Representations of Functions as Power Series
12.10 >>> Taylor and Maclaurin Series
12.11 >>> The Binomial Series
12.12 >>> Applications of Taylor Polynomials
13 >>> Vectors and the Geometry of Space
13.1 >>> Three-Dimensional Coordinate Systems
13.2 >>> Vectors
13.3 >>> The Dot Product
13.4 >>> The Cross Product
13.5 >>> Equations of Lines and Planes
13.6 >>> Cylinders and Quadric Surfaces
13.7 >>> Cylindrical and Spherical Coordinates
14 >>> Vector Functions
14.1 >>> Vector Functions and Space Curves
14.2 >>> Derivatives and Integrals of Vector Functions
14.3 >>> Arc Length and Curvature
14.4 >>> Motion in Space: Velocity and Acceleration
15 >>> Partial Derivatives
15.1 >>> Functions of Several Variables
15.2 >>> Limits and Continuity
15.3 >>> Partial Derivatives
15.4 >>> Tangent Planes and Linear Approximations
15.5 >>> The Chain Rule
15.6 >>> Directional Derivatives and the Gradient Vector
15.7 >>> Maximum and Minimum Values
15.8 >>> Lagrange Multipliers
16 >>> Multiple Integrals
16.1 >>> Double Integrals over Rectangles
16.2 >>> Iterated Integrals
16.3 >>> Double Integrals over General Regions
16.4 >>> Double Integrals in Polar Coordinates
16.5 >>> Applications of Double Integrals
16.6 >>> Surface Area
16.7 >>> Triple Integrals
16.8 >>> Triple Integrals in Cylindrical and Spherical Coordinates
16.9 >>> Change of Variables in Multiple Integrals
17 >>> Vector Calculus
17.1 >>> Vector Fields
17.2 >>> Line Integrals
17.3 >>> The Fundamental Theorem for Line Integrals
17.4 >>> Green's Theorem
17.5 >>> Curl and Divergence
17.6 >>> Parametric Surfaces and Their Areas
17.7 >>> Surface Integrals
17.8 >>> Stokes' Theorem
17.9 >>> The Divergence Theorem
17.10 >>> Summary
18 >>> Second-Order Differential Equations
18.1 >>> Second-Order Linear Equations
18.2 >>> Nonhomogeneous Linear Equations
18.3 >>> Applications of Second- Order Differential Equations
18.4 >>> Series Solutions
25 >>> Appendix H: Complex Numbers
TitleText('College Algebra')
EditionText('4')
AuthorText('Stewart, Redlin, Watson')
0 >>> Prerequisites
0.1 >>> Modeling the Real World
0.2 >>> Real Numbers
0.3 >>> Integer Exponents
0.4 >>> Rational Exponents and Radicals
0.5 >>> Algebraic Expressions
0.6 >>> Factoring
0.7 >>> Rational Expressions
1 >>> Equations and Inequalities
1.1 >>> Basic Equations
1.2 >>> Modeling with Equations
1.3 >>> Quadratic Equations
1.4 >>> Complex Numbers
1.5 >>> Other Types of Equations
1.6 >>> Inequalities
1.7 >>> Absolute Value Equations and Inequalities
2 >>> Coordinates and Graphs
2.1 >>> The Coordinate Plane
2.2 >>> Graphs of Equations in Two Variables
2.3 >>> Graphing Calculators; Solving Equations and Inequalitie Graphically
2.4 >>> Lines
2.5 >>> Modeling: Variation
3 >>> Functions
3.1 >>> What Is a Function?
3.2 >>> Graphs of Functions
3.3 >>> Increasing and Decreasing Functions; Average Rate of Change
3.4 >>> Transformations of Functions
3.5 >>> Quadratic Functions; Maxima and Minima
3.6 >>> Combining Functions
3.7 >>> One-to-One Functions and Their Inverses
4 >>> Polynomial and Rational Functions
4.1 >>> Polynomial Functions and Their Graphs
4.2 >>> Dividing Polynomials
4.3 >>> Real Zeros of Polynomials
4.4 >>> Complex Zeros and the Fundamental Theorem of Algebra
4.5 >>> Rational Functions
5 >>> Exponential and Logarithmic Functions
5.1 >>> Exponential Functions
5.2 >>> Logarithmic Functions
5.3 >>> Laws of Logarithms
5.4 >>> Exponential and Logarithmic Equations
5.5 >>> Modeling with Exponential and Logarithmic Functions
6 >>> Systems of Equations and Inequalities
6.1 >>> Systems of Equations
6.2 >>> Systems of Linear Equations in Two Variables
6.3 >>> Systems of Linear Equations in Several Variables
6.4 >>> Systems of Inequalities
6.5 >>> Partial Fractions
7 >>> Matrices and Determinants
7.1 >>> Matrices and Systems of Linear Equations
7.2 >>> The Algebra of Matrices
7.3 >>> Inverses of Matrices and Matrix Equations
7.4 >>> Determinants and Cramer's Rule
8 >>> Conic Sections
8.1 >>> Parabolas
8.2 >>> Ellipses
8.3 >>> Hyperbolas
8.4 >>> Shifted Conics
9 >>> Sequences and Series
9.1 >>> Sequences and Summation Notation
9.2 >>> Arithmetic Sequences
9.3 >>> Geometric Sequences
9.4 >>> Mathematics of Finance
9.5 >>> Mathematical Induction
9.6 >>> The Binomial Theorem
10 >>> Counting and Probability
10.1 >>> Counting Principles
10.2 >>> Permutations and Combinations
10.3 >>> Probability
10.4 >>> Binomial Probability
10.5 >>> Expected Value
TitleText('Statistics for Management and Economics')
EditionText('7')
AuthorText('Keller')
1 >>> What is Statistics?
1.1 >>> Key Statistical Concepts
1.2 >>> Statistical Applications in Business
1.3 >>> Statistics and the Computer
1.4 >>> World Wide Web and Learning Center
1.A >>> Instructions for the CD-ROM
1.B >>> Introduction to Microsoft Excel
1.C >>> Introduction to Minitab
2 >>> Graphical and Tabular Descriptive Techniques
2.1 >>> Types of Data and Information
2.2 >>> Graphical and Tabular Techniques for Nominal Data
2.3 >>> Graphical Techniques for Interval Data
2.4 >>> Describing the relationship Between Two Variables
2.5 >>> Describing Time-Series Data
3 >>> Art and Science of Graphical Presentations
3.1 >>> Graphical Excellence
3.2 >>> Graphical Deception
3.3 >>> Presenting Statistics: Written Reports and Oral Presentations
4 >>> Numerical Descriptive Techniques
4.1 >>> Measures of Central Location
4.2 >>> Measures of Variability
4.3 >>> Measures of Relative Standing and Box Plots
4.4 >>> Measures of Linear Relationship
4.5 >>> Applications in Professional Sports: Baseball
4.6 >>> Comparing Graphical and Numerical Techniques
4.7 >>> General Guidelines for Exploring Data
5 >>> Data Collection and Sampling
5.1 >>> Methods of Collecting Data
5.2 >>> Sampling
5.3 >>> Sampling Plans
5.4 >>> Sampling and Nonsampling Errors
6 >>> Probability
6.1 >>> Assigning Probability to Events
6.2 >>> Joint, Marginal, and Conditional Probability
6.3 >>> Probability Rules and Trees
6.4 >>> Bayes' Law
6.5 >>> Identifying the Correct Method
7 >>> Random Variables and Discrete Probability Distributions
7.1 >>> Random Variables and Probability Distributions
7.2 >>> Bivariate Distributions
7.3 >>> Applications in Finance: Portfolio Diversification and Asset Allocation
7.4 >>> Binomial Distribution
7.5 >>> Poisson Distribution
8 >>> Continuous Probability Distributions
8.1 >>> Probability Density Functions
8.2 >>> Normal Distribution
8.3 >>> Exponential Distribution
8.4 >>> Other Continuous Distributions
9 >>> Sampling Distributions
9.1 >>> Sampling Distribution of the Mean
9.2 >>> Sampling Distribution of a Proportion
9.3 >>> Sampling Distribution of the Difference Between Two Means
9.4 >>> From Here to Inference
10 >>> Introduction to Estimation
10.1 >>> Concepts of Estimation
10.2 >>> Estimating the Population Mean When the Population Standard Deviation is Known
10.3 >>> Selecting the Sample Size
11 >>> Introduction to Hypothesis Testing
11.1 >>> Concepts of Hypothesis Testing
11.2 >>> Testing the Population Mean When the Population Standard Deviation is Known
11.3 >>> Calculating the Probability of a Type II Error
11.4 >>> The Road Ahead
12 >>> Inference About a Population
12.1 >>> Inference About a Population Mean When the Standard Deviation is Unknown
12.2 >>> Inference about a Population Variance
12.3 >>> inference about a Population Proportion
12.4 >>> Applications in Marketing: Market Segmentation
12.5 >>> Applications in Marketing: Auditing
13 >>> Inference About Comparing Two Populations
13.1 >>> Inference about the Difference Between Two Means: Independent Samples
13.2 >>> Observational and Experimental Data
13.3 >>> Inference about the Difference Between Two Means: Matched Pairs Experiment
13.4 >>> Inference about the Ratio of Two Variances
13.5 >>> Inference about the Difference Between Two Population Proportions
13.A >>> Excel Instructions for Stacked and Unstacked Data
13.B >>> Minitab Instructions for Stacked and Unstacked Data
14 >>> Statistical Inference: Review of Chapters 12 and 13
14.1 >>> Guide to Identifying the Correct Technique: Chapters 12 and 13
15 >>> Analysis of Variance
15.1 >>> One-Way Analysis of Variance
15.2 >>> Analysis of Variance Experimental Designs
15.3 >>> Randomized Blocks (Two-Way) Analysis of Variance
15.4 >>> Two-Factor Analysis of Variance
15.5 >>> Appplications in Operations Management: Finding and Reducing Variation
15.6 >>> Multiple Comparisons
16 >>> Chi-Squared Tests
16.1 >>> Chi-Squared Goodness-of-Fit Test
16.2 >>> Chi-Squared Test of a Contingency Table
16.3 >>> Summary of Tests on Nominal Data
16.4 >>> Chi-Squared Tests of Normality
17 >>> Simple Linear Regression and Correlation
17.1 >>> Model
17.2 >>> Estimating the Coefficients
17.3 >>> Error Variable: Required Conditions
17.4 >>> Assessing the Model
17.5 >>> Applications in Finance: Market Model
17.6 >>> Using the Regression Equation
17.7 >>> Regression Diagnostics-I
18 >>> Multiple Regression
18.1 >>> Model and Required Conditions
18.2 >>> Estimating the Coefficients and Assessing the Model
18.3 >>> Regression Diagnostics-II
18.4 >>> Regression Diagnostics-III (Time Series)
19 >>> Appendix A: Excel Troubleshooting and Detailed Instructions
20 >>> Appendix B: Minitab Detailed Instructions
21 >>> Appendix C: Approximating Means and Variances from Grouped Data
22 >>> Appendix D: Descriptive Techniques Review Exercises
23 >>> Appendix E: Couting Formulas
24 >>> Appendix F: Hypergeometric Distribution
25 >>> Appendix G: Continuous Probability Distributions: Calculus Approach
26 >>> Appendix H: Using the Laws of Expected Value and Variance to Derive the Parameters of Sampling Distributions
27 >>> Appendix I: Excel Spreadsheets for Techniques in Chapters 10-13
28 >>> Appendix K: Converting Excel's Probabilities to p-Values
29 >>> Appendix J: Excel and Minitab Instructions for Missing Data and for Recoding Data
30 >>> Appendix L: Probability of a Type II Error When Testing a Proportion
31 >>> Appendix M: Approximating p-Values from the Student t Table
32 >>> Appendix N: Probability of a Type II Error When Testing the Difference Between Two Means
33 >>> Appendix O: Probability of a Type II Erorr When Testing the Difference Between Two Proportions
34 >>> Appendix P: Bartlett's Test
35 >>> Appendix Q: Minitab Instructions for the Chi-Squared Goodness-of-Fit Test and the Test for Normality
36 >>> Appendix R: The Rule of Five
37 >>> Appendix S: Deriving the Normal Equations
38 >>> Appendix T: Szroeter's Test for Heteroscedasticity
39 >>> Appendix U: Transformations
TitleText('Elementary Linear Algebra')
EditionText('5')
AuthorText('Larson, Edwards, Falvo')
1 >>> Systems of Linear Equations
1.1 >>> Introduction to Systems of Linear Equations
1.2 >>> Gaussian Elimination and Gauss-Jordan Elimination
1.3 >>> Applications of Systems of Linear Equations
2 >>> Matrices
2.1 >>> Operations with Matrices
2.2 >>> Properties of Matrix Operations
2.3 >>> The Inverse of a Matrix
2.4 >>> Elementary Matrices
2.5 >>> Applications of Matrix Operations
3 >>> Determinants
3.1 >>> The Determinant of a Matrix
3.2 >>> Evaluation of a Determinant Using Elementary Operations
3.3 >>> Properties of Determinants
3.4 >>> Introduction to Eigenvalues
3.5 >>> Applications of Determinants
4 >>> Vector Spaces
4.1 >>> Vectors in Rn
4.2 >>> Vector Spaces
4.3 >>> Subspaces of Vector Spaces
4.4 >>> Spanning Sets and Linear Independence
4.5 >>> Basis and Dimension
4.6 >>> Rank of a Matrix and Systems of Linear Equations
4.7 >>> Coordinates and Change of Basis
4.8 >>> Applications of Vector Spaces
5 >>> Inner Product Spaces
5.1 >>> Length and Dot Product in Rn
5.2 >>> Inner Product Spaces
5.3 >>> Orthonormal Bases: Gram-Schmidt Process
5.4 >>> Mathematical Models and Least Squares Analysis
5.5 >>> Applications of Inner Product Spaces
6 >>> Linear Transformations
6.1 >>> Introduction to Linear Transformations
6.2 >>> The Kernel and Range of a Linear Transformation
6.3 >>> Matrices for Linear Transformations
6.4 >>> Transition Matrices and Similarity
6.5 >>> Applications of Linear Transformations
7 >>> Eigenvalues and Eigenvectors
7.1 >>> Eigenvalues and Eigenvectors
7.2 >>> Diagonalization
7.3 >>> Symmetric Matrices and Orthogonal Diagonalization
7.4 >>> Applications of Eigenvalues and Eigenvectors
8 >>> Complex Vector Spaces
8.1 >>> Complex Numbers
8.2 >>> Conjugates and Division of Complex Numbers
8.3 >>> Polar Form and DeMoivre's Theorem
8.4 >>> Complex Vector Spaces and Inner Products
8.5 >>> Unitary and Hermitian Matrices
9 >>> Linear Programming
9.1 >>> Systems of Linear Inequalities
9.2 >>> Linear Programming Involving Two Variables
9.3 >>> The Simplex Method: Maximization
9.4 >>> The Simplex Method: Minimization
9.5 >>> The Simplex Method: Mixed Constraints
10 >>> Numerical Methods
10.1 >>> Gaussian Elimination with Partial Pivoting
10.2 >>> Interative Methods for Solving Linear Systems
10.3 >>> Power Method for Approximating Eigenvalues
10.4 >>> Applications of Numerical Methods
11 >>> Appendix A: Mathematical Induction and Other Forms of Proofs
12 >>> Appendix B: Computer Algebra Systems and Graphing Calculators
TitleText('Basic Multivariable Calculus')
EditionText('3')
AuthorText('Marsden, Tromba, Weinstein')
1 >>> Algebra and Geometry of Euclidean Space
1.1 >>> Vectors in the Plane and Space
1.2 >>> The Inner Product and Distance
1.3 >>> 2 x 2 and 3 x 3 Matrices and Determinants
1.4 >>> The Cross Product and Planes
1.5 >>> n-Dimensional Euclidean Space
1.6 >>> Curves in the Plane and in Space
2 >>> Differentiation
2.1 >>> Graphs and Level Surfaces
2.2 >>> Partial Derivatives and Continuity
2.3 >>> Differentiability, the Derivative Matrix, and Tangent Planes
2.4 >>> The Chain Rule
2.5 >>> Gradients and Directional Derivatives
2.6 >>> Implicit Differentiation
3 >>> Higher Derivatives and Extrema
3.1 >>> Higher Order Partial Derivatives
3.2 >>> Taylor's Theorem
3.3 >>> Maxima and Minima
3.4 >>> Second Derivative Test
3.5 >>> Constrained Extrema and Lagrange Multipliers
4 >>> Vector-Valued Functions
4.1 >>> Acceleration
4.2 >>> Arc Length
4.3 >>> Vector Fields
4.4 >>> Divergence and Curl
5 >>> Multiple Integrals
5.1 >>> Volume and Cavalieri's Principle
5.2 >>> The Double Integral Over a Rectangle
5.3 >>> The Double Integral Over Regions
5.4 >>> Triple Integrals
5.5 >>> Change of Variables, Cylindrical and Spherical Coordinates
5.6 >>> Applications of Multiple Integrals
6 >>> Integrals Over Curves and Surfaces
6.1 >>> Line Integrals
6.2 >>> Parametrized Surfaces
6.3 >>> Area of a Surface
6.4 >>> Surface Integrals
7 >>> The Integral Theorems of Vector Analysis
7.1 >>> Green's Theorem
7.2 >>> Stokes' Theorem
7.3 >>> Gauss' Theorem
7.4 >>> Path Independence and the Fundamental Theorems of Calculus
TitleText('Precalculus')
EditionText('5')
AuthorText('Stewart, Redlin, Watson')
1 >>> Fundamentals
1.1 >>> Real Numbers
1.2 >>> Exponents and Radicals
1.3 >>> Algebraic Expressions
1.4 >>> Rational Expression
1.5 >>> Equations
1.6 >>> Modeling with Equations
1.7 >>> Inequalities
1.8 >>> Coordinate Geometry
1.9 >>> Graphing Calculators; Solving Equations and Inequalities Graphically
1.10 >>> Lines
1.11 >>> Modeling Variation
2 >>> Functions
2.1 >>> What is a Function?
2.2 >>> Graphs of Functions
2.3 >>> Increasing and Decreasing Functions; Average Rate of Change
2.4 >>> Transformations of Functions
2.5 >>> Quadratic Functions; Maxima and Minima
2.6 >>> Modeling with Functions
2.7 >>> Combining Functions
2.8 >>> One-to-One Functions and Their Inverses
3 >>> Polynomial and Rational Functions
3.1 >>> Polynomial Functions and Their Graphs
3.2 >>> Dividing Polynomials
3.3 >>> Real Zeros of Polynomials
3.4 >>> Complex Numbers
3.5 >>> Complex Zeros and the Fundamental Theorem of Algebra
3.6 >>> Rational Functions
4 >>> Exponential and Logarithmic Functions
4.1 >>> Exponential Functions
4.2 >>> Logarithmic Functions
4.3 >>> Laws of Logarithms
4.4 >>> Exponential and Logarithmic Equations
4.5 >>> Modeling with Exponential and Logarithmic Functions
5 >>> Trigonometric Functions of Real Numbers
5.1 >>> The Unit Circle
5.2 >>> Trigonometric Functions of Real Numbers
5.3 >>> Trigonometric Graphs
5.4 >>> More Trigonometric Graphs
5.5 >>> Modeling Harmonic Motion
6 >>> Trigonometric Functions of Angles
6.1 >>> Angle Measures
6.2 >>> Trigonometry of Right Triangles
6.3 >>> Trigonometric Functions of Angles
6.4 >>> The Law of Sines
6.5 >>> The Law of Cosines
7 >>> Analytic Trigonometry
7.1 >>> Trigonometric Identities
7.2 >>> Addition and Subtraction Formulas
7.3 >>> Double-Angle, Half-Angle, and Sum-Product Formulas
7.4 >>> Inverse Trigonometric Functions
7.5 >>> Trigonometric Equations
8 >>> Polar Coordinates and Vectors
8.1 >>> Polar Coordinates
8.2 >>> Graphs of Polar Equations
8.3 >>> Polar Form of Complex Numbers; DeMoivre's Theorem
8.4 >>> Vectors
8.5 >>> The Dot Product
9 >>> Systems of Equations and Inequalities
9.1 >>> Systems of Equations
9.2 >>> Systems of Linear Equations in Two Variables
9.3 >>> Systems of Linear Equations in Several Variables
9.4 >>> Systems of Linear Equations: Matrices
9.5 >>> The Algebra of Matrices
9.6 >>> Inverses of Matrices and Matrix Equations
9.7 >>> Determinants and Cramer's Rule
9.8 >>> Partial Fractions
9.9 >>> Systems of Inequalities
10 >>> Analytic Geometry
10.1 >>> Parabolas
10.2 >>> Ellipses
10.3 >>> Hyperbolas
10.4 >>> Shifted Conics
10.5 >>> Rotation of Axes
10.6 >>> Polar Equations of Conics
10.7 >>> Plane Curves and Parametric Equations
11 >>> Sequences and Series
11.1 >>> Sequences and Summation Notation
11.2 >>> Arithmetic Sequences
11.3 >>> Geometric Sequences
11.4 >>> Mathematics of Finance
11.5 >>> Mathematical Induction
11.6 >>> The Binomial Theorem
12 >>> Limits: A Preview of Calculus
12.1 >>> Finding Limits Numerically and Graphically
12.2 >>> Finding Limits Algebraically
12.3 >>> Tangent Lines and Derivatives
12.4 >>> Limits at Infinity: Limits of Sequences
12.5 >>> Areas
TitleText('Discrete Mathematics')
EditionText('4')
AuthorText('Rosen')
1 >>> The Foundations: Logic, Sets, and Functions
1.1 >>> Logic
1.2 >>> Propositional Equivalences
1.3 >>> Predicates and Quantifiers
1.4 >>> Sets
1.5 >>> Set Operations
1.6 >>> Functions
1.7 >>> Sequences and Summations
1.8 >>> The Growth Functions
2 >>> The Fundamentals: Algorithms, the Integers, and Matrices
2.1 >>> Algorithms
2.2 >>> Complexity of Algorithms
2.3 >>> The Integers and Division
2.4 >>> Integers and Algorithms
2.5 >>> Applications of Number Theory
2.6 >>> Matrices
3 >>> Mathematical Reasoning
3.1 >>> Methods of Proof
3.2 >>> Mathematical Induction
3.3 >>> Recursive Definitions
3.4 >>> Recursive Algorithms
3.5 >>> Program Correctness
4 >>> Counting
4.1 >>> The Basics of Counting
4.2 >>> The Pigeonhole Principle
4.3 >>> Permutations and Combinations
4.4 >>> Discrete Probability
4.5 >>> Probability Theory
4.6 >>> Generalized Permutations and Combinations
4.7 >>> Generating Permutations and Combinations
5 >>> Advanced Counting Techniques
5.1 >>> Recurrence Relations
5.2 >>> Solving Recurrence Relations
5.3 >>> Divide-and-Conquer Relations
5.4 >>> Generating Functions
5.5 >>> Inclusion-Exclusion
5.6 >>> Applications of Inclusion-Exclusion
6 >>> Relations
6.1 >>> Relations and Their Properties
6.2 >>> n-ary Relations and Their Applications
6.3 >>> Representing Relations
6.4 >>> Closures of Relations
6.5 >>> Equivalence Relations
6.6 >>> Partial Orderings
7 >>> Graphs
7.1 >>> Introduction to Graphs
7.2 >>> Graph Terminology
7.3 >>> Representing Graphs and Graph Isomorphism
7.4 >>> Connectivity
7.5 >>> Euler and Hamilton Paths
7.6 >>> Shortest Path Problems
7.7 >>> Planar Graphs
7.8 >>> Graph Coloring
8 >>> Trees
8.1 >>> Introduction to Trees
8.2 >>> Applications of Trees
8.3 >>> Tree Traversal
8.4 >>> Trees and Sorting
8.5 >>> Spanning Trees
8.6 >>> Minimum Spanning Trees
9 >>> Boolean Algebra
9.1 >>> Boolean Functions
9.2 >>> Representing Boolean Functions
9.3 >>> Logic Gates
9.4 >>> Minimization of Circuits
10 >>> Modeling Computation
10.1 >>> Languages and Grammars
10.2 >>> Finite-State Machines with Output
10.3 >>> Finite-State Machines with No Output
10.4 >>> Language Recognition
10.5 >>> Turing Machines
11 >>> Appendix: Exponential and Logarithmic Functions
12 >>> Appendix: Pseudocode
TitleText('Complex Analysis')
EditionText('3')
AuthorText('Saff, Snider')
1 >>> Complex Numbers
1.1 >>> The Algebra of Complex Numbers
1.2 >>> Point Representation of Complex Numbers
1.3 >>> Vectors and Polar Forms
1.4 >>> The Complex Exponential
1.5 >>> Powers and Roots
1.6 >>> Planar Sets
1.7 >>> The Riemann Sphere and Stereographic Projection
2 >>> Analytic Functions
2.1 >>> Functions of a Complex Variable
2.2 >>> Limits and Continuity
2.3 >>> Analyticity
2.4 >>> The Cauchy-Riemann Equations
2.5 >>> Harmonic Functions
2.6 >>> Steady-State Temperature as a Harmonic Function
2.7 >>> Iterated Maps: Julia and Mandelbrot Sets
3 >>> Elementary Functions
3.1 >>> Polynomials and Rational Functions
3.2 >>> The Exponential, Trigonometric, and Hyperbolic Functions
3.3 >>> The Logarithmic Function
3.4 >>> Washers, Wedges, and Walls
3.5 >>> Complex Powers and Inverse Trigonometric Functions