updated calc iii notes

This commit is contained in:
Lucas Rufkahr
2026-03-02 22:36:32 -06:00
parent a3b5d0f16d
commit a47803306b
3 changed files with 24 additions and 2 deletions

View File

@@ -44,3 +44,19 @@ Theorem:
\text{If } D(a,b) < 0 \text{, there exists a saddle point at }(a,b) \text{.}\\
\text{If } D(a,b) = 0 \text{ the test is inconclusive.}
\]
## Lagrange Multipliers
Theorem:
\[
\text{Let } f \text{ be a differentiable function in } R^2 \text{ that contains curve } C \text{ given by } g(x,y) = 0. \text{ Assume } f \text{ has a local extrema on } C \text{ at point } P(a,b). \text{ Then } \nabla f(a,b) \text{ is orthogonal to the tangent line of } C \text{ at } P. \text{ Assuming } \nabla g(a,b) \neq 0, \text{ then there is a real number } \lambda \text{, or lagrange multiplier, such that } \nabla f(a,b) = \lambda \nabla g(a,b).
\]
To find absolute extremas using lagrange multipliers:
1. Find the gradient of \(f\)
2. Find the gradient of \(g\)
3. Set \(\nabla f(x,y) = \lambda \nabla g(x,y)\)
4. Solve the system for \(x\) and \(y\) of \(\nabla f(x,y) = \lambda \nabla g(x,y)\) and \(g(x,y) = 0\).
5. Evaluate the points you've found in \(f(x,y)\). The largest value is the absolute maximum. The smallest value is the absolute minimum.

View File

@@ -11,9 +11,15 @@
},
output: {
displayAlign: 'left',
displayIndent: '0.5in',
displayIndent: '0.25in',
displayOverflow: 'linebreak'
},
linebreaks: {
inline: true,
width: '100%',
lineleading: '0.2',
LinebreakVisistor: '-'
}
};
</script>