lean4-htt/tests/lean/hpow.lean
2024-04-29 14:04:50 +00:00

27 lines
610 B
Text

import Lean.Data.Rat
/-!
Test the `rightact%` elaborator for `HPow.hPow`, added to address #2854
-/
open Lean
variable (n : Nat) (m : Int) (q : Rat)
#check n ^ 2 + m ^ 2
#check n ^ 2 + 1
#check (n ^ 2 + 1 : Int)
#check (n ^ 2 + (1 : Nat) : Int)
instance instNatPowRat : NatPow Rat where
pow q n := Lean.mkRat (q.num ^ n) (q.den ^ n)
instance instPowRatInt : Pow Rat Int where
pow q m := if 0 ≤ m then q ^ (m.toNat : Nat) else (1/q) ^ ((-m).toNat)
#check q ^ n + 1
#check q ^ m + 1
#check q ^ (n : Int) + 1
#check 12 * q + 1 ≤ 13 * q ^ 2
#check (12 : Rat) * q + (1 : Rat) ≤ (13 : Rat) * q ^ 2