uuid stringlengths 16 16 | formal_statement stringlengths 1.06k 1.62k | goal_state stringlengths 12 476 |
|---|---|---|
4302c7830e25eb00 | import Mathlib
/- Vendored verbatim from google-deepmind/formal-conjectures @ f564f8d7
(Apache-2.0): the `answer()` term elaborator (FormalConjectures/Util/Answer)
and `Real.nthRoot` (FormalConjecturesForMathlib/β¦/NthRoot). -/
/-- Indicates where the answer is in a problem statement. -/
syntax (name := Google.answer)... | z : β
hβ : z = (1 + Complex.I) / ββ2
β’ (β k β Finset.Icc 1 12, z ^ k ^ 2) * β k β Finset.Icc 1 12, 1 / z ^ k ^ 2 = 36 |
38a3b362ac4b77c8 | import Mathlib
/- Vendored verbatim from google-deepmind/formal-conjectures @ f564f8d7
(Apache-2.0): the `answer()` term elaborator (FormalConjectures/Util/Answer)
and `Real.nthRoot` (FormalConjecturesForMathlib/β¦/NthRoot). -/
/-- Indicates where the answer is in a problem statement. -/
syntax (name := Google.answer)... | x y : β€
hβ : 0 < y
hβ : y < x
hβ : x + y + x * y = 80
β’ x = 26 |
f897047cc20bfb4d | import Mathlib
/- Vendored verbatim from google-deepmind/formal-conjectures @ f564f8d7
(Apache-2.0): the `answer()` term elaborator (FormalConjectures/Util/Answer)
and `Real.nthRoot` (FormalConjecturesForMathlib/β¦/NthRoot). -/
/-- Indicates where the answer is in a problem statement. -/
syntax (name := Google.answer)... | x y : β
hβ : 0 < x β§ 0 < y
hβ : y ^ 3 = 1
hβ : 6 * x ^ 2 = 2 * (6 * y ^ 2)
β’ x ^ 3 = 2 * β2 |
9d8b27f7b8ae39f5 | import Mathlib
/- Vendored verbatim from google-deepmind/formal-conjectures @ f564f8d7
(Apache-2.0): the `answer()` term elaborator (FormalConjectures/Util/Answer)
and `Real.nthRoot` (FormalConjecturesForMathlib/β¦/NthRoot). -/
/-- Indicates where the answer is in a problem statement. -/
syntax (name := Google.answer)... | y : β
β’ 7 * (3 * y + 2) = 21 * y + 14 |
5e63c8dccd0f72c1 | import Mathlib
/- Vendored verbatim from google-deepmind/formal-conjectures @ f564f8d7
(Apache-2.0): the `answer()` term elaborator (FormalConjectures/Util/Answer)
and `Real.nthRoot` (FormalConjecturesForMathlib/β¦/NthRoot). -/
/-- Indicates where the answer is in a problem statement. -/
syntax (name := Google.answer)... | a b : β
hβ : 0 < a β§ 0 < b
hβ : Real.logb 8 a + Real.logb 4 (b ^ 2) = 5
hβ : Real.logb 8 b + Real.logb 4 (a ^ 2) = 7
β’ a * b = 512 |
c26b3ff844891327 | import Mathlib
/- Vendored verbatim from google-deepmind/formal-conjectures @ f564f8d7
(Apache-2.0): the `answer()` term elaborator (FormalConjectures/Util/Answer)
and `Real.nthRoot` (FormalConjecturesForMathlib/β¦/NthRoot). -/
/-- Indicates where the answer is in a problem statement. -/
syntax (name := Google.answer)... | m x : β€
hβ : 10 β€ m
hβ : m β€ 99
hβ : 6 * x % m = 1
hβ : (x - 6 ^ 2) % m = 0
β’ m = 43 |
f2b3cbe0e9377859 | import Mathlib
/- Vendored verbatim from google-deepmind/formal-conjectures @ f564f8d7
(Apache-2.0): the `answer()` term elaborator (FormalConjectures/Util/Answer)
and `Real.nthRoot` (FormalConjecturesForMathlib/β¦/NthRoot). -/
/-- Indicates where the answer is in a problem statement. -/
syntax (name := Google.answer)... | k x : β
hβ : x = (13 - β131) / 4
hβ : 2 * x ^ 2 - 13 * x + k = 0
β’ k = 19 / 4 |
2701d78a75a79cc5 | import Mathlib
/- Vendored verbatim from google-deepmind/formal-conjectures @ f564f8d7
(Apache-2.0): the `answer()` term elaborator (FormalConjectures/Util/Answer)
and `Real.nthRoot` (FormalConjecturesForMathlib/β¦/NthRoot). -/
/-- Indicates where the answer is in a problem statement. -/
syntax (name := Google.answer)... | u v : β
S : Set β
hβ : β (n : β), n β S β 0 < n β§ 14 * n % 100 = 46
hβ : IsLeast S u
hβ : IsLeast (S \ {u}) v
β’ (βu + βv) / 2 = 64 |
f92de45dcfb1fa02 | import Mathlib
/- Vendored verbatim from google-deepmind/formal-conjectures @ f564f8d7
(Apache-2.0): the `answer()` term elaborator (FormalConjectures/Util/Answer)
and `Real.nthRoot` (FormalConjecturesForMathlib/β¦/NthRoot). -/
/-- Indicates where the answer is in a problem statement. -/
syntax (name := Google.answer)... | β’ 20!.gcd 200000 = 40000 |
1aa15fdcb17604bc | import Mathlib
/- Vendored verbatim from google-deepmind/formal-conjectures @ f564f8d7
(Apache-2.0): the `answer()` term elaborator (FormalConjectures/Util/Answer)
and `Real.nthRoot` (FormalConjecturesForMathlib/β¦/NthRoot). -/
/-- Indicates where the answer is in a problem statement. -/
syntax (name := Google.answer)... | a b c : β
f : β β β
hβ : β (x : β), f (x + 3) = 3 * x ^ 2 + 7 * x + 4
hβ : β (x : β), f x = a * x ^ 2 + b * x + c
β’ a + b + c = 2 |
dd930016cd671a49 | import Mathlib
/- Vendored verbatim from google-deepmind/formal-conjectures @ f564f8d7
(Apache-2.0): the `answer()` term elaborator (FormalConjectures/Util/Answer)
and `Real.nthRoot` (FormalConjecturesForMathlib/β¦/NthRoot). -/
/-- Indicates where the answer is in a problem statement. -/
syntax (name := Google.answer)... | a : β β β
hβ : a 1 = 1
hβ : a 2 = 3 / 7
hβ : β n β₯ 3, a n = a (n - 2) * a (n - 1) / (2 * a (n - 2) - a (n - 1))
β’ β(a 2019).den + (a 2019).num = 8078 |
e6daeda4bffdac89 | import Mathlib
/- Vendored verbatim from google-deepmind/formal-conjectures @ f564f8d7
(Apache-2.0): the `answer()` term elaborator (FormalConjectures/Util/Answer)
and `Real.nthRoot` (FormalConjecturesForMathlib/β¦/NthRoot). -/
/-- Indicates where the answer is in a problem statement. -/
syntax (name := Google.answer)... | a b : β
hβ : β (x : β), x - 3 β 0 β§ x - 5 β 0 β 4 * x / (x ^ 2 - 8 * x + 15) = a / (x - 3) + b / (x - 5)
β’ (a, b) = (-6, 10) |
a6dc556812ddc873 | import Mathlib
/- Vendored verbatim from google-deepmind/formal-conjectures @ f564f8d7
(Apache-2.0): the `answer()` term elaborator (FormalConjectures/Util/Answer)
and `Real.nthRoot` (FormalConjecturesForMathlib/β¦/NthRoot). -/
/-- Indicates where the answer is in a problem statement. -/
syntax (name := Google.answer)... | n : β
β’ β(β k β Finset.range n, (2 * k + 3)) = β(n + 1) ^ 2 - 1 |
593155e948849d68 | import Mathlib
/- Vendored verbatim from google-deepmind/formal-conjectures @ f564f8d7
(Apache-2.0): the `answer()` term elaborator (FormalConjectures/Util/Answer)
and `Real.nthRoot` (FormalConjecturesForMathlib/β¦/NthRoot). -/
/-- Indicates where the answer is in a problem statement. -/
syntax (name := Google.answer)... | r : β
hβ : β k β Finset.Icc 19 91, βr + βk / 100β = 546
β’ β100 * rβ = 743 |
33406df7bf1b843f | import Mathlib
/- Vendored verbatim from google-deepmind/formal-conjectures @ f564f8d7
(Apache-2.0): the `answer()` term elaborator (FormalConjectures/Util/Answer)
and `Real.nthRoot` (FormalConjecturesForMathlib/β¦/NthRoot). -/
/-- Indicates where the answer is in a problem statement. -/
syntax (name := Google.answer)... | β’ β k β Finset.range 50 with k % 8 = 5 β§ k % 6 = 3, k = 66 |
0f182193599dca48 | import Mathlib
/- Vendored verbatim from google-deepmind/formal-conjectures @ f564f8d7
(Apache-2.0): the `answer()` term elaborator (FormalConjectures/Util/Answer)
and `Real.nthRoot` (FormalConjecturesForMathlib/β¦/NthRoot). -/
/-- Indicates where the answer is in a problem statement. -/
syntax (name := Google.answer)... | a b : β
hβ : 0 < a β§ 0 < b
hβ : Β¬7 β£ a
hβ : Β¬7 β£ b
hβ : Β¬7 β£ a + b
hβ : 7 ^ 7 β£ (a + b) ^ 7 - a ^ 7 - b ^ 7
β’ 19 β€ a + b |
ca716533245de685 | import Mathlib
/- Vendored verbatim from google-deepmind/formal-conjectures @ f564f8d7
(Apache-2.0): the `answer()` term elaborator (FormalConjectures/Util/Answer)
and `Real.nthRoot` (FormalConjecturesForMathlib/β¦/NthRoot). -/
/-- Indicates where the answer is in a problem statement. -/
syntax (name := Google.answer)... | β’ β k β Finset.Icc 1 501, (4 * βk + 4) / (4 * βk) = 502 |
732bf16fa733e606 | import Mathlib
/- Vendored verbatim from google-deepmind/formal-conjectures @ f564f8d7
(Apache-2.0): the `answer()` term elaborator (FormalConjectures/Util/Answer)
and `Real.nthRoot` (FormalConjecturesForMathlib/β¦/NthRoot). -/
/-- Indicates where the answer is in a problem statement. -/
syntax (name := Google.answer)... | β’ IsLeast
{M |
β (a b c : β),
|a * b * (a ^ 2 - b ^ 2) + b * c * (b ^ 2 - c ^ 2) + c * a * (c ^ 2 - a ^ 2)| β€ M * (a ^ 2 + b ^ 2 + c ^ 2) ^ 2}
(9 * β2 / 32) |
996b38a1fc8ee61a | import Mathlib
/- Vendored verbatim from google-deepmind/formal-conjectures @ f564f8d7
(Apache-2.0): the `answer()` term elaborator (FormalConjectures/Util/Answer)
and `Real.nthRoot` (FormalConjecturesForMathlib/β¦/NthRoot). -/
/-- Indicates where the answer is in a problem statement. -/
syntax (name := Google.answer)... | β’ (1 / 2 + 1 / 3) * (1 / 2 - 1 / 3) = 5 / 36 |
aaf43df039ab2ec3 | import Mathlib
/- Vendored verbatim from google-deepmind/formal-conjectures @ f564f8d7
(Apache-2.0): the `answer()` term elaborator (FormalConjectures/Util/Answer)
and `Real.nthRoot` (FormalConjecturesForMathlib/β¦/NthRoot). -/
/-- Indicates where the answer is in a problem statement. -/
syntax (name := Google.answer)... | n : β
β’ Β¬7 β£ 2 ^ n + 1 |
95ccd12e5096d350 | import Mathlib
/- Vendored verbatim from google-deepmind/formal-conjectures @ f564f8d7
(Apache-2.0): the `answer()` term elaborator (FormalConjectures/Util/Answer)
and `Real.nthRoot` (FormalConjecturesForMathlib/β¦/NthRoot). -/
/-- Indicates where the answer is in a problem statement. -/
syntax (name := Google.answer)... | S : Finset β
hβ : β (x : β), x β S β 0 < x β§ x < 1000 β§ x.divisors.card = 3
β’ S.card = 11 |
095e7c1c8e3af948 | import Mathlib
/- Vendored verbatim from google-deepmind/formal-conjectures @ f564f8d7
(Apache-2.0): the `answer()` term elaborator (FormalConjectures/Util/Answer)
and `Real.nthRoot` (FormalConjecturesForMathlib/β¦/NthRoot). -/
/-- Indicates where the answer is in a problem statement. -/
syntax (name := Google.answer)... | β’ IsLeast {x | 30 * x β‘ 42 [MOD 47]} 39 |
e296ed472df217f2 | import Mathlib
/- Vendored verbatim from google-deepmind/formal-conjectures @ f564f8d7
(Apache-2.0): the `answer()` term elaborator (FormalConjectures/Util/Answer)
and `Real.nthRoot` (FormalConjecturesForMathlib/β¦/NthRoot). -/
/-- Indicates where the answer is in a problem statement. -/
syntax (name := Google.answer)... | f : β β β
β’ β n, f (f n) β n + 1987 |
2cbbc602d318190d | import Mathlib
/- Vendored verbatim from google-deepmind/formal-conjectures @ f564f8d7
(Apache-2.0): the `answer()` term elaborator (FormalConjectures/Util/Answer)
and `Real.nthRoot` (FormalConjecturesForMathlib/β¦/NthRoot). -/
/-- Indicates where the answer is in a problem statement. -/
syntax (name := Google.answer)... | β’ β n < 398, n * 7 % 398 = 1 |
95192a71852300c8 | import Mathlib
/- Vendored verbatim from google-deepmind/formal-conjectures @ f564f8d7
(Apache-2.0): the `answer()` term elaborator (FormalConjectures/Util/Answer)
and `Real.nthRoot` (FormalConjecturesForMathlib/β¦/NthRoot). -/
/-- Indicates where the answer is in a problem statement. -/
syntax (name := Google.answer)... | f : β β β
hβ : β x > 0, β y > 0, f (x * y) = f x / y
hβ : f 500 = 3
β’ f 600 = 5 / 2 |
140de00a6ace0b94 | import Mathlib
/- Vendored verbatim from google-deepmind/formal-conjectures @ f564f8d7
(Apache-2.0): the `answer()` term elaborator (FormalConjectures/Util/Answer)
and `Real.nthRoot` (FormalConjecturesForMathlib/β¦/NthRoot). -/
/-- Indicates where the answer is in a problem statement. -/
syntax (name := Google.answer)... | β’ {x |
0 β€ x β§
x β€ 2 * Ο β§
2 * Real.cos x β€ |β(1 + Real.sin (2 * x)) - β(1 - Real.sin (2 * x))| β§
|β(1 + Real.sin (2 * x)) - β(1 - Real.sin (2 * x))| β€ β2} =
Set.Icc (Ο / 4) (7 * Ο / 4) |
6233383f12eabd6c | import Mathlib
/- Vendored verbatim from google-deepmind/formal-conjectures @ f564f8d7
(Apache-2.0): the `answer()` term elaborator (FormalConjectures/Util/Answer)
and `Real.nthRoot` (FormalConjecturesForMathlib/β¦/NthRoot). -/
/-- Indicates where the answer is in a problem statement. -/
syntax (name := Google.answer)... | b : β
hβ : 0 < b
hβ : 3 * b ^ 2 + 2 * b + 1 = 57
β’ b = 4 |
65b56dd5b158b479 | import Mathlib
/- Vendored verbatim from google-deepmind/formal-conjectures @ f564f8d7
(Apache-2.0): the `answer()` term elaborator (FormalConjectures/Util/Answer)
and `Real.nthRoot` (FormalConjecturesForMathlib/β¦/NthRoot). -/
/-- Indicates where the answer is in a problem statement. -/
syntax (name := Google.answer)... | a : β€
β’ a ^ 2 % 4 = 0 β¨ a ^ 2 % 4 = 1 |
ad9eb02ddb681cc1 | import Mathlib
/- Vendored verbatim from google-deepmind/formal-conjectures @ f564f8d7
(Apache-2.0): the `answer()` term elaborator (FormalConjectures/Util/Answer)
and `Real.nthRoot` (FormalConjecturesForMathlib/β¦/NthRoot). -/
/-- Indicates where the answer is in a problem statement. -/
syntax (name := Google.answer)... | β’ (β k β Finset.range 11, k) % 9 = 1 |
11b5722d8a500b1d | import Mathlib
/- Vendored verbatim from google-deepmind/formal-conjectures @ f564f8d7
(Apache-2.0): the `answer()` term elaborator (FormalConjectures/Util/Answer)
and `Real.nthRoot` (FormalConjecturesForMathlib/β¦/NthRoot). -/
/-- Indicates where the answer is in a problem statement. -/
syntax (name := Google.answer)... | q e : β
hβ : q = 9 - 4 * Complex.I
hβ : e = -3 - 4 * Complex.I
β’ q - e = 12 |
59c1ada943500f1a | import Mathlib
/- Vendored verbatim from google-deepmind/formal-conjectures @ f564f8d7
(Apache-2.0): the `answer()` term elaborator (FormalConjectures/Util/Answer)
and `Real.nthRoot` (FormalConjecturesForMathlib/β¦/NthRoot). -/
/-- Indicates where the answer is in a problem statement. -/
syntax (name := Google.answer)... | f : β β β
hβ : β (x : β), f (x / 3) = x ^ 2 + x + 1
hβ : Fintype β(f β»ΒΉ' {7})
β’ β y β (f β»ΒΉ' {7}).toFinset, y / 3 = -1 / 9 |
a096805797f5dfd1 | import Mathlib
/- Vendored verbatim from google-deepmind/formal-conjectures @ f564f8d7
(Apache-2.0): the `answer()` term elaborator (FormalConjectures/Util/Answer)
and `Real.nthRoot` (FormalConjecturesForMathlib/β¦/NthRoot). -/
/-- Indicates where the answer is in a problem statement. -/
syntax (name := Google.answer)... | β’ 2004 % 12 = 0 |
7a42500799290a6b | import Mathlib
/- Vendored verbatim from google-deepmind/formal-conjectures @ f564f8d7
(Apache-2.0): the `answer()` term elaborator (FormalConjectures/Util/Answer)
and `Real.nthRoot` (FormalConjecturesForMathlib/β¦/NthRoot). -/
/-- Indicates where the answer is in a problem statement. -/
syntax (name := Google.answer)... | x : β
hβ : x ^ 3 - (x + 1) * (x - 1) * x = 5
β’ x ^ 3 = 125 |
4fb65db037d80b12 | import Mathlib
/- Vendored verbatim from google-deepmind/formal-conjectures @ f564f8d7
(Apache-2.0): the `answer()` term elaborator (FormalConjectures/Util/Answer)
and `Real.nthRoot` (FormalConjecturesForMathlib/β¦/NthRoot). -/
/-- Indicates where the answer is in a problem statement. -/
syntax (name := Google.answer)... | β’ Nat.gcd 180 168 = 12 |
1eb8300c0a409f42 | import Mathlib
/- Vendored verbatim from google-deepmind/formal-conjectures @ f564f8d7
(Apache-2.0): the `answer()` term elaborator (FormalConjectures/Util/Answer)
and `Real.nthRoot` (FormalConjecturesForMathlib/β¦/NthRoot). -/
/-- Indicates where the answer is in a problem statement. -/
syntax (name := Google.answer)... | S : Finset β
hβ : β (n : β), n β S β ββn < 7 / 2 β§ 2 < ββn
β’ S.card = 8 |
e7cb9b8380d9c339 | import Mathlib
/- Vendored verbatim from google-deepmind/formal-conjectures @ f564f8d7
(Apache-2.0): the `answer()` term elaborator (FormalConjectures/Util/Answer)
and `Real.nthRoot` (FormalConjecturesForMathlib/β¦/NthRoot). -/
/-- Indicates where the answer is in a problem statement. -/
syntax (name := Google.answer)... | n : β
β’ 3 β£ n ^ 3 + 2 * n |
0324044868d977ad | import Mathlib
/- Vendored verbatim from google-deepmind/formal-conjectures @ f564f8d7
(Apache-2.0): the `answer()` term elaborator (FormalConjectures/Util/Answer)
and `Real.nthRoot` (FormalConjecturesForMathlib/β¦/NthRoot). -/
/-- Indicates where the answer is in a problem statement. -/
syntax (name := Google.answer)... | n : β
β’ β k β Finset.range n, 1 / ((βk + 1) * (βk + 2)) = βn / (βn + 1) |
2d4c2fcd5b1dc617 | import Mathlib
/- Vendored verbatim from google-deepmind/formal-conjectures @ f564f8d7
(Apache-2.0): the `answer()` term elaborator (FormalConjectures/Util/Answer)
and `Real.nthRoot` (FormalConjecturesForMathlib/β¦/NthRoot). -/
/-- Indicates where the answer is in a problem statement. -/
syntax (name := Google.answer)... | S : Finset β
hβ : β (n : β), n β S β n β£ 36
β’ β k β S, k = 91 |
33cf4cd6541974a0 | import Mathlib
/- Vendored verbatim from google-deepmind/formal-conjectures @ f564f8d7
(Apache-2.0): the `answer()` term elaborator (FormalConjectures/Util/Answer)
and `Real.nthRoot` (FormalConjecturesForMathlib/β¦/NthRoot). -/
/-- Indicates where the answer is in a problem statement. -/
syntax (name := Google.answer)... | x : β
Ο : β β β
hβ : β (x : β), Ο.toFun x = 5 * x - 12
hβ : Ο.toFun (x + 1) = Ο.invFun x
β’ x = 47 / 24 |
1b709f98a18c5f97 | import Mathlib
/- Vendored verbatim from google-deepmind/formal-conjectures @ f564f8d7
(Apache-2.0): the `answer()` term elaborator (FormalConjectures/Util/Answer)
and `Real.nthRoot` (FormalConjecturesForMathlib/β¦/NthRoot). -/
/-- Indicates where the answer is in a problem statement. -/
syntax (name := Google.answer)... | a b : β
hβ : Nat.Prime a
hβ : Nat.Prime b
hβ : Nat.Prime (a + b)
hβ : Nat.Prime (a - b)
β’ Nat.Prime (a + b + (a - b + (a + b))) |
ec83b4154c4c24fd | import Mathlib
/- Vendored verbatim from google-deepmind/formal-conjectures @ f564f8d7
(Apache-2.0): the `answer()` term elaborator (FormalConjectures/Util/Answer)
and `Real.nthRoot` (FormalConjecturesForMathlib/β¦/NthRoot). -/
/-- Indicates where the answer is in a problem statement. -/
syntax (name := Google.answer)... | p q r x : β
hβ : (x - p) * (x - q) = (r - p) * (r - q)
hβ : x β r
β’ x = p + q - r |
59640eba40e7b6a3 | import Mathlib
/- Vendored verbatim from google-deepmind/formal-conjectures @ f564f8d7
(Apache-2.0): the `answer()` term elaborator (FormalConjectures/Util/Answer)
and `Real.nthRoot` (FormalConjecturesForMathlib/β¦/NthRoot). -/
/-- Indicates where the answer is in a problem statement. -/
syntax (name := Google.answer)... | v : β β β
hβ : β (n : β), v n = 2 * n - 1
β’ (β k β Finset.Icc 1 100, v k) % 7 = 4 |
85ee06a42648499e | import Mathlib
/- Vendored verbatim from google-deepmind/formal-conjectures @ f564f8d7
(Apache-2.0): the `answer()` term elaborator (FormalConjectures/Util/Answer)
and `Real.nthRoot` (FormalConjecturesForMathlib/β¦/NthRoot). -/
/-- Indicates where the answer is in a problem statement. -/
syntax (name := Google.answer)... | x y z : β€
hβ : (x - y) ^ 2 + (y - z) ^ 2 + (z - x) ^ 2 = x * y * z
β’ x + y + z + 6 β£ x ^ 3 + y ^ 3 + z ^ 3 |
815cda9b1ebe631c | import Mathlib
/- Vendored verbatim from google-deepmind/formal-conjectures @ f564f8d7
(Apache-2.0): the `answer()` term elaborator (FormalConjectures/Util/Answer)
and `Real.nthRoot` (FormalConjecturesForMathlib/β¦/NthRoot). -/
/-- Indicates where the answer is in a problem statement. -/
syntax (name := Google.answer)... | S : Set β
hβ : S = {x | Real.cos x ^ 2 + Real.cos (2 * x) ^ 2 + Real.cos (3 * x) ^ 2 = 1}
β’ S = {x | β m, x = Ο / 2 + βm * Ο β¨ x = Ο / 4 + βm * Ο / 2 β¨ x = Ο / 6 + βm * Ο β¨ x = 5 * Ο / 6 + βm * Ο} |
1b575acce73e9c03 | import Mathlib
/- Vendored verbatim from google-deepmind/formal-conjectures @ f564f8d7
(Apache-2.0): the `answer()` term elaborator (FormalConjectures/Util/Answer)
and `Real.nthRoot` (FormalConjecturesForMathlib/β¦/NthRoot). -/
/-- Indicates where the answer is in a problem statement. -/
syntax (name := Google.answer)... | β’ 1999 ^ 2000 % 5 = 1 |
d7ddead4e423d260 | import Mathlib
/- Vendored verbatim from google-deepmind/formal-conjectures @ f564f8d7
(Apache-2.0): the `answer()` term elaborator (FormalConjectures/Util/Answer)
and `Real.nthRoot` (FormalConjecturesForMathlib/β¦/NthRoot). -/
/-- Indicates where the answer is in a problem statement. -/
syntax (name := Google.answer)... | β’ (β k β Finset.Icc 1 9, 11 ^ k) % 100 = 59 |
2cfd271b26af4e28 | import Mathlib
/- Vendored verbatim from google-deepmind/formal-conjectures @ f564f8d7
(Apache-2.0): the `answer()` term elaborator (FormalConjectures/Util/Answer)
and `Real.nthRoot` (FormalConjecturesForMathlib/β¦/NthRoot). -/
/-- Indicates where the answer is in a problem statement. -/
syntax (name := Google.answer)... | a : β β NNReal
n : β
hβ : β i β Finset.range n, a i = 1
β’ β i β Finset.range n, a i β₯ βn |
40aed4f1ed212d67 | import Mathlib
/- Vendored verbatim from google-deepmind/formal-conjectures @ f564f8d7
(Apache-2.0): the `answer()` term elaborator (FormalConjectures/Util/Answer)
and `Real.nthRoot` (FormalConjecturesForMathlib/β¦/NthRoot). -/
/-- Indicates where the answer is in a problem statement. -/
syntax (name := Google.answer)... | β’ {x | x ^ 2 - 5 * x - 4 β€ 10} = Set.Icc (-2) 7 |
7faae039f80262a7 | import Mathlib
/- Vendored verbatim from google-deepmind/formal-conjectures @ f564f8d7
(Apache-2.0): the `answer()` term elaborator (FormalConjectures/Util/Answer)
and `Real.nthRoot` (FormalConjecturesForMathlib/β¦/NthRoot). -/
/-- Indicates where the answer is in a problem statement. -/
syntax (name := Google.answer)... | x : β
hβ : 1 β€ x β§ x β€ 100
hβ : 77 β£ β k β Finset.range 101, k - x
β’ x = 45 |
04c0486b1a87b44e | import Mathlib
/- Vendored verbatim from google-deepmind/formal-conjectures @ f564f8d7
(Apache-2.0): the `answer()` term elaborator (FormalConjectures/Util/Answer)
and `Real.nthRoot` (FormalConjecturesForMathlib/β¦/NthRoot). -/
/-- Indicates where the answer is in a problem statement. -/
syntax (name := Google.answer)... | x p : β
hβ : x < 2
hβ : |x - 2| = p
β’ x - p = 2 - 2 * p |
233baeacd990da62 | import Mathlib
/- Vendored verbatim from google-deepmind/formal-conjectures @ f564f8d7
(Apache-2.0): the `answer()` term elaborator (FormalConjectures/Util/Answer)
and `Real.nthRoot` (FormalConjecturesForMathlib/β¦/NthRoot). -/
/-- Indicates where the answer is in a problem statement. -/
syntax (name := Google.answer)... | x y : β
hβ : x = 5
hβ : y = 2
β’ β(x ^ 3 - 2 ^ y) = 11 |
30f95da79bfd3a93 | import Mathlib
/- Vendored verbatim from google-deepmind/formal-conjectures @ f564f8d7
(Apache-2.0): the `answer()` term elaborator (FormalConjectures/Util/Answer)
and `Real.nthRoot` (FormalConjecturesForMathlib/β¦/NthRoot). -/
/-- Indicates where the answer is in a problem statement. -/
syntax (name := Google.answer)... | β’ 139 % 11 = 7 |
3612dde9f76b7c3f | import Mathlib
/- Vendored verbatim from google-deepmind/formal-conjectures @ f564f8d7
(Apache-2.0): the `answer()` term elaborator (FormalConjectures/Util/Answer)
and `Real.nthRoot` (FormalConjecturesForMathlib/β¦/NthRoot). -/
/-- Indicates where the answer is in a problem statement. -/
syntax (name := Google.answer)... | x y : β
hβ : x + y = 13
hβ : x * y = 24
β’ β(x ^ 2 + y ^ 2) = 11 |
4eae6ed0f748e988 | import Mathlib
/- Vendored verbatim from google-deepmind/formal-conjectures @ f564f8d7
(Apache-2.0): the `answer()` term elaborator (FormalConjectures/Util/Answer)
and `Real.nthRoot` (FormalConjecturesForMathlib/β¦/NthRoot). -/
/-- Indicates where the answer is in a problem statement. -/
syntax (name := Google.answer)... | a b c : β
hβ : 0 < a β§ 0 < b β§ 0 < c
hβ : β (x : β), 24 * x ^ 2 - 19 * x - 35 = (a * x - 5) * (2 * (b * x) + c)
β’ a * b - 3 * c = -9 |
fa89a7da02c5e78f | import Mathlib
/- Vendored verbatim from google-deepmind/formal-conjectures @ f564f8d7
(Apache-2.0): the `answer()` term elaborator (FormalConjectures/Util/Answer)
and `Real.nthRoot` (FormalConjecturesForMathlib/β¦/NthRoot). -/
/-- Indicates where the answer is in a problem statement. -/
syntax (name := Google.answer)... | x : β
hβ : 2 * (2 * (2 * (2 * x))) = 48
β’ x = 3 |
2f1d523900798a1d | import Mathlib
/- Vendored verbatim from google-deepmind/formal-conjectures @ f564f8d7
(Apache-2.0): the `answer()` term elaborator (FormalConjectures/Util/Answer)
and `Real.nthRoot` (FormalConjecturesForMathlib/β¦/NthRoot). -/
/-- Indicates where the answer is in a problem statement. -/
syntax (name := Google.answer)... | β’ Nat.gcd 6432 132 + 11 = 23 |
72ebb485ab03d1db | import Mathlib
/- Vendored verbatim from google-deepmind/formal-conjectures @ f564f8d7
(Apache-2.0): the `answer()` term elaborator (FormalConjectures/Util/Answer)
and `Real.nthRoot` (FormalConjecturesForMathlib/β¦/NthRoot). -/
/-- Indicates where the answer is in a problem statement. -/
syntax (name := Google.answer)... | n : β
hβ : n > 0
hβ : β k β Finset.Icc 1 n, βReal.logb 2 βkβ = 1994
β’ n = 312 |
9b7530a5896da2fd | import Mathlib
/- Vendored verbatim from google-deepmind/formal-conjectures @ f564f8d7
(Apache-2.0): the `answer()` term elaborator (FormalConjectures/Util/Answer)
and `Real.nthRoot` (FormalConjecturesForMathlib/β¦/NthRoot). -/
/-- Indicates where the answer is in a problem statement. -/
syntax (name := Google.answer)... | β’ 9! % 10 = 0 |
2fda6a1b55630219 | import Mathlib
/- Vendored verbatim from google-deepmind/formal-conjectures @ f564f8d7
(Apache-2.0): the `answer()` term elaborator (FormalConjectures/Util/Answer)
and `Real.nthRoot` (FormalConjecturesForMathlib/β¦/NthRoot). -/
/-- Indicates where the answer is in a problem statement. -/
syntax (name := Google.answer)... | x : β
hβ : x β 0
β’ (4 / x)β»ΒΉ * (3 * x ^ 3 / x) ^ 2 * (1 / (2 * x))β»ΒΉ ^ 3 = 18 * x ^ 8 |
a84cfa87cb3bded8 | import Mathlib
/- Vendored verbatim from google-deepmind/formal-conjectures @ f564f8d7
(Apache-2.0): the `answer()` term elaborator (FormalConjectures/Util/Answer)
and `Real.nthRoot` (FormalConjecturesForMathlib/β¦/NthRoot). -/
/-- Indicates where the answer is in a problem statement. -/
syntax (name := Google.answer)... | a b : β
hβ : 0 < a β§ 0 < b
β’ (a + b) ^ 4 β€ 8 * (a ^ 4 + b ^ 4) |
504a03bd394a9b78 | import Mathlib
/- Vendored verbatim from google-deepmind/formal-conjectures @ f564f8d7
(Apache-2.0): the `answer()` term elaborator (FormalConjectures/Util/Answer)
and `Real.nthRoot` (FormalConjecturesForMathlib/β¦/NthRoot). -/
/-- Indicates where the answer is in a problem statement. -/
syntax (name := Google.answer)... | β’ IsGreatest {c | β x, 2 * x ^ 2 + 5 * x + c = 0} (25 / 8) |
c1abccbe022c0cba | import Mathlib
/- Vendored verbatim from google-deepmind/formal-conjectures @ f564f8d7
(Apache-2.0): the `answer()` term elaborator (FormalConjectures/Util/Answer)
and `Real.nthRoot` (FormalConjecturesForMathlib/β¦/NthRoot). -/
/-- Indicates where the answer is in a problem statement. -/
syntax (name := Google.answer)... | β’ β k β (30 ^ 4).divisors, 1 - 2 = 123 |
bc349c831538aca6 | import Mathlib
/- Vendored verbatim from google-deepmind/formal-conjectures @ f564f8d7
(Apache-2.0): the `answer()` term elaborator (FormalConjectures/Util/Answer)
and `Real.nthRoot` (FormalConjecturesForMathlib/β¦/NthRoot). -/
/-- Indicates where the answer is in a problem statement. -/
syntax (name := Google.answer)... | f : β β β
hβ : β x < 0, f x = -x ^ 2 - 1
hβ : β (x : β), 0 β€ x β§ x < 4 β f x = 2
hβ : β x β₯ 4, f x = βx
β’ f Ο = 2 |
97442ef8a2ddc6eb | import Mathlib
/- Vendored verbatim from google-deepmind/formal-conjectures @ f564f8d7
(Apache-2.0): the `answer()` term elaborator (FormalConjectures/Util/Answer)
and `Real.nthRoot` (FormalConjecturesForMathlib/β¦/NthRoot). -/
/-- Indicates where the answer is in a problem statement. -/
syntax (name := Google.answer)... | rows seats : β
hβ : rows * seats = 450
hβ : (rows + 5) * (seats - 3) = 450
β’ rows = 25 |
4558ece0f712e4ac | import Mathlib
/- Vendored verbatim from google-deepmind/formal-conjectures @ f564f8d7
(Apache-2.0): the `answer()` term elaborator (FormalConjectures/Util/Answer)
and `Real.nthRoot` (FormalConjecturesForMathlib/β¦/NthRoot). -/
/-- Indicates where the answer is in a problem statement. -/
syntax (name := Google.answer)... | f : β β β
hβ : β (x : β), f x = 3 * β(2 * x - 7) - 8
β’ f 8 = 1 |
d12378aec6268835 | import Mathlib
/- Vendored verbatim from google-deepmind/formal-conjectures @ f564f8d7
(Apache-2.0): the `answer()` term elaborator (FormalConjectures/Util/Answer)
and `Real.nthRoot` (FormalConjecturesForMathlib/β¦/NthRoot). -/
/-- Indicates where the answer is in a problem statement. -/
syntax (name := Google.answer)... | x y : β
hβ : 2 * 3 = x - 9
hβ : 2 * -5 = y + 1
β’ (x, y) = (15, -11) |
a7743ff9a3443664 | import Mathlib
/- Vendored verbatim from google-deepmind/formal-conjectures @ f564f8d7
(Apache-2.0): the `answer()` term elaborator (FormalConjectures/Util/Answer)
and `Real.nthRoot` (FormalConjecturesForMathlib/β¦/NthRoot). -/
/-- Indicates where the answer is in a problem statement. -/
syntax (name := Google.answer)... | t : β β β
hβ : t 1 = 20
hβ : t 2 = 21
hβ : β n β₯ 3, t n = (5 * t (n - 1) + 1) / (25 * t (n - 2))
β’ β(t 2020).den + (t 2020).num = 626 |
fb6543226eecc643 | import Mathlib
/- Vendored verbatim from google-deepmind/formal-conjectures @ f564f8d7
(Apache-2.0): the `answer()` term elaborator (FormalConjectures/Util/Answer)
and `Real.nthRoot` (FormalConjecturesForMathlib/β¦/NthRoot). -/
/-- Indicates where the answer is in a problem statement. -/
syntax (name := Google.answer)... | x : β
hβ : x * (1 / 2 + 2 / 3) = 1
β’ x = 6 / 7 |
a0aa41ee445d7147 | import Mathlib
/- Vendored verbatim from google-deepmind/formal-conjectures @ f564f8d7
(Apache-2.0): the `answer()` term elaborator (FormalConjectures/Util/Answer)
and `Real.nthRoot` (FormalConjecturesForMathlib/β¦/NthRoot). -/
/-- Indicates where the answer is in a problem statement. -/
syntax (name := Google.answer)... | p q : β β β
hβ : β (x : β), p x = 2 - x ^ 2
hβ : β (x : β), x β 0 β q x = 6 / x
β’ p (q 2) = -7 |
62ee38aba94d61f1 | import Mathlib
/- Vendored verbatim from google-deepmind/formal-conjectures @ f564f8d7
(Apache-2.0): the `answer()` term elaborator (FormalConjectures/Util/Answer)
and `Real.nthRoot` (FormalConjecturesForMathlib/β¦/NthRoot). -/
/-- Indicates where the answer is in a problem statement. -/
syntax (name := Google.answer)... | β’ β x > 0, 2 - β2 β₯ 2 - x - 1 / (2 * x) |
b5a3aa23e805351a | import Mathlib
/- Vendored verbatim from google-deepmind/formal-conjectures @ f564f8d7
(Apache-2.0): the `answer()` term elaborator (FormalConjectures/Util/Answer)
and `Real.nthRoot` (FormalConjecturesForMathlib/β¦/NthRoot). -/
/-- Indicates where the answer is in a problem statement. -/
syntax (name := Google.answer)... | n : β
hβ : n % 7 = 5
β’ 5 * n % 7 = 4 |
88b9ca94495082c1 | import Mathlib
/- Vendored verbatim from google-deepmind/formal-conjectures @ f564f8d7
(Apache-2.0): the `answer()` term elaborator (FormalConjectures/Util/Answer)
and `Real.nthRoot` (FormalConjecturesForMathlib/β¦/NthRoot). -/
/-- Indicates where the answer is in a problem statement. -/
syntax (name := Google.answer)... | β’ β k β (Nat.sqrt 196).divisors, k = 24 |
4fc20dec3c416f85 | import Mathlib
/- Vendored verbatim from google-deepmind/formal-conjectures @ f564f8d7
(Apache-2.0): the `answer()` term elaborator (FormalConjectures/Util/Answer)
and `Real.nthRoot` (FormalConjecturesForMathlib/β¦/NthRoot). -/
/-- Indicates where the answer is in a problem statement. -/
syntax (name := Google.answer)... | β’ IsLeast {v | β x y, (x * y - 1) ^ 2 + (x + y) ^ 2 = v} 1 |
155b4681a29a4cf4 | import Mathlib
/- Vendored verbatim from google-deepmind/formal-conjectures @ f564f8d7
(Apache-2.0): the `answer()` term elaborator (FormalConjectures/Util/Answer)
and `Real.nthRoot` (FormalConjecturesForMathlib/β¦/NthRoot). -/
/-- Indicates where the answer is in a problem statement. -/
syntax (name := Google.answer)... | β’ {a | 1 / 5 * |9 + 2 * a| < 1} = Set.Icc (-7) (-2) |
627a62ca87713166 | import Mathlib
/- Vendored verbatim from google-deepmind/formal-conjectures @ f564f8d7
(Apache-2.0): the `answer()` term elaborator (FormalConjectures/Util/Answer)
and `Real.nthRoot` (FormalConjecturesForMathlib/β¦/NthRoot). -/
/-- Indicates where the answer is in a problem statement. -/
syntax (name := Google.answer)... | x y z w : β
hβ : x ^ 2 / (2 ^ 2 - 1) + y ^ 2 / (2 ^ 2 - 3 ^ 2) + z ^ 2 / (2 ^ 2 - 5 ^ 2) + w ^ 2 / (2 ^ 2 - 7 ^ 2) = 1
hβ : x ^ 2 / (4 ^ 2 - 1) + y ^ 2 / (4 ^ 2 - 3 ^ 2) + z ^ 2 / (4 ^ 2 - 5 ^ 2) + w ^ 2 / (4 ^ 2 - 7 ^ 2) = 1
hβ : x ^ 2 / (6 ^ 2 - 1) + y ^ 2 / (6 ^ 2 - 3 ^ 2) + z ^ 2 / (6 ^ 2 - 5 ^ 2) + w ^ 2 / (6 ^ 2 ... |
207b0fffd3200c67 | import Mathlib
/- Vendored verbatim from google-deepmind/formal-conjectures @ f564f8d7
(Apache-2.0): the `answer()` term elaborator (FormalConjectures/Util/Answer)
and `Real.nthRoot` (FormalConjecturesForMathlib/β¦/NthRoot). -/
/-- Indicates where the answer is in a problem statement. -/
syntax (name := Google.answer)... | x y : β
hβ : 0 < x β§ 0 < y
hβ : y β€ x
hβ : β(x * y) * (x - y) = x + y
β’ x + y β₯ 4 |
6c80baad2cbf1131 | import Mathlib
/- Vendored verbatim from google-deepmind/formal-conjectures @ f564f8d7
(Apache-2.0): the `answer()` term elaborator (FormalConjectures/Util/Answer)
and `Real.nthRoot` (FormalConjecturesForMathlib/β¦/NthRoot). -/
/-- Indicates where the answer is in a problem statement. -/
syntax (name := Google.answer)... | u : β β β
hβ : u 0 = 4
hβ : u 1 = 7
hβ : β (n : β), u (n + 2) = (u n + u (n + 1)) % 10
β’ IsLeast {n | β k β Finset.range n, u k > 10000} 1999 |
184afa75b49c6932 | import Mathlib
/- Vendored verbatim from google-deepmind/formal-conjectures @ f564f8d7
(Apache-2.0): the `answer()` term elaborator (FormalConjectures/Util/Answer)
and `Real.nthRoot` (FormalConjecturesForMathlib/β¦/NthRoot). -/
/-- Indicates where the answer is in a problem statement. -/
syntax (name := Google.answer)... | q e d : β
hβ : q = 11 - 5 * Complex.I
hβ : e = 11 + 5 * Complex.I
hβ : d = 2 * Complex.I
β’ q * e * d = 292 * Complex.I |
00829ff60f18023a | import Mathlib
/- Vendored verbatim from google-deepmind/formal-conjectures @ f564f8d7
(Apache-2.0): the `answer()` term elaborator (FormalConjectures/Util/Answer)
and `Real.nthRoot` (FormalConjecturesForMathlib/β¦/NthRoot). -/
/-- Indicates where the answer is in a problem statement. -/
syntax (name := Google.answer)... | a b : β
hβ : a β 0 β§ b β 0
hβ : β (x : β), x ^ 2 + a * x + b = (x - a) * (x - b)
β’ (a, b) = (1, -2) |
89a8631a4c5bbd4b | import Mathlib
/- Vendored verbatim from google-deepmind/formal-conjectures @ f564f8d7
(Apache-2.0): the `answer()` term elaborator (FormalConjectures/Util/Answer)
and `Real.nthRoot` (FormalConjecturesForMathlib/β¦/NthRoot). -/
/-- Indicates where the answer is in a problem statement. -/
syntax (name := Google.answer)... | β’ 2 ^ 8 % 5 = 1 |
863e5008caa08fca | import Mathlib
/- Vendored verbatim from google-deepmind/formal-conjectures @ f564f8d7
(Apache-2.0): the `answer()` term elaborator (FormalConjectures/Util/Answer)
and `Real.nthRoot` (FormalConjecturesForMathlib/β¦/NthRoot). -/
/-- Indicates where the answer is in a problem statement. -/
syntax (name := Google.answer)... | β’ IsLeast {x | β x_1, β k β Finset.Icc 1 119, |βk * x_1 - 1| = x} 49 |
f2ef7aee87fe1002 | import Mathlib
/- Vendored verbatim from google-deepmind/formal-conjectures @ f564f8d7
(Apache-2.0): the `answer()` term elaborator (FormalConjectures/Util/Answer)
and `Real.nthRoot` (FormalConjecturesForMathlib/β¦/NthRoot). -/
/-- Indicates where the answer is in a problem statement. -/
syntax (name := Google.answer)... | β’ 71 % 3 = 2 |
ed97b12e80195484 | import Mathlib
/- Vendored verbatim from google-deepmind/formal-conjectures @ f564f8d7
(Apache-2.0): the `answer()` term elaborator (FormalConjectures/Util/Answer)
and `Real.nthRoot` (FormalConjecturesForMathlib/β¦/NthRoot). -/
/-- Indicates where the answer is in a problem statement. -/
syntax (name := Google.answer)... | β’ {x β Finset.Icc 100 999 | x % 19 = 7}.card = 48 |
4f8666e60b5d71a8 | import Mathlib
/- Vendored verbatim from google-deepmind/formal-conjectures @ f564f8d7
(Apache-2.0): the `answer()` term elaborator (FormalConjectures/Util/Answer)
and `Real.nthRoot` (FormalConjecturesForMathlib/β¦/NthRoot). -/
/-- Indicates where the answer is in a problem statement. -/
syntax (name := Google.answer)... | n : β
a : β β β
hβ : Function.Injective a
hβ : a 0 = 0
hβ : 0 < n
β’ β k β Finset.Icc 1 n, 1 / βk β€ β k β Finset.Icc 1 n, β(a k) / βk ^ 2 |
f829d6e5cd474673 | import Mathlib
/- Vendored verbatim from google-deepmind/formal-conjectures @ f564f8d7
(Apache-2.0): the `answer()` term elaborator (FormalConjectures/Util/Answer)
and `Real.nthRoot` (FormalConjecturesForMathlib/β¦/NthRoot). -/
/-- Indicates where the answer is in a problem statement. -/
syntax (name := Google.answer)... | f : β β β
hβ : f 1 = 2
hβ : β (n : β), 1 < n β§ Even n β f n = f (n - 1) + 1
hβ : β (n : β), 1 < n β§ Odd n β f n = f (n - 2) + 2
β’ f 2017 = 2018 |
b1c4f4388d8bc36a | import Mathlib
/- Vendored verbatim from google-deepmind/formal-conjectures @ f564f8d7
(Apache-2.0): the `answer()` term elaborator (FormalConjectures/Util/Answer)
and `Real.nthRoot` (FormalConjecturesForMathlib/β¦/NthRoot). -/
/-- Indicates where the answer is in a problem statement. -/
syntax (name := Google.answer)... | S : Set β
u v : β
hβ : β (a : β), a β S β 0 < a β§ 27 * a % 40 = 17
hβ : IsLeast S u
hβ : IsLeast (S \ {u}) v
β’ u + v = 62 |
795db81db6b47511 | import Mathlib
/- Vendored verbatim from google-deepmind/formal-conjectures @ f564f8d7
(Apache-2.0): the `answer()` term elaborator (FormalConjectures/Util/Answer)
and `Real.nthRoot` (FormalConjecturesForMathlib/β¦/NthRoot). -/
/-- Indicates where the answer is in a problem statement. -/
syntax (name := Google.answer)... | q e : β
hβ : q = 2 - 2 * Complex.I
hβ : e = 5 + 5 * Complex.I
β’ q * e = 20 |
4f1fbbfbd584c505 | import Mathlib
/- Vendored verbatim from google-deepmind/formal-conjectures @ f564f8d7
(Apache-2.0): the `answer()` term elaborator (FormalConjectures/Util/Answer)
and `Real.nthRoot` (FormalConjecturesForMathlib/β¦/NthRoot). -/
/-- Indicates where the answer is in a problem statement. -/
syntax (name := Google.answer)... | S : Finset β
hβ : β (x : β), x β S β 0 < x β§ x ^ 2 ^ β2 = β2 ^ 2 ^ x
β’ β k β S, k β Set.Icc 2 6 |
b85784e202806953 | import Mathlib
/- Vendored verbatim from google-deepmind/formal-conjectures @ f564f8d7
(Apache-2.0): the `answer()` term elaborator (FormalConjectures/Util/Answer)
and `Real.nthRoot` (FormalConjecturesForMathlib/β¦/NthRoot). -/
/-- Indicates where the answer is in a problem statement. -/
syntax (name := Google.answer)... | S : Finset β
hβ : β (x : β), x β S β 0 < x β§ x ^ 2 + 4 * x + 4 < 20
β’ S.card = 2 |
f2d146ec4391bcfa | import Mathlib
/- Vendored verbatim from google-deepmind/formal-conjectures @ f564f8d7
(Apache-2.0): the `answer()` term elaborator (FormalConjectures/Util/Answer)
and `Real.nthRoot` (FormalConjecturesForMathlib/β¦/NthRoot). -/
/-- Indicates where the answer is in a problem statement. -/
syntax (name := Google.answer)... | n : β
hβ : 0 < n
β’ β k β Finset.Icc 1 n, k * n.choose k = n * 2 ^ (n - 1) |
fed4f7a6c17dc0aa | import Mathlib
/- Vendored verbatim from google-deepmind/formal-conjectures @ f564f8d7
(Apache-2.0): the `answer()` term elaborator (FormalConjectures/Util/Answer)
and `Real.nthRoot` (FormalConjecturesForMathlib/β¦/NthRoot). -/
/-- Indicates where the answer is in a problem statement. -/
syntax (name := Google.answer)... | Ο : β β β
hβ : β (x : β), Ο.toFun x = 4 * x ^ 3 + 1
β’ Ο.invFun 33 = 2 |
ed6b96fa632ab0ec | import Mathlib
/- Vendored verbatim from google-deepmind/formal-conjectures @ f564f8d7
(Apache-2.0): the `answer()` term elaborator (FormalConjectures/Util/Answer)
and `Real.nthRoot` (FormalConjecturesForMathlib/β¦/NthRoot). -/
/-- Indicates where the answer is in a problem statement. -/
syntax (name := Google.answer)... | x y : β
hβ : 2 ^ x * 3 ^ y = 1296
β’ x + y = 8 |
343bffafae02e014 | import Mathlib
/- Vendored verbatim from google-deepmind/formal-conjectures @ f564f8d7
(Apache-2.0): the `answer()` term elaborator (FormalConjectures/Util/Answer)
and `Real.nthRoot` (FormalConjecturesForMathlib/β¦/NthRoot). -/
/-- Indicates where the answer is in a problem statement. -/
syntax (name := Google.answer)... | S : Finset β
hβ : β (n : β), n β S β 2 β€ n β§ 171 β‘ 80 [MOD n] β§ 468 β‘ 13 [MOD n]
β’ β k β S, k = 111 |
06269bdcf5a5fcc9 | import Mathlib
/- Vendored verbatim from google-deepmind/formal-conjectures @ f564f8d7
(Apache-2.0): the `answer()` term elaborator (FormalConjectures/Util/Answer)
and `Real.nthRoot` (FormalConjecturesForMathlib/β¦/NthRoot). -/
/-- Indicates where the answer is in a problem statement. -/
syntax (name := Google.answer)... | β’ ββ27β - ββ26β = 1 |
624a7a5c058e8b9b | import Mathlib
/- Vendored verbatim from google-deepmind/formal-conjectures @ f564f8d7
(Apache-2.0): the `answer()` term elaborator (FormalConjectures/Util/Answer)
and `Real.nthRoot` (FormalConjecturesForMathlib/β¦/NthRoot). -/
/-- Indicates where the answer is in a problem statement. -/
syntax (name := Google.answer)... | β’ IsGreatest {x | β x_1 y, β (_ : |x_1 + y| + |x_1 - y| = 2), x_1 ^ 2 - 6 * x_1 + y ^ 2 = x} 8 |
066b42e19278f1b2 | import Mathlib
/- Vendored verbatim from google-deepmind/formal-conjectures @ f564f8d7
(Apache-2.0): the `answer()` term elaborator (FormalConjectures/Util/Answer)
and `Real.nthRoot` (FormalConjecturesForMathlib/β¦/NthRoot). -/
/-- Indicates where the answer is in a problem statement. -/
syntax (name := Google.answer)... | s : β β β β β
hβ : β (a b : β), 0 < a β§ 0 < b β s a b = a ^ b + b ^ a
β’ s 2 6 = 100 |
320e35f6e72afb74 | import Mathlib
/- Vendored verbatim from google-deepmind/formal-conjectures @ f564f8d7
(Apache-2.0): the `answer()` term elaborator (FormalConjectures/Util/Answer)
and `Real.nthRoot` (FormalConjecturesForMathlib/β¦/NthRoot). -/
/-- Indicates where the answer is in a problem statement. -/
syntax (name := Google.answer)... | β’ {n β Finset.range 60 | 6 β£ 4 * βn - 2}.card = 20 |
df2e017834b83107 | import Mathlib
/- Vendored verbatim from google-deepmind/formal-conjectures @ f564f8d7
(Apache-2.0): the `answer()` term elaborator (FormalConjectures/Util/Answer)
and `Real.nthRoot` (FormalConjecturesForMathlib/β¦/NthRoot). -/
/-- Indicates where the answer is in a problem statement. -/
syntax (name := Google.answer)... | β’ (91145 + 91146 + 91147 + 91148) % 4 = 2 |
af8261d93339fd91 | import Mathlib
/- Vendored verbatim from google-deepmind/formal-conjectures @ f564f8d7
(Apache-2.0): the `answer()` term elaborator (FormalConjectures/Util/Answer)
and `Real.nthRoot` (FormalConjecturesForMathlib/β¦/NthRoot). -/
/-- Indicates where the answer is in a problem statement. -/
syntax (name := Google.answer)... | a r : β
u : β β β
hβ : β (k : β), u k = a * r ^ k
hβ : u 1 = 2
hβ : u 3 = 6
β’ let a := 2 / β3;
u 0 = a β¨ u 0 = -a |
c5cb845a6c1c9dd6 | import Mathlib
/- Vendored verbatim from google-deepmind/formal-conjectures @ f564f8d7
(Apache-2.0): the `answer()` term elaborator (FormalConjectures/Util/Answer)
and `Real.nthRoot` (FormalConjecturesForMathlib/β¦/NthRoot). -/
/-- Indicates where the answer is in a problem statement. -/
syntax (name := Google.answer)... | a : β
β’ (a - 10) * (a + 11) = a ^ 2 + a - 110 |
minif2f-satp-v4.27
The 488-base-problem view of the miniF2F benchmark used by AlphaProof,
packaged for Lean 4.27.0 with initial proof goal_state values generated
for SATP v2.
This dataset is intended as the held-out evaluation (test) and
hyperparameter-tuning (validation) benchmark for SATP / sketch-and-prove
pipelines running in a Lean 4.27 environment.
Source
The single source of the problem statements is Google DeepMind
miniF2F@f0a20e1
(MiniF2F/Valid.lean + MiniF2F/Test.lean). Its README identifies this as
the benchmark version used to evaluate AlphaProof, and the repository targets
Lean 4.27. Theorem declarations are taken byte-verbatim from those files,
up to and including their := by proof entry.
validation= the 244 base theorems ofValid.lean. The file additionally declares 12*.variants.*restatements of base problems; variants are not separate problems and are not included.test= the 244 theorems ofTest.lean.- One statement with a term-mode proof (
mathd_numbertheory_66) is closed with:= bylike every other row; proof bodies are never included.
Self-contained header
Upstream files import the answer( ) term elaborator and Real.nthRoot
from google-deepmind/formal-conjectures
(@f564f8d7, Apache-2.0). Each row's formal_statement therefore begins
with a prelude that vendors those two definitions verbatim and applies the
upstream files' open scoped Real Nat Topology Polynomial, followed by the
untouched theorem bytes. Every row elaborates against plain
import Mathlib β no external packages required.
| Lean toolchain | leanprover/lean4:v4.27.0 |
| Mathlib | a3a10db0e9d66acbebf76c5e6a135066525ac900 |
| Goal-state renderer | Lean.Meta.ppGoal at proof entry, row-local environment |
Schema
| Column | Type | Notes |
|---|---|---|
uuid |
string | sha256(canonical(goal_state))[:16]; cross-dataset join key |
formal_statement |
string | prelude header + verbatim upstream theorem declaration ending in := by |
goal_state |
string | Pretty-printed Lean goal at proof entry: hypothesis lines + β’ + target |
Goal-state provenance β read this first
goal_state is the exact (β Lean.Meta.ppGoal (β getMainGoal)).pretty
rendering of the statement's initial goal, produced by elaborating the row's
own formal_statement under the pinned toolchain. answer( ) terms
elaborate to their literal values, so goals read as plain equalities.
Consumers that key on bytes (encoders, uuid joins) can rely on this being
identical to what a Lean tactic observes at proof entry in the same
environment. Do not regenerate goals with a different renderer (e.g. the
REPL's sorries[].goal) β notation expansion differs.
Related SATP datasets (same Lean 4.27 environment):
NuminaMath-LEAN-satp-v4.27β main training setNuminaMath-LEAN-satp-gaps-v4.27β sketch-hole sub-goal augmentation setputnambench-satp-v4.27β PutnamBench evaluation benchmark
- Downloads last month
- 89