Concept Flow - QR decomposition
Start with matrix A
Apply QR decomposition
Get Q (orthogonal matrix)
Get R (upper triangular matrix)
Verify A = Q * R
End
We start with a matrix A, then split it into Q and R matrices using QR decomposition, and finally verify that multiplying Q and R returns the original matrix.