-
Notifications
You must be signed in to change notification settings - Fork 55
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Changed the name of right angle from
IsRight
to IsRt
And add definitions and basic properties of right triangles and obtuse triangles
- Loading branch information
Showing
11 changed files
with
178 additions
and
112 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
25 changes: 25 additions & 0 deletions
25
EuclideanGeometry/Foundation/Axiom/Triangle/Similarity_trash.lean
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
import EuclideanGeometry.Foundation.Axiom.Triangle.Similarity | ||
|
||
noncomputable section | ||
|
||
namespace EuclidGeom | ||
|
||
variable {P : Type*} [EuclideanPlane P] | ||
|
||
open TriangleND AngValue | ||
|
||
theorem sim_of_AA' (tr₁ tr₂ : TriangleND P) (h₂ : tr₁.angle₂.dvalue = tr₂.angle₂.dvalue) (h₃ : tr₁.angle₃.value = tr₂.angle₃.value) : tr₁ ∼ tr₂ := sorry | ||
|
||
theorem sim_of_AA_of_isRt (tr₁ tr₂ : TriangleND P) (h₁ : tr₁.IsRt) (h₂ : tr₂.IsRt) (h : tr₁.angle₂.dvalue = tr₂.angle₂.dvalue) : tr₁ ∼ tr₂ := by | ||
refine' IsSim.sim_iff_perm_sim.mpr (IsSim.sim_iff_perm_sim.mpr (sim_of_AA' _ _ _ _)) | ||
· exact (isRt_iff_coe.mp h₁).trans (isRt_iff_coe.mp h₂).symm | ||
· exact eq_of_isAcu_of_coe_eq (angle₂_isAcu_of_isRt h₁) (angle₂_isAcu_of_isRt h₂) h | ||
|
||
theorem asim_of_AA' (tr₁ tr₂ : TriangleND P) (h₂ : tr₁.angle₂.dvalue = - tr₂.angle₂.dvalue) (h₃ : tr₁.angle₃.value = - tr₂.angle₃.value) : tr₁ ∼ₐ tr₂ := sorry | ||
|
||
theorem asim_of_AA_of_isRt (tr₁ tr₂ : TriangleND P) (h₁ : tr₁.IsRt) (h₂ : tr₂.IsRt) (h : tr₁.angle₂.dvalue = - tr₂.angle₂.dvalue) : tr₁ ∼ₐ tr₂ := by | ||
refine' IsASim.asim_iff_perm_asim.mpr (IsASim.asim_iff_perm_asim.mpr (asim_of_AA' _ _ _ _)) | ||
· sorry | ||
· sorry | ||
|
||
end EuclidGeom |