Concept:
A real symmetric matrix satisfies:
\[
A^T = A
\]
This means the entries are symmetric about the main diagonal.
Step 1: Count diagonal elements
There are \( n \) diagonal elements:
\[
a_{11}, a_{22}, \dots, a_{nn}
\]
Step 2: Count off-diagonal elements
For \( i \neq j \), we have:
\[
a_{ij} = a_{ji}
\]
So each pair contributes only one independent element.
Number of such pairs:
\[
\frac{n(n-1)}{2}
\]
Step 3: Total independent elements
\[
n + \frac{n(n-1)}{2} = \frac{n(n+1)}{2}
\]
Hence, the dimension is:
\[
\frac{n(n+1)}{2}
\]