Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

A = np . array ( [ [ 1 , 4 ] , [ 1 , - 1 ] ] ) vals = np .

A = np.array([[1,4],[1,-1]])
vals = np.linalg.eigvals(A)
vecs = np.linalg.eig(A)
a11= vals[0]
a12= vecs[0][1]
a21= vecs[1][1]
a22= vals[1]
matrix_answer = np.array([[a11,a12],[a21,a22]])
print(matrix_answer)

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

More Books

Students also viewed these Databases questions

Question

How is a CFD contract terminated?

Answered: 1 week ago

Question

In bargaining, does it really matter who makes the first offer?

Answered: 1 week ago