solve in MATLAB and screenshot code
?′′ −??′ +??= ???(????−?????)
solve in MATLAB and screenshot code
?′′ −??′ +??= ???(????−?????)
Solutions
Expert Solution
%Please copy this code in matlab
clear all;
%Differential equation solve
syms y(x) %Defines the symbol
%Defines the function
ode=diff(y,x,2)-2*diff(y,x)+2*y==exp(1)*2*x*(cos(x)-3*sin(x));
%Solution
ySol(x)=dsolve(ode)
Solve using matlab code!!
Use the graphical method to solve
4x1 −
8x2 = −24
x1 +
6x2 = 34
Check your results by substituting them back into the
equations.(include this on the code)
Provide a screenshot of your script code and a
screenshot of running the scripts with test inputs.
Write a script to check command arguments (3 arguments
maximum). Display the argument one by one. If there is no argument
provided, remind users about the mistake.
Write a MATLAB code for the conjugate gradient method and apply it
to solve the system Hx = b, where H is the n×n Hilbert matrix, and
b is A times the vector of all ones, for (a) n = 4; (b) n = 8.
Compare your numerical solutions with the exact solution (which is
the vector of all ones), and report your numerical errors.
Using Matlab code, solve the following:
(a) Consider first the undamped pendulum ? + sin ? = 0, ?(0) =
0, ? (0) = b. Let x = ? and y = ? ; then x and y satisfy the system
x = y y = ? sin x, x(0) = 0 y(0) = b. Solve this system numerically
and plot, on a single graph, the resulting trajectories for the
initial velocities b = 0.5, 1, 1.5, 2, 2.5. Use...
Write your own MATLAB code to solve the system
10 − x + sin(x + y) − 1 = 0
8y − cos2 (z − y) − 1 = 0
12z + sin(z) − 1 = 0
using a residual tolerance of 10^−6 and the initial guess, ~x 0
= [0.1, 0.25, 0.08]^T . Print out the values for x, y and z for
each iteration in a table similar to the one you created for the
problems of the...