Linear Approximations
Tangent Lines
- Each partial derivative forms a tangent line parallel to that coordinate plane
v1=⟨1,0,fx′(x0,y0)⟩v2=⟨0,1,fy′(x0,y0)⟩
Relationship to Tangents
- tanθx=fx′(x0,y0) where θx is the angle between the tangent line and a horizontal line
- Same applies for y
Tangent Plane
- The plane that contains both tangent lines
- n=⟨fx′(x0,y0),fy′(x0,y0),−1⟩
- P:z=z0+fx′(x0,y0)(x−x0)+fy′(x0,y0)(y−y0)
- Serves the same purpose as tangent lines just for multiple variables
- The negative one in n doesn’t always have to be on the z, if there is a partial deriv for z but not a different variable they would switch places
Tangent Plane Approximation
- Round values of x and y to get x=x0+Δx and y=y0+Δy
- Find f(x0,y0), fx′(x0,y0), and fy′(x0,y0)
- L(x,y)=f(x0,y0)+fx′(x0,y0)Δx+fy′(x0,y0)Δy
Multivariable Newton’s Method
- Approximates a Δx and Δy towards the x and y values that satisfy the following system from an initial point P0
- Needs a solution near the point where you start
- To do so solve this system of equations for Δx and Δy :
- fx′(x1,y1)Δx1+fy′(x1,y1)Δy1=a−f(x1,y1)
- gx′(x1,y1)Δx1+gy′(x1,y1)Δy1=b−g(x1,y1)
- Can be iterated. Take the new point and treat it as a starting point and repeat