This commit is contained in:
Christoph J. Scherr 2024-09-16 17:05:08 +02:00
parent 89a4f3b8ff
commit 981311af13
Signed by: cscherrNT
GPG Key ID: 8E2B45BC51A27EA7
3 changed files with 31 additions and 0 deletions

Binary file not shown.

29
src/exercise/5.typ Normal file
View File

@ -0,0 +1,29 @@
== Exercise Sheet 5 - Partial Derivatives
=== Exercise 1 @Exercise[5, 1]
#block(
fill: luma(230),
inset: 8pt,
radius: 4pt,
[
Where is the function
$
f: RR^2 -> RR
(x,y) |-> x dot sqrt(y^2 + x^2)
$
partially differentiable? Calculate the first-order partial derivatives.
])
$
g(x,y) &= x ; (delta g)/(delta x) = 1 ; (delta g)/(delta y) = 0 \
h(x,y) &= sqrt(y^2+x^2) ; (delta h)/(delta x) = sqrt(y^2+x^2) dot 2x ; (delta h)/(delta y) = sqrt(y^2+x^2) dot 2y \
\
(delta f)/(delta x) &= g dot h' + g' dot h = x dot sqrt(y^2+x^2) dot 2x + 1 dot sqrt(x^2+y^2) \
&= sqrt(x^2+y^2) (2x^2 + 1) \
(delta f)/(delta y) &= g dot h' + g' dot h = x dot sqrt(x^2+y^2) dot 2y + 0 dot dots \
&= x dot sqrt(x^2+y^2) dot 2y
\ "dödö falsch"
$

View File

@ -5,3 +5,5 @@
#include "3.typ"
#pagebreak()
#include "4.typ"
#pagebreak()
#include "5.typ"