From c2687445018c45bb4ce72ed8a8693fa683ca4f7d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ali=20G=C3=BCrb=C3=BCz?= Date: Sat, 31 Jan 2026 16:40:11 -0500 Subject: [PATCH] Include Julia plot for limit function Add Julia code for plotting the limit function. --- quarto/limits/limits.qmd | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/quarto/limits/limits.qmd b/quarto/limits/limits.qmd index 7e4bdb1..c4ca34a 100644 --- a/quarto/limits/limits.qmd +++ b/quarto/limits/limits.qmd @@ -1371,6 +1371,12 @@ $$ The limit exists, what is the value? +```{julia} +#| hold: true +#| echo: false +f(x) = (cos(x) - 1)/x +p = plot(f, -1, 1) +``` ```{julia} #| hold: true