Question

In: Electrical Engineering

Plot -3x³+ 25sin(3.14x/4-15.5/4) + 7.43 for -2 < x < 2.5 to determine its roots ....

Plot -3x³+ 25sin(3.14x/4-15.5/4) + 7.43 for -2 < x < 2.5 to determine its roots . The number of roots is: using MATLAB

Solutions

Expert Solution

MATLAB CODE (command window):

clear all
clc
% Solving Using MATLAB:


syms x % First we need to define symbolic toolbox for variable x
f(x)=(-3*x^3)+25*sin(3.14*0.25*x-0.25*15.5)+7.43


% Now plotting for range -2 to 2.5
ezplot(f,[-2 2.5])
grid on


% Now as we can clearly observe the plot
% the zero crossing is at x = 1.06 , so
% this value of x is a root of f(x) expression.


% Hence there will be one root for range -2 to 2.5 and i.e at x = 1.06

% ALSO: Finding overall roots
Fx_roots=solve(f,x)

MATLAB Screenshots:


Related Solutions

Numerical Analysis: Apply Newton’s method to find the roots of polynomial P(x) = x^3 + 3x^2...
Numerical Analysis: Apply Newton’s method to find the roots of polynomial P(x) = x^3 + 3x^2 − 2x + 1. Find the convergence rate.
1) Let P(x) = 3x(x − 1)3 (3x + 4)2 . List the zeros of P...
1) Let P(x) = 3x(x − 1)3 (3x + 4)2 . List the zeros of P and their corresponding multiplicities. 2) Let f(x) = −18(x + 3)2 (x − 2)3 (x + 71)5 . Describe the end behavior of f by filling in the blank below. As x → −∞, f(x) → . As x → ∞, f(x) → . 3) The polynomial of degree 4, P(x) has a root of multiplicity 2 at x = 3 and roots of...
What is the partial fraction decomposition of 5x^2/((x+1)(x^2+3x+2)(x^2+4))
What is the partial fraction decomposition of 5x^2/((x+1)(x^2+3x+2)(x^2+4))
2. For the curve y = 3x / x^2-1 determine each of the following and use...
2. For the curve y = 3x / x^2-1 determine each of the following and use all of the information to draw its graph and notate the information on it. (a) Find the domain of the function, as well as any x or y intercepts and symmetry. (b) Find all vertical (2 of them) and horizontal (1) asymptotes. Support your work with limits. (c) Use the first derivative to determine the maximums, minimums and intervals of increase/decrease of f(x). (d)...
For the function f(x)=x^4-3x^3+x^2+4x+21 Use long division to determine whether x+3 is a factor of f(x)....
For the function f(x)=x^4-3x^3+x^2+4x+21 Use long division to determine whether x+3 is a factor of f(x). Is x+3 a factor of f(x)?
Solve for x x^4 + 2x^3 + 2x^2 + 3x + 1 = 0
Solve for x x^4 + 2x^3 + 2x^2 + 3x + 1 = 0
For the following exercises, use the given information about the polynomial..Degree 4. Roots of multiplicity 2 at x = 1/2 and roots of multiplicity 1 at x = 6 and x = −2. y-intercept at (0,18).
For the following exercises, use the given information about the polynomial graph to write the equation.Degree 4. Roots of multiplicity 2 at x = 1/2 and roots of multiplicity 1 at x = 6 and x = −2. y-intercept at (0,18).  
dervive the Frobenius solution to 4(x^2)*y"(x)+(3x+1)y(x)=0
dervive the Frobenius solution to 4(x^2)*y"(x)+(3x+1)y(x)=0
The absolute maximum values of f(x)=x^3-3x^2+12 on the closed interval [−2, 4] occurs at x =
The absolute maximum values of f(x)=x^3-3x^2+12 on the closed interval [−2, 4] occurs at x =
Consider f(x) = 2 + 3x^2 − x^3
Consider f(x) = 2 + 3x2 − x3 a) Find local max and min values b) Find intervals of concavity and infection points
ADVERTISEMENT
ADVERTISEMENT
ADVERTISEMENT