Direct Methods for the solution of Linear Systems
-
Given a matrix , the vector , and a value for , write a script that:
- Computes the right-hand side of the linear system (test problem).
- Computes the condition number in 2-norm of the matrix . It is ill-conditioned? What if we use the -norm instead of the 2-norm?
- Solves the linear system with the function
np.linalg.solve()
. - Computes the relative error between the computed solution and the true solution .
- Plot a graph (using
matplotlib.pyplot
) with the relative errors as a function of and (in a different window) the condition number in 2-norm and in -norm, as a function of .
-
Test the program above with the following choices of :
- A random matrix (created with the function
np.random.rand()
) with size varying in . - The Vandermonde matrix (
np.vander
) with dimension with respect to the vector . - The Hilbert matrix (
scipy.linalg.hilbert
) with dimension .
- A random matrix (created with the function
Floating point arithmetic
-
The Machine epsilon is defined as the smallest floating point number such that it holds: . Compute . Tips: use a
while
structure. -
Letβs consider the sequence . It is well known that: , where is the Nepero number. Choose diο¬erent values for , compute and compare it to the real value of the Nepero number. What happens if you choose a large value of ?
-
Letβs consider the matrices:
Compute the rank of and and their eigenvalues. Are and full-rank matrices? Can you infer some relationship between the values of the eigenvalues and the full-rank condition? Please, corroborate your deduction with other examples. Tips: Please, have a look at np.linalg
.
Other assignments: