I am having some trouble with a mathematical induction proof.
The question is the following:
Prove by mathematical induction that $\vert z_1 \cdot z_2 \cdot z_3 \cdots z_n \vert = \vert z_1 \vert \vert z_2 \vert \vert z_3 \vert \cdots \vert z_n \vert$
I've read through some mathematical induction material and, as far as I could grasp it, I needed to do the following:
1 - Check if the statement is true for $n = 1$
For $n=1$, $\vert z_1 \vert = \vert z_1 \vert$ (which is true)
2 - Build the case $n = k$ and assume that it is true
$\vert z_1 \cdot z_2 \cdot z_3 \cdots z_k \vert = \vert z_1 \vert \vert z_2 \vert \vert z_3 \vert \cdots \vert z_k \vert$
3 - Consider $n = k+1$ and check its validity (this is where things get unclear)
$\vert z_1 \cdot z_2 \cdot z_3 \cdots z_k \cdot z_{k+1} \vert = \vert z_1 \vert \vert z_2 \vert \vert z_3 \vert \cdots \vert z_k \vert \cdot \vert z_{k+1} \vert$
I could now substitute the previous expression and get
$\vert z_1 \cdot z_2 \cdot z_3 \cdots z_k \cdot z_{k+1} \vert = \vert z_1 \cdot z_2 \cdot z_3 \cdots z_k \vert \cdot \vert z_{k+1} \vert$
But I'm not sure this is the way to go. Any hint/help is highly appreciated.
You are missing a piece of information to prove this. Let $$z = x+iy$$ $$|z| = \sqrt{x^2+y^2}$$ so $$|z_1 * z_2| = |x_1 x_2 - y_1 y_2 + i(x_1y_2 + x_2 y_1)|$$ $$ = \sqrt{(x_1 x_2 - y_1 y_2)^2 + (x_1y_2 + x_2 y_1)^2}$$ $$ = \sqrt{(x_1 x_2)^2 - 2x_1 x_2 y_1 y_2 + (y_1 y_2)^2 + (x_1 y_2)^2 + 2x_1x_2y_1y_2 + (x_2 y_1)^2}$$ $$ = \sqrt{(x_1 x_2)^2 + (x_1 y_2)^2 + (x_2 y_1)^2 + (y_1 y_2)^2}$$ $$ = \sqrt{(x_1^2 + y_1^2)(x_2^2 + y_2^2)} = \sqrt{(x_1^2 + y_1^2)}\sqrt{(x_2^2 + y_2^2)}$$ $$ = |z_1||z_2|$$ and your result follows from the fact that the complex numbers are closed under multiplication, i.e. $$|z_1 * z_2 * \ldots * z_k * z_{k+1}| = |(z_1 * z_2 * \ldots * z_k) * z_{k+1}| = |z_1 * z_2 * \ldots * z_k| * |z_{k+1}|$$ $$= |z_1| * |z_2| * \ldots * |z_{k+1}|$$ by the inductive hypothesis. Disregard the statement I made about induction with complex numbers before.