determination of e^x using Taylor series
2 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Meshari Alqahtani
el 6 de Sept. de 2018
Comentada: Steven Lord
el 1 de Feb. de 2023
hello, i'm new with matlab. i want to solve this equation by using matlab A=B*e^(0.2356X1+0.1869X2+0.0969X3) where A=1e8 and B=1e6 how can i find X1, X2, and X3 values ?
thanks
0 comentarios
Respuesta aceptada
Dimitris Kalogiros
el 6 de Sept. de 2018
clear; clc;
syms A B x_1 x_2 x_3
syms a_1 a_2 a_3
%definition of equation
myEq= A==B*exp(a_1*x_1+a_2*x_2+a_3*x_3)
% solve equation.
% choose one variable and consider the others as parameters
% which taking arbitrary values
mySol=solve(myEq, x_1 )
% replace the values of parameters
A=exp(8); B=exp(6);
a_1=0.2356; a_2=0.1869; a_3=0.0969;
subs(mySol)
If you run the script:
0 comentarios
Más respuestas (3)
Meshari Alqahtani
el 6 de Sept. de 2018
Editada: Walter Roberson
el 6 de Sept. de 2018
5 comentarios
Walter Roberson
el 7 de Sept. de 2018
taylor series is useless for this purpose.
If you are working over real numbers, there are zero solutions if A/B is negative, and there are an infinite number of solutions otherwise. You can choose random values for any two of the three values and directly calculate the third value.
For example,
x12 = randn(2,1) .* rand(2,1) .* 10000; %about +/- 30000-ish
X1 = x12(1); X2 = x12(2);
X3 = (9.4851 - 0.2356*X1 - 0.1869*X2) ./ 0.0969;
%cross check
0.2356*X1 + 0.1869*X2 + 0.0969*X3
In the test I just did, the result of the cross-check was 9.48509999999987 instead of 9.4851 "exactly", a difference of 1.24344978758018e-13 . You will not generally be able to get exact solutions due to floating point round-off. You could reduce the discrepancy by reducing the range of random values used.
Apisara
el 1 de Feb. de 2023
Find percent(relative) errors of approximating e^x using Taylor series expansions with n=0,1,2,3,4 at x=5
1 comentario
Steven Lord
el 1 de Feb. de 2023
This is not an answer to the original question. You should ask it as a separate question using the Ask button at the top of this page.
But since this sounds like a homework assignment, when you ask that separate question please show us the code you've written to try to solve the problem and ask a specific question about where you're having difficulty and we may be able to provide some guidance.
If you aren't sure where to start because you're not familiar with how to write MATLAB code, I suggest you start with the free MATLAB Onramp tutorial to quickly learn the essentials of MATLAB.
If you aren't sure where to start because you're not familiar with the mathematics you'll need to solve the problem, I recommend asking your professor and/or teaching assistant for help.
Ver también
Categorías
Más información sobre Calculus en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!