Forward substitution: L has ones on the diagonal and two below the diagonal. The right hand side is three then eleven. The first unknown is three, and twice it plus the second unknown is eleven. What is the second unknown?
Answer: ______________
A equal [[2, 1], [4, 3]] factors without pivoting as L times U. What is U?
A with rows [2, 1] and [4, 3] factors without pivoting as L times U. What is U?
Partial pivoting is only needed when a pivot is exactly zero.
Circle one: True False
The leading cost of LU factorisation is n cubed over three operations. For n equal thirty, what is that cost?
Answer: ______________
Why pivot even when no pivot is exactly zero?
With A equal L times U, which order solves A times x equal b?
Once A is factored, each extra right hand side costs only order n squared operations. True or false?
Circle one: True False
Once A is factored, each extra right hand side costs only order n squared operations.
Circle one: True False
A equal [[0, 1], [1, 0]]. What happens if you eliminate without pivoting?