\ddots{a}
The \ddots command in LaTeX is used to produce diagonal ellipsis, which is a series of three dots arranged diagonally. This symbol is often used in mathematical expressions to indicate a continuation of a pattern or sequence, especially in matrices or series.
Indicating continuation in a matrix
\begin{bmatrix} a_{11} & a_{12} & \cdots & a_{1n} \\ a_{21} & a_{22} & \cdots & a_{2n} \\ \vdots & \vdots & \ddots & \vdots \\ a_{m1} & a_{m2} & \cdots & a_{mn} \end{bmatrix}
Representing an infinite series
1 + q + q^2 + \ddots
Diagonal ellipsis in a transformation matrix
T = \begin{bmatrix} t_{11} & t_{12} & \cdots & t_{1n} \\ t_{21} & t_{22} & \cdots & t_{2n} \\ \vdots & \vdots & \ddots & \vdots \\ t_{n1} & t_{n2} & \cdots & t_{nn} \end{bmatrix}