../_images/book_cover.jpg

This notebook contains an excerpt from the Python Programming and Numerical Methods - A Guide for Engineers and Scientists, the content is also available at Berkeley Python Numerical Methods.

The copyright of the book belongs to Elsevier. We also have this interactive book online for a better learning experience. The code is released under the MIT license. If you find this content useful, please consider supporting the work on Elsevier or Amazon!

< 14.7 Summary and Problems | Contents | 15.1 Eigenvalues and Eigenvectors Problem Statement >

Chapter 15. Eigenvalues and Eigenvectors


Motivation

In this chapter, we are going to introduce you the eigenvalues and eigenvectors which play a very important role in many applications in science and engineering. The prefix eigen- is adopted from the German word eigen for “proper”, “characteristic” and it may sound really abstract and scary at beginning. But when you start to understand them, you will find that they bring in a lot of insights and conveniences into our problems.

They have many applications, to name a few, finding the natural frequencies and mode shapes in dynamics systems, solving differential equations (we will see in later chapters), reducing the dimensions using principal components analysis, getting the principal stresses in the mechanics, and so on. Even the famous Google’s search engine algorithm - PageRank, uses the eigenvalues and eigenvectors to assign scores to the pages and rank them in the search.

This chapter teaches you how to use some common ways to find the eigenvalues and eigenvectors. By the end of this chapter you should understand the power method, the QR method and how to use Python to find them.