Sorry if this is really basic but for some reason it's giving me trouble. If $z,w,t \in \mathbb{C}$, do there exist real numbers $a,b,c \in \mathbb{R},$ not all zero, such that $$ az+bw+ct = 0 $$ I would imagine the answer is no generally because you can't necessarily eliminate the imaginary parts of the numbers. Is there any way to write this out formally or by some argument I'm not seeing? Thanks in advance for any hints!
-
Well $a=b=c=0$ always works. – CyclotomicField Feb 13 '22 at 23:27
-
Hint: if you write $z,w,t$ in $ a+bi$ type, we need two equations, but we can take three variables $a,b,c$ – JetfiRex Feb 13 '22 at 23:29
-
5You can always interpret $z,w,t$ as elements of $\mathbb R^2$. – Giuseppe Negro Feb 13 '22 at 23:29
-
But I'm looking for a non-trivial solution @CyclotomicField – Irving Rabin Feb 14 '22 at 00:29
2 Answers
Here, $\mathbb{C}$ can be thought of as the vector space $\mathbb{R}^2,$ and since $a,b,c$ are in $\mathbb{R},$ we can say that our field for our vector space is $\mathbb{R}$. So the question is essentially, "prove that $n+1$ vectors in the vector space $\mathbb{R}^n$ over $\mathbb{R}$ are linearly dependent", which is just a famous/standard result from linear algebra.
- 20,052
-
If you're going to use results from linear algebra, then just say "since $z$, $w$ and $t$ are tree vectors in $\Bbb R^2$ they're linearly dependent and we are done". – jjagmath Feb 13 '22 at 23:52
-
-
Oh so because $\dim(\mathbb{C}) = 2$ and there are three vectors they are necessarily linearly dependent? I guess the issue was I was thinking of it as $\mathbb{C}$ over $\mathbb{R}$ but I suppose everything is going to be fine because the reals are a subring of $\mathbb{C}$. – Irving Rabin Feb 14 '22 at 00:31
-
2@AndreyYanyuk Careful. The dimension of $\mathbb{C}$ depends on the base field. Over $\mathbb{R}$ it's two, over $\mathbb{C}$ it's one. – CyclotomicField Feb 14 '22 at 00:40
-
-
1@AndreyYanyuk no problem. This will be important later when you study Galois theory and field extensions over $\mathbb{Q}$. Say for example we add two algebraic numbers $\sqrt{2}$ and $\sqrt{3}$ and all linear combinations of them to make a subfield of $\mathbb{R}$, which includes $\sqrt{6}$ because $\sqrt{2} \sqrt{3}=\sqrt{6}$. So all elements in this field will be of the form $a\sqrt{2}+b\sqrt{3}+c\sqrt{6}+d$, which is a four dimensional space over $\mathbb{Q}$. – CyclotomicField Feb 14 '22 at 16:34
Let $z = x_1 + iy_1, w = x_2 + iy_2, t = x_3 + iy_3$. Thus the equation $az+bw+ct = 0 \implies ax_1+bx_2+cx_3=0, ay_1+by_2+cy_3 = 0$. Thus $(a,b,c)$ is the solution of the system of linear equations $AX = 0$ where $A = \begin{pmatrix} x_1 & x_2 & x_3 \\ y_1 & y_2 & y_3 \end{pmatrix}, X = \begin{pmatrix} a \\ b \\ c \end{pmatrix}, 0 = \begin{pmatrix} 0 \\ 0 \end{pmatrix}$. The columns of $A$ are linearly dependent because there are $3$ vectors and there are $2$ entries in each vector. This means that the equation $AX = 0$ must have a non-trivial solution, and this means that the answer is "yes" to the original question.
- 6,390