Summary of Matrices

2023-11-10

In class today I we went over the Matrices chapter.

You can see a recording of the class here

Here is the notebook I used in class: matrices.ipynb

We started with the quiz (won by Tom who has 1 win):

5 people have a single win:

After this we covered a couple of great questions:

Following this we spent some time looking at the coursework like question from the handout. We ended briefly by looking at the fact that we can constrain the domain of solveset. For example:

>>> import sympy as sym
>>> x = sym.Symbol("x")
>>> equation = sym.Eq(x ** 2, -1)
>>> sym.solveset(equation, x, domain=sym.S.Reals)
EmptySet