1. Compute the determinant of $\begin{bmatrix}0&2&-1\\4&5&-2\\1&3&1\end{bmatrix}$.
  2. Find the area of a triangle with vertices $(0,0),(a,b), (c,d)$. (Use determinants.)
  3. Solve the system of equations $x+2y-3z=2$, $y-2z=1$. You might want to start by letting $z=t$, and then solving for $y$ and then $x$ in terms of $t$.
  4. Suppose we know $x=at+b$, $y=ct+d$, and $z=et+f$. Write this in the form $\begin{bmatrix}x\\y\\z\end{bmatrix}=\begin{bmatrix}?\\?\\?\end{bmatrix}t+\begin{bmatrix}?\\?\\?\end{bmatrix}$.
  5. Let $P(x)=ax^2+bx+c$. Let $f(x)=\ln(x+1)$. Solve the system of equations $P(0)=f(0) $, $P'(0)=f'(0) $, and $P' '(0)=f''(0) $ for the coefficients $a,b,c$.
  6. The volume of a box is $V=lwh$. Compute $dV$ in terms of $l, w,h, dl, dw, dh$. Then write your answer as the matrix product $$ dV = \begin{bmatrix}?&?&?\end{bmatrix}\begin{bmatrix}dl\\dw\\dh\end{bmatrix}.$$
  7. Compute $\int \arcsin x dx$.

Some Solutions:

  1. Software will give you this answer quickly. Here's a WolframAlpha solution.
  2. The area of a parallelogram is the determinant of a matrix whose columns are vector that form the edges of the parallelogram. Halving that give the area of the triangle, so the solution is $\frac{1}{2}\det \begin{bmatrix}a&c\\b&d\end{bmatrix}=\frac{ad-bc}{2}$.
  3. Let $z=t$ which means the second equation becomes $y-2t=1$ or $y=1+2t$. Replacing both $y$ and $z$ with what they equal in terms of $t$ into the first equation gives us $x+2(1+2t)-3t=2$, which means $x=2+3t-2-4t=-t$. The solution is $(x,y,z) = (-t, 1+2t, t)$.
  4. The solutions is simply $\begin{bmatrix}x\\y\\z\end{bmatrix}=\begin{bmatrix}a\\c\\e\end{bmatrix}t+\begin{bmatrix}b\\d\\f\end{bmatrix}$.
  5. The first two derivatives are $P'(x)=2ax+b$, $P''(x)=2a$, $f'(x)=(1+x)^{-1}$, and $f' '(x)=-(1+x)^{-2}$. Evaluating each at zero, the three equation given become $c=0$, $b=1$, $2a=-1$, or $a=-1/2$. So $P(x) = -\frac{1}{2}x^2+(1)x+0$.
  6. The differential is $dV = whdl+lhdw+lwdh.$ In matrix form we have $$ dV = \begin{bmatrix}wh&lh&lw\end{bmatrix}\begin{bmatrix}dl\\dw\\dh\end{bmatrix}.$$
  7. The integral is $x\arcsin(x)+\sqrt{1-x^2}$

Problem Set
Today

« September 2017 »

Sun

Mon

Tue

Wed

Thu

Fri

Sat

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