updates after up

This commit is contained in:
jverzani
2024-05-25 14:52:20 -04:00
parent 52aaa5d487
commit f9df119df0
6 changed files with 350 additions and 12 deletions

View File

@@ -556,11 +556,11 @@ To look at the limit in this example, we have (recycling the values in `hs`):
#| hold: true
c = 1
f(x) = x^x
ys = [(f(c + h) - f(c)) / h for h in hs]
[hs ys]
sec_line_slope(h) = (f(c+h) - f(c)) / h
lim(sec_line_slope, 0)
```
The limit looks like $L=1$. A similar check on the left will confirm this numerically.
The limit looks like $L=1$.
### Issues with the numeric approach

View File

@@ -861,23 +861,23 @@ numericq(-1)
###### Question
As mentioned, for limits that depend on specific values of parameters `SymPy` may have issues. As an example, `SymPy` has an issue with this limit, whose answer depends on the value of $k$"
As mentioned, for limits that depend on specific values of parameters `SymPy` may have issues. As an example, `SymPy` has an issue with the following limit, whose answer depends on the value of $k$"
$$
\lim_{x \rightarrow 0+} \frac{\sin(\sin(x^2))}{x^k}.
$$
Note, regardless of $k$ you find:
In particular, the following with a symbolic `k` will fail:
```{julia}
#| hold: true
#| eval: false
@syms x::real k::integer
limit(sin(sin(x^2))/x^k, x=>0)
```
For which value(s) of $k$ in $1,2,3$ is this actually the correct answer? (Do the above $3$ times using a specific value of `k`, not a numeric one.
For which value(s) of $k$ in $1,2,3$ is the limit $0$? (Do the above $3$ times using a specific value of `k`, not a numeric one.
```{julia}