how to resolve this problem?

12 visualizzazioni (ultimi 30 giorni)
Ahmed
Ahmed il 5 Mag 2023
Modificato: Praveen Reddy il 8 Mag 2023
Considera la función f(x) = x/raiz(x^2+1) . Estudia sus puntos críticos, crecimiento y decrecimiento, puntos de corte con los ejes y asíntotas. Representa la función f(x).
Determina el área comprendida entre f(x) y la recta y = x/2 .

Risposta accettata

Praveen Reddy
Praveen Reddy il 8 Mag 2023
Modificato: Praveen Reddy il 8 Mag 2023
Hi Ahmed,
I understand that you want to plot the curves f(x)= x/sqrt((x^2)+1), y=x/2 and determine the area between the curves.
To plot the curves you can use “fplot” function. Please refer the following code snippet.
fplot(@(x) x/sqrt((x^2)+1),[-4 4],'r')
hold on
fplot(@(x) x/2,[-4 4],'b')
To find the area between the curves:
Find the x coordinates of intersection points. Please refer to the following code snippet.
syms x
eqn = x/sqrt((x^2)+1)==x/2;
X=solve(eqn,x)
X = 
The x coordinates of intersection points are -1.7321, 0, 1.7321. Integrate y= x/sqrt((x^2)+1)- x/2 over [0,1.7321] and y= x/2- x/sqrt((x^2)+1) over [-1.7321,0] . As the graph is symmetric about origin, it is sufficient if you obtain one half of area and multiply it by 2. Please refer to the following code snippet
fun= @(x) ((x/sqrt((x.^(2))+1))-(x/2));
area1=integral(fun,0,1.732);
area=2*area1
area = 0.8530
Please refer to the following MATLAB documentations and MATLAB answers for better understanding and other methods to calculate area between two curves:

Più risposte (0)

Tag

Prodotti


Release

R2020a

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!