Skip to content

Commit 6adbae9

Browse files
Merge pull request #246 from eric-wieser/patch-6
lean: remove incorrect type annotation in putnam_1996_a2.lean
2 parents a43321f + 3c4593c commit 6adbae9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lean4/src/putnam_1996_a2.lean

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,5 +13,5 @@ theorem putnam_1996_a2
1313
(hC1 : C1 = sphere O1 1)
1414
(hC2 : C2 = sphere O2 3)
1515
(hO1O2 : dist O1 O2 = 10)
16-
: {M : EuclideanSpace ℝ (Fin 2) | ∃ X Y : Fin 2 → ℝ, X ∈ C1 ∧ Y ∈ C2 ∧ M = midpoint ℝ X Y} = putnam_1996_a2_solution O1 O2 :=
16+
: {M : EuclideanSpace ℝ (Fin 2) | ∃ X Y, X ∈ C1 ∧ Y ∈ C2 ∧ M = midpoint ℝ X Y} = putnam_1996_a2_solution O1 O2 :=
1717
sorry

0 commit comments

Comments
 (0)