Skip to content

Commit 30831db

Browse files
committed
Fix long comment
1 parent 0618bff commit 30831db

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

Mathlib/Analysis/SpecialFunctions/Trigonometric/Chebyshev/ChebyshevGauss.lean

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,8 @@ private theorem sum_exp {n : ℕ} {k : ℤ} (hn : n ≠ 0) (hk : ¬ (2 * n : ℤ
6363
show (n * (k / n * π * I)) = k * (π * I) by field [show (n : ℂ) ≠ 0 by aesop],
6464
Complex.exp_int_mul, Complex.exp_pi_mul_I]
6565

66-
/-- Weighted sum of `P (x)` where `x` goes over `cos ((2 * i + 1) / (2 * n) * π)` for `0 ≤ i < n`. -/
66+
/-- Weighted sum of `P (x)` where `x` goes over `cos ((2 * i + 1) / (2 * n) * π)` for
67+
`0 ≤ i < n`. -/
6768
noncomputable def sumZeroes (n : ℕ) (P : ℝ[X]) : ℝ :=
6869
(π / n) * ∑ i ∈ range n, P.eval (cos ((2 * i + 1) / (2 * n) * π))
6970

0 commit comments

Comments
 (0)