Skip to content
Snippets Groups Projects
CuboidScroll.mmt 1.88 KiB
Newer Older
  • Learn to ignore specific revisions
  • Paul-Walcher's avatar
    Paul-Walcher committed
    
    /T Miscellaneous scrolls for playing around/testing that don't have a good home yet  ❚
    
    /T Miscellaneous scrolls for playing around/testing that don't have a good home yet  ❚
    namespace http://mathhub.info/FrameIT/frameworld ❚
    fixmeta ?FrameworldMeta ❚
    
    
    theory CuboidScroll =
        meta ?MetaAnnotations?problemTheory  ?CuboidScroll/Problem ❙
        meta ?MetaAnnotations?solutionTheory ?CuboidScroll/Solution ❙
        theory Problem =
            R: Rectangle
             ❘ meta ?MetaAnnotations?label "R"
             ❘ meta ?MetaAnnotations?description "The given rectangle"
    
            T: point
             ❘ meta ?MetaAnnotations?label "T"
             ❘ meta ?MetaAnnotations?description "The point above the centerpoint of the rectangle"
    
    
            rTBA: ⊦ (∠ T,(R _getB),(R _getA)) ≐ 90.0
             ❘ meta ?MetaAnnotations?label "rTBA"
             ❘ meta ?MetaAnnotations?description "A right angle between TBA, where B is the point enclosed by T and A"
    
    
            rTBC: ⊦ (∠ T,(R _getB),(R _getC)) ≐ 90.0
             ❘ meta ?MetaAnnotations?label "rTBC"
             ❘ meta ?MetaAnnotations?description "A right angle between TBC, where B is the point enclosed by T and C"
    
    
    
    
    
    
            
    
        theory Solution =
            include ?CuboidScroll/Problem ❙
            meta ?MetaAnnotations?label "Cuboid" ❙
            meta ?MetaAnnotations?description s"Given a rectangle and a top point that lies above the point in the center of the right-angle formed by the squarepoints
                                                this scroll constructs a cuboid. Additionally you need a proof that there are two right angles between TBC and TBA" ❙
            ConstructedCuboid : Cuboid
                    ❘ = CuboidCons R T
                    ❘ meta ?MetaAnnotations?label s"Cuboid"
                    ❘ meta ?MetaAnnotations?description s"The constructed Cuboid."