In [5]: #hidden tests for problem 3.1 are within this cell
3.2 [4 pt] Given the vectors, u = [2, -10, 4], v = [3, 4, 15], and w = [-2, 1, x], find the value of x such that they are linearly dependent. If instead, the
vectors were u = [2, z, 4], v = [3, 4, 15], and w = [-2, 1, 2], find the value of z such they are linearly dependent. Store the values of x and z in the
variables x and z.
In []: x = None
z = None
# YOUR CODE HERE
raise NotImplementedError()
In []: #hidden tests about the value of x in problem 3.2 are within this cell
In []: #hidden tests about the value of z in problem 3.2 are within this cell
Part 4: Eigenvalues/ Eigenvectors