Documentation

Mathlib.Analysis.SpecialFunctions.Complex.Arg

The argument of a complex number. #

We define arg : ℂ → ℝ, returning a real number in the range (-π, π], such that for x ≠ 0, sin (arg x) = x.im / x.abs and cos (arg x) = x.re / x.abs, while arg 0 defaults to 0

noncomputable def Complex.arg (x : ) :

arg returns values in the range (-π, π], such that for x ≠ 0, sin (arg x) = x.im / x.abs and cos (arg x) = x.re / x.abs, arg 0 defaults to 0

Equations
Instances For
    theorem Complex.cos_arg {x : } (hx : x 0) :
    @[simp]
    theorem Complex.abs_mul_cos_add_sin_mul_I (x : ) :
    (abs x) * (cos x.arg + sin x.arg * I) = x
    @[simp]
    @[simp]
    theorem Complex.abs_eq_one_iff (z : ) :
    abs z = 1 ∃ (θ : ), exp (θ * I) = z
    theorem Complex.arg_mul_cos_add_sin_mul_I {r : } (hr : 0 < r) {θ : } (hθ : θ Set.Ioc (-Real.pi) Real.pi) :
    (r * (cos θ + sin θ * I)).arg = θ
    @[simp]
    theorem Complex.arg_zero :
    arg 0 = 0
    theorem Complex.ext_abs_arg {x y : } (h₁ : abs x = abs y) (h₂ : x.arg = y.arg) :
    x = y
    @[simp]
    @[simp]
    theorem Complex.arg_neg_iff {z : } :
    theorem Complex.arg_real_mul (x : ) {r : } (hr : 0 < r) :
    theorem Complex.arg_mul_real {r : } (hr : 0 < r) (x : ) :
    (x * r).arg = x.arg
    theorem Complex.arg_eq_arg_iff {x y : } (hx : x 0) (hy : y 0) :
    x.arg = y.arg (abs y) / (abs x) * x = y
    @[simp]
    theorem Complex.arg_one :
    arg 1 = 0
    @[simp]
    theorem Complex.arg_div_self (x : ) :
    (x / x).arg = 0

    This holds true for all x : ℂ because of the junk values 0 / 0 = 0 and arg 0 = 0.

    @[simp]
    @[simp]
    theorem Complex.tan_arg (x : ) :
    @[simp]
    @[simp]
    theorem Complex.arg_of_re_neg_of_im_neg {x : } (hx_re : x.re < 0) (hx_im : x.im < 0) :
    @[simp]
    theorem Complex.arg_mul_cos_add_sin_mul_I_sub {r : } (hr : 0 < r) (θ : ) :
    (r * (cos θ + sin θ * I)).arg - θ = 2 * Real.pi * (Real.pi - θ) / (2 * Real.pi)
    theorem Complex.arg_mul_coe_angle {x y : } (hx : x 0) (hy : y 0) :
    theorem Complex.arg_div_coe_angle {x y : } (hx : x 0) (hy : y 0) :
    theorem Complex.arg_mul {x y : } (hx₀ : x 0) (hy₀ : y 0) :

    Alias of the reverse direction of Complex.arg_mul_eq_add_arg_iff.

    An alternative description of the slit plane as consisting of nonzero complex numbers whose argument is not π.

    theorem Complex.arg_eq_nhds_of_re_neg_of_im_pos {x : } (hx_re : x.re < 0) (hx_im : 0 < x.im) :
    theorem Complex.arg_eq_nhds_of_re_neg_of_im_neg {x : } (hx_re : x.re < 0) (hx_im : x.im < 0) :