\documentclass{standalone}
\standaloneconfig{border=2mm 2mm 2mm 2mm}
\usepackage{pgfplots}
\usepackage{amsmath}
\pgfplotsset{compat=newest}
% Define a function for the integrand
\pgfmathdeclarefunction{integrand}{1}{%
\pgfmathparse{(1)/(sqrt(1+#1^2+ln(#1)^2))}%
}
% Define a function for numerical integration using trapezoidal rule
\pgfmathdeclarefunction{trapz}{3}{%
\pgfmathparse{(#3-#2)/2 * (integrand(#2) + 2*integrand((#2+#3)/2) + integrand(#3))}%
}
\begin{document}
\begin{tikzpicture}
\begin{axis}[
xlabel=$x$,
ylabel={$f(x)$},
xmin=0, xmax=20, % Adjust x-axis limits
ymin=-2, ymax=7, % Adjust y-axis limits
axis lines=middle,
unbounded coords=jump,
enlargelimits=true,
]
% Plot the integral curve using numerical integration
\addplot [blue, domain=0:15, samples=200] {trapz(0,x,10)};
\addplot [red, thick] {int((1)/(sqrt(1+x^2+ln(x)^2)))};
\end{axis}
\node[blue, anchor=west] at (2,5) {$\text{trapez}(a, b, n) = \frac{b-a}{2n} \left( f(a) + 2\sum_{i=1}^{n-1} f\left(a + \frac{i(b-a)}{n}\right) + f(b) \right)$};
\node[red, anchor=west] at (2,4) {$F(x) = \int_0^x \frac{1}{\sqrt{1+t^2+\ln^2 t}} dt$};
\node[red, anchor=west] at (2,3) {$F(0) = 1$};
\end{tikzpicture}
\end{document}
Leave a comment if you like this content أترك تعليقا إن أعجبك المحتوى
Most viewed courses:
سلسلة تمارين علوم رياضية
Subject: Maths
Class: 2 Bac Science Maths
Views: 47.23K
اتصال دالة عددية
Subject: Maths
Class: 2 Bac Science
Views: 27.28K
- Série 1 : continuité et dérivation
- Examens Nationaux de Mathématiques pour les Filères PC et SVT de 2008 à 2022
- MATHEMATIQUES Examens nationaux 2003-2021 2 Bac.Sciences expérimentales
- Control n 1 : continuité et dérivation
- Control n 1 : continuité et dérivation v2
- Devoir Libre n 1 : continuité et dérivation v2
- Devoir libre : limite d'une suite numérique et étude d'une fonction
الحساب المثلثي 1
Subject: Maths
Class: Tronc Commun Sciences
Views: 20.56K
- Série exercices: Calcul Trigonométrique
- Devoir Surveillé 1 Calcul Trigonométrique
- Devoir à la maison 1 Calcul Trigonométrique
- Devoir 2 S02 de généralités des fonctions et trigonométrie
- Devoir Surveillé 1 S02 Calcul Trigonométrique A - B
- Devoir Surveillé 1 S02 Calcul Trigonométrique C - D
- Devoir Surveillé 1 S02 Calcul Trigonométrique E - F
الجداء السلمي وتطبيقاته
Subject: Maths
Class: 1 BAC Science
Views: 18.60K
- Maths
- 1APIC
- 3APIC
- Tronc Commun Sciences
- Tronc Commun Lettres
- 1 BAC Science
- 1 BAC Science Maths
- 1 Bac Lettre
- 2 Bac Science
- 2 Bac Science Maths
- Discussions
- Physics
- 1 BAC Science
- SVT
- 3 Année Collège
- Tronc Commun Sciences
- 1 BAC Science
- 1 BAC Science Maths
- 1 Bac Lettre
- 2 Bac Science
- Latex
- Templates
- Figures
Most Recent Articles
Most Viewed Articles
0 Comments, Latest
No comments yet. Be the first to Comment