Question: In - class exercise: backward substitution Write a function that implements backward substitution. Please follow the requirements below for full credit: Include the function in

In-class exercise: backward substitution
Write a function that implements backward substitution. Please follow the requirements below for full credit:
Include the function in the file
linsolve.py.
The first line of the function definition should be def back_sub(lu_fac, y):
where lu_fac is 2d NumPy array and y is a 1d NumPy array.
lu_fac can be assumed to be the LU decomposition of some matrix, with U in the upper part.
back_sub should return x, a Id NumPy array, that holds the solution to Ux =y.
Include a docstring in the function and use -=.
1
 In-class exercise: backward substitution Write a function that implements backward substitution.

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!