I was asked to prove the following statement:
let $A$ be an $n$ by $n$ matrix with real entries such that $\forall k \in \mathbb N, k\leq n$: $$\sum_{i \neq k} |A_{i,k}| < |A_{kk}|$$
Show that if we were to do gauss elimination (or LU factorization) of $A$, then there will be no need for row changes, no need for partial pivoting.
I don't see why this is true, I'd appreciate a hint in the right direction. Maybe I should take a general $n$ by $n$ matrix that is diagonly dominant, try to $LU$ factor it and see that I don't need row changes? is this the way?
That's because when row pivoting happens, there is a hierarchy, and we swap rows, so that the new row's diagonal entry is largest, but for a diagonally dominant matrix, the diagonal is always largest, so no pivoting/ row swapping is needed, just subtracting rows from other rows etc.