9:00 AM Jamboard Links

G1 G2 G3 G4 G5 G6 G7
  • Kallan DuPaix
  • Spencer Hatch
  • Zack Kunkel
  • Marissa Mavy
  • Santiago Meza Jr
  • Spencer Blau
  • Jordan Cluff
  • Ryan Cox
  • Makenzy Pharis
  • Gavin Slater
  • Ethan Barrus
  • Rachel Hardy
  • Parker Kemp
  • Denali Russell
  • Cecilia Sanders
  • Jeremy Boyce
  • Karen Castillo Avendano
  • Mason Peterson
  • Luke Romeril
  • Nathan Thompson
  • Kylar Dominguez Pluma
  • Logan Grover
  • Tanner Harding
  • Olivia Houghton
  • Jae Kim
  • Kai Alger
  • Nathan Bryans
  • Lucy Fisher
  • Chase Fry
  • Braydon Robinson
  • Evan Duker
  • Ralph Oliver
  • Tyler Stokes

12:45 PM Jamboard Links

G1 G2 G3 G4 G5 G6
  • Adam Hopkins
  • Oscar Enrique Gonzalez Mosqueda
  • Reed Hunsaker
  • Rick Miller
  • Trevor Fike
  • Forrest Thompson
  • Hamilton Birkeland
  • Jeremy Jacobsen
  • Michael Clarke
  • Adrick Checketts
  • Alan Loureiro
  • Christian Shamo
  • Preston Yost
  • Carter Cooper
  • Chad Larkin
  • Joshua Strang
  • Michael Ruiz
  • Brian Odhiambo
  • Cheyenne Pratt
  • Jacob Gravelle
  • Matty Davis
  • Aaron Reed
  • Brad Johnston
  • Hayley Kerkman
  • Jaden Camargo
  • Tanner Anderson

Presenters

9AM

Thanks for sharing things in Perusall. Here are the presenters for today. Remember, I start picking presenters at 8am. If you upload something after that time, I may not see it.

  • 6.1 - Chase
  • 6.2 - Nathan T
  • 6.3 - Rachel
  • 6.4 - Jeremy
  • 6.5 - Ethan
  • 6.6 -
  • 6.7 -
  • 6.8 -
  • 6.9 -

12:45PM

Thanks for sharing things in Perusall. Here are the presenters for today. Remember, I start picking presenters at 12 noon. If you upload something after that time, I may not see it.

  • 6.1 -
  • 6.2 -
  • 6.3 -
  • 6.5 -
  • 6.6 -
  • 6.7 -
  • 6.8 -
  • 6.9 -

Learning Reminders

  • We are in the 13th week of the semester. If you are on track for an A, then ideally you're finishing your SDL project for the 5th unit, and proposed something for the 6th unit.
  • There are only 2 weeks left, which means you can submit at most 2 more SDL projects.
  • The final SDL project (6th) can be over any topic from the entire semester. You can use it to expand what we do in the 6th unit, or you may choose to revisit something from a prior unit that you would like to spend more time with.

Operators - Discussion

  1. What is an operator? A function whose domain is a function. When we so something to functions, rather than call it a function of functions, we call it an operator on functions.
    • The derivative $\frac{df}{dx}$ operates on a function $f(x)$ to produce a new function $f'$.
    • The partial derivative $\frac{\partial f}{\partial x}$ operates on a function $f(x,y)$ to produce a new function $f_x(x,y)$.
    • The integral $\int_a^b f(x) dx$ operates on a function $f(x)$ to produce a number (the area under $f$ from $a$ to $b$).
    • The gradient $\vec \nabla f$ operates on a function $f(x,y,z)$ to produce a vector field $(f_x,f_y, f_z)$.
    • The del operator $\vec \nabla = \left(\frac{\partial}{\partial x},\frac{\partial}{\partial y}\right)$ or $\vec \nabla = \left(\frac{\partial}{\partial x},\frac{\partial}{\partial y},\frac{\partial}{\partial z}\right)$ can be used in a variety of ways to produce an operator.
  2. Three new quantities (A great book: "Div, Grad, Curl, and all that" by H. M. Schey - Electrostatics)
    • The gradient of a function $f$, namely $\vec \nabla f = \left(\frac{\partial}{\partial x},\frac{\partial}{\partial y},\frac{\partial}{\partial z}\right)f = \left(\frac{\partial f}{\partial x},\frac{\partial f}{\partial y},\frac{\partial f}{\partial z}\right)$, abuses the notion of scalar multiplication to produce an operator on a function $f$.
    • The divergence of a vector field $\vec F$ is $\vec \nabla \cdot \vec F$, read "del dot F." This operator helps understand whether a vector field $\vec F$ is expanding or contracting. This helps understand gas diffusion. Things that are incompressible (a common assumption about liquids) have zero divergence which means $\vec \nabla \cdot \vec F=0$.
    • The curl of a vector field $\vec F$ is $\vec \nabla\times \vec F$, read "del cross F.". This quantity tracks the rate and direction of rotation that a vector field $\vec F$ causes. Irrotational vector fields have zero curl. We'll see that every gradient field has zero curl, which is precisely related to why we never saw imaginary eigenvalues in the optimization unit.

We've used all the symbols above before, but now we'll use them in a new way. This will be a common theme in the 6th unit, namely we'll review things we've seen all semester, and use them in a slightly new way.


Brain Gains (Recall/Generation)

Let $$\vec \nabla = \left(\frac{\partial}{\partial x},\frac{\partial}{\partial y},\frac{\partial}{\partial z}\right).$$

  • For the vector field $\vec F(x,y,z) = (3xy,2x+4y+5z,y+xz^2)$, compute the derivative $D \vec F$ (you'll get a 3 by 3 matrix).

Solution

The derivative is $$D\vec F = \begin{bmatrix} 3y &3x&0 \\ 2 &4& 5\\ z^2 &1& 2xz \\ \end{bmatrix}. $$

  • For the vector field $\vec F(x,y,z) = (3xy,2x+4y+5z,y+xz^2)$, compute $\vec \nabla \cdot \vec F$.

Solution

We compute $$\begin{align} \vec \nabla \cdot \vec F &=\left(\frac{\partial}{\partial x},\frac{\partial}{\partial y},\frac{\partial}{\partial z}\right)\cdot (3xy,2x+4y+5z,y+xz^2)\\ &=\frac{\partial}{\partial x}(3xy)+\frac{\partial}{\partial y}(2x+4y+5z)+\frac{\partial}{\partial z}(y+xz^2)\\ &=(3y)+(4)+(2xz) .\end{align}$$ Note this is just the sum of the diagonal entries of $$D\vec F = \begin{bmatrix} \color{red}{3y} &3x&0 \\ 2 &\color{red}{4}& 5\\ z^2 &1& \color{red}{2xz} \\ \end{bmatrix}. $$

  • For the vector field $\vec F(x,y,z) = (3xy,2x+4y+5z,y+xz^2)$, compute $\vec \nabla \times \vec F$.

Solution

We compute $$\begin{align} \vec \nabla \times \vec F &=\left(\frac{\partial}{\partial x},\frac{\partial}{\partial y},\frac{\partial}{\partial z}\right)\times (3xy,2x+4y+5z,y+xz^2)\\ &=\left( \frac{\partial}{\partial y}(y+xz^2) - \frac{\partial}{\partial z}(2x+4y+5z), \frac{\partial}{\partial z}(3xy) - \frac{\partial}{\partial x}(y+xz^2), \frac{\partial}{\partial x}(2x+4y+5z) - \frac{\partial}{\partial y}(3xy) \right)\\ &=\left( (1) - (5), (0) - (z^2), (2) - (3x) \right) .\end{align}$$ Notice how each component is the difference of two terms in $$D\vec F = \begin{bmatrix} 3y &\color{blue}{3x}&\color{green}{0} \\ \color{blue}{2} &4& \color{red}{5}\\ \color{green}{z^2} &\color{red}{1}& 2xz \\ \end{bmatrix}. $$

  • For the vector field $\vec F = (4x+2xy,x^2+2y)$, find a function $f(x,y)$ so that $\vec \nabla f = \vec F$. We call $f$ a potential for $\vec F$. In other words, if we know $f_x = 4x+2xy$ and $f_y = x^2+2y$, then what is $f$?

Solution

Such a function is $f(x,y) = 2x^2+x^2y+y^2$.

  • Since $f_x = 4x+2xy$, anti differentiation with respect to $x$ yields $f(x,y) = 2x^2+x^2y +C(y)$, where $C(y)$ is any function of $y$ so that the partial with respect to $x$ is zero.
  • Since $f_y = x^2+2y$, anti differentiation with respect to $y$ yields $f(x,y) = x^2y+y^2+D(x)$, where $D(x)$ is any function of $x$ so that the partial with respect to $y$ is zero.

Letting $C(y) = y^2$ and $D(x)=2x^2$ gives the same function $f(x,y) = 2x^2+x^2y+y^2$ in both steps above. A quick check reveals $\vec \nabla f = (4x+2xy,x^2+2y)$, which equals $\vec F$ as needed.

We could have used $f(x,y) = 2x^2+x^2y+y^2+12$, or rather $f(x,y) = 2x^2+x^2y+y^2+C$ for any constant $C$. The problem asked for a potential, not all potentials.

  • Does every vector field have a potential?

Solution

Nope. That is precisely what you'll be examining in groups today. However, when a vector field has a potential, it makes work computations much simpler. This is because the fundamental theorem of line integrals states that for a piecewise smooth curve $C$ that starts at $A$ and ends at $B$, we have $$\int_C \vec \nabla f \cdot d\vec r = f(B) - f(A).$$ We can read the above as "the work done by $\vec F = \vec \nabla f$ along $C$ is the difference in the potential between the start and end of the path.

The proof of the theorem above follows:

  • The chain rule tells us that $\frac{df}{dt} = \vec \nabla f\cdot \frac{d\vec r}{dt}$. This means a little change in $f$ is equal to $df = \vec \nabla f\cdot d\vec r$.
  • Summing up little changes in $f$ over a curve $C$ that starts at $A$ and ends at $B$ gives the total change in $f$ from $A$ to $B$. This is precisely what we mean by $$\int_C \vec \nabla f \cdot d\vec r = f(B) - f(A).$$

Group problems

  1. Let $f = xy^2+3x$.
    1. Compute $\vec F = \vec \nabla f$. (We'll use capital $F$ for vector fields, and lower case $f$ for real-valued functions, i.e. the output is a single real number, rather than a vector.)
    2. Compute $D^2f$ (so $D\vec F$). It's a square matrix.
    3. Compute $\int_{ (2,1) }^{ (1,3) } df$ (total change in $f$ from $(2,1)$ to $(1,3)$). [Check: Plugging the points into $f$ yields $12-8 = 4$.]
  2. Let $\vec F = (2xy+4, x^2+2y)$.
    1. Compute $D\vec F$. It's a square matrix.
    2. Find a real-valued function $f$ so that $\vec \nabla f = \vec F $. In particular, this means $df = \vec F \cdot d\vec r$. [Check: $f = x^2y+4x+y^2$.]
    3. Find the work done by $\vec F$ (so $\int_C \vec F\cdot d\vec r$) to get from $(2,0)$ to $(0,3)$. (Or simpler, just compute $\int_C df$, the total change in $f$ from $(2,0)$ to $(0,3)$, which you can do because $df = \vec F \cdot d\vec r$. ) [Check: $9-4=5$.]
  3. Let $\vec F = (2x+3y, 4x+5y)$.
    1. Compute $D\vec F$.
    2. Why it is impossible to find a function $f$ so that $\vec F = \vec \nabla f$.
  4. Given a vector field $\vec F$, what condition must be true about $D\vec F$ for there to be a function $f$ such that $\vec\nabla f = \vec F$? We call such function $f$ a potential for $\vec F$. When $\vec F$ has a potential, we say that $\vec F$ is a gradient field.
  5. Compute the derivative of each vector field $\vec F$ below (obtaining a square matrix). Then find a potential for $\vec F$ or explain why the vector field has no potential.
    1. $\vec F = (2x,3y)$ [Check: $D\vec F = \begin{bmatrix}2&0\\0&3\end{bmatrix}$ and $f = x^2+\frac{3}{2}y^2$ yields $\vec \nabla f = (2x,3y)$. We can quickly verify that $\vec\nabla f = \vec F$ by a direct computation. ]
    2. $\vec F = (2y,3x)$
    3. $\vec F = (3y,3x)$
    4. $\vec F = (4x,5y,6z)$
    5. $\vec F = (4x,5z,6y)$
    6. $\vec F = (4x,5z,5y)$
    7. $\vec F = (2x-y,-x+4y)$
    8. $\vec F = (y^2+2x,2xy)$
    9. $\vec F = (x+yz,xz+4yz,xy+2y^2)$
    10. $\vec F = (x+yz,4yz,xy+2y^2)$
    11. $\vec F = (x+yz,xz+4yz,xy)$
    12. $\vec F = (yz,xz+4yz,xy+2y^2)$

Problem Set
Today

« December 2020 »

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

31