Question

8.19 The displacement of a structure is defined by the following equation for a damped oscillation: -kr where k 0.7 and ω 4. (a) Use the graphical method to make an initial estimate of the time required for the displacement to decrease to 3.5. (b) Use the Newton-Raphson method to determine the root to By 0.01%. (c) Use the secant method to determine the root to ε,-0.01%.

0 0
Add a comment Improve this question Transcribed image text
Answer #1

ANS::

as for given data

a)

cos 4t 0.27, 3.5 y = 3.5 10

b)

% Newton Raphson Method
 clear all
 close all
 clc
 % Change here for different functions
 f=@(x) 9e^(-.7t)cos(4t)
 %this is the derivative of the above function
 df=@(x) e^(-.7t)*(-36sin(4t)-6.3*(cos(4t)))
 % Change lower limit 'a' and upper limit 'b'
 a=0; b=1;
 x=a;
 for i= .01
 x1=x-(f(x)/df(x));
 x=x1;
 end
 sol=x;
 fprintf('Approximate Root is %.15f',sol)
 a=0;b=1;
 x=a;
 er(5)=0;
 for i=1:1:5
 x1=x-(f(x)/df(x));
 x=x1;
 er(i)=x1-sol;
 end
 plot(er)
 xlabel('Number of iterations')
 ylabel('Error')
 title('Error Vs. Number of iterations')

c)

if you have any doubts pls comments bellow...pls rate positive rateings...

thank you...

Add a comment
Know the answer?
Add Answer to:
8.19 The displacement of a structure is defined by the following equation for a damped oscillation:...
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. Our experts will answer your question WITHIN MINUTES for Free.
Similar Homework Help Questions
  • 6.5 Employ the Newton-Raphson method to determine a real root for 4x20.5 using initial guesses of...

    6.5 Employ the Newton-Raphson method to determine a real root for 4x20.5 using initial guesses of (a) 4.52 f(x) 15.5x Pick the best numerical technique, justify your choice and then use that technique to determine the root. Note that it is known that for positive initial guesses, all techniques except fixed-point iteration will eventually converge. Perform iterations until the approximate relative error falls below 2 %. If you use a bracket- ing method, use initial guesses of x 0 and...

  • Use Matlab and provide the code Consider the equation for the forced oscillation of a damped...

    Use Matlab and provide the code Consider the equation for the forced oscillation of a damped system with hardening spring given by (cf. Problem 14.27). Solve this equation numerically in MatlabB with F( given by the step function excitation and ramp excitation, m 1, c= 0.5, k= 1, and μ= 0.01, 0.1, 1. Compare with the results obtained when μ-0.

  • Q2. Determine the positive roots of the simultaneous nonlinear equations: yx2 y 2 cosx Use a...

    Q2. Determine the positive roots of the simultaneous nonlinear equations: yx2 y 2 cosx Use a graphical approach to obtain your initial guesses. Plot both the equations in one plot area. You may have two sets of solutions. Considering one of the solutions and selecting initial guesses close to that solution (you can take x = 0.7 and yo = 1.5), use Newton-Raphson Method to solve the system of equations, shown above.e, 0.01 % Q2. Determine the positive roots of...

  • (a) Given the following function f(x) below. Sketch the graph of the following function A1. f () 3 1, 12 5 marks (b) Ve...

    (a) Given the following function f(x) below. Sketch the graph of the following function A1. f () 3 1, 12 5 marks (b) Verify from the graph that the interval endpoints at zo and zi have opposite signs. Use the bisection method to estimate the root (to 4 decimal places) of the equation 5 marks] (c) Use the secant method to estimate the root (to 4 decimal places) of the equation 6 marks that lies between the endpoints given. (Perform...

  • Matlab only What is the function value at the estimated root after one iteration of the...

    Matlab only What is the function value at the estimated root after one iteration of the bisection method for the root finding equation: f(x) = x^3 -x -11 with xl = -4 and xu = 2.5? Select one: a.-0.7500 x O b.-3.2500 o co d. -10.6719 Which of the following statements is false? All open methods for root finding: Select one: a. Is sensitive to the shape of the function X b. Require two initial guesses to begin the algorithm...

  • i need the answer to be on a MatLab window 1. Consider the following equation, which...

    i need the answer to be on a MatLab window 1. Consider the following equation, which represents the concentration (c, in mg/ml) of a drug in the bloodstream over time (t, in seconds). Assume we are interested in a concentration of c2 mg/ml C3te-0.4t A. Estimate the times at which the concentration is 2 mg/ml using a graphical method Be sure to show your plot(s). Hint: There are 2 real solutions B. Use MATLAB to apply the secant method (e.g....

  • Need solution for question 5.6 using python? tation to within e, 5.11 Determine the real root...

    Need solution for question 5.6 using python? tation to within e, 5.11 Determine the real root of x 80: (a) analytically and (b) with the false-position method to within e, = 2.5%. Use initial guesses of 2.0 and 5.0. Compute the estimated error Ea and the true error after each 1.0% teration 5.2 Determine the real root of (x) 5r - 5x2 + 6r -2 (a) Graphically (b) Using bisection to locate the root. Employ initial guesses of 5.12 Given...

  • MATLAB QUESTION please include function codes inputed Problem 3 Determine the root (highest positive) of: F(x)=...

    MATLAB QUESTION please include function codes inputed Problem 3 Determine the root (highest positive) of: F(x)= 0.95x.^3-5.9x.^2+10.9x-6; Note: Remember to compute the error Epsilon-a after each iteration. Use epsilon_$=0.01%. Part A Perform (hand calculation) 3 iterations of Newton's Raphson method to solve the equation. Use an initial guess of x0=3.5. Part B Write your own Matlab function to validate your results. Part C Compare the results of question 1 to the results of question 2, what is your conclusion ?

  • (b) . Write the k-th step of the trapezoidal method as a root-finding problem Ğ = is Y+1 where the unknown (e)Find the Jacobian matrix of the vector function from the previous part. (dWrite a funct...

    (b) . Write the k-th step of the trapezoidal method as a root-finding problem Ğ = is Y+1 where the unknown (e)Find the Jacobian matrix of the vector function from the previous part. (dWrite a function in its own file with definition [Y] dampedPendulum(L, T) function alpha, beta, d, h, that approximates the solution to the equivalent system you derived in part (a) with L: the length of the pendulum string alpha: the initial displacement beta: the initial velocity d:...

  • please answer all prelab questions, 1-4. This is the prelab manual, just in case you need...

    please answer all prelab questions, 1-4. This is the prelab manual, just in case you need background information to answer the questions. The prelab questions are in the 3rd photo. this where we put in the answers, just to give you an idea. Lab Manual Lab 9: Simple Harmonic Oscillation Before the lab, read the theory in Sections 1-3 and answer questions on Pre-lab Submit your Pre-lab at the beginning of the lab. During the lab, read Section 4 and...

ADVERTISEMENT
Free Homework Help App
Download From Google Play
Scan Your Homework
to Get Instant Free Answers
Need Online Homework Help?
Ask a Question
Get Answers For Free
Most questions answered within 3 hours.
ADVERTISEMENT
ADVERTISEMENT
ADVERTISEMENT