Scientific Computing Using Python - PHYS:4905 - Fall 2018
Homework #14
Due 11/27/2018


Name _______________________________________________

The answers to these questions must be hand written on paper and all work must be shown to receive full credit.


1. (15) Find the eigenvalues of the matrix below, b* is the complex conjugate of b.  Are the eigenvalues always real?  Note that this is a generalization of a symmetric matrix called a Hermitian matrix.  In quantum mechanics, linear operators that correspond to physical observables are Hermitian operators.


M=(abb*d)M = \begin{pmatrix} a & b \\ b^* & d \\ \end{pmatrix}


2. Let L be the linear transformation L33ℝ^3 → ℝ^3 given by

L(xyz)=(2x+y+3zx+2y+z3x+y+2z)L \, \begin{pmatrix} x \\ y \\ z \\ \end{pmatrix} = \begin{pmatrix} 2x+y+3z \\ x + 2y +z \\ 3x + y +2z \end{pmatrix}

A. (6) Write L as a matrix M in the standard basis and find the eigenvalues of L.
B. (20) Find the eigenvectors of L in the standard basis.
C. (3) Calculate the dot product of your two eigenvectors.


3. (25) A discrete dynamical system, can be described by a vector vn that gives the state of the system at a particular time tn = n Δt,   and a matrix that describes how the system evolves in discrete time jumps of Δt,

vn+1=Mvnv_{n+1} = M v_n
Fixed points are states of the system that do not evolve with time, i.e. if vn is a fixed point, then vn+1 = vnvn+2 = vn+1 , ...

Invariant curves are states of the system that evolve along the same direction.  If vn is on an invariant curve, then vn+1 = an vnvn+2 = an+1 vn+1 , ... where the an's are scalars.

Consider a discrete dynamical system described by the matrix  M=(3223)M = \begin{pmatrix} 3 & 2 \\ 2 & 3 \end{pmatrix}.  Find any fixed points and invariant curves of the dynamical system.