-
Notifications
You must be signed in to change notification settings - Fork 24
/
Copy path01_warmup.qmd
148 lines (93 loc) · 4.62 KB
/
01_warmup.qmd
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
# Pre-Prefresher Exercises {.unnumbered}
Before our first meeting, please try solving these questions. They are a sample of the very beginning of each math section. We have provided links to the parts of the book you can read if the concepts are new to you.
The goal of this "pre"-prefresher assignment is not to intimidate you but to set common expectations so you can make the most out of the actual Prefresher. Even if you do not understand some or all of these questions after skimming through the linked sections, your effort will pay off and you will be better prepared for the math prefresher. We are also open to adjusting these expectations based on feedback (this class is for *you*), so please do not hesitate to write to the instructors for feedback.
## Linear Algebra {.unnumbered}
### Vectors {.unnumbered}
Define the vectors $u = \begin{pmatrix} 1 \\2 \\3 \end{pmatrix}$, $v = \begin{pmatrix} 4\\5\\6 \end{pmatrix}$, and the scalar $c = 2$. Calculate the following:
1. $u + v$
2. $cv$
3. $u \cdot v$
If you are having trouble with these problems, please review Section @sec-vector-def "Working with Vectors" in Chapter @sec-linearalgebra.
Are the following sets of vectors linearly independent?
1. $u = \begin{pmatrix} 1\\ 2\end{pmatrix}$, $v = \begin{pmatrix} 2\\4\end{pmatrix}$
2. $u = \begin{pmatrix} 1\\ 2\\ 5 \end{pmatrix}$, $v = \begin{pmatrix} 3\\ 7\\ 9 \end{pmatrix}$
3. $a = \begin{pmatrix} 2\\ -1\\ 1 \end{pmatrix}$, $b = \begin{pmatrix} 3\\ -4\\ -2 \end{pmatrix}$, $c = \begin{pmatrix} 5\\ -10\\ -8 \end{pmatrix}$ (this requires some guesswork)
If you are having trouble with these problems, please review Section @sec-linearindependence.
### Matrices {.unnumbered}
$${\bf A}=\begin{pmatrix}
7 & 5 & 1 \\
11 & 9 & 3 \\
2 & 14 & 21 \\
4 & 1 & 5
\end{pmatrix}$$
What is the dimensionality of matrix ${\bf A}$?
What is the element $a_{23}$ of ${\bf A}$?
Given that
$${\bf B}=\begin{pmatrix}
1 & 2 & 8 \\
3 & 9 & 11 \\
4 & 7 & 5 \\
5 & 1 & 9
\end{pmatrix}$$
What is ${\bf A}$ + ${\bf B}$?
Given that
$${\bf C}=\begin{pmatrix}
1 & 2 & 8 \\
3 & 9 & 11 \\
4 & 7 & 5 \\
\end{pmatrix}$$
What is ${\bf A}$ + ${\bf C}$?
Given that
$$c = 2$$
What is $c$${\bf A}$?
If you are having trouble with these problems, please review Section @sec-matrixbasics.
## Operations {.unnumbered}
### Summation {.unnumbered}
Simplify the following
1. $$\sum\limits_{i = 1}^3 i$$
2. $\sum\limits_{k = 1}^3(3k + 2)$
3. $\sum\limits_{i= 1}^4 (3k + i + 2)$
### Products {.unnumbered}
1. $\prod\limits_{i= 1}^3 i$
2. $\prod\limits_{k=1}^3(3k + 2)$
To review this material, please see Section @sec-sum-notation.
### Logs and exponents {.unnumbered}
Simplify the following
1. $4^2$
2. $4^2 2^3$
3. $\log_{10}100$
4. $\log_{2}4$
5. $\log e$, where $\log$ is the natural log (also written as $\ln$) -- a log with base $e$, and $e$ is Euler's constant
6. $e^a e^b e^c$, where $a, b, c$ are each constants
7. $\log 0$
8. $e^0$
9. $e^1$
10. $\log e^2$
To review this material, please see Section @sec-logexponents
## Limits {.unnumbered}
Find the limit of the following.
1. $\lim\limits_{x \to 2} (x - 1)$
2. $\lim\limits_{x \to 2} \frac{(x - 2) (x - 1)}{(x - 2)}$
3. $\lim\limits_{x \to 2}\frac{x^2 - 3x + 2}{x- 2}$
To review this material please see Section @sec-limitsfun
## Calculus {.unnumbered}
For each of the following functions $f(x)$, find the derivative $f'(x)$ or $\frac{d}{dx}f(x)$
1. $f(x)=c$
2. $f(x)=x$
3. $f(x)=x^2$
4. $f(x)=x^3$
5. $f(x)=3x^2+2x^{1/3}$
6. $f(x)=(x^3)(2x^4)$
For a review, please see Section @sec-derivintro - @sec-derivpoly
## Optimization {.unnumbered}
For each of the following functions $f(x)$, does a maximum and minimum exist in the domain $x \in \mathbf{R}$? If so, for what are those values and for which values of $x$?
1. $f(x) = x$
2. $f(x) = x^2$
3. $f(x) = -(x - 2)^2$
If you are stuck, please try sketching out a picture of each of the functions.
## Probability {.unnumbered}
1. If there are 12 cards, numbered 1 to 12, and 4 cards are chosen, how many distinct possible choices are there? (unordered, without replacement)
2. Let $A = \{1,3,5,7,8\}$ and $B = \{2,4,7,8,12,13\}$. What is $A \cup B$? What is $A \cap B$? If $A$ is a subset of the Sample Space $S = \{1,2,3,4,5,6,7,8,9,10\}$, what is the complement $A^C$?
3. If we roll two fair dice, what is the probability that their sum would be 11?
4. If we roll two fair dice, what is the probability that their sum would be 12?
For a review, please see Sections @sec-setoper - @sec-probdef.