dharshan7200 / EIGENVALUES-AND-EIGENVECTORS

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

EIGENVALUES-AND-EIGENVECTORS

Aim:

To write a python program to find the Eigenvalues and Eigen Vectors

Equipment’s required:

  1. Hardware – PCs
  2. Anaconda – Python 3.7 Installation / Moodle-Code Runner

Algorithm:

Step1 :

Importing numpy as np

Step 2:

Assigning variable and storing the matrix values

Step 3:

Using the np.linalg.eig(), we get two results (first is eigenvalue and second is eigenvector) of the given matrix.

Step 4:

ENd the program

Program:

#Program to find the eigen values and eigen vectors.
#Developed by: DHARSHAN D
#RegisterNumber:23001663

import numpy as np
A=[[4,2],[2,4]]
values,vectors=np.linalg.eig(A)
print("Eigen values are" ,values,"and Eigen Vectors are",vectors)

Output:

OUTPUT

Result:

Thus the Eigenvalue and Eigenvector is successfully solved using python program

About

License:BSD 3-Clause "New" or "Revised" License