[M] Exercises 7–12 require MATLAB or other

Chapter 5, Problem 11E

(choose chapter or problem)

Get Unlimited Answers
QUESTION:

Problem 11E

[M] Exercises 7–12 require MATLAB or other computational aid. In Exercises 7 and 8, use the power method with the x0 given. List

In Exercises 9 and 10,

Another estimate can be made for an eigenvalue when an approximate eigenvector is available. Observe that if and the Rayleigh quotient

Questions & Answers

QUESTION:

Problem 11E

[M] Exercises 7–12 require MATLAB or other computational aid. In Exercises 7 and 8, use the power method with the x0 given. List

In Exercises 9 and 10,

Another estimate can be made for an eigenvalue when an approximate eigenvector is available. Observe that if and the Rayleigh quotient

ANSWER:

Solution 11E

Step 1

The objective is to find the list of  using power method for the following matrix:

Use MATLAB to find the list.

Code for MATLAB:

function[x,lambda]=powermat(A,x0,nit) x = x0; for n=1:nit xnew = A*x; lambda = norm(xnew,inf)/norm(x,inf); fprintf('n = %4d lambda = %g x = %g %g %g \n', n, lambda, x');

x=xnew; end x=x/norm(x);%normalise x fprintf('n = %4d          normalised          x = %g %g %g\n',        n,         x');

Add to cart


Study Tools You Might Need

Not The Solution You Need? Search for Your Answer Here:

×

Login

Login or Sign up for access to all of our study tools and educational content!

Forgot password?
Register Now

×

Register

Sign up for access to all content on our site!

Or login if you already have an account

×

Reset password

If you have an active account we’ll send you an e-mail for password recovery

Or login if you have your password back