Given the vector
a=(5,6,7,13)
find all the vectors vertical to it.
Let's say that the vector
c=(x,y,z,w)
is the vector we want to find. Then,
a c = 0
<=> 5x + 6y + 7z + 13w = 0
What I can do in addition to this to give the answer? Could you help, please?
By "vertical", I think you mean orthogonal.
You have obtained the answer already, you just have to write it in set notation:
$\{(x,y,z,w)^T\in\mathbb{R}^4\mid5x + 6y + 7z + 13w = 0\}$
If you want a particular vector, you can set arbitrary values for $x,y,z$ and then solve for $w$.
For instance, you can choose $x=0,y=0,z=1$. This forces $7+13w=0$, so $w=-7/13$.
So a particular orthogonal vector is $(0,0,1,-7/13)$.