This commit is contained in:
jverzani 2023-05-08 13:34:17 -04:00
commit c3518dbba7
2 changed files with 3 additions and 3 deletions

View File

@ -440,7 +440,7 @@ To visualize, we plot implicitly and notice that:
```{julia}
K(x,y) = x^3 - y^3
K(x,y) = x^3 - y^3 - 3
implicit_plot(K, xlims=(-3, 3), ylims=(-3, 3))
```
@ -451,7 +451,7 @@ The same problem can be done symbolically. The steps are similar, though the las
#| hold: true
@syms x y u()
eqn = K(x,y) - 3
eqn = K(x,y)
eqn1 = eqn(y => u(x))
dydx = solve(diff(eqn1,x), diff(u(x), x))[1] # 1 solution
d2ydx2 = solve(diff(eqn1, x, 2), diff(u(x),x, 2))[1] # 1 solution

View File

@ -182,7 +182,7 @@ How can this relationship be summarized? Well, let's go back to what we know, th
diff(A(t), t)
```
This should be clear: the rate of change, $dA/dt$, is increasing linearly, hence the second derivative, $dA^2/dt^2$ would be constant, just as we saw for the average rate of change.
This should be clear: the rate of change, $dA/dt$, is increasing linearly, hence the second derivative, $d^2A/dt^2$ would be constant, just as we saw for the average rate of change.
So, for this problem, a constant rate of change in width and height leads to a linear rate of change in area, put otherwise, linear growth in both width and height leads to quadratic growth in area.