Rays in the complex numbers #
This file links the definition SameRay ℝ x y
with the equality of arguments of complex numbers,
the usual way this is considered.
Main statements #
Complex.sameRay_iff
: Two complex numbers are on the same ray iff one of them is zero, or they have the same argument.Complex.abs_add_eq/Complex.abs_sub_eq
: If two non zero complex numbers have the same argument, then the triangle inequality is an equality.
theorem
Complex.sameRay_iff
{x : ℂ}
{y : ℂ}
:
SameRay ℝ x y ↔ x = 0 ∨ y = 0 ∨ Complex.arg x = Complex.arg y