Question

Solve sin(x) = cos(x) over -π ≤ x ≤ π by using Matlab

Solve sin(x) = cos(x) over -π ≤ x ≤ π by using Matlab

Homework Answers

Answer #1

Hello,
       Please find the answer attached below. If the answer has helped you please give a thumbs up rating. Thank you and have a nice day!

*********** Matlab Code *********

%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%%%%% solving sin(x) = cos(x)

%%%% first modify the equation as sin(x) - cos(x) = 0

x = -pi:0.01:pi;
r = abs(sin(x)-cos(x));
clc;
fprintf('The solution to the equation is:\n');
x_sol = x(r<0.007)                % tolerance for the solutions

%%%%%%%% solutions on a graph
plot(x,sin(x),'LineWidth',2);
hold;
grid;
plot(x,cos(x),'LineWidth',2);
plot(x,r,'LineWidth',2);
legend('Sin(x)','Cos(x)','Sin(x)-Cos(x)');
xlabel('x');

******** End of Code********

Output:

The solution to the equation is:

x_sol =

   -2.3516    0.7884

Know the answer?
Your Answer:

Post as a guest

Your Name:

What's your source?

Earn Coins

Coins can be redeemed for fabulous gifts.

Not the answer you're looking for?
Ask your own homework help question
Similar Questions
Solve for −?≤?≤?. (a) cos x – sin x = 1 (b) sin 4x – sin...
Solve for −?≤?≤?. (a) cos x – sin x = 1 (b) sin 4x – sin 2x=0 (c) cos x−√3sin ? = 1
Solve the initial value problem 2(sin(t)dydt+cos(t)y)=cos(t)sin^3(t) for 0<t<π0<t<π and y(π/2)=13.y(π/2)=13. Put the problem in standard form....
Solve the initial value problem 2(sin(t)dydt+cos(t)y)=cos(t)sin^3(t) for 0<t<π0<t<π and y(π/2)=13.y(π/2)=13. Put the problem in standard form. Then find the integrating factor, ρ(t)= and finally find y(t)=
Consider the linear system x' = x cos a − y sin a y'= x sin...
Consider the linear system x' = x cos a − y sin a y'= x sin a + y cos a where a is a parameter. Show that as a ranges over [0, π], the equilibrium point at the origin passes through the sequence stable node, stable spiral, center, unstable spiral, unstable node.
Simplify cos(x−π)cos(x-π) to a single trig function using a sum or difference of angles identity
Simplify cos(x−π)cos(x-π) to a single trig function using a sum or difference of angles identity
Deduce Fourier series of sin x, over the interval : 0 < x < π
Deduce Fourier series of sin x, over the interval : 0 < x < π
1. Solve sin(x)= √2/2 over the interval [0,2π). 2. Solve 4cos(x)+1=3 over the interval [0,2π). 3....
1. Solve sin(x)= √2/2 over the interval [0,2π). 2. Solve 4cos(x)+1=3 over the interval [0,2π). 3. Solve cos^2(x)+6=7 over the interval [0,2π). 4. How many solutions are there for the equation 4cos(x)+5=6 over the interval [0,2π).
Write a Matlab script that plots the following functions over 0 ≤ x ≤ 5π: f1(x)...
Write a Matlab script that plots the following functions over 0 ≤ x ≤ 5π: f1(x) = sin2 x − cos x, f2(x) = −0.1 x 3 + 2 x 2 + 10, f3(x) = e −x/π , f4(x) = sin(x) ln(x + 1). The plots should be in four separate frames, but all four frames should be in one figure window. To do this you can use the subplot command to create 2 × 2 subfigures.
Solve the following initial/boundary value problem: ∂u(t,x)/∂t = ∂^2u(t,x)/∂x^2 for t>0, 0<x<π, u(t,0)=u(t,π)=0 for t>0, u(0,x)=sin^2x...
Solve the following initial/boundary value problem: ∂u(t,x)/∂t = ∂^2u(t,x)/∂x^2 for t>0, 0<x<π, u(t,0)=u(t,π)=0 for t>0, u(0,x)=sin^2x for 0≤x≤ π. if you like, you can use/cite the solution of Fourier sine series of sin^2(x) on [0,pi] = 1/4-(1/4)cos(2x) please show all steps and work clearly so I can follow your logic and learn to solve similar ones myself.
Use Euler’s method with h = π/4 to solve y’ = y cos(x) , y(0) =...
Use Euler’s method with h = π/4 to solve y’ = y cos(x) , y(0) = 1 on the interval [0, π] to find y(π)
Identify the surface with parametrization x = 3 cos θ sin φ, y = 3 sin...
Identify the surface with parametrization x = 3 cos θ sin φ, y = 3 sin θ sin φ, z = cos φ where 0 ≤ θ ≤ 2π and 0 ≤ φ ≤ π. Hint: Find an equation of the form F(x, y, z) = 0 for this surface by eliminating θ and φ from the equations above. (b) Calculate a parametrization for the tangent plane to the surface at (θ, φ) = (π/3, π/4).
ADVERTISEMENT
Need Online Homework Help?

Get Answers For Free
Most questions answered within 1 hours.

Ask a Question
ADVERTISEMENT