Skip to content

Commit

Permalink
[Usa1996Q1] add problem statement
Browse files Browse the repository at this point in the history
  • Loading branch information
dwrensha committed Sep 7, 2023
1 parent 9cb22e4 commit 6b849f4
Show file tree
Hide file tree
Showing 2 changed files with 25 additions and 0 deletions.
1 change: 1 addition & 0 deletions MathPuzzles.lean
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@ import MathPuzzles.Poland1998Q4
import MathPuzzles.Romania1998Q12
import MathPuzzles.Russia1998Q42
import MathPuzzles.UpperLowerContinuous
import MathPuzzles.Usa1996Q1
import MathPuzzles.Usa1998Q1
import MathPuzzles.Usa1998Q3
import MathPuzzles.Usa1998Q4
Expand Down
24 changes: 24 additions & 0 deletions MathPuzzles/Usa1996Q1.lean
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
/-
Copyright (c) 2023 David Renshaw. All rights reserved.
Released under Apache 2.0 license as described in the file LICENSE.
Authors: David Renshaw
-/

import Mathlib.Data.Real.Basic
import Mathlib.Analysis.SpecialFunctions.Trigonometric.Basic

/-!
# USA Mathematical Olympiad 1996, Problem 1
Prove that the average of the numbers n⬝sin(n π / 180)
for n ∈ {2,4,6,…,180} is 1/tan(π/180).
-/

namespace Usa1996Q1
open BigOperators

theorem usa1996Q1 :
(1 / (n:ℝ)) * ∑ n in Finset.range 90, (2 * (n+1)) * Real.sin ((2 * (n+1)) * Real.pi / 180)
= 1 / Real.tan (Real.pi / 180) := by
sorry

0 comments on commit 6b849f4

Please sign in to comment.