I have looked this up on several sites but they confused me because some of the given information was wrong / unclear / contradicting whatever.
I hope you can tell me all / most important ways to calculate the rank of a matrix.
As example, I take the matrix
$$A = \begin{pmatrix} 1 & 2 & 3\\ 0 & 5 & 4\\ 0 & 10& 2 \end{pmatrix}$$
Now several sites included that info so it must be true: If, we are looking at this example, there is no line with zeroes only, the rank of this matrix will be $3$. (?)
Here is the problem. It will cost time to form this matrix to see if there will be lines with zeroes only. For this I can use Gaussian Elimination.
I have tested it with that Gauss and I couldn't get a line with zeroes only, so I conclude that this matrix $rank(A)=3$.
This however seems very inefficient way, I hope you can tell me better ways?