# Arup Guha
# 4/13/2020
# Example of matrix exponentiation using numpy

import numpy

# Hard-code our matrix.
mat = numpy.array([[1,1],[1,0]])

# Raise it to the 10th power.
mat10 = numpy.linalg.matrix_power(mat,10)

# Print it.
print(mat10)
