|
{"name": "exercise_1_13b", "split": "test", "informal_prefix": "/-- Suppose that $f$ is holomorphic in an open set $\\Omega$. Prove that if $\\text{Im}(f)$ is constant, then $f$ is constant.-/\n", "formal_statement": "theorem exercise_1_13b {f : β β β} (Ξ© : Set β) (a b : Ξ©) (h : IsOpen Ξ©)\n (hf : DifferentiableOn β f Ξ©) (hc : β (c : β), β z β Ξ©, (f z).im = c) :\n f a = f b :=", "goal": "f : β β β\nΞ© : Set β\na b : βΞ©\nh : IsOpen Ξ©\nhf : DifferentiableOn β f Ξ©\nhc : β c, β z β Ξ©, (f z).im = c\nβ’ f βa = f βb", "header": "import Mathlib\n\nopen Complex Filter Function Metric Finset\nopen scoped BigOperators Topology\n\n"} |
|
{"name": "exercise_1_19a", "split": "test", "informal_prefix": "/-- Prove that the power series $\\sum nz^n$ does not converge on any point of the unit circle.-/\n", "formal_statement": "theorem exercise_1_19a (z : β) (hz : abs z = 1) (s : β β β)\n (h : s = (Ξ» n => β i in (range n), i * z ^ i)) :\n Β¬ β y, Tendsto s atTop (π y) :=", "goal": "z : β\nhz : Complex.abs z = 1\ns : β β β\nh : s = fun n => β i β range n, βi * z ^ i\nβ’ Β¬β y, Tendsto s atTop (π y)", "header": "import Mathlib\n\nopen Complex Filter Function Metric Finset\nopen scoped BigOperators Topology\n\n"} |
|
{"name": "exercise_1_19c", "split": "test", "informal_prefix": "/-- Prove that the power series $\\sum zn/n$ converges at every point of the unit circle except $z = 1$.-/\n", "formal_statement": "theorem exercise_1_19c (z : β) (hz : abs z = 1) (hz2 : z β 1) (s : β β β)\n (h : s = (Ξ» n => β i in (range n), i * z / i)) :\n β z, Tendsto s atTop (π z) :=", "goal": "z : β\nhz : Complex.abs z = 1\nhz2 : z β 1\ns : β β β\nh : s = fun n => β i β range n, βi * z / βi\nβ’ β z, Tendsto s atTop (π z)", "header": "import Mathlib\n\nopen Complex Filter Function Metric Finset\nopen scoped BigOperators Topology\n\n"} |
|
{"name": "exercise_2_2", "split": "test", "informal_prefix": "/-- Show that $\\int_{0}^{\\infty} \\frac{\\sin x}{x} d x=\\frac{\\pi}{2}$.-/\n", "formal_statement": "theorem exercise_2_2 :\n Tendsto (Ξ» y => β« x in (0 : β)..y, Real.sin x / x) atTop (π (Real.pi / 2)) :=", "goal": "β’ Tendsto (fun y => β« (x : β) in 0 ..y, x.sin / x) atTop (π (Real.pi / 2))", "header": "import Mathlib\n\nopen Complex Filter Function Metric Finset\nopen scoped BigOperators Topology\n\n"} |
|
{"name": "exercise_2_13", "split": "test", "informal_prefix": "/-- Suppose $f$ is an analytic function defined everywhere in $\\mathbb{C}$ and such that for each $z_0 \\in \\mathbb{C}$ at least one coefficient in the expansion $f(z) = \\sum_{n=0}^\\infty c_n(z - z_0)^n$ is equal to 0. Prove that $f$ is a polynomial.-/\n", "formal_statement": "theorem exercise_2_13 {f : β β β}\n (hf : β zβ : β, β (s : Set β) (c : β β β), IsOpen s β§ zβ β s β§\n β z β s, Tendsto (Ξ» n => β i in range n, (c i) * (z - zβ)^i) atTop (π (f zβ))\n β§ β i, c i = 0) :\n β (c : β β β) (n : β), f = Ξ» z => β i in range n, (c i) * z ^ n :=", "goal": "f : β β β\nhf :\n β (zβ : β),\n β s c,\n IsOpen s β§ zβ β s β§ β z β s, Tendsto (fun n => β i β range n, c i * (z - zβ) ^ i) atTop (π (f zβ)) β§ β i, c i = 0\nβ’ β c n, f = fun z => β i β range n, c i * z ^ n", "header": "import Mathlib\n\nopen Complex Filter Function Metric Finset\nopen scoped BigOperators Topology\n\n"} |
|
{"name": "exercise_3_4", "split": "test", "informal_prefix": "/-- Show that $ \\int_{-\\infty}^{\\infty} \\frac{x \\sin x}{x^2 + a^2} dx = \\pi e^{-a}$ for $a > 0$.-/\n", "formal_statement": "theorem exercise_3_4 (a : β) (ha : 0 < a) :\n Tendsto (Ξ» y => β« x in -y..y, x * Real.sin x / (x ^ 2 + a ^ 2))\n atTop (π (Real.pi * (Real.exp (-a)))) :=", "goal": "a : β\nha : 0 < a\nβ’ Tendsto (fun y => β« (x : β) in -y..y, x * x.sin / (x ^ 2 + a ^ 2)) atTop (π (Real.pi * (-a).exp))", "header": "import Mathlib\n\nopen Complex Filter Function Metric Finset\nopen scoped BigOperators Topology\n\n"} |
|
{"name": "exercise_3_14", "split": "test", "informal_prefix": "/-- Prove that all entire functions that are also injective take the form $f(z) = az + b$, $a, b \\in \\mathbb{C}$ and $a \\neq 0$.-/\n", "formal_statement": "theorem exercise_3_14 {f : β β β} (hf : Differentiable β f)\n (hf_inj : Function.Injective f) :\n β (a b : β), f = (Ξ» z => a * z + b) β§ a β 0 :=", "goal": "f : β β β\nhf : Differentiable β f\nhf_inj : Injective f\nβ’ β a b, (f = fun z => a * z + b) β§ a β 0", "header": "import Mathlib\n\nopen Complex Filter Function Metric Finset\nopen scoped BigOperators Topology\n\n"} |
|
{"name": "exercise_5_1", "split": "test", "informal_prefix": "/-- Prove that if $f$ is holomorphic in the unit disc, bounded and not identically zero, and $z_{1}, z_{2}, \\ldots, z_{n}, \\ldots$ are its zeros $\\left(\\left|z_{k}\\right|<1\\right)$, then $\\sum_{n}\\left(1-\\left|z_{n}\\right|\\right)<\\infty$.-/\n", "formal_statement": "theorem exercise_5_1 (f : β β β) (hf : DifferentiableOn β f (ball 0 1))\n (hb : Bornology.IsBounded (Set.range f)) (h0 : f β 0) (zeros : β β β) (hz : β n, f (zeros n) = 0)\n (hzz : Set.range zeros = {z | f z = 0 β§ z β (ball (0 : β) 1)}) :\n β (z : β), Tendsto (Ξ» n => (β i in range n, (1 - zeros i))) atTop (π z) :=", "goal": "f : β β β\nhf : DifferentiableOn β f (ball 0 1)\nhb : Bornology.IsBounded (Set.range f)\nh0 : f β 0\nzeros : β β β\nhz : β (n : β), f (zeros n) = 0\nhzz : Set.range zeros = {z | f z = 0 β§ z β ball 0 1}\nβ’ β z, Tendsto (fun n => β i β range n, (1 - zeros i)) atTop (π z)", "header": "import Mathlib\n\nopen Complex Filter Function Metric Finset\nopen scoped BigOperators Topology\n\n"} |
|
{"name": "exercise_1_1b", "split": "test", "informal_prefix": "/-- If $r$ is rational $(r \\neq 0)$ and $x$ is irrational, prove that $rx$ is irrational.-/\n", "formal_statement": "theorem exercise_1_1b\n(x : β)\n(y : β)\n(h : y β 0)\n: ( Irrational x ) -> Irrational ( x * y ) :=", "goal": "x : β\ny : β\nh : y β 0\nβ’ Irrational x β Irrational (x * βy)", "header": "import Mathlib\n\nopen Topology Filter Real Complex TopologicalSpace Finset\nopen scoped BigOperators\n\n"} |
|
{"name": "exercise_1_4", "split": "test", "informal_prefix": "/-- Let $E$ be a nonempty subset of an ordered set; suppose $\\alpha$ is a lower bound of $E$ and $\\beta$ is an upper bound of $E$. Prove that $\\alpha \\leq \\beta$.-/\n", "formal_statement": "theorem exercise_1_4\n(Ξ± : Type*) [PartialOrder Ξ±]\n(s : Set Ξ±)\n(x y : Ξ±)\n(hβ : Set.Nonempty s)\n(hβ : x β lowerBounds s)\n(hβ : y β upperBounds s)\n: x β€ y :=", "goal": "Ξ± : Type u_1\ninstβ : PartialOrder Ξ±\ns : Set Ξ±\nx y : Ξ±\nhβ : s.Nonempty\nhβ : x β lowerBounds s\nhβ : y β upperBounds s\nβ’ x β€ y", "header": "import Mathlib\n\nopen Topology Filter Real Complex TopologicalSpace Finset\nopen scoped BigOperators\n\n"} |
|
{"name": "exercise_1_8", "split": "test", "informal_prefix": "/-- Prove that no order can be defined in the complex field that turns it into an ordered field.-/\n", "formal_statement": "theorem exercise_1_8 : Β¬ β (r : β β β β Prop), IsLinearOrder β r :=", "goal": "β’ Β¬β r, IsLinearOrder β r", "header": "import Mathlib\n\nopen Topology Filter Real Complex TopologicalSpace Finset\nopen scoped BigOperators\n\n"} |
|
{"name": "exercise_1_12", "split": "test", "informal_prefix": "/-- If $z_1, \\ldots, z_n$ are complex, prove that $|z_1 + z_2 + \\ldots + z_n| \\leq |z_1| + |z_2| + \\cdots + |z_n|$.-/\n", "formal_statement": "theorem exercise_1_12 (n : β) (f : β β β) :\n abs (β i in range n, f i) β€ β i in range n, abs (f i) :=", "goal": "n : β\nf : β β β\nβ’ Complex.abs (β i β range n, f i) β€ β i β range n, Complex.abs (f i)", "header": "import Mathlib\n\nopen Topology Filter Real Complex TopologicalSpace Finset\nopen scoped BigOperators\n\n"} |
|
{"name": "exercise_1_14", "split": "test", "informal_prefix": "/-- If $z$ is a complex number such that $|z|=1$, that is, such that $z \\bar{z}=1$, compute $|1+z|^{2}+|1-z|^{2}$.-/\n", "formal_statement": "theorem exercise_1_14\n (z : β) (h : abs z = 1)\n : (abs (1 + z)) ^ 2 + (abs (1 - z)) ^ 2 = 4 :=", "goal": "z : β\nh : Complex.abs z = 1\nβ’ Complex.abs (1 + z) ^ 2 + Complex.abs (1 - z) ^ 2 = 4", "header": "import Mathlib\n\nopen Topology Filter Real Complex TopologicalSpace Finset\nopen scoped BigOperators\n\n"} |
|
{"name": "exercise_1_17", "split": "test", "informal_prefix": "/-- Prove that $|\\mathbf{x}+\\mathbf{y}|^{2}+|\\mathbf{x}-\\mathbf{y}|^{2}=2|\\mathbf{x}|^{2}+2|\\mathbf{y}|^{2}$ if $\\mathbf{x} \\in R^{k}$ and $\\mathbf{y} \\in R^{k}$.-/\n", "formal_statement": "theorem exercise_1_17\n (n : β)\n (x y : EuclideanSpace β (Fin n)) -- R^n\n : βx + yβ^2 + βx - yβ^2 = 2*βxβ^2 + 2*βyβ^2 :=", "goal": "n : β\nx y : EuclideanSpace β (Fin n)\nβ’ βx + yβ ^ 2 + βx - yβ ^ 2 = 2 * βxβ ^ 2 + 2 * βyβ ^ 2", "header": "import Mathlib\n\nopen Topology Filter Real Complex TopologicalSpace Finset\nopen scoped BigOperators\n\n"} |
|
{"name": "exercise_1_18b", "split": "test", "informal_prefix": "/-- If $k = 1$ and $\\mathbf{x} \\in R^{k}$, prove that there does not exist $\\mathbf{y} \\in R^{k}$ such that $\\mathbf{y} \\neq 0$ but $\\mathbf{x} \\cdot \\mathbf{y}=0$-/\n", "formal_statement": "theorem exercise_1_18b\n : Β¬ β (x : β), β (y : β), y β 0 β§ x * y = 0 :=", "goal": "β’ Β¬β (x : β), β y, y β 0 β§ x * y = 0", "header": "import Mathlib\n\nopen Topology Filter Real Complex TopologicalSpace Finset\nopen scoped BigOperators\n\n"} |
|
{"name": "exercise_2_19a", "split": "test", "informal_prefix": "/-- If $A$ and $B$ are disjoint closed sets in some metric space $X$, prove that they are separated.-/\n", "formal_statement": "theorem exercise_2_19a {X : Type*} [MetricSpace X]\n (A B : Set X) (hA : IsClosed A) (hB : IsClosed B) (hAB : Disjoint A B) :\n SeparatedNhds A B :=", "goal": "X : Type u_1\ninstβ : MetricSpace X\nA B : Set X\nhA : IsClosed A\nhB : IsClosed B\nhAB : Disjoint A B\nβ’ SeparatedNhds A B", "header": "import Mathlib\n\nopen Topology Filter Real Complex TopologicalSpace Finset\nopen scoped BigOperators\n\n"} |
|
{"name": "exercise_2_25", "split": "test", "informal_prefix": "/-- Prove that every compact metric space $K$ has a countable base.-/\n", "formal_statement": "theorem exercise_2_25 {K : Type*} [MetricSpace K] [CompactSpace K] :\n β (B : Set (Set K)), Set.Countable B β§ IsTopologicalBasis B :=", "goal": "K : Type u_1\ninstβΒΉ : MetricSpace K\ninstβ : CompactSpace K\nβ’ β B, B.Countable β§ IsTopologicalBasis B", "header": "import Mathlib\n\nopen Topology Filter Real Complex TopologicalSpace Finset\nopen scoped BigOperators\n\n"} |
|
{"name": "exercise_2_27b", "split": "test", "informal_prefix": "/-- Suppose $E\\subset\\mathbb{R}^k$ is uncountable, and let $P$ be the set of condensation points of $E$. Prove that at most countably many points of $E$ are not in $P$.-/\n", "formal_statement": "theorem exercise_2_27b (k : β) (E P : Set (EuclideanSpace β (Fin k)))\n (hE : E.Nonempty β§ Β¬ Set.Countable E)\n (hP : P = {x | β U β π x, (P β© E).Nonempty β§ Β¬ Set.Countable (P β© E)}) :\n Set.Countable (E \\ P) :=", "goal": "k : β\nE P : Set (EuclideanSpace β (Fin k))\nhE : E.Nonempty β§ Β¬E.Countable\nhP : P = {x | β U β π x, (P β© E).Nonempty β§ Β¬(P β© E).Countable}\nβ’ (E \\ P).Countable", "header": "import Mathlib\n\nopen Topology Filter Real Complex TopologicalSpace Finset\nopen scoped BigOperators\n\n"} |
|
{"name": "exercise_2_29", "split": "test", "informal_prefix": "/-- Prove that every open set in $\\mathbb{R}$ is the union of an at most countable collection of disjoint segments.-/\n", "formal_statement": "theorem exercise_2_29 (U : Set β) (hU : IsOpen U) :\n β (f : β β Set β), (β n, β a b : β, f n = {x | a < x β§ x < b}) β§ (β n, f n β U) β§\n (β n m, n β m β f n β© f m = β
) β§\n U = β n, f n :=", "goal": "U : Set β\nhU : IsOpen U\nβ’ β f,\n (β (n : β), β a b, f n = {x | a < x β§ x < b}) β§\n (β (n : β), f n β U) β§ (β (n m : β), n β m β f n β© f m = β
) β§ U = β n, f n", "header": "import Mathlib\n\nopen Topology Filter Real Complex TopologicalSpace Finset\nopen scoped BigOperators\n\n"} |
|
{"name": "exercise_3_2a", "split": "test", "informal_prefix": "/-- Prove that $\\lim_{n \\rightarrow \\infty}\\sqrt{n^2 + n} -n = 1/2$.-/\n", "formal_statement": "theorem exercise_3_2a\n : Tendsto (Ξ» (n : β) => (sqrt (n^2 + n) - n)) atTop (π (1/2)) :=", "goal": "β’ Tendsto (fun n => β(n ^ 2 + n) - n) atTop (π (1 / 2))", "header": "import Mathlib\n\nopen Topology Filter Real Complex TopologicalSpace Finset\nopen scoped BigOperators\n\n"} |
|
{"name": "exercise_3_5", "split": "test", "informal_prefix": "/-- For any two real sequences $\\left\\{a_{n}\\right\\},\\left\\{b_{n}\\right\\}$, prove that $\\limsup _{n \\rightarrow \\infty}\\left(a_{n}+b_{n}\\right) \\leq \\limsup _{n \\rightarrow \\infty} a_{n}+\\limsup _{n \\rightarrow \\infty} b_{n},$ provided the sum on the right is not of the form $\\infty-\\infty$.-/\n", "formal_statement": "theorem exercise_3_5\n (a b : β β β)\n (h : limsup a + limsup b β 0) :\n limsup (Ξ» n => a n + b n) β€ limsup a + limsup b :=", "goal": "a b : β β β\nh : limsup a + limsup b β 0\nβ’ (limsup fun n => a n + b n) β€ limsup a + limsup b", "header": "import Mathlib\n\nopen Topology Filter Real Complex TopologicalSpace Finset\nopen scoped BigOperators\n\n"} |
|
{"name": "exercise_3_7", "split": "test", "informal_prefix": "/-- Prove that the convergence of $\\Sigma a_{n}$ implies the convergence of $\\sum \\frac{\\sqrt{a_{n}}}{n}$ if $a_n\\geq 0$.-/\n", "formal_statement": "theorem exercise_3_7\n (a : β β β)\n (h : β y, (Tendsto (Ξ» n => (β i in (range n), a i)) atTop (π y))) :\n β y, Tendsto (Ξ» n => (β i in (range n), sqrt (a i) / n)) atTop (π y) :=", "goal": "a : β β β\nh : β y, Tendsto (fun n => β i β range n, a i) atTop (π y)\nβ’ β y, Tendsto (fun n => β i β range n, β(a i) / βn) atTop (π y)", "header": "import Mathlib\n\nopen Topology Filter Real Complex TopologicalSpace Finset\nopen scoped BigOperators\n\n"} |
|
{"name": "exercise_3_13", "split": "test", "informal_prefix": "/-- Prove that the Cauchy product of two absolutely convergent series converges absolutely.-/\n", "formal_statement": "theorem exercise_3_13\n (a b : β β β)\n (ha : β y, (Tendsto (Ξ» n => (β i in (range n), |a i|)) atTop (π y)))\n (hb : β y, (Tendsto (Ξ» n => (β i in (range n), |b i|)) atTop (π y))) :\n β y, (Tendsto (Ξ» n => (β i in (range n),\n Ξ» i => (β j in range (i + 1), a j * b (i - j)))) atTop (π y)) :=", "goal": "a b : β β β\nha : β y, Tendsto (fun n => β i β range n, |a i|) atTop (π y)\nhb : β y, Tendsto (fun n => β i β range n, |b i|) atTop (π y)\nβ’ β y, Tendsto (fun n => β i β range n, fun i => β j β range (i + 1), a j * b (i - j)) atTop (π y)", "header": "import Mathlib\n\nopen Topology Filter Real Complex TopologicalSpace Finset\nopen scoped BigOperators\n\n"} |
|
{"name": "exercise_3_21", "split": "test", "informal_prefix": "/-- If $\\left\\{E_{n}\\right\\}$ is a sequence of closed nonempty and bounded sets in a complete metric space $X$, if $E_{n} \\supset E_{n+1}$, and if $\\lim _{n \\rightarrow \\infty} \\operatorname{diam} E_{n}=0,$ then $\\bigcap_{1}^{\\infty} E_{n}$ consists of exactly one point.-/\n", "formal_statement": "theorem exercise_3_21\n {X : Type*} [MetricSpace X] [CompleteSpace X]\n (E : β β Set X)\n (hE : β n, E n β E (n + 1))\n (hE' : Tendsto (Ξ» n => Metric.diam (E n)) atTop (π 0)) :\n β a, Set.iInter E = {a} :=", "goal": "X : Type u_1\ninstβΒΉ : MetricSpace X\ninstβ : CompleteSpace X\nE : β β Set X\nhE : β (n : β), E n β E (n + 1)\nhE' : Tendsto (fun n => Metric.diam (E n)) atTop (π 0)\nβ’ β a, Set.iInter E = {a}", "header": "import Mathlib\n\nopen Topology Filter Real Complex TopologicalSpace Finset\nopen scoped BigOperators\n\n"} |
|
{"name": "exercise_4_1a", "split": "test", "informal_prefix": "/-- Suppose $f$ is a real function defined on $\\mathbb{R}$ which satisfies $\\lim_{h \\rightarrow 0} f(x + h) - f(x - h) = 0$ for every $x \\in \\mathbb{R}$. Show that $f$ does not need to be continuous.-/\n", "formal_statement": "theorem exercise_4_1a\n : β (f : β β β), (β (x : β), Tendsto (Ξ» y => f (x + y) - f (x - y)) (π 0) (π 0)) β§ Β¬ Continuous f :=", "goal": "β’ β f, (β (x : β), Tendsto (fun y => f (x + y) - f (x - y)) (π 0) (π 0)) β§ Β¬Continuous f", "header": "import Mathlib\n\nopen Topology Filter Real Complex TopologicalSpace Finset\nopen scoped BigOperators\n\n"} |
|
{"name": "exercise_4_3", "split": "test", "informal_prefix": "/-- Let $f$ be a continuous real function on a metric space $X$. Let $Z(f)$ (the zero set of $f$ ) be the set of all $p \\in X$ at which $f(p)=0$. Prove that $Z(f)$ is closed.-/\n", "formal_statement": "theorem exercise_4_3\n {Ξ± : Type} [MetricSpace Ξ±]\n (f : Ξ± β β) (h : Continuous f) (z : Set Ξ±) (g : z = fβ»ΒΉ' {0})\n : IsClosed z :=", "goal": "Ξ± : Type\ninstβ : MetricSpace Ξ±\nf : Ξ± β β\nh : Continuous f\nz : Set Ξ±\ng : z = f β»ΒΉ' {0}\nβ’ IsClosed z", "header": "import Mathlib\n\nopen Topology Filter Real Complex TopologicalSpace Finset\nopen scoped BigOperators\n\n"} |
|
{"name": "exercise_4_4b", "split": "test", "informal_prefix": "/-- Let $f$ and $g$ be continuous mappings of a metric space $X$ into a metric space $Y$, and let $E$ be a dense subset of $X$. Prove that if $g(p) = f(p)$ for all $p \\in P$ then $g(p) = f(p)$ for all $p \\in X$.-/\n", "formal_statement": "theorem exercise_4_4b\n {Ξ± : Type} [MetricSpace Ξ±]\n {Ξ² : Type} [MetricSpace Ξ²]\n (f g : Ξ± β Ξ²)\n (s : Set Ξ±)\n (hβ : Continuous f)\n (hβ : Continuous g)\n (hβ : Dense s)\n (hβ : β x β s, f x = g x)\n : f = g :=", "goal": "Ξ± : Type\ninstβΒΉ : MetricSpace Ξ±\nΞ² : Type\ninstβ : MetricSpace Ξ²\nf g : Ξ± β Ξ²\ns : Set Ξ±\nhβ : Continuous f\nhβ : Continuous g\nhβ : Dense s\nhβ : β x β s, f x = g x\nβ’ f = g", "header": "import Mathlib\n\nopen Topology Filter Real Complex TopologicalSpace Finset\nopen scoped BigOperators\n\n"} |
|
{"name": "exercise_4_5b", "split": "test", "informal_prefix": "/-- Show that there exist a set $E \\subset \\mathbb{R}$ and a real continuous function $f$ defined on $E$, such that there does not exist a continuous real function $g$ on $\\mathbb{R}$ such that $g(x)=f(x)$ for all $x \\in E$.-/\n", "formal_statement": "theorem exercise_4_5b\n : β (E : Set β) (f : β β β), (ContinuousOn f E) β§\n (Β¬ β (g : β β β), Continuous g β§ β x β E, f x = g x) :=", "goal": "β’ β E f, ContinuousOn f E β§ Β¬β g, Continuous g β§ β x β E, f x = g x", "header": "import Mathlib\n\nopen Topology Filter Real Complex TopologicalSpace Finset\nopen scoped BigOperators\n\n"} |
|
{"name": "exercise_4_8a", "split": "test", "informal_prefix": "/-- Let $f$ be a real uniformly continuous function on the bounded set $E$ in $R^{1}$. Prove that $f$ is bounded on $E$.-/\n", "formal_statement": "theorem exercise_4_8a\n (E : Set β) (f : β β β) (hf : UniformContinuousOn f E)\n (hE : Bornology.IsBounded E) : Bornology.IsBounded (Set.image f E) :=", "goal": "E : Set β\nf : β β β\nhf : UniformContinuousOn f E\nhE : Bornology.IsBounded E\nβ’ Bornology.IsBounded (f '' E)", "header": "import Mathlib\n\nopen Topology Filter Real Complex TopologicalSpace Finset\nopen scoped BigOperators\n\n"} |
|
{"name": "exercise_4_11a", "split": "test", "informal_prefix": "/-- Suppose $f$ is a uniformly continuous mapping of a metric space $X$ into a metric space $Y$ and prove that $\\left\\{f\\left(x_{n}\\right)\\right\\}$ is a Cauchy sequence in $Y$ for every Cauchy sequence $\\{x_n\\}$ in $X$.-/\n", "formal_statement": "theorem exercise_4_11a\n {X : Type*} [MetricSpace X]\n {Y : Type*} [MetricSpace Y]\n (f : X β Y) (hf : UniformContinuous f)\n (x : β β X) (hx : CauchySeq x) :\n CauchySeq (Ξ» n => f (x n)) :=", "goal": "X : Type u_1\ninstβΒΉ : MetricSpace X\nY : Type u_2\ninstβ : MetricSpace Y\nf : X β Y\nhf : UniformContinuous f\nx : β β X\nhx : CauchySeq x\nβ’ CauchySeq fun n => f (x n)", "header": "import Mathlib\n\nopen Topology Filter Real Complex TopologicalSpace Finset\nopen scoped BigOperators\n\n"} |
|
{"name": "exercise_4_15", "split": "test", "informal_prefix": "/-- Prove that every continuous open mapping of $R^{1}$ into $R^{1}$ is monotonic.-/\n", "formal_statement": "theorem exercise_4_15 {f : β β β}\n (hf : Continuous f) (hof : IsOpenMap f) :\n Monotone f :=", "goal": "f : β β β\nhf : Continuous f\nhof : IsOpenMap f\nβ’ Monotone f", "header": "import Mathlib\n\nopen Topology Filter Real Complex TopologicalSpace Finset\nopen scoped BigOperators\n\n"} |
|
{"name": "exercise_4_21a", "split": "test", "informal_prefix": "/-- Suppose $K$ and $F$ are disjoint sets in a metric space $X, K$ is compact, $F$ is closed. Prove that there exists $\\delta>0$ such that $d(p, q)>\\delta$ if $p \\in K, q \\in F$.-/\n", "formal_statement": "theorem exercise_4_21a {X : Type*} [MetricSpace X]\n (K F : Set X) (hK : IsCompact K) (hF : IsClosed F) (hKF : Disjoint K F) :\n β (Ξ΄ : β), Ξ΄ > 0 β§ β (p q : X), p β K β q β F β dist p q β₯ Ξ΄ :=", "goal": "X : Type u_1\ninstβ : MetricSpace X\nK F : Set X\nhK : IsCompact K\nhF : IsClosed F\nhKF : Disjoint K F\nβ’ β Ξ΄ > 0, β (p q : X), p β K β q β F β dist p q β₯ Ξ΄", "header": "import Mathlib\n\nopen Topology Filter Real Complex TopologicalSpace Finset\nopen scoped BigOperators\n\n"} |
|
{"name": "exercise_5_1", "split": "test", "informal_prefix": "/-- Let $f$ be defined for all real $x$, and suppose that $|f(x)-f(y)| \\leq (x-y)^{2}$ for all real $x$ and $y$. Prove that $f$ is constant.-/\n", "formal_statement": "theorem exercise_5_1\n {f : β β β} (hf : β x y : β, |(f x - f y)| β€ (x - y) ^ 2) :\n β c, f = Ξ» x => c :=", "goal": "f : β β β\nhf : β (x y : β), |f x - f y| β€ (x - y) ^ 2\nβ’ β c, f = fun x => c", "header": "import Mathlib\n\nopen Topology Filter Real Complex TopologicalSpace Finset\nopen scoped BigOperators\n\n"} |
|
{"name": "exercise_5_3", "split": "test", "informal_prefix": "/-- Suppose $g$ is a real function on $R^{1}$, with bounded derivative (say $\\left|g^{\\prime}\\right| \\leq M$ ). Fix $\\varepsilon>0$, and define $f(x)=x+\\varepsilon g(x)$. Prove that $f$ is one-to-one if $\\varepsilon$ is small enough.-/\n", "formal_statement": "theorem exercise_5_3 {g : β β β} (hg : Continuous g)\n (hg' : β M : β, β x : β, |deriv g x| β€ M) :\n β N, β Ξ΅ > 0, Ξ΅ < N β Function.Injective (Ξ» x : β => x + Ξ΅ * g x) :=", "goal": "g : β β β\nhg : Continuous g\nhg' : β M, β (x : β), |deriv g x| β€ M\nβ’ β N, β Ξ΅ > 0, Ξ΅ < N β Function.Injective fun x => x + Ξ΅ * g x", "header": "import Mathlib\n\nopen Topology Filter Real Complex TopologicalSpace Finset\nopen scoped BigOperators\n\n"} |
|
{"name": "exercise_5_5", "split": "test", "informal_prefix": "/-- Suppose $f$ is defined and differentiable for every $x>0$, and $f^{\\prime}(x) \\rightarrow 0$ as $x \\rightarrow+\\infty$. Put $g(x)=f(x+1)-f(x)$. Prove that $g(x) \\rightarrow 0$ as $x \\rightarrow+\\infty$.-/\n", "formal_statement": "theorem exercise_5_5\n {f : β β β}\n (hfd : Differentiable β f)\n (hf : Tendsto (deriv f) atTop (π 0)) :\n Tendsto (Ξ» x => f (x + 1) - f x) atTop atTop :=", "goal": "f : β β β\nhfd : Differentiable β f\nhf : Tendsto (deriv f) atTop (π 0)\nβ’ Tendsto (fun x => f (x + 1) - f x) atTop atTop", "header": "import Mathlib\n\nopen Topology Filter Real Complex TopologicalSpace Finset\nopen scoped BigOperators\n\n"} |
|
{"name": "exercise_5_7", "split": "test", "informal_prefix": "/-- Suppose $f^{\\prime}(x), g^{\\prime}(x)$ exist, $g^{\\prime}(x) \\neq 0$, and $f(x)=g(x)=0$. Prove that $\\lim _{t \\rightarrow x} \\frac{f(t)}{g(t)}=\\frac{f^{\\prime}(x)}{g^{\\prime}(x)}.$-/\n", "formal_statement": "theorem exercise_5_7\n {f g : β β β} {x : β}\n (hf' : DifferentiableAt β f 0)\n (hg' : DifferentiableAt β g 0)\n (hg'_ne_0 : deriv g 0 β 0)\n (f0 : f 0 = 0) (g0 : g 0 = 0) :\n Tendsto (Ξ» x => f x / g x) (π x) (π (deriv f x / deriv g x)) :=", "goal": "f g : β β β\nx : β\nhf' : DifferentiableAt β f 0\nhg' : DifferentiableAt β g 0\nhg'_ne_0 : deriv g 0 β 0\nf0 : f 0 = 0\ng0 : g 0 = 0\nβ’ Tendsto (fun x => f x / g x) (π x) (π (deriv f x / deriv g x))", "header": "import Mathlib\n\nopen Topology Filter Real Complex TopologicalSpace Finset\nopen scoped BigOperators\n\n"} |
|
{"name": "exercise_5_17", "split": "test", "informal_prefix": "/-- Suppose $f$ is a real, three times differentiable function on $[-1,1]$, such that $f(-1)=0, \\quad f(0)=0, \\quad f(1)=1, \\quad f^{\\prime}(0)=0 .$ Prove that $f^{(3)}(x) \\geq 3$ for some $x \\in(-1,1)$.-/\n", "formal_statement": "theorem exercise_5_17\n {f : β β β}\n (hf' : DifferentiableOn β f (Set.Icc (-1) 1))\n (hf'' : DifferentiableOn β (deriv f) (Set.Icc 1 1))\n (hf''' : DifferentiableOn β (deriv (deriv f)) (Set.Icc 1 1))\n (hf0 : f (-1) = 0)\n (hf1 : f 0 = 0)\n (hf2 : f 1 = 1)\n (hf3 : deriv f 0 = 0) :\n β x, x β Set.Ioo (-1 : β) 1 β§ deriv (deriv (deriv f)) x β₯ 3 :=", "goal": "f : β β β\nhf' : DifferentiableOn β f (Set.Icc (-1) 1)\nhf'' : DifferentiableOn β (deriv f) (Set.Icc 1 1)\nhf''' : DifferentiableOn β (deriv (deriv f)) (Set.Icc 1 1)\nhf0 : f (-1) = 0\nhf1 : f 0 = 0\nhf2 : f 1 = 1\nhf3 : deriv f 0 = 0\nβ’ β x β Set.Ioo (-1) 1, deriv (deriv (deriv f)) x β₯ 3", "header": "import Mathlib\n\nopen Topology Filter Real Complex TopologicalSpace Finset\nopen scoped BigOperators\n\n"} |
|
{"name": "exercise_2_1_18", "split": "test", "informal_prefix": "/-- If $G$ is a finite group of even order, show that there must be an element $a \\neq e$ such that $a=a^{-1}$.-/\n", "formal_statement": "theorem exercise_2_1_18 {G : Type*} [Group G]\n [Fintype G] (hG2 : Even (card G)) :\n β (a : G), a β 1 β§ a = aβ»ΒΉ :=", "goal": "G : Type u_1\ninstβΒΉ : Group G\ninstβ : Fintype G\nhG2 : Even (card G)\nβ’ β a, a β 1 β§ a = aβ»ΒΉ", "header": "import Mathlib\n\nopen Fintype Set Real Ideal Polynomial\nopen scoped BigOperators\n\n"} |
|
{"name": "exercise_2_1_26", "split": "test", "informal_prefix": "/-- If $G$ is a finite group, prove that, given $a \\in G$, there is a positive integer $n$, depending on $a$, such that $a^n = e$.-/\n", "formal_statement": "theorem exercise_2_1_26 {G : Type*} [Group G]\n [Fintype G] (a : G) : β (n : β), a ^ n = 1 :=", "goal": "G : Type u_1\ninstβΒΉ : Group G\ninstβ : Fintype G\na : G\nβ’ β n, a ^ n = 1", "header": "import Mathlib\n\nopen Fintype Set Real Ideal Polynomial\nopen scoped BigOperators\n\n"} |
|
{"name": "exercise_2_2_3", "split": "test", "informal_prefix": "/-- If $G$ is a group in which $(a b)^{i}=a^{i} b^{i}$ for three consecutive integers $i$, prove that $G$ is abelian.-/\n", "formal_statement": "def exercise_2_2_3 {G : Type*} [Group G]\n {P : β β Prop} {hP : P = Ξ» i => β a b : G, (a*b)^i = a^i * b^i}\n (hP1 : β n : β, P n β§ P (n+1) β§ P (n+2)) : CommGroup G :=", "goal": "G : Type u_1\ninstβ : Group G\nP : β β Prop\nhP : P = fun i => β (a b : G), (a * b) ^ i = a ^ i * b ^ i\nhP1 : β n, P n β§ P (n + 1) β§ P (n + 2)\nβ’ CommGroup G", "header": "import Mathlib\n\nopen Fintype Set Real Ideal Polynomial\nopen scoped BigOperators\n\n"} |
|
{"name": "exercise_2_2_6c", "split": "test", "informal_prefix": "/-- Let $G$ be a group in which $(a b)^{n}=a^{n} b^{n}$ for some fixed integer $n>1$ for all $a, b \\in G$. For all $a, b \\in G$, prove that $\\left(a b a^{-1} b^{-1}\\right)^{n(n-1)}=e$.-/\n", "formal_statement": "theorem exercise_2_2_6c {G : Type*} [Group G] {n : β} (hn : n > 1)\n (h : β (a b : G), (a * b) ^ n = a ^ n * b ^ n) :\n β (a b : G), (a * b * aβ»ΒΉ * bβ»ΒΉ) ^ (n * (n - 1)) = 1 :=", "goal": "G : Type u_1\ninstβ : Group G\nn : β\nhn : n > 1\nh : β (a b : G), (a * b) ^ n = a ^ n * b ^ n\nβ’ β (a b : G), (a * b * aβ»ΒΉ * bβ»ΒΉ) ^ (n * (n - 1)) = 1", "header": "import Mathlib\n\nopen Fintype Set Real Ideal Polynomial\nopen scoped BigOperators\n\n"} |
|
{"name": "exercise_2_3_16", "split": "test", "informal_prefix": "/-- If a group $G$ has no proper subgroups, prove that $G$ is cyclic of order $p$, where $p$ is a prime number.-/\n", "formal_statement": "theorem exercise_2_3_16 {G : Type*} [Group G]\n (hG : β H : Subgroup G, H = β€ β¨ H = β₯) :\n IsCyclic G β§ β (p : β) (Fin : Fintype G), Nat.Prime p β§ @card G Fin = p :=", "goal": "G : Type u_1\ninstβ : Group G\nhG : β (H : Subgroup G), H = β€ β¨ H = β₯\nβ’ IsCyclic G β§ β p Fin, p.Prime β§ card G = p", "header": "import Mathlib\n\nopen Fintype Set Real Ideal Polynomial\nopen scoped BigOperators\n\n"} |
|
{"name": "exercise_2_5_23", "split": "test", "informal_prefix": "/-- Let $G$ be a group such that all subgroups of $G$ are normal in $G$. If $a, b \\in G$, prove that $ba = a^jb$ for some $j$.-/\n", "formal_statement": "theorem exercise_2_5_23 {G : Type*} [Group G]\n (hG : β (H : Subgroup G), H.Normal) (a b : G) :\n β (j : β€) , b*a = a^j * b :=", "goal": "G : Type u_1\ninstβ : Group G\nhG : β (H : Subgroup G), H.Normal\na b : G\nβ’ β j, b * a = a ^ j * b", "header": "import Mathlib\n\nopen Fintype Set Real Ideal Polynomial\nopen scoped BigOperators\n\n"} |
|
{"name": "exercise_2_5_31", "split": "test", "informal_prefix": "/-- Suppose that $G$ is an abelian group of order $p^nm$ where $p \\nmid m$ is a prime. If $H$ is a subgroup of $G$ of order $p^n$, prove that $H$ is a characteristic subgroup of $G$.-/\n", "formal_statement": "theorem exercise_2_5_31 {G : Type*} [CommGroup G] [Fintype G]\n {p m n : β} (hp : Nat.Prime p) (hp1 : Β¬ p β£ m) (hG : card G = p^n*m)\n {H : Subgroup G} [Fintype H] (hH : card H = p^n) :\n Subgroup.Characteristic H :=", "goal": "G : Type u_1\ninstβΒ² : CommGroup G\ninstβΒΉ : Fintype G\np m n : β\nhp : p.Prime\nhp1 : Β¬p β£ m\nhG : card G = p ^ n * m\nH : Subgroup G\ninstβ : Fintype β₯H\nhH : card β₯H = p ^ n\nβ’ H.Characteristic", "header": "import Mathlib\n\nopen Fintype Set Real Ideal Polynomial\nopen scoped BigOperators\n\n"} |
|
{"name": "exercise_2_5_43", "split": "test", "informal_prefix": "/-- Prove that a group of order 9 must be abelian.-/\n", "formal_statement": "def exercise_2_5_43 (G : Type*) [Group G] [Fintype G]\n (hG : card G = 9) :\n CommGroup G :=", "goal": "G : Type u_1\ninstβΒΉ : Group G\ninstβ : Fintype G\nhG : card G = 9\nβ’ CommGroup G", "header": "import Mathlib\n\nopen Fintype Set Real Ideal Polynomial\nopen scoped BigOperators\n\n"} |
|
{"name": "exercise_2_5_52", "split": "test", "informal_prefix": "/-- Let $G$ be a finite group and $\\varphi$ an automorphism of $G$ such that $\\varphi(x) = x^{-1}$ for more than three-fourths of the elements of $G$. Prove that $\\varphi(y) = y^{-1}$ for all $y \\in G$, and so $G$ is abelian.-/\n", "formal_statement": "theorem exercise_2_5_52 {G : Type*} [Group G] [Fintype G]\n (Ο : G β* G) {I : Finset G} (hI : β x β I, Ο x = xβ»ΒΉ)\n (hI1 : (0.75 : β) * card G β€ card I) :\n β x : G, Ο x = xβ»ΒΉ β§ β x y : G, x*y = y*x :=", "goal": "G : Type u_1\ninstβΒΉ : Group G\ninstβ : Fintype G\nΟ : G β* G\nI : Finset G\nhI : β x β I, Ο x = xβ»ΒΉ\nhI1 : 0.75 * β(card G) β€ β(card { x // x β I })\nβ’ β (x : G), Ο x = xβ»ΒΉ β§ β (x y : G), x * y = y * x", "header": "import Mathlib\n\nopen Fintype Set Real Ideal Polynomial\nopen scoped BigOperators\n\n"} |
|
{"name": "exercise_2_7_7", "split": "test", "informal_prefix": "/-- If $\\varphi$ is a homomorphism of $G$ onto $G'$ and $N \\triangleleft G$, show that $\\varphi(N) \\triangleleft G'$.-/\n", "formal_statement": "theorem exercise_2_7_7 {G : Type*} [Group G] {G' : Type*} [Group G']\n (Ο : G β* G') (N : Subgroup G) [N.Normal] :\n (Subgroup.map Ο N).Normal :=", "goal": "G : Type u_1\ninstβΒ² : Group G\nG' : Type u_2\ninstβΒΉ : Group G'\nΟ : G β* G'\nN : Subgroup G\ninstβ : N.Normal\nβ’ (Subgroup.map Ο N).Normal", "header": "import Mathlib\n\nopen Fintype Set Real Ideal Polynomial\nopen scoped BigOperators\n\n"} |
|
{"name": "exercise_2_8_15", "split": "test", "informal_prefix": "/-- Prove that if $p > q$ are two primes such that $q \\mid p - 1$, then any two nonabelian groups of order $pq$ are isomorphic.-/\n", "formal_statement": "def exercise_2_8_15 {G H: Type*} [Fintype G] [Group G] [Fintype H]\n [Group H] {p q : β} (hp : Nat.Prime p) (hq : Nat.Prime q)\n (h : p > q) (h1 : q β£ p - 1) (hG : card G = p*q) (hH : card G = p*q) :\n G β* H :=", "goal": "G : Type u_1\nH : Type u_2\ninstβΒ³ : Fintype G\ninstβΒ² : Group G\ninstβΒΉ : Fintype H\ninstβ : Group H\np q : β\nhp : p.Prime\nhq : q.Prime\nh : p > q\nh1 : q β£ p - 1\nhG hH : card G = p * q\nβ’ G β* H", "header": "import Mathlib\n\nopen Fintype Set Real Ideal Polynomial\nopen scoped BigOperators\n\n"} |
|
{"name": "exercise_2_10_1", "split": "test", "informal_prefix": "/-- Let $A$ be a normal subgroup of a group $G$, and suppose that $b \\in G$ is an element of prime order $p$, and that $b \\not\\in A$. Show that $A \\cap (b) = (e)$.-/\n", "formal_statement": "theorem exercise_2_10_1 {G : Type*} [Group G] (A : Subgroup G)\n [A.Normal] {b : G} (hp : Nat.Prime (orderOf b)) :\n A β (Subgroup.closure {b}) = β₯ :=", "goal": "G : Type u_1\ninstβΒΉ : Group G\nA : Subgroup G\ninstβ : A.Normal\nb : G\nhp : (orderOf b).Prime\nβ’ A β Subgroup.closure {b} = β₯", "header": "import Mathlib\n\nopen Fintype Set Real Ideal Polynomial\nopen scoped BigOperators\n\n"} |
|
{"name": "exercise_2_11_7", "split": "test", "informal_prefix": "/-- If $P \\triangleleft G$, $P$ a $p$-Sylow subgroup of $G$, prove that $\\varphi(P) = P$ for every automorphism $\\varphi$ of $G$.-/\n", "formal_statement": "theorem exercise_2_11_7 {G : Type*} [Group G] {p : β} (hp : Nat.Prime p)\n {P : Sylow p G} (hP : P.Normal) :\n Subgroup.Characteristic (P : Subgroup G) :=", "goal": "G : Type u_1\ninstβ : Group G\np : β\nhp : p.Prime\nP : Sylow p G\nhP : (βP).Normal\nβ’ (βP).Characteristic", "header": "import Mathlib\n\nopen Fintype Set Real Ideal Polynomial\nopen scoped BigOperators\n\n"} |
|
{"name": "exercise_3_2_21", "split": "test", "informal_prefix": "/-- If $\\sigma, \\tau$ are two permutations that disturb no common element and $\\sigma \\tau = e$, prove that $\\sigma = \\tau = e$.-/\n", "formal_statement": "theorem exercise_3_2_21 {Ξ± : Type*} [Fintype Ξ±] {Ο Ο: Equiv.Perm Ξ±}\n (h1 : β a : Ξ±, Ο a = a β Ο a β a) (h2 : Ο β Ο = id) :\n Ο = 1 β§ Ο = 1 :=", "goal": "Ξ± : Type u_1\ninstβ : Fintype Ξ±\nΟ Ο : Equiv.Perm Ξ±\nh1 : β (a : Ξ±), Ο a = a β Ο a β a\nh2 : βΟ β βΟ = id\nβ’ Ο = 1 β§ Ο = 1", "header": "import Mathlib\n\nopen Fintype Set Real Ideal Polynomial\nopen scoped BigOperators\n\n"} |
|
{"name": "exercise_4_1_34", "split": "test", "informal_prefix": "/-- Let $T$ be the group of $2\\times 2$ matrices $A$ with entries in the field $\\mathbb{Z}_2$ such that $\\det A$ is not equal to 0. Prove that $T$ is isomorphic to $S_3$, the symmetric group of degree 3.-/\n", "formal_statement": "def exercise_4_1_34 : Equiv.Perm (Fin 3) β* Matrix.GeneralLinearGroup (Fin 2) (ZMod 2) :=", "goal": "β’ Equiv.Perm (Fin 3) β* GL (Fin 2) (ZMod 2)", "header": "import Mathlib\n\nopen Fintype Set Real Ideal Polynomial\nopen scoped BigOperators\n\n"} |
|
{"name": "exercise_4_2_6", "split": "test", "informal_prefix": "/-- If $a^2 = 0$ in $R$, show that $ax + xa$ commutes with $a$.-/\n", "formal_statement": "theorem exercise_4_2_6 {R : Type*} [Ring R] (a x : R)\n (h : a ^ 2 = 0) : a * (a * x + x * a) = (x + x * a) * a :=", "goal": "R : Type u_1\ninstβ : Ring R\na x : R\nh : a ^ 2 = 0\nβ’ a * (a * x + x * a) = (x + x * a) * a", "header": "import Mathlib\n\nopen Fintype Set Real Ideal Polynomial\nopen scoped BigOperators\n\n"} |
|
{"name": "exercise_4_3_1", "split": "test", "informal_prefix": "/-- If $R$ is a commutative ring and $a \\in R$, let $L(a) = \\{x \\in R \\mid xa = 0\\}$. Prove that $L(a)$ is an ideal of $R$.-/\n", "formal_statement": "theorem exercise_4_3_1 {R : Type*} [CommRing R] (a : R) :\n β I : Ideal R, {x : R | x*a=0} = I :=", "goal": "R : Type u_1\ninstβ : CommRing R\na : R\nβ’ β I, {x | x * a = 0} = βI", "header": "import Mathlib\n\nopen Fintype Set Real Ideal Polynomial\nopen scoped BigOperators\n\n"} |
|
{"name": "exercise_4_4_9", "split": "test", "informal_prefix": "/-- Show that $(p - 1)/2$ of the numbers $1, 2, \\ldots, p - 1$ are quadratic residues and $(p - 1)/2$ are quadratic nonresidues $\\mod p$.-/\n", "formal_statement": "theorem exercise_4_4_9 (p : β) (hp : Nat.Prime p) :\n (β S : Finset (ZMod p), S.card = (p-1)/2 β§ β x : ZMod p, x^2 = p) β§\n (β S : Finset (ZMod p), S.card = (p-1)/2 β§ Β¬ β x : ZMod p, x^2 = p) :=", "goal": "p : β\nhp : p.Prime\nβ’ (β S, S.card = (p - 1) / 2 β§ β x, x ^ 2 = βp) β§ β S, S.card = (p - 1) / 2 β§ Β¬β x, x ^ 2 = βp", "header": "import Mathlib\n\nopen Fintype Set Real Ideal Polynomial\nopen scoped BigOperators\n\n"} |
|
{"name": "exercise_4_5_23", "split": "test", "informal_prefix": "/-- Let $F = \\mathbb{Z}_7$ and let $p(x) = x^3 - 2$ and $q(x) = x^3 + 2$ be in $F[x]$. Show that $p(x)$ and $q(x)$ are irreducible in $F[x]$ and that the fields $F[x]/(p(x))$ and $F[x]/(q(x))$ are isomorphic.-/\n", "formal_statement": "theorem exercise_4_5_23 {p q: Polynomial (ZMod 7)}\n (hp : p = X^3 - 2) (hq : q = X^3 + 2) :\n Irreducible p β§ Irreducible q β§\n (Nonempty $ Polynomial (ZMod 7) β§Έ span ({p} : Set $ Polynomial $ ZMod 7) β+*\n Polynomial (ZMod 7) β§Έ span ({q} : Set $ Polynomial $ ZMod 7)) :=", "goal": "p q : (ZMod 7)[X]\nhp : p = X ^ 3 - 2\nhq : q = X ^ 3 + 2\nβ’ Irreducible p β§ Irreducible q β§ Nonempty ((ZMod 7)[X] β§Έ span {p} β+* (ZMod 7)[X] β§Έ span {q})", "header": "import Mathlib\n\nopen Fintype Set Real Ideal Polynomial\nopen scoped BigOperators\n\n"} |
|
{"name": "exercise_4_6_2", "split": "test", "informal_prefix": "/-- Prove that $f(x) = x^3 + 3x + 2$ is irreducible in $Q[x]$.-/\n", "formal_statement": "theorem exercise_4_6_2 : Irreducible (X^3 + 3*X + 2 : Polynomial β) :=", "goal": "β’ Irreducible (X ^ 3 + 3 * X + 2)", "header": "import Mathlib\n\nopen Fintype Set Real Ideal Polynomial\nopen scoped BigOperators\n\n"} |
|
{"name": "exercise_5_1_8", "split": "test", "informal_prefix": "/-- If $F$ is a field of characteristic $p \\neq 0$, show that $(a + b)^m = a^m + b^m$, where $m = p^n$, for all $a, b \\in F$ and any positive integer $n$.-/\n", "formal_statement": "theorem exercise_5_1_8 {p m n: β} {F : Type*} [Field F]\n (hp : Nat.Prime p) (hF : CharP F p) (a b : F) (hm : m = p ^ n) :\n (a + b) ^ m = a^m + b^m :=", "goal": "p m n : β\nF : Type u_1\ninstβ : Field F\nhp : p.Prime\nhF : CharP F p\na b : F\nhm : m = p ^ n\nβ’ (a + b) ^ m = a ^ m + b ^ m", "header": "import Mathlib\n\nopen Fintype Set Real Ideal Polynomial\nopen scoped BigOperators\n\n"} |
|
{"name": "exercise_5_3_7", "split": "test", "informal_prefix": "/-- If $a \\in K$ is such that $a^2$ is algebraic over the subfield $F$ of $K$, show that a is algebraic over $F$.-/\n", "formal_statement": "theorem exercise_5_3_7 {K : Type*} [Field K] {F : Subfield K}\n {a : K} (ha : IsAlgebraic F (a ^ 2)) : IsAlgebraic F a :=", "goal": "K : Type u_1\ninstβ : Field K\nF : Subfield K\na : K\nha : IsAlgebraic (β₯F) (a ^ 2)\nβ’ IsAlgebraic (β₯F) a", "header": "import Mathlib\n\nopen Fintype Set Real Ideal Polynomial\nopen scoped BigOperators\n\n"} |
|
{"name": "exercise_5_4_3", "split": "test", "informal_prefix": "/-- If $a \\in C$ is such that $p(a) = 0$, where $p(x) = x^5 + \\sqrt{2}x^3 + \\sqrt{5}x^2 + \\sqrt{7}x + \\sqrt{11}$, show that $a$ is algebraic over $\\mathbb{Q}$ of degree at most 80.-/\n", "formal_statement": "theorem exercise_5_4_3 {a : β} {p : β β β}\n (hp : p = Ξ» (x : β) => x^5 + sqrt 2 * x^3 + sqrt 5 * x^2 + sqrt 7 * x + 11)\n (ha : p a = 0) :\n β p : Polynomial β , p.degree < 80 β§ a β p.roots β§\n β n : p.support, β a b : β€, p.coeff n = a / b :=", "goal": "a : β\np : β β β\nhp : p = fun x => x ^ 5 + ββ2 * x ^ 3 + ββ5 * x ^ 2 + ββ7 * x + 11\nha : p a = 0\nβ’ β p, p.degree < 80 β§ a β p.roots β§ β (n : { x // x β p.support }), β a b, p.coeff βn = βa / βb", "header": "import Mathlib\n\nopen Fintype Set Real Ideal Polynomial\nopen scoped BigOperators\n\n"} |
|
{"name": "exercise_5_6_14", "split": "test", "informal_prefix": "/-- If $F$ is of characteristic $p \\neq 0$, show that all the roots of $x^m - x$, where $m = p^n$, are distinct.-/\n", "formal_statement": "theorem exercise_5_6_14 {p m n: β} (hp : Nat.Prime p) {F : Type*}\n [Field F] [CharP F p] (hm : m = p ^ n) :\n card (rootSet (X ^ m - X : Polynomial F) F) = m :=", "goal": "p m n : β\nhp : p.Prime\nF : Type u_1\ninstβΒΉ : Field F\ninstβ : CharP F p\nhm : m = p ^ n\nβ’ card β((X ^ m - X).rootSet F) = m", "header": "import Mathlib\n\nopen Fintype Set Real Ideal Polynomial\nopen scoped BigOperators\n\n"} |
|
{"name": "exercise_2_26", "split": "test", "informal_prefix": "/-- Prove that a set $U \\subset M$ is open if and only if none of its points are limits of its complement.-/\n", "formal_statement": "theorem exercise_2_26 {M : Type*} [TopologicalSpace M]\n (U : Set M) : IsOpen U β β x β U, Β¬ ClusterPt x (π UαΆ) :=", "goal": "M : Type u_1\ninstβ : TopologicalSpace M\nU : Set M\nβ’ IsOpen U β β x β U, Β¬ClusterPt x (π UαΆ)", "header": "import Mathlib\n\nopen Filter Real Function\nopen scoped Topology\n\n"} |
|
{"name": "exercise_2_32a", "split": "test", "informal_prefix": "/-- Show that every subset of $\\mathbb{N}$ is clopen.-/\n", "formal_statement": "theorem exercise_2_32a (A : Set β) : IsClopen A :=", "goal": "A : Set β\nβ’ IsClopen A", "header": "import Mathlib\n\nopen Filter Real Function\nopen scoped Topology\n\n"} |
|
{"name": "exercise_2_46", "split": "test", "informal_prefix": "/-- Assume that $A, B$ are compact, disjoint, nonempty subsets of $M$. Prove that there are $a_0 \\in A$ and $b_0 \\in B$ such that for all $a \\in A$ and $b \\in B$ we have $d(a_0, b_0) \\leq d(a, b)$.-/\n", "formal_statement": "theorem exercise_2_46 {M : Type*} [MetricSpace M]\n {A B : Set M} (hA : IsCompact A) (hB : IsCompact B)\n (hAB : Disjoint A B) (hAβ : A β β
) (hBβ : B β β
) :\n β aβ bβ, aβ β A β§ bβ β B β§ β (a : M) (b : M),\n a β A β b β B β dist aβ bβ β€ dist a b :=", "goal": "M : Type u_1\ninstβ : MetricSpace M\nA B : Set M\nhA : IsCompact A\nhB : IsCompact B\nhAB : Disjoint A B\nhAβ : A β β
\nhBβ : B β β
\nβ’ β aβ bβ, aβ β A β§ bβ β B β§ β (a b : M), a β A β b β B β dist aβ bβ β€ dist a b", "header": "import Mathlib\n\nopen Filter Real Function\nopen scoped Topology\n\n"} |
|
{"name": "exercise_2_92", "split": "test", "informal_prefix": "/-- Give a direct proof that the nested decreasing intersection of nonempty covering compact sets is nonempty.-/\n", "formal_statement": "theorem exercise_2_92 {Ξ± : Type*} [TopologicalSpace Ξ±]\n {s : β β Set Ξ±}\n (hs : β i, IsCompact (s i))\n (hs : β i, (s i).Nonempty)\n (hs : β i, (s i) β (s (i + 1))) :\n (β i, s i).Nonempty :=", "goal": "Ξ± : Type u_1\ninstβ : TopologicalSpace Ξ±\ns : β β Set Ξ±\nhsβΒΉ : β (i : β), IsCompact (s i)\nhsβ : β (i : β), (s i).Nonempty\nhs : β (i : β), s i β s (i + 1)\nβ’ (β i, s i).Nonempty", "header": "import Mathlib\n\nopen Filter Real Function\nopen scoped Topology\n\n"} |
|
{"name": "exercise_3_1", "split": "test", "informal_prefix": "/-- Assume that $f \\colon \\mathbb{R} \\rightarrow \\mathbb{R}$ satisfies $|f(t)-f(x)| \\leq|t-x|^{2}$ for all $t, x$. Prove that $f$ is constant.-/\n", "formal_statement": "theorem exercise_3_1 {f : β β β}\n (hf : β x y, |f x - f y| β€ |x - y| ^ 2) :\n β c, f = Ξ» x => c :=", "goal": "f : β β β\nhf : β (x y : β), |f x - f y| β€ |x - y| ^ 2\nβ’ β c, f = fun x => c", "header": "import Mathlib\n\nopen Filter Real Function\nopen scoped Topology\n\n"} |
|
{"name": "exercise_3_63a", "split": "test", "informal_prefix": "/-- Prove that $\\sum 1/k(\\log(k))^p$ converges when $p > 1$.-/\n", "formal_statement": "theorem exercise_3_63a (p : β) (f : β β β) (hp : p > 1)\n (h : f = Ξ» (k : β) => (1 : β) / (k * (log k) ^ p)) :\n β l, Tendsto f atTop (π l) :=", "goal": "p : β\nf : β β β\nhp : p > 1\nh : f = fun k => 1 / (βk * (βk).log ^ p)\nβ’ β l, Tendsto f atTop (π l)", "header": "import Mathlib\n\nopen Filter Real Function\nopen scoped Topology\n\n"} |
|
{"name": "exercise_4_15a", "split": "test", "informal_prefix": "/-- A continuous, strictly increasing function $\\mu \\colon (0, \\infty) \\rightarrow (0, \\infty)$ is a modulus of continuity if $\\mu(s) \\rightarrow 0$ as $s \\rightarrow 0$. A function $f \\colon [a, b] \\rightarrow \\mathbb{R}$ has modulus of continuity $\\mu$ if $|f(s) - f(t)| \\leq \\mu(|s - t|)$ for all $s, t \\in [a, b]$. Prove that a function is uniformly continuous if and only if it has a modulus of continuity.-/\n", "formal_statement": "theorem exercise_4_15a {Ξ± : Type*}\n (a b : β) (F : Set (β β β)) :\n (β x : β, β Ξ΅ > 0, β U β (π x),\n (β y z : U, β f : β β β, f β F β (dist (f y) (f z) < Ξ΅)))\n β\n β (ΞΌ : β β β), β (x : β), (0 : β) β€ ΞΌ x β§ Tendsto ΞΌ (π 0) (π 0) β§\n (β (s t : β) (f : β β β), f β F β |(f s) - (f t)| β€ ΞΌ (|s - t|)) :=", "goal": "Ξ± : Type u_1\na b : β\nF : Set (β β β)\nβ’ (β (x Ξ΅ : β), Ξ΅ > 0 β β U β π x, β (y z : βU), β f β F, dist (f βy) (f βz) < Ξ΅) β\n β ΞΌ, β (x : β), 0 β€ ΞΌ x β§ Tendsto ΞΌ (π 0) (π 0) β§ β (s t : β), β f β F, |f s - f t| β€ ΞΌ |s - t|", "header": "import Mathlib\n\nopen Filter Real Function\nopen scoped Topology\n\n"} |
|
{"name": "exercise_2_3_2", "split": "test", "informal_prefix": "/-- Prove that the products $a b$ and $b a$ are conjugate elements in a group.-/\n", "formal_statement": "theorem exercise_2_3_2 {G : Type*} [Group G] (a b : G) :\n β g : G, b* a = g * a * b * gβ»ΒΉ :=", "goal": "G : Type u_1\ninstβ : Group G\na b : G\nβ’ β g, b * a = g * a * b * gβ»ΒΉ", "header": "import Mathlib\n\nopen Function Fintype Subgroup Ideal Polynomial Submodule Zsqrtd\nopen scoped BigOperators\n\n"} |
|
{"name": "exercise_2_8_6", "split": "test", "informal_prefix": "/-- Prove that the center of the product of two groups is the product of their centers.-/\n", "formal_statement": "noncomputable def exercise_2_8_6 {G H : Type*} [Group G] [Group H] :\n center (G Γ H) β* (center G) Γ (center H) :=", "goal": "G : Type u_1\nH : Type u_2\ninstβΒΉ : Group G\ninstβ : Group H\nβ’ β₯(center (G Γ H)) β* β₯(center G) Γ β₯(center H)", "header": "import Mathlib\n\nopen Function Fintype Subgroup Ideal Polynomial Submodule Zsqrtd\nopen scoped BigOperators\n\n--center of (G Γ H) equivalent, preserves multiplication with (center G) Γ (center H)\n"} |
|
{"name": "exercise_3_2_7", "split": "test", "informal_prefix": "/-- Prove that every homomorphism of fields is injective.-/\n", "formal_statement": "theorem exercise_3_2_7 {F : Type*} [Field F] {G : Type*} [Field G]\n (Ο : F β+* G) : Injective Ο :=", "goal": "F : Type u_1\ninstβΒΉ : Field F\nG : Type u_2\ninstβ : Field G\nΟ : F β+* G\nβ’ Injective βΟ", "header": "import Mathlib\n\nopen Function Fintype Subgroup Ideal Polynomial Submodule Zsqrtd\nopen scoped BigOperators\n\nopen RingHom\n"} |
|
{"name": "exercise_3_7_2", "split": "test", "informal_prefix": "/-- Let $V$ be a vector space over an infinite field $F$. Prove that $V$ is not the union of finitely many proper subspaces.-/\n", "formal_statement": "theorem exercise_3_7_2 {K V : Type*} [Field K] [AddCommGroup V]\n [Module K V] {ΞΉ : Type*} [Fintype ΞΉ] (Ξ³ : ΞΉ β Submodule K V)\n (h : β i : ΞΉ, Ξ³ i β β€) :\n (β (i : ΞΉ), (Ξ³ i : Set V)) β β€ :=", "goal": "K : Type u_1\nV : Type u_2\ninstβΒ³ : Field K\ninstβΒ² : AddCommGroup V\ninstβΒΉ : Module K V\nΞΉ : Type u_3\ninstβ : Fintype ΞΉ\nΞ³ : ΞΉ β Submodule K V\nh : β (i : ΞΉ), Ξ³ i β β€\nβ’ β i, β(Ξ³ i) β β€", "header": "import Mathlib\n\nopen Function Fintype Subgroup Ideal Polynomial Submodule Zsqrtd\nopen scoped BigOperators\n\n"} |
|
{"name": "exercise_6_4_2", "split": "test", "informal_prefix": "/-- Prove that no group of order $p q$, where $p$ and $q$ are prime, is simple.-/\n", "formal_statement": "theorem exercise_6_4_2 {G : Type*} [Group G] [Fintype G] {p q : β}\n (hp : Prime p) (hq : Prime q) (hG : card G = p*q) :\n IsSimpleGroup G β false :=", "goal": "G : Type u_1\ninstβΒΉ : Group G\ninstβ : Fintype G\np q : β\nhp : Prime p\nhq : Prime q\nhG : card G = p * q\nβ’ IsSimpleGroup G β false = true", "header": "import Mathlib\n\nopen Function Fintype Subgroup Ideal Polynomial Submodule Zsqrtd\nopen scoped BigOperators\n\n"} |
|
{"name": "exercise_6_4_12", "split": "test", "informal_prefix": "/-- Prove that no group of order 224 is simple.-/\n", "formal_statement": "theorem exercise_6_4_12 {G : Type*} [Group G] [Fintype G]\n (hG : card G = 224) :\n IsSimpleGroup G β false :=", "goal": "G : Type u_1\ninstβΒΉ : Group G\ninstβ : Fintype G\nhG : card G = 224\nβ’ IsSimpleGroup G β false = true", "header": "import Mathlib\n\nopen Function Fintype Subgroup Ideal Polynomial Submodule Zsqrtd\nopen scoped BigOperators\n\n"} |
|
{"name": "exercise_10_1_13", "split": "test", "informal_prefix": "/-- An element $x$ of a ring $R$ is called nilpotent if some power of $x$ is zero. Prove that if $x$ is nilpotent, then $1+x$ is a unit in $R$.-/\n", "formal_statement": "theorem exercise_10_1_13 {R : Type*} [Ring R] {x : R}\n (hx : IsNilpotent x) : IsUnit (1 + x) :=", "goal": "R : Type u_1\ninstβ : Ring R\nx : R\nhx : IsNilpotent x\nβ’ IsUnit (1 + x)", "header": "import Mathlib\n\nopen Function Fintype Subgroup Ideal Polynomial Submodule Zsqrtd\nopen scoped BigOperators\n\n"} |
|
{"name": "exercise_10_6_7", "split": "test", "informal_prefix": "/-- Prove that every nonzero ideal in the ring of Gauss integers contains a nonzero integer.-/\n", "formal_statement": "theorem exercise_10_6_7 {I : Ideal GaussianInt}\n (hI : I β β₯) : β (z : I), z β 0 β§ (z : GaussianInt).im = 0 :=", "goal": "I : Ideal GaussianInt\nhI : I β β₯\nβ’ β z, z β 0 β§ (βz).im = 0", "header": "import Mathlib\n\nopen Function Fintype Subgroup Ideal Polynomial Submodule Zsqrtd\nopen scoped BigOperators\n\n"} |
|
{"name": "exercise_10_4_7a", "split": "test", "informal_prefix": "/-- Let $I, J$ be ideals of a ring $R$ such that $I+J=R$. Prove that $I J=I \\cap J$.-/\n", "formal_statement": "theorem exercise_10_4_7a {R : Type*} [CommRing R] [NoZeroDivisors R]\n (I J : Ideal R) (hIJ : I + J = β€) : I * J = I β J :=", "goal": "R : Type u_1\ninstβΒΉ : CommRing R\ninstβ : NoZeroDivisors R\nI J : Ideal R\nhIJ : I + J = β€\nβ’ I * J = I β J", "header": "import Mathlib\n\nopen Function Fintype Subgroup Ideal Polynomial Submodule Zsqrtd\nopen scoped BigOperators\n\n"} |
|
{"name": "exercise_11_2_13", "split": "test", "informal_prefix": "/-- If $a, b$ are integers and if $a$ divides $b$ in the ring of Gauss integers, then $a$ divides $b$ in $\\mathbb{Z}$.-/\n", "formal_statement": "theorem exercise_11_2_13 (a b : β€) :\n (ofInt a : GaussianInt) β£ ofInt b β a β£ b :=", "goal": "a b : β€\nβ’ ofInt a β£ ofInt b β a β£ b", "header": "import Mathlib\n\nopen Function Fintype Subgroup Ideal Polynomial Submodule Zsqrtd\nopen scoped BigOperators\n\n"} |
|
{"name": "exercise_11_4_6a", "split": "test", "informal_prefix": "/-- Prove that $x^2+x+1$ is irreducible in the field $\\mathbb{F}_2$.-/\n", "formal_statement": "theorem exercise_11_4_6a {F : Type*} [Field F] [Fintype F] (hF : card F = 7) :\n Irreducible (X ^ 2 + 1 : Polynomial F) :=", "goal": "F : Type u_1\ninstβΒΉ : Field F\ninstβ : Fintype F\nhF : card F = 7\nβ’ Irreducible (X ^ 2 + 1)", "header": "import Mathlib\n\nopen Function Fintype Subgroup Ideal Polynomial Submodule Zsqrtd\nopen scoped BigOperators\n\n"} |
|
{"name": "exercise_11_4_6c", "split": "test", "informal_prefix": "/-- Prove that $x^3 - 9$ is irreducible in $\\mathbb{F}_{31}$.-/\n", "formal_statement": "theorem exercise_11_4_6c : Irreducible (X^3 - 9 : Polynomial (ZMod 31)) :=", "goal": "β’ Irreducible (X ^ 3 - 9)", "header": "import Mathlib\n\nopen Function Fintype Subgroup Ideal Polynomial Submodule Zsqrtd\nopen scoped BigOperators\n\n"} |
|
{"name": "exercise_11_13_3", "split": "test", "informal_prefix": "/-- Prove that there are infinitely many primes congruent to $-1$ (modulo $4$).-/\n", "formal_statement": "theorem exercise_11_13_3 (N : β):\n β p β₯ N, Nat.Prime p β§ p + 1 β‘ 0 [MOD 4] :=", "goal": "N : β\nβ’ β p β₯ N, p.Prime β§ p + 1 β‘ 0 [MOD 4]", "header": "import Mathlib\n\nopen Function Fintype Subgroup Ideal Polynomial Submodule Zsqrtd\nopen scoped BigOperators\n\n"} |
|
{"name": "exercise_13_6_10", "split": "test", "informal_prefix": "/-- Let $K$ be a finite field. Prove that the product of the nonzero elements of $K$ is $-1$.-/\n", "formal_statement": "theorem exercise_13_6_10 {K : Type*} [Field K] [Fintype KΛ£] :\n (β x : KΛ£, x) = -1 :=", "goal": "K : Type u_1\ninstβΒΉ : Field K\ninstβ : Fintype KΛ£\nβ’ β x : KΛ£, x = -1", "header": "import Mathlib\n\nopen Function Fintype Subgroup Ideal Polynomial Submodule Zsqrtd\nopen scoped BigOperators\n\n"} |
|
{"name": "exercise_1_2", "split": "test", "informal_prefix": "/-- Show that $\\frac{-1 + \\sqrt{3}i}{2}$ is a cube root of 1 (meaning that its cube equals 1).-/\n", "formal_statement": "theorem exercise_1_2 :\n (β¨-1/2, Real.sqrt 3 / 2β© : β) ^ 3 = -1 :=", "goal": "β’ { re := -1 / 2, im := β3 / 2 } ^ 3 = -1", "header": "import Mathlib\n\nopen Fintype Complex Polynomial LinearMap FiniteDimensional Module Module.End\nopen scoped BigOperators\n\nopen scoped BigOperators\n\n"} |
|
{"name": "exercise_1_4", "split": "test", "informal_prefix": "/-- Prove that if $a \\in \\mathbf{F}$, $v \\in V$, and $av = 0$, then $a = 0$ or $v = 0$.-/\n", "formal_statement": "theorem exercise_1_4 {F V : Type*} [AddCommGroup V] [Field F]\n [Module F V] (v : V) (a : F): a β’ v = 0 β a = 0 β¨ v = 0 :=", "goal": "F : Type u_1\nV : Type u_2\ninstβΒ² : AddCommGroup V\ninstβΒΉ : Field F\ninstβ : Module F V\nv : V\na : F\nβ’ a β’ v = 0 β a = 0 β¨ v = 0", "header": "import Mathlib\n\nopen Fintype Complex Polynomial LinearMap FiniteDimensional Module Module.End\nopen scoped BigOperators\n\n"} |
|
{"name": "exercise_1_7", "split": "test", "informal_prefix": "/-- Give an example of a nonempty subset $U$ of $\\mathbf{R}^2$ such that $U$ is closed under scalar multiplication, but $U$ is not a subspace of $\\mathbf{R}^2$.-/\n", "formal_statement": "theorem exercise_1_7 : β U : Set (β Γ β),\n (U β β
) β§\n (β (c : β) (u : β Γ β), u β U β c β’ u β U) β§\n (β U' : Submodule β (β Γ β), U β βU') :=", "goal": "β’ β U, U β β
β§ (β (c : β), β u β U, c β’ u β U) β§ β (U' : Submodule β (β Γ β)), U β βU'", "header": "import Mathlib\n\nopen Fintype Complex Polynomial LinearMap FiniteDimensional Module Module.End\nopen scoped BigOperators\n\n"} |
|
{"name": "exercise_1_9", "split": "test", "informal_prefix": "/-- Prove that the union of two subspaces of $V$ is a subspace of $V$ if and only if one of the subspaces is contained in the other.-/\n", "formal_statement": "theorem exercise_1_9 {F V : Type*} [AddCommGroup V] [Field F]\n [Module F V] (U W : Submodule F V):\n β U' : Submodule F V, (U'.carrier = βU β© βW β (U β€ W β¨ W β€ U)) :=", "goal": "F : Type u_1\nV : Type u_2\ninstβΒ² : AddCommGroup V\ninstβΒΉ : Field F\ninstβ : Module F V\nU W : Submodule F V\nβ’ β U', U'.carrier = βU β© βW β U β€ W β¨ W β€ U", "header": "import Mathlib\n\nopen Fintype Complex Polynomial LinearMap FiniteDimensional Module Module.End\nopen scoped BigOperators\n\n"} |
|
{"name": "exercise_3_8", "split": "test", "informal_prefix": "/-- Suppose that $V$ is finite dimensional and that $T \\in \\mathcal{L}(V, W)$. Prove that there exists a subspace $U$ of $V$ such that $U \\cap \\operatorname{null} T=\\{0\\}$ and range $T=\\{T u: u \\in U\\}$.-/\n", "formal_statement": "theorem exercise_3_8 {F V W : Type*} [AddCommGroup V]\n [AddCommGroup W] [Field F] [Module F V] [Module F W]\n (L : V ββ[F] W) :\n β U : Submodule F V, U β (ker L) = β₯ β§\n (range L = range (domRestrict L U)) :=", "goal": "F : Type u_1\nV : Type u_2\nW : Type u_3\ninstββ΄ : AddCommGroup V\ninstβΒ³ : AddCommGroup W\ninstβΒ² : Field F\ninstβΒΉ : Module F V\ninstβ : Module F W\nL : V ββ[F] W\nβ’ β U, U β ker L = β₯ β§ range L = range (L.domRestrict U)", "header": "import Mathlib\n\nopen Fintype Complex Polynomial LinearMap FiniteDimensional Module Module.End\nopen scoped BigOperators\n\n"} |
|
{"name": "exercise_5_1", "split": "test", "informal_prefix": "/-- Suppose $T \\in \\mathcal{L}(V)$. Prove that if $U_{1}, \\ldots, U_{m}$ are subspaces of $V$ invariant under $T$, then $U_{1}+\\cdots+U_{m}$ is invariant under $T$.-/\n", "formal_statement": "theorem exercise_5_1 {F V : Type*} [AddCommGroup V] [Field F]\n [Module F V] {L : V ββ[F] V} {n : β} (U : Fin n β Submodule F V)\n (hU : β i : Fin n, Submodule.map L (U i) = U i) :\n Submodule.map L (β i : Fin n, U i : Submodule F V) =\n (β i : Fin n, U i : Submodule F V) :=", "goal": "F : Type u_1\nV : Type u_2\ninstβΒ² : AddCommGroup V\ninstβΒΉ : Field F\ninstβ : Module F V\nL : V ββ[F] V\nn : β\nU : Fin n β Submodule F V\nhU : β (i : Fin n), Submodule.map L (U i) = U i\nβ’ Submodule.map L (β i : Fin n, U i) = β i : Fin n, U i", "header": "import Mathlib\n\nopen Fintype Complex Polynomial LinearMap FiniteDimensional Module Module.End\nopen scoped BigOperators\n\n"} |
|
{"name": "exercise_5_11", "split": "test", "informal_prefix": "/-- Suppose $S, T \\in \\mathcal{L}(V)$. Prove that $S T$ and $T S$ have the same eigenvalues.-/\n", "formal_statement": "theorem exercise_5_11 {F V : Type*} [AddCommGroup V] [Field F]\n [Module F V] (S T : End F V) :\n (S * T).Eigenvalues = (T * S).Eigenvalues :=", "goal": "F : Type u_1\nV : Type u_2\ninstβΒ² : AddCommGroup V\ninstβΒΉ : Field F\ninstβ : Module F V\nS T : End F V\nβ’ (S * T).Eigenvalues = (T * S).Eigenvalues", "header": "import Mathlib\n\nopen Fintype Complex Polynomial LinearMap FiniteDimensional Module Module.End\nopen scoped BigOperators\n\n"} |
|
{"name": "exercise_5_13", "split": "test", "informal_prefix": "/-- Suppose $T \\in \\mathcal{L}(V)$ is such that every subspace of $V$ with dimension $\\operatorname{dim} V-1$ is invariant under $T$. Prove that $T$ is a scalar multiple of the identity operator.-/\n", "formal_statement": "theorem exercise_5_13 {F V : Type*} [AddCommGroup V] [Field F]\n [Module F V] [FiniteDimensional F V] {T : End F V}\n (hS : β U : Submodule F V, finrank F U = finrank F V - 1 β\n Submodule.map T U = U) : β c : F, T = c β’ LinearMap.id :=", "goal": "F : Type u_1\nV : Type u_2\ninstβΒ³ : AddCommGroup V\ninstβΒ² : Field F\ninstβΒΉ : Module F V\ninstβ : FiniteDimensional F V\nT : End F V\nhS : β (U : Submodule F V), finrank F β₯U = finrank F V - 1 β Submodule.map T U = U\nβ’ β c, T = c β’ LinearMap.id", "header": "import Mathlib\n\nopen Fintype Complex Polynomial LinearMap FiniteDimensional Module Module.End\nopen scoped BigOperators\n\n"} |
|
{"name": "exercise_5_24", "split": "test", "informal_prefix": "/-- Suppose $V$ is a real vector space and $T \\in \\mathcal{L}(V)$ has no eigenvalues. Prove that every subspace of $V$ invariant under $T$ has even dimension.-/\n", "formal_statement": "theorem exercise_5_24 {V : Type*} [AddCommGroup V]\n [Module β V] [FiniteDimensional β V] {T : End β V}\n (hT : β c : β, eigenspace T c = β₯) {U : Submodule β V}\n (hU : Submodule.map T U = U) : Even (finrank U) :=", "goal": "V : Type u_1\ninstβΒ² : AddCommGroup V\ninstβΒΉ : Module β V\ninstβ : FiniteDimensional β V\nT : End β V\nhT : β (c : β), T.eigenspace c = β₯\nU : Submodule β V\nhU : Submodule.map T U = U\nβ’ Even (finrank β₯U)", "header": "import Mathlib\n\nopen Fintype Complex Polynomial LinearMap FiniteDimensional Module Module.End\nopen scoped BigOperators\n\n"} |
|
{"name": "exercise_6_3", "split": "test", "informal_prefix": "/-- Prove that $\\left(\\sum_{j=1}^{n} a_{j} b_{j}\\right)^{2} \\leq\\left(\\sum_{j=1}^{n} j a_{j}{ }^{2}\\right)\\left(\\sum_{j=1}^{n} \\frac{b_{j}{ }^{2}}{j}\\right)$ for all real numbers $a_{1}, \\ldots, a_{n}$ and $b_{1}, \\ldots, b_{n}$.-/\n", "formal_statement": "theorem exercise_6_3 {n : β} (a b : Fin n β β) :\n (β i, a i * b i) ^ 2 β€ (β i : Fin n, i * a i ^ 2) * (β i, b i ^ 2 / i) :=", "goal": "n : β\na b : Fin n β β\nβ’ (β i : Fin n, a i * b i) ^ 2 β€ (β i : Fin n, ββi * a i ^ 2) * β i : Fin n, b i ^ 2 / ββi", "header": "import Mathlib\n\nopen Fintype Complex Polynomial LinearMap FiniteDimensional Module Module.End\nopen scoped BigOperators\n\n"} |
|
{"name": "exercise_6_13", "split": "test", "informal_prefix": "/-- Suppose $\\left(e_{1}, \\ldots, e_{m}\\right)$ is an or thonormal list of vectors in $V$. Let $v \\in V$. Prove that $\\|v\\|^{2}=\\left|\\left\\langle v, e_{1}\\right\\rangle\\right|^{2}+\\cdots+\\left|\\left\\langle v, e_{m}\\right\\rangle\\right|^{2}$ if and only if $v \\in \\operatorname{span}\\left(e_{1}, \\ldots, e_{m}\\right)$.-/\n", "formal_statement": "theorem exercise_6_13 {V : Type*} [NormedAddCommGroup V] [InnerProductSpace β V] {n : β}\n {e : Fin n β V} (he : Orthonormal β e) (v : V) :\n βvβ^2 = β i : Fin n, ββͺv, e iβ«_ββ^2 β v β Submodule.span β (e '' Set.univ) :=", "goal": "V : Type u_1\ninstβΒΉ : NormedAddCommGroup V\ninstβ : InnerProductSpace β V\nn : β\ne : Fin n β V\nhe : Orthonormal β e\nv : V\nβ’ βvβ ^ 2 = β i : Fin n, ββͺv, e iβ«_ββ ^ 2 β v β Submodule.span β (e '' Set.univ)", "header": "import Mathlib\n\nopen Fintype Complex Polynomial LinearMap FiniteDimensional Module Module.End\nopen scoped BigOperators\n\n"} |
|
{"name": "exercise_7_5", "split": "test", "informal_prefix": "/-- Show that if $\\operatorname{dim} V \\geq 2$, then the set of normal operators on $V$ is not a subspace of $\\mathcal{L}(V)$.-/\n", "formal_statement": "theorem exercise_7_5 {V : Type*} [NormedAddCommGroup V] [InnerProductSpace β V]\n [FiniteDimensional β V] (hV : finrank V β₯ 2) :\n β U : Submodule β (End β V), U.carrier β \n {T | T * adjoint T = adjoint T * T} :=", "goal": "V : Type u_1\ninstβΒ² : NormedAddCommGroup V\ninstβΒΉ : InnerProductSpace β V\ninstβ : FiniteDimensional β V\nhV : finrank V β₯ 2\nβ’ β (U : Submodule β (End β V)), U.carrier β {T | T * adjoint T = adjoint T * T}", "header": "import Mathlib\n\nopen Fintype Complex Polynomial LinearMap FiniteDimensional Module Module.End\nopen scoped BigOperators\n\n"} |
|
{"name": "exercise_7_9", "split": "test", "informal_prefix": "/-- Prove that a normal operator on a complex inner-product space is self-adjoint if and only if all its eigenvalues are real.-/\n", "formal_statement": "theorem exercise_7_9 {V : Type*} [NormedAddCommGroup V] [InnerProductSpace β V]\n [FiniteDimensional β V] (T : End β V)\n (hT : T * adjoint T = adjoint T * T) :\n IsSelfAdjoint T β β e : T.Eigenvalues, (e : β).im = 0 :=", "goal": "V : Type u_1\ninstβΒ² : NormedAddCommGroup V\ninstβΒΉ : InnerProductSpace β V\ninstβ : FiniteDimensional β V\nT : End β V\nhT : T * adjoint T = adjoint T * T\nβ’ IsSelfAdjoint T β β (e : T.Eigenvalues), (βT e).im = 0", "header": "import Mathlib\n\nopen Fintype Complex Polynomial LinearMap FiniteDimensional Module Module.End\nopen scoped BigOperators\n\n"} |
|
{"name": "exercise_7_11", "split": "test", "informal_prefix": "/-- Suppose $V$ is a complex inner-product space. Prove that every normal operator on $V$ has a square root. (An operator $S \\in \\mathcal{L}(V)$ is called a square root of $T \\in \\mathcal{L}(V)$ if $S^{2}=T$.)-/\n", "formal_statement": "theorem exercise_7_11 {V : Type*} [NormedAddCommGroup V] [InnerProductSpace β V]\n [FiniteDimensional β V] {T : End β V} (hT : T*adjoint T = adjoint T*T) :\n β (S : End β V), S ^ 2 = T :=", "goal": "V : Type u_1\ninstβΒ² : NormedAddCommGroup V\ninstβΒΉ : InnerProductSpace β V\ninstβ : FiniteDimensional β V\nT : End β V\nhT : T * adjoint T = adjoint T * T\nβ’ β S, S ^ 2 = T", "header": "import Mathlib\n\nopen Fintype Complex Polynomial LinearMap FiniteDimensional Module Module.End\nopen scoped BigOperators\n\n"} |
|
{"name": "exercise_1_1_2a", "split": "test", "informal_prefix": "/-- Prove the the operation $\\star$ on $\\mathbb{Z}$ defined by $a\\star b=a-b$ is not commutative.-/\n", "formal_statement": "theorem exercise_1_1_2a : β a b : β€, a - b β b - a :=", "goal": "β’ β a b, a - b β b - a", "header": "import Mathlib\n\nopen Fintype Subgroup Set Polynomial Ideal\nopen scoped BigOperators\n\n"} |
|
{"name": "exercise_1_1_4", "split": "test", "informal_prefix": "/-- Prove that the multiplication of residue class $\\mathbb{Z}/n\\mathbb{Z}$ is associative.-/\n", "formal_statement": "theorem exercise_1_1_4 (n : β) :\n β (a b c : β), (a * b) * c β‘ a * (b * c) [ZMOD n] :=", "goal": "n : β\nβ’ β (a b c : β), βa * βb * βc β‘ βa * (βb * βc) [ZMOD βn]", "header": "import Mathlib\n\nopen Fintype Subgroup Set Polynomial Ideal\nopen scoped BigOperators\n\n"} |
|
{"name": "exercise_1_1_15", "split": "test", "informal_prefix": "/-- Prove that $(a_1a_2\\dots a_n)^{-1} = a_n^{-1}a_{n-1}^{-1}\\dots a_1^{-1}$ for all $a_1, a_2, \\dots, a_n\\in G$.-/\n", "formal_statement": "theorem exercise_1_1_15 {G : Type*} [Group G] (as : List G) :\n as.prodβ»ΒΉ = (as.reverse.map (Ξ» x => xβ»ΒΉ)).prod :=", "goal": "G : Type u_1\ninstβ : Group G\nas : List G\nβ’ as.prodβ»ΒΉ = (List.map (fun x => xβ»ΒΉ) as.reverse).prod", "header": "import Mathlib\n\nopen Fintype Subgroup Set Polynomial Ideal\nopen scoped BigOperators\n\n"} |
|
{"name": "exercise_1_1_17", "split": "test", "informal_prefix": "/-- Let $x$ be an element of $G$. Prove that if $|x|=n$ for some positive integer $n$ then $x^{-1}=x^{n-1}$.-/\n", "formal_statement": "theorem exercise_1_1_17 {G : Type*} [Group G] {x : G} {n : β}\n (hxn: orderOf x = n) :\n xβ»ΒΉ = x ^ (n - 1 : β€) :=", "goal": "G : Type u_1\ninstβ : Group G\nx : G\nn : β\nhxn : orderOf x = n\nβ’ xβ»ΒΉ = x ^ (βn - 1)", "header": "import Mathlib\n\nopen Fintype Subgroup Set Polynomial Ideal\nopen scoped BigOperators\n\n"} |
|
{"name": "exercise_1_1_20", "split": "test", "informal_prefix": "/-- For $x$ an element in $G$ show that $x$ and $x^{-1}$ have the same order.-/\n", "formal_statement": "theorem exercise_1_1_20 {G : Type*} [Group G] {x : G} :\n orderOf x = orderOf xβ»ΒΉ :=", "goal": "G : Type u_1\ninstβ : Group G\nx : G\nβ’ orderOf x = orderOf xβ»ΒΉ", "header": "import Mathlib\n\nopen Fintype Subgroup Set Polynomial Ideal\nopen scoped BigOperators\n\n"} |
|
{"name": "exercise_1_1_22b", "split": "test", "informal_prefix": "/-- Deduce that $|a b|=|b a|$ for all $a, b \\in G$.-/\n", "formal_statement": "theorem exercise_1_1_22b {G: Type*} [Group G] (a b : G) :\n orderOf (a * b) = orderOf (b * a) :=", "goal": "G : Type u_1\ninstβ : Group G\na b : G\nβ’ orderOf (a * b) = orderOf (b * a)", "header": "import Mathlib\n\nopen Fintype Subgroup Set Polynomial Ideal\nopen scoped BigOperators\n\n"} |
|
{"name": "exercise_1_1_29", "split": "test", "informal_prefix": "/-- Prove that $A \\times B$ is an abelian group if and only if both $A$ and $B$ are abelian.-/\n", "formal_statement": "theorem exercise_1_1_29 {A B : Type*} [Group A] [Group B] :\n β x y : A Γ B, x*y = y*x β (β x y : A, x*y = y*x) β§\n (β x y : B, x*y = y*x) :=", "goal": "A : Type u_1\nB : Type u_2\ninstβΒΉ : Group A\ninstβ : Group B\nβ’ β (x y : A Γ B), x * y = y * x β (β (x y : A), x * y = y * x) β§ β (x y : B), x * y = y * x", "header": "import Mathlib\n\nopen Fintype Subgroup Set Polynomial Ideal\nopen scoped BigOperators\n\n"} |
|
{"name": "exercise_1_3_8", "split": "test", "informal_prefix": "/-- Prove that if $\\Omega=\\{1,2,3, \\ldots\\}$ then $S_{\\Omega}$ is an infinite group-/\n", "formal_statement": "theorem exercise_1_3_8 : Infinite (Equiv.Perm β) :=", "goal": "β’ Infinite (Equiv.Perm β)", "header": "import Mathlib\n\nopen Fintype Subgroup Set Polynomial Ideal\nopen scoped BigOperators\n\n"} |
|
{"name": "exercise_1_6_11", "split": "test", "informal_prefix": "/-- Let $A$ and $B$ be groups. Prove that $A \\times B \\cong B \\times A$.-/\n", "formal_statement": "noncomputable def exercise_1_6_11 {A B : Type*} [Group A] [Group B] :\n A Γ B β* B Γ A :=", "goal": "A : Type u_1\nB : Type u_2\ninstβΒΉ : Group A\ninstβ : Group B\nβ’ A Γ B β* B Γ A", "header": "import Mathlib\n\nopen Fintype Subgroup Set Polynomial Ideal\nopen scoped BigOperators\n\n"} |
|
{"name": "exercise_1_6_23", "split": "test", "informal_prefix": "/-- Let $G$ be a finite group which possesses an automorphism $\\sigma$ such that $\\sigma(g)=g$ if and only if $g=1$. If $\\sigma^{2}$ is the identity map from $G$ to $G$, prove that $G$ is abelian.-/\n", "formal_statement": "theorem exercise_1_6_23 {G : Type*}\n [Group G] (Ο : MulAut G) (hs : β g : G, Ο g = 1 β g = 1)\n (hs2 : β g : G, Ο (Ο g) = g) :\n β x y : G, x*y = y*x :=", "goal": "G : Type u_1\ninstβ : Group G\nΟ : MulAut G\nhs : β (g : G), Ο g = 1 β g = 1\nhs2 : β (g : G), Ο (Ο g) = g\nβ’ β (x y : G), x * y = y * x", "header": "import Mathlib\n\nopen Fintype Subgroup Set Polynomial Ideal\nopen scoped BigOperators\n\n"} |
|
{"name": "exercise_2_1_13", "split": "test", "informal_prefix": "/-- Let $H$ be a subgroup of the additive group of rational numbers with the property that $1 / x \\in H$ for every nonzero element $x$ of $H$. Prove that $H=0$ or $\\mathbb{Q}$.-/\n", "formal_statement": "theorem exercise_2_1_13 (H : AddSubgroup β) {x : β}\n (hH : x β H β (1 / x) β H):\n H = β₯ β¨ H = β€ :=", "goal": "H : AddSubgroup β\nx : β\nhH : x β H β 1 / x β H\nβ’ H = β₯ β¨ H = β€", "header": "import Mathlib\n\nopen Fintype Subgroup Set Polynomial Ideal\nopen scoped BigOperators\n\n"} |
|
{"name": "exercise_2_4_16a", "split": "test", "informal_prefix": "/-- A subgroup $M$ of a group $G$ is called a maximal subgroup if $M \\neq G$ and the only subgroups of $G$ which contain $M$ are $M$ and $G$. Prove that if $H$ is a proper subgroup of the finite group $G$ then there is a maximal subgroup of $G$ containing $H$.-/\n", "formal_statement": "theorem exercise_2_4_16a {G : Type*} [Group G] {H : Subgroup G}\n (hH : H β β€) :\n β M : Subgroup G, M β β€ β§\n β K : Subgroup G, M β€ K β K = M β¨ K = β€ β§\n H β€ M :=", "goal": "G : Type u_1\ninstβ : Group G\nH : Subgroup G\nhH : H β β€\nβ’ β M, M β β€ β§ β (K : Subgroup G), M β€ K β K = M β¨ K = β€ β§ H β€ M", "header": "import Mathlib\n\nopen Fintype Subgroup Set Polynomial Ideal\nopen scoped BigOperators\n\n"} |
|
{"name": "exercise_2_4_16c", "split": "test", "informal_prefix": "/-- Show that if $G=\\langle x\\rangle$ is a cyclic group of order $n \\geq 1$ then a subgroup $H$ is maximal if and only $H=\\left\\langle x^{p}\\right\\rangle$ for some prime $p$ dividing $n$.-/\n", "formal_statement": "theorem exercise_2_4_16c {n : β} (H : AddSubgroup (ZMod n)) :\n β p : (ZMod n), Prime p β§ H = AddSubgroup.closure {p} β\n (H β β€ β§ β K : AddSubgroup (ZMod n), H β€ K β K = H β¨ K = β€) :=", "goal": "n : β\nH : AddSubgroup (ZMod n)\nβ’ β p, Prime p β§ H = AddSubgroup.closure {p} β H β β€ β§ β (K : AddSubgroup (ZMod n)), H β€ K β K = H β¨ K = β€", "header": "import Mathlib\n\nopen Fintype Subgroup Set Polynomial Ideal\nopen scoped BigOperators\n\n"} |
|
{"name": "exercise_3_1_22a", "split": "test", "informal_prefix": "/-- Prove that if $H$ and $K$ are normal subgroups of a group $G$ then their intersection $H \\cap K$ is also a normal subgroup of $G$.-/\n", "formal_statement": "theorem exercise_3_1_22a (G : Type*) [Group G] (H K : Subgroup G)\n [Normal H] [Normal K] :\n Normal (H β K) :=", "goal": "G : Type u_1\ninstβΒ² : Group G\nH K : Subgroup G\ninstβΒΉ : H.Normal\ninstβ : K.Normal\nβ’ (H β K).Normal", "header": "import Mathlib\n\nopen Fintype Subgroup Set Polynomial Ideal\nopen scoped BigOperators\n\n"} |
|
{"name": "exercise_3_2_8", "split": "test", "informal_prefix": "/-- Prove that if $H$ and $K$ are finite subgroups of $G$ whose orders are relatively prime then $H \\cap K=1$.-/\n", "formal_statement": "theorem exercise_3_2_8 {G : Type*} [Group G] (H K : Subgroup G)\n [Fintype H] [Fintype K]\n (hHK : Nat.Coprime (card H) (card K)) :\n H β K = β₯ :=", "goal": "G : Type u_1\ninstβΒ² : Group G\nH K : Subgroup G\ninstβΒΉ : Fintype β₯H\ninstβ : Fintype β₯K\nhHK : (card β₯H).Coprime (card β₯K)\nβ’ H β K = β₯", "header": "import Mathlib\n\nopen Fintype Subgroup Set Polynomial Ideal\nopen scoped BigOperators\n\n"} |
|
{"name": "exercise_3_2_16", "split": "test", "informal_prefix": "/-- Use Lagrange's Theorem in the multiplicative group $(\\mathbb{Z} / p \\mathbb{Z})^{\\times}$to prove Fermat's Little Theorem: if $p$ is a prime then $a^{p} \\equiv a(\\bmod p)$ for all $a \\in \\mathbb{Z}$.-/\n", "formal_statement": "theorem exercise_3_2_16 (p : β) (hp : Nat.Prime p) (a : β) :\n Nat.Coprime a p β a ^ p β‘ a [ZMOD p] :=", "goal": "p : β\nhp : p.Prime\na : β\nβ’ a.Coprime p β βa ^ p β‘ βa [ZMOD βp]", "header": "import Mathlib\n\nopen Fintype Subgroup Set Polynomial Ideal\nopen scoped BigOperators\n\n"} |
|
{"name": "exercise_3_3_3", "split": "test", "informal_prefix": "/-- Prove that if $H$ is a normal subgroup of $G$ of prime index $p$ then for all $K \\leq G$ either $K \\leq H$, or $G=H K$ and $|K: K \\cap H|=p$.-/\n", "formal_statement": "theorem exercise_3_3_3 {p : Nat.Primes} {G : Type*} [Group G]\n {H : Subgroup G} [hH : H.Normal] (hH1 : H.index = p) :\n β K : Subgroup G, K β€ H β¨ H β K = β€ β¨ (K β H).relindex K = p :=", "goal": "p : Nat.Primes\nG : Type u_1\ninstβ : Group G\nH : Subgroup G\nhH : H.Normal\nhH1 : H.index = βp\nβ’ β (K : Subgroup G), K β€ H β¨ H β K = β€ β¨ (K β H).relindex K = βp", "header": "import Mathlib\n\nopen Fintype Subgroup Set Polynomial Ideal\nopen scoped BigOperators\n\n"} |
|
{"name": "exercise_3_4_4", "split": "test", "informal_prefix": "/-- Use Cauchy's Theorem and induction to show that a finite abelian group has a subgroup of order $n$ for each positive divisor $n$ of its order.-/\n", "formal_statement": "theorem exercise_3_4_4 {G : Type*} [CommGroup G] [Fintype G] {n : β}\n (hn : n β£ (card G)) :\n β (H : Subgroup G) (H_fin : Fintype H), @card H H_fin = n :=", "goal": "G : Type u_1\ninstβΒΉ : CommGroup G\ninstβ : Fintype G\nn : β\nhn : n β£ card G\nβ’ β H H_fin, card β₯H = n", "header": "import Mathlib\n\nopen Fintype Subgroup Set Polynomial Ideal\nopen scoped BigOperators\n\n"} |
|
{"name": "exercise_3_4_5b", "split": "test", "informal_prefix": "/-- Prove that quotient groups of a solvable group are solvable.-/\n", "formal_statement": "theorem exercise_3_4_5b {G : Type*} [Group G] [IsSolvable G]\n (H : Subgroup G) [Normal H] :\n IsSolvable (G β§Έ H) :=", "goal": "G : Type u_1\ninstβΒ² : Group G\ninstβΒΉ : IsSolvable G\nH : Subgroup G\ninstβ : H.Normal\nβ’ IsSolvable (G β§Έ H)", "header": "import Mathlib\n\nopen Fintype Subgroup Set Polynomial Ideal\nopen scoped BigOperators\n\n"} |
|
{"name": "exercise_4_2_8", "split": "test", "informal_prefix": "/-- Prove that if $H$ has finite index $n$ then there is a normal subgroup $K$ of $G$ with $K \\leq H$ and $|G: K| \\leq n!$.-/\n", "formal_statement": "theorem exercise_4_2_8 {G : Type*} [Group G] {H : Subgroup G}\n {n : β} (hn : n > 0) (hH : H.index = n) :\n β K β€ H, K.Normal β§ K.index β€ n.factorial :=", "goal": "G : Type u_1\ninstβ : Group G\nH : Subgroup G\nn : β\nhn : n > 0\nhH : H.index = n\nβ’ β K β€ H, K.Normal β§ K.index β€ n.factorial", "header": "import Mathlib\n\nopen Fintype Subgroup Set Polynomial Ideal\nopen scoped BigOperators\n\n"} |
|
{"name": "exercise_4_2_9a", "split": "test", "informal_prefix": "/-- Prove that if $p$ is a prime and $G$ is a group of order $p^{\\alpha}$ for some $\\alpha \\in \\mathbb{Z}^{+}$, then every subgroup of index $p$ is normal in $G$.-/\n", "formal_statement": "theorem exercise_4_2_9a {G : Type*} [Fintype G] [Group G] {p Ξ± : β}\n (hp : p.Prime) (ha : Ξ± > 0) (hG : card G = p ^ Ξ±) :\n β H : Subgroup G, H.index = p β H.Normal :=", "goal": "G : Type u_1\ninstβΒΉ : Fintype G\ninstβ : Group G\np Ξ± : β\nhp : p.Prime\nha : Ξ± > 0\nhG : card G = p ^ Ξ±\nβ’ β (H : Subgroup G), H.index = p β H.Normal", "header": "import Mathlib\n\nopen Fintype Subgroup Set Polynomial Ideal\nopen scoped BigOperators\n\n"} |
|
{"name": "exercise_4_4_2", "split": "test", "informal_prefix": "/-- Prove that if $G$ is an abelian group of order $p q$, where $p$ and $q$ are distinct primes, then $G$ is cyclic.-/\n", "formal_statement": "theorem exercise_4_4_2 {G : Type*} [Fintype G] [Group G]\n {p q : Nat.Primes} (hpq : p β q) (hG : card G = p*q) :\n IsCyclic G :=", "goal": "G : Type u_1\ninstβΒΉ : Fintype G\ninstβ : Group G\np q : Nat.Primes\nhpq : p β q\nhG : card G = βp * βq\nβ’ IsCyclic G", "header": "import Mathlib\n\nopen Fintype Subgroup Set Polynomial Ideal\nopen scoped BigOperators\n\n"} |
|
{"name": "exercise_4_4_6b", "split": "test", "informal_prefix": "/-- Prove that there exists a normal subgroup that is not characteristic.-/\n", "formal_statement": "theorem exercise_4_4_6b :\n β (G : Type*) (hG : Group G) (H : @Subgroup G hG), @Characteristic G hG H β§ Β¬ @Normal G hG H :=", "goal": "β’ β G hG H, H.Characteristic β§ Β¬H.Normal", "header": "import Mathlib\n\nopen Fintype Subgroup Set Polynomial Ideal\nopen scoped BigOperators\n\n"} |
|
{"name": "exercise_4_4_8a", "split": "test", "informal_prefix": "/-- Let $G$ be a group with subgroups $H$ and $K$ with $H \\leq K$. Prove that if $H$ is characteristic in $K$ and $K$ is normal in $G$ then $H$ is normal in $G$.-/\n", "formal_statement": "theorem exercise_4_4_8a {G : Type*} [Group G] (H K : Subgroup G)\n (hHK : H β€ K) [hHK1 : (H.subgroupOf K).Normal] [hK : K.Normal] :\n H.Normal :=", "goal": "G : Type u_1\ninstβ : Group G\nH K : Subgroup G\nhHK : H β€ K\nhHK1 : (H.subgroupOf K).Normal\nhK : K.Normal\nβ’ H.Normal", "header": "import Mathlib\n\nopen Fintype Subgroup Set Polynomial Ideal\nopen scoped BigOperators\n\n"} |
|
{"name": "exercise_4_5_13", "split": "test", "informal_prefix": "/-- Prove that a group of order 56 has a normal Sylow $p$-subgroup for some prime $p$ dividing its order.-/\n", "formal_statement": "theorem exercise_4_5_13 {G : Type*} [Group G] [Fintype G]\n (hG : card G = 56) :\n β (p : β) (P : Sylow p G), P.Normal :=", "goal": "G : Type u_1\ninstβΒΉ : Group G\ninstβ : Fintype G\nhG : card G = 56\nβ’ β p P, (βP).Normal", "header": "import Mathlib\n\nopen Fintype Subgroup Set Polynomial Ideal\nopen scoped BigOperators\n\n"} |
|
{"name": "exercise_4_5_15", "split": "test", "informal_prefix": "/-- Prove that a group of order 351 has a normal Sylow $p$-subgroup for some prime $p$ dividing its order.-/\n", "formal_statement": "theorem exercise_4_5_15 {G : Type*} [Group G] [Fintype G]\n (hG : card G = 351) :\n β (p : β) (P : Sylow p G), P.Normal :=", "goal": "G : Type u_1\ninstβΒΉ : Group G\ninstβ : Fintype G\nhG : card G = 351\nβ’ β p P, (βP).Normal", "header": "import Mathlib\n\nopen Fintype Subgroup Set Polynomial Ideal\nopen scoped BigOperators\n\n"} |
|
{"name": "exercise_4_5_17", "split": "test", "informal_prefix": "/-- Prove that if $|G|=105$ then $G$ has a normal Sylow 5 -subgroup and a normal Sylow 7-subgroup.-/\n", "formal_statement": "theorem exercise_4_5_17 {G : Type*} [Fintype G] [Group G]\n (hG : card G = 105) :\n Nonempty (Sylow 5 G) β§ Nonempty (Sylow 7 G) :=", "goal": "G : Type u_1\ninstβΒΉ : Fintype G\ninstβ : Group G\nhG : card G = 105\nβ’ Nonempty (Sylow 5 G) β§ Nonempty (Sylow 7 G)", "header": "import Mathlib\n\nopen Fintype Subgroup Set Polynomial Ideal\nopen scoped BigOperators\n\n"} |
|
{"name": "exercise_4_5_19", "split": "test", "informal_prefix": "/-- Prove that if $|G|=6545$ then $G$ is not simple.-/\n", "formal_statement": "theorem exercise_4_5_19 {G : Type*} [Fintype G] [Group G]\n (hG : card G = 6545) : Β¬ IsSimpleGroup G :=", "goal": "G : Type u_1\ninstβΒΉ : Fintype G\ninstβ : Group G\nhG : card G = 6545\nβ’ Β¬IsSimpleGroup G", "header": "import Mathlib\n\nopen Fintype Subgroup Set Polynomial Ideal\nopen scoped BigOperators\n\n"} |
|
{"name": "exercise_4_5_21", "split": "test", "informal_prefix": "/-- Prove that if $|G|=2907$ then $G$ is not simple.-/\n", "formal_statement": "theorem exercise_4_5_21 {G : Type*} [Fintype G] [Group G]\n (hG : card G = 2907) : Β¬ IsSimpleGroup G :=", "goal": "G : Type u_1\ninstβΒΉ : Fintype G\ninstβ : Group G\nhG : card G = 2907\nβ’ Β¬IsSimpleGroup G", "header": "import Mathlib\n\nopen Fintype Subgroup Set Polynomial Ideal\nopen scoped BigOperators\n\n"} |
|
{"name": "exercise_4_5_23", "split": "test", "informal_prefix": "/-- Prove that if $|G|=462$ then $G$ is not simple.-/\n", "formal_statement": "theorem exercise_4_5_23 {G : Type*} [Fintype G] [Group G]\n (hG : card G = 462) : Β¬ IsSimpleGroup G :=", "goal": "G : Type u_1\ninstβΒΉ : Fintype G\ninstβ : Group G\nhG : card G = 462\nβ’ Β¬IsSimpleGroup G", "header": "import Mathlib\n\nopen Fintype Subgroup Set Polynomial Ideal\nopen scoped BigOperators\n\n"} |
|
{"name": "exercise_4_5_33", "split": "test", "informal_prefix": "/-- Let $P$ be a normal Sylow $p$-subgroup of $G$ and let $H$ be any subgroup of $G$. Prove that $P \\cap H$ is the unique Sylow $p$-subgroup of $H$.-/\n", "formal_statement": "theorem exercise_4_5_33 {G : Type*} [Group G] [Fintype G] {p : β}\n (P : Sylow p G) [hP : P.Normal] (H : Subgroup G) [Fintype H] :\n β R : Sylow p H, R.toSubgroup = (H β P.toSubgroup).subgroupOf H β§\n Nonempty (Sylow p H) :=", "goal": "G : Type u_1\ninstβΒ² : Group G\ninstβΒΉ : Fintype G\np : β\nP : Sylow p G\nhP : (βP).Normal\nH : Subgroup G\ninstβ : Fintype β₯H\nβ’ β (R : Sylow p β₯H), βR = (H β βP).subgroupOf H β§ Nonempty (Sylow p β₯H)", "header": "import Mathlib\n\nopen Fintype Subgroup Set Polynomial Ideal\nopen scoped BigOperators\n\n"} |
|
{"name": "exercise_7_1_2", "split": "test", "informal_prefix": "/-- Prove that if $u$ is a unit in $R$ then so is $-u$.-/\n", "formal_statement": "theorem exercise_7_1_2 {R : Type*} [Ring R] {u : R}\n (hu : IsUnit u) : IsUnit (-u) :=", "goal": "R : Type u_1\ninstβ : Ring R\nu : R\nhu : IsUnit u\nβ’ IsUnit (-u)", "header": "import Mathlib\n\nopen Fintype Subgroup Set Polynomial Ideal\nopen scoped BigOperators\n\n"} |
|
{"name": "exercise_7_1_12", "split": "test", "informal_prefix": "/-- Prove that any subring of a field which contains the identity is an integral domain.-/\n", "formal_statement": "theorem exercise_7_1_12 {F : Type*} [Field F] {K : Subring F}\n (hK : (1 : F) β K) : IsDomain K :=", "goal": "F : Type u_1\ninstβ : Field F\nK : Subring F\nhK : 1 β K\nβ’ IsDomain β₯K", "header": "import Mathlib\n\nopen Fintype Subgroup Set Polynomial Ideal\nopen scoped BigOperators\n\n"} |
|
{"name": "exercise_7_2_2", "split": "test", "informal_prefix": "/-- Let $p(x)=a_{n} x^{n}+a_{n-1} x^{n-1}+\\cdots+a_{1} x+a_{0}$ be an element of the polynomial ring $R[x]$. Prove that $p(x)$ is a zero divisor in $R[x]$ if and only if there is a nonzero $b \\in R$ such that $b p(x)=0$.-/\n", "formal_statement": "theorem exercise_7_2_2 {R : Type*} [Ring R] (p : Polynomial R) :\n p β£ 0 β β b : R, b β 0 β§ b β’ p = 0 :=", "goal": "R : Type u_1\ninstβ : Ring R\np : R[X]\nβ’ p β£ 0 β β b, b β 0 β§ b β’ p = 0", "header": "import Mathlib\n\nopen Fintype Subgroup Set Polynomial Ideal\nopen scoped BigOperators\n\n"} |
|
{"name": "exercise_7_3_16", "split": "test", "informal_prefix": "/-- Let $\\varphi: R \\rightarrow S$ be a surjective homomorphism of rings. Prove that the image of the center of $R$ is contained in the center of $S$.-/\n", "formal_statement": "theorem exercise_7_3_16 {R S : Type*} [Ring R] [Ring S]\n {Ο : R β+* S} (hf : Function.Surjective Ο) :\n Ο '' (center R) β center S :=", "goal": "R : Type u_1\nS : Type u_2\ninstβΒΉ : Ring R\ninstβ : Ring S\nΟ : R β+* S\nhf : Function.Surjective βΟ\nβ’ βΟ '' Set.center R β Set.center S", "header": "import Mathlib\n\nopen Fintype Subgroup Set Polynomial Ideal\nopen scoped BigOperators\n\n"} |
|
{"name": "exercise_7_4_27", "split": "test", "informal_prefix": "/-- Let $R$ be a commutative ring with $1 \\neq 0$. Prove that if $a$ is a nilpotent element of $R$ then $1-a b$ is a unit for all $b \\in R$.-/\n", "formal_statement": "theorem exercise_7_4_27 {R : Type*} [CommRing R] (hR : (0 : R) β 1)\n {a : R} (ha : IsNilpotent a) (b : R) :\n IsUnit (1-a*b) :=", "goal": "R : Type u_1\ninstβ : CommRing R\nhR : 0 β 1\na : R\nha : IsNilpotent a\nb : R\nβ’ IsUnit (1 - a * b)", "header": "import Mathlib\n\nopen Fintype Subgroup Set Polynomial Ideal\nopen scoped BigOperators\n\n"} |
|
{"name": "exercise_8_2_4", "split": "test", "informal_prefix": "/-- Let $R$ be an integral domain. Prove that if the following two conditions hold then $R$ is a Principal Ideal Domain: (i) any two nonzero elements $a$ and $b$ in $R$ have a greatest common divisor which can be written in the form $r a+s b$ for some $r, s \\in R$, and (ii) if $a_{1}, a_{2}, a_{3}, \\ldots$ are nonzero elements of $R$ such that $a_{i+1} \\mid a_{i}$ for all $i$, then there is a positive integer $N$ such that $a_{n}$ is a unit times $a_{N}$ for all $n \\geq N$.-/\n", "formal_statement": "theorem exercise_8_2_4 {R : Type*} [Ring R][NoZeroDivisors R]\n [CancelCommMonoidWithZero R] [GCDMonoid R]\n (h1 : β a b : R, a β 0 β b β 0 β β r s : R, gcd a b = r*a + s*b)\n (h2 : β a : β β R, (β i j : β, i < j β a i β£ a j) β\n β N : β, β n β₯ N, β u : R, IsUnit u β§ a n = u * a N) :\n IsPrincipalIdealRing R :=", "goal": "R : Type u_1\ninstβΒ³ : Ring R\ninstβΒ² : NoZeroDivisors R\ninstβΒΉ : CancelCommMonoidWithZero R\ninstβ : GCDMonoid R\nh1 : β (a b : R), a β 0 β b β 0 β β r s, gcd a b = r * a + s * b\nh2 : β (a : β β R), (β (i j : β), i < j β a i β£ a j) β β N, β n β₯ N, β u, IsUnit u β§ a n = u * a N\nβ’ IsPrincipalIdealRing R", "header": "import Mathlib\n\nopen Fintype Subgroup Set Polynomial Ideal\nopen scoped BigOperators\n\n"} |
|
{"name": "exercise_8_3_5a", "split": "test", "informal_prefix": "/-- Let $R=\\mathbb{Z}[\\sqrt{-n}]$ where $n$ is a squarefree integer greater than 3. Prove that $2, \\sqrt{-n}$ and $1+\\sqrt{-n}$ are irreducibles in $R$.-/\n", "formal_statement": "theorem exercise_8_3_5a {n : β€} (hn0 : n > 3) (hn1 : Squarefree n) :\n Irreducible (2 : Zsqrtd $ -n) β§\n Irreducible (β¨0, 1β© : Zsqrtd $ -n) β§\n Irreducible (1 + β¨0, 1β© : Zsqrtd $ -n) :=", "goal": "n : β€\nhn0 : n > 3\nhn1 : Squarefree n\nβ’ Irreducible 2 β§ Irreducible { re := 0, im := 1 } β§ Irreducible (1 + { re := 0, im := 1 })", "header": "import Mathlib\n\nopen Fintype Subgroup Set Polynomial Ideal\nopen scoped BigOperators\n\n"} |
|
{"name": "exercise_8_3_6b", "split": "test", "informal_prefix": "/-- Let $q \\in \\mathbb{Z}$ be a prime with $q \\equiv 3 \\bmod 4$. Prove that the quotient ring $\\mathbb{Z}[i] /(q)$ is a field with $q^{2}$ elements.-/\n", "formal_statement": "theorem exercise_8_3_6b {q : β} (hq0 : q.Prime)\n (hq1 : q β‘ 3 [ZMOD 4]) {R : Type} [Ring R]\n (hR : R = (GaussianInt β§Έ span ({βq} : Set GaussianInt))) :\n IsField R β§ β finR : Fintype R, @card R finR = q^2 :=", "goal": "q : β\nhq0 : q.Prime\nhq1 : βq β‘ 3 [ZMOD 4]\nR : Type\ninstβ : Ring R\nhR : R = (GaussianInt β§Έ span {βq})\nβ’ IsField R β§ β finR, card R = q ^ 2", "header": "import Mathlib\n\nopen Fintype Subgroup Set Polynomial Ideal\nopen scoped BigOperators\n\n"} |
|
{"name": "exercise_9_1_10", "split": "test", "informal_prefix": "/-- Prove that the ring $\\mathbb{Z}\\left[x_{1}, x_{2}, x_{3}, \\ldots\\right] /\\left(x_{1} x_{2}, x_{3} x_{4}, x_{5} x_{6}, \\ldots\\right)$ contains infinitely many minimal prime ideals.-/\n", "formal_statement": "theorem exercise_9_1_10 {f : β β MvPolynomial β β€}\n (hf : f = Ξ» i => MvPolynomial.X i * MvPolynomial.X (i+1)):\n Infinite (minimalPrimes (MvPolynomial β β€ β§Έ span (range f))) :=", "goal": "f : β β MvPolynomial β β€\nhf : f = fun i => MvPolynomial.X i * MvPolynomial.X (i + 1)\nβ’ Infinite β(minimalPrimes (MvPolynomial β β€ β§Έ span (range f)))", "header": "import Mathlib\n\nopen Fintype Subgroup Set Polynomial Ideal\nopen scoped BigOperators\n\n"} |
|
{"name": "exercise_9_4_2a", "split": "test", "informal_prefix": "/-- Prove that $x^4-4x^3+6$ is irreducible in $\\mathbb{Z}[x]$.-/\n", "formal_statement": "theorem exercise_9_4_2a : Irreducible (X^4 - 4*X^3 + 6 : Polynomial β€) :=", "goal": "β’ Irreducible (X ^ 4 - 4 * X ^ 3 + 6)", "header": "import Mathlib\n\nopen Fintype Subgroup Set Polynomial Ideal\nopen scoped BigOperators\n\n"} |
|
{"name": "exercise_9_4_2c", "split": "test", "informal_prefix": "/-- Prove that $x^4+4x^3+6x^2+2x+1$ is irreducible in $\\mathbb{Z}[x]$.-/\n", "formal_statement": "theorem exercise_9_4_2c : Irreducible\n (X^4 + 4*X^3 + 6*X^2 + 2*X + 1 : Polynomial β€) :=", "goal": "β’ Irreducible (X ^ 4 + 4 * X ^ 3 + 6 * X ^ 2 + 2 * X + 1)", "header": "import Mathlib\n\nopen Fintype Subgroup Set Polynomial Ideal\nopen scoped BigOperators\n\n"} |
|
{"name": "exercise_9_4_9", "split": "test", "informal_prefix": "/-- Prove that the polynomial $x^{2}-\\sqrt{2}$ is irreducible over $\\mathbb{Z}[\\sqrt{2}]$. You may assume that $\\mathbb{Z}[\\sqrt{2}]$ is a U.F.D.-/\n", "formal_statement": "theorem exercise_9_4_9 :\n Irreducible (X^2 - C Zsqrtd.sqrtd : Polynomial (Zsqrtd 2)) :=", "goal": "β’ Irreducible (X ^ 2 - C Zsqrtd.sqrtd)", "header": "import Mathlib\n\nopen Fintype Subgroup Set Polynomial Ideal\nopen scoped BigOperators\n\n"} |
|
{"name": "exercise_11_1_13", "split": "test", "informal_prefix": "/-- Prove that as vector spaces over $\\mathbb{Q}, \\mathbb{R}^n \\cong \\mathbb{R}$, for all $n \\in \\mathbb{Z}^{+}$.-/\n", "formal_statement": "def exercise_11_1_13 {ΞΉ : Type*} [Fintype ΞΉ] :\n (ΞΉ β β) ββ[β] β :=", "goal": "ΞΉ : Type u_1\ninstβ : Fintype ΞΉ\nβ’ (ΞΉ β β) ββ[β] β", "header": "import Mathlib\n\nopen Fintype Subgroup Set Polynomial Ideal\nopen scoped BigOperators\n\n"} |
|
{"name": "exercise_13_3b", "split": "test", "informal_prefix": "/-- Show that the collection $$\\mathcal{T}_\\infty = \\{U | X - U \\text{ is infinite or empty or all of X}\\}$$ does not need to be a topology on the set $X$.-/\n", "formal_statement": "theorem exercise_13_3b : Β¬ β X : Type, βs : Set (Set X),\n (β t : Set X, t β s β (Set.Infinite tαΆ β¨ t = β
β¨ t = β€)) β\n (Set.Infinite (ββ s)αΆ β¨ (ββ s) = β
β¨ (ββ s) = β€) :=", "goal": "β’ Β¬β (X : Type) (s : Set (Set X)), (β t β s, tαΆ.Infinite β¨ t = β
β¨ t = β€) β (ββ s)αΆ.Infinite β¨ ββ s = β
β¨ ββ s = β€", "header": "import Mathlib\n\nopen Filter Set TopologicalSpace\nopen scoped Topology\n\n"} |
|
{"name": "exercise_13_4a2", "split": "test", "informal_prefix": "/-- If $\\mathcal{T}_\\alpha$ is a family of topologies on $X$, show that $\\bigcup \\mathcal{T}_\\alpha$ does not need to be a topology on $X$.-/\n", "formal_statement": "theorem exercise_13_4a2 :\n β (X I : Type*) (T : I β Set (Set X)),\n (β i, is_topology X (T i)) β§ Β¬ is_topology X (β i : I, T i) :=", "goal": "β’ β X I T, (β (i : I), is_topology X (T i)) β§ Β¬is_topology X (β i, T i)", "header": "import Mathlib\n\nopen Filter Set TopologicalSpace\nopen scoped Topology\n\ndef is_topology (X : Type*) (T : Set (Set X)) :=\n univ β T β§\n (β s t, s β T β t β T β s β© t β T) β§\n (βs, (βt β s, t β T) β sUnion s β T)\n\n"} |
|
{"name": "exercise_13_4b2", "split": "test", "informal_prefix": "/-- Let $\\mathcal{T}_\\alpha$ be a family of topologies on $X$. Show that there is a unique largest topology on $X$ contained in all the collections $\\mathcal{T}_\\alpha$.-/\n", "formal_statement": "theorem exercise_13_4b2 (X I : Type*) (T : I β Set (Set X)) (h : β i, is_topology X (T i)) :\n β! T', is_topology X T' β§ (β i, T' β T i) β§\n β T'', is_topology X T'' β (β i, T'' β T i) β T' β T'' :=", "goal": "X : Type u_1\nI : Type u_2\nT : I β Set (Set X)\nh : β (i : I), is_topology X (T i)\nβ’ β! T',\n is_topology X T' β§\n (β (i : I), T' β T i) β§ β (T'' : Set (Set X)), is_topology X T'' β (β (i : I), T'' β T i) β T' β T''", "header": "import Mathlib\n\nopen Filter Set TopologicalSpace\nopen scoped Topology\n\ndef is_topology (X : Type*) (T : Set (Set X)) :=\n univ β T β§\n (β s t, s β T β t β T β s β© t β T) β§\n (βs, (βt β s, t β T) β sUnion s β T)\n\n"} |
|
{"name": "exercise_13_5b", "split": "test", "informal_prefix": "/-- Show that if $\\mathcal{A}$ is a subbasis for a topology on $X$, then the topology generated by $\\mathcal{A}$ equals the intersection of all topologies on $X$ that contain $\\mathcal{A}$.-/\n", "formal_statement": "theorem exercise_13_5b {X : Type*}\n [t : TopologicalSpace X] (A : Set (Set X)) (hA : t = generateFrom A) :\n generateFrom A = generateFrom (sInter {T | is_topology X T β§ A β T}) :=", "goal": "X : Type u_1\nt : TopologicalSpace X\nA : Set (Set X)\nhA : t = generateFrom A\nβ’ generateFrom A = generateFrom (ββ {T | is_topology X T β§ A β T})", "header": "import Mathlib\n\nopen Filter Set TopologicalSpace\nopen scoped Topology\n\ndef is_topology (X : Type*) (T : Set (Set X)) :=\n univ β T β§\n (β s t, s β T β t β T β s β© t β T) β§\n (βs, (βt β s, t β T) β sUnion s β T)\n\n"} |
|
{"name": "exercise_13_8a", "split": "test", "informal_prefix": "/-- Show that the collection $\\{(a,b) \\mid a < b, a \\text{ and } b \\text{ rational}\\}$ is a basis that generates the standard topology on $\\mathbb{R}$.-/\n", "formal_statement": "theorem exercise_13_8a :\n IsTopologicalBasis {S : Set β | β a b : β, a < b β§ S = Ioo βa βb} :=", "goal": "β’ IsTopologicalBasis {S | β a b, a < b β§ S = Ioo βa βb}", "header": "import Mathlib\n\nopen Filter Set TopologicalSpace\nopen scoped Topology\n\n"} |
|
{"name": "exercise_16_1", "split": "test", "informal_prefix": "/-- Show that if $Y$ is a subspace of $X$, and $A$ is a subset of $Y$, then the topology $A$ inherits as a subspace of $Y$ is the same as the topology it inherits as a subspace of $X$.-/\n", "formal_statement": "theorem exercise_16_1 {X : Type*} [TopologicalSpace X]\n (Y : Set X)\n (A : Set Y) :\n β U : Set A, IsOpen U β IsOpen (Subtype.val '' U) :=", "goal": "X : Type u_1\ninstβ : TopologicalSpace X\nY : Set X\nA : Set βY\nβ’ β (U : Set βA), IsOpen U β IsOpen (Subtype.val '' U)", "header": "import Mathlib\n\nopen Filter Set TopologicalSpace\nopen scoped Topology\n\n"} |
|
{"name": "exercise_16_6", "split": "test", "informal_prefix": "/-- Show that the countable collection \\[\\{(a, b) \\times (c, d) \\mid a < b \\text{ and } c < d, \\text{ and } a, b, c, d \\text{ are rational}\\}\\] is a basis for $\\mathbb{R}^2$.-/\n", "formal_statement": "theorem exercise_16_6\n (S : Set (Set (β Γ β)))\n (hS : β s, s β S β β a b c d, (rational a β§ rational b β§ rational c β§ rational d\n β§ s = {x | β xβ xβ, x = (xβ, xβ) β§ a < xβ β§ xβ < b β§ c < xβ β§ xβ < d})) :\n IsTopologicalBasis S :=", "goal": "S : Set (Set (β Γ β))\nhS :\n β s β S,\n β a b c d,\n rational a β§\n rational b β§ rational c β§ rational d β§ s = {x | β xβ xβ, x = (xβ, xβ) β§ a < xβ β§ xβ < b β§ c < xβ β§ xβ < d}\nβ’ IsTopologicalBasis S", "header": "import Mathlib\n\nopen Filter Set TopologicalSpace\nopen scoped Topology\n\ndef rational (x : β) := x β range ((β) : β β β)\n\n"} |
|
{"name": "exercise_18_8a", "split": "test", "informal_prefix": "/-- Let $Y$ be an ordered set in the order topology. Let $f, g: X \\rightarrow Y$ be continuous. Show that the set $\\{x \\mid f(x) \\leq g(x)\\}$ is closed in $X$.-/\n", "formal_statement": "theorem exercise_18_8a {X Y : Type*} [TopologicalSpace X] [TopologicalSpace Y]\n [LinearOrder Y] [OrderTopology Y] {f g : X β Y}\n (hf : Continuous f) (hg : Continuous g) :\n IsClosed {x | f x β€ g x} :=", "goal": "X : Type u_1\nY : Type u_2\ninstβΒ³ : TopologicalSpace X\ninstβΒ² : TopologicalSpace Y\ninstβΒΉ : LinearOrder Y\ninstβ : OrderTopology Y\nf g : X β Y\nhf : Continuous f\nhg : Continuous g\nβ’ IsClosed {x | f x β€ g x}", "header": "import Mathlib\n\nopen Filter Set TopologicalSpace\nopen scoped Topology\n\n"} |
|
{"name": "exercise_18_13", "split": "test", "informal_prefix": "/-- Let $A \\subset X$; let $f: A \\rightarrow Y$ be continuous; let $Y$ be Hausdorff. Show that if $f$ may be extended to a continuous function $g: \\bar{A} \\rightarrow Y$, then $g$ is uniquely determined by $f$.-/\n", "formal_statement": "theorem exercise_18_13\n {X : Type*} [TopologicalSpace X] {Y : Type*} [TopologicalSpace Y]\n [T2Space Y] {A : Set X} {f : A β Y} (hf : Continuous f)\n (g : closure A β Y)\n (g_con : Continuous g) :\n β (g' : closure A β Y), Continuous g' β (β (x : closure A), g x = g' x) :=", "goal": "X : Type u_1\ninstβΒ² : TopologicalSpace X\nY : Type u_2\ninstβΒΉ : TopologicalSpace Y\ninstβ : T2Space Y\nA : Set X\nf : βA β Y\nhf : Continuous f\ng : β(closure A) β Y\ng_con : Continuous g\nβ’ β (g' : β(closure A) β Y), Continuous g' β β (x : β(closure A)), g x = g' x", "header": "import Mathlib\n\nopen Filter Set TopologicalSpace\nopen scoped Topology\n\n"} |
|
{"name": "exercise_20_2", "split": "test", "informal_prefix": "/-- Show that $\\mathbb{R} \\times \\mathbb{R}$ in the dictionary order topology is metrizable.-/\n", "formal_statement": "theorem exercise_20_2\n [TopologicalSpace (β Γβ β)] [OrderTopology (β Γβ β)]\n : MetrizableSpace (β Γβ β) :=", "goal": "instβΒΉ : TopologicalSpace (Lex (β Γ β))\ninstβ : OrderTopology (Lex (β Γ β))\nβ’ MetrizableSpace (Lex (β Γ β))", "header": "import Mathlib\n\nopen Filter Set TopologicalSpace\nopen scoped Topology\n\n"} |
|
{"name": "exercise_21_6b", "split": "test", "informal_prefix": "/-- Define $f_{n}:[0,1] \\rightarrow \\mathbb{R}$ by the equation $f_{n}(x)=x^{n}$. Show that the sequence $\\left(f_{n}\\right)$ does not converge uniformly.-/\n", "formal_statement": "theorem exercise_21_6b\n (f : β β I β β )\n (h : β x n, f n x = x ^ n) :\n Β¬ β fβ, TendstoUniformly f fβ atTop :=", "goal": "f : β β βI β β\nh : β (x : βI) (n : β), f n x = βx ^ n\nβ’ Β¬β fβ, TendstoUniformly f fβ atTop", "header": "import Mathlib\n\nopen Filter Set TopologicalSpace\nopen scoped Topology\n\nabbrev I : Set β := Icc 0 1\n\n"} |
|
{"name": "exercise_22_2a", "split": "test", "informal_prefix": "/-- Let $p: X \\rightarrow Y$ be a continuous map. Show that if there is a continuous map $f: Y \\rightarrow X$ such that $p \\circ f$ equals the identity map of $Y$, then $p$ is a quotient map.-/\n", "formal_statement": "theorem exercise_22_2a {X Y : Type*} [TopologicalSpace X]\n [TopologicalSpace Y] (p : X β Y) (h : Continuous p) :\n QuotientMap p β β (f : Y β X), Continuous f β§ p β f = id :=", "goal": "X : Type u_1\nY : Type u_2\ninstβΒΉ : TopologicalSpace X\ninstβ : TopologicalSpace Y\np : X β Y\nh : Continuous p\nβ’ QuotientMap p β β f, Continuous f β§ p β f = id", "header": "import Mathlib\n\nopen Filter Set TopologicalSpace\nopen scoped Topology\n\n"} |
|
{"name": "exercise_22_5", "split": "test", "informal_prefix": "/-- Let $p \\colon X \\rightarrow Y$ be an open map. Show that if $A$ is open in $X$, then the map $q \\colon A \\rightarrow p(A)$ obtained by restricting $p$ is an open map.-/\n", "formal_statement": "theorem exercise_22_5 {X Y : Type*} [TopologicalSpace X]\n [TopologicalSpace Y] (p : X β Y) (hp : IsOpenMap p)\n (A : Set X) (hA : IsOpen A) : IsOpenMap (p β Subtype.val : A β Y) :=", "goal": "X : Type u_1\nY : Type u_2\ninstβΒΉ : TopologicalSpace X\ninstβ : TopologicalSpace Y\np : X β Y\nhp : IsOpenMap p\nA : Set X\nhA : IsOpen A\nβ’ IsOpenMap (p β Subtype.val)", "header": "import Mathlib\n\nopen Filter Set TopologicalSpace\nopen scoped Topology\n\n"} |
|
{"name": "exercise_23_3", "split": "test", "informal_prefix": "/-- Let $\\left\\{A_{\\alpha}\\right\\}$ be a collection of connected subspaces of $X$; let $A$ be a connected subset of $X$. Show that if $A \\cap A_{\\alpha} \\neq \\varnothing$ for all $\\alpha$, then $A \\cup\\left(\\bigcup A_{\\alpha}\\right)$ is connected.-/\n", "formal_statement": "theorem exercise_23_3 {X : Type*} [TopologicalSpace X]\n [TopologicalSpace X] {A : β β Set X}\n (hAn : β n, IsConnected (A n))\n (Aβ : Set X)\n (hA : IsConnected Aβ)\n (h : β n, Aβ β© A n β β
) :\n IsConnected (Aβ βͺ (β n, A n)) :=", "goal": "X : Type u_1\ninstβΒΉ instβ : TopologicalSpace X\nA : β β Set X\nhAn : β (n : β), IsConnected (A n)\nAβ : Set X\nhA : IsConnected Aβ\nh : β (n : β), Aβ β© A n β β
\nβ’ IsConnected (Aβ βͺ β n, A n)", "header": "import Mathlib\n\nopen Filter Set TopologicalSpace\nopen scoped Topology\n\n"} |
|
{"name": "exercise_23_6", "split": "test", "informal_prefix": "/-- Let $A \\subset X$. Show that if $C$ is a connected subspace of $X$ that intersects both $A$ and $X-A$, then $C$ intersects $\\operatorname{Bd} A$.-/\n", "formal_statement": "theorem exercise_23_6 {X : Type*}\n [TopologicalSpace X] {A C : Set X} (hc : IsConnected C)\n (hCA : C β© A β β
) (hCXA : C β© AαΆ β β
) :\n C β© (frontier A) β β
:=", "goal": "X : Type u_1\ninstβ : TopologicalSpace X\nA C : Set X\nhc : IsConnected C\nhCA : C β© A β β
\nhCXA : C β© AαΆ β β
\nβ’ C β© frontier A β β
", "header": "import Mathlib\n\nopen Filter Set TopologicalSpace\nopen scoped Topology\n\n"} |
|
{"name": "exercise_23_11", "split": "test", "informal_prefix": "/-- Let $p: X \\rightarrow Y$ be a quotient map. Show that if each set $p^{-1}(\\{y\\})$ is connected, and if $Y$ is connected, then $X$ is connected.-/\n", "formal_statement": "theorem exercise_23_11 {X Y : Type*} [TopologicalSpace X] [TopologicalSpace Y]\n (p : X β Y) (hq : QuotientMap p)\n (hY : ConnectedSpace Y) (hX : β y : Y, IsConnected (p β»ΒΉ' {y})) :\n ConnectedSpace X :=", "goal": "X : Type u_1\nY : Type u_2\ninstβΒΉ : TopologicalSpace X\ninstβ : TopologicalSpace Y\np : X β Y\nhq : QuotientMap p\nhY : ConnectedSpace Y\nhX : β (y : Y), IsConnected (p β»ΒΉ' {y})\nβ’ ConnectedSpace X", "header": "import Mathlib\n\nopen Filter Set TopologicalSpace\nopen scoped Topology\n\n"} |
|
{"name": "exercise_24_3a", "split": "test", "informal_prefix": "/-- Let $f \\colon X \\rightarrow X$ be continuous. Show that if $X = [0, 1]$, there is a point $x$ such that $f(x) = x$. (The point $x$ is called a fixed point of $f$.)-/\n", "formal_statement": "theorem exercise_24_3a [TopologicalSpace I] [CompactSpace I]\n (f : I β I) (hf : Continuous f) :\n β (x : I), f x = x :=", "goal": "I : Type u_1\ninstβΒΉ : TopologicalSpace I\ninstβ : CompactSpace I\nf : I β I\nhf : Continuous f\nβ’ β x, f x = x", "header": "import Mathlib\n\nopen Filter Set TopologicalSpace\nopen scoped Topology\n\n"} |
|
{"name": "exercise_25_9", "split": "test", "informal_prefix": "/-- Let $G$ be a topological group; let $C$ be the component of $G$ containing the identity element $e$. Show that $C$ is a normal subgroup of $G$.-/\n", "formal_statement": "theorem exercise_25_9 {G : Type*} [TopologicalSpace G] [Group G]\n [TopologicalGroup G] (C : Set G) (h : C = connectedComponent 1) :\n IsNormalSubgroup C :=", "goal": "G : Type u_1\ninstβΒ² : TopologicalSpace G\ninstβΒΉ : Group G\ninstβ : TopologicalGroup G\nC : Set G\nh : C = connectedComponent 1\nβ’ IsNormalSubgroup C", "header": "import Mathlib\n\nopen Filter Set TopologicalSpace\nopen scoped Topology\n\n"} |
|
{"name": "exercise_26_12", "split": "test", "informal_prefix": "/-- Let $p: X \\rightarrow Y$ be a closed continuous surjective map such that $p^{-1}(\\{y\\})$ is compact, for each $y \\in Y$. (Such a map is called a perfect map.) Show that if $Y$ is compact, then $X$ is compact.-/\n", "formal_statement": "theorem exercise_26_12 {X Y : Type*} [TopologicalSpace X] [TopologicalSpace Y]\n (p : X β Y) (h : Function.Surjective p) (hc : Continuous p) (hp : β y, IsCompact (p β»ΒΉ' {y}))\n (hY : CompactSpace Y) : CompactSpace X :=", "goal": "X : Type u_1\nY : Type u_2\ninstβΒΉ : TopologicalSpace X\ninstβ : TopologicalSpace Y\np : X β Y\nh : Function.Surjective p\nhc : Continuous p\nhp : β (y : Y), IsCompact (p β»ΒΉ' {y})\nhY : CompactSpace Y\nβ’ CompactSpace X", "header": "import Mathlib\n\nopen Filter Set TopologicalSpace\nopen scoped Topology\n\n"} |
|
{"name": "exercise_28_4", "split": "test", "informal_prefix": "/-- A space $X$ is said to be countably compact if every countable open covering of $X$ contains a finite subcollection that covers $X$. Show that for a $T_1$ space $X$, countable compactness is equivalent to limit point compactness.-/\n", "formal_statement": "theorem exercise_28_4 {X : Type*}\n [TopologicalSpace X] (hT1 : T1Space X) :\n countably_compact X β limit_point_compact X :=", "goal": "X : Type u_1\ninstβ : TopologicalSpace X\nhT1 : T1Space X\nβ’ countably_compact X β limit_point_compact X", "header": "import Mathlib\n\nopen Filter Set TopologicalSpace\nopen scoped Topology\n\ndef countably_compact (X : Type*) [TopologicalSpace X] :=\n β U : β β Set X,\n (β i, IsOpen (U i)) β§ ((univ : Set X) β β i, U i) β\n (β t : Finset β, (univ : Set X) β β i β t, U i)\n\ndef limit_point_compact (X : Type*) [TopologicalSpace X] :=\n β U : Set X, Infinite U β β x β U, ClusterPt x (π U)\n\n"} |
|
{"name": "exercise_28_6", "split": "test", "informal_prefix": "/-- Let $(X, d)$ be a metric space. If $f: X \\rightarrow X$ satisfies the condition $d(f(x), f(y))=d(x, y)$ for all $x, y \\in X$, then $f$ is called an isometry of $X$. Show that if $f$ is an isometry and $X$ is compact, then $f$ is bijective and hence a homeomorphism.-/\n", "formal_statement": "theorem exercise_28_6 {X : Type*} [MetricSpace X]\n [CompactSpace X] {f : X β X} (hf : Isometry f) :\n Function.Bijective f :=", "goal": "X : Type u_1\ninstβΒΉ : MetricSpace X\ninstβ : CompactSpace X\nf : X β X\nhf : Isometry f\nβ’ Function.Bijective f", "header": "import Mathlib\n\nopen Filter Set TopologicalSpace\nopen scoped Topology\n\n"} |
|
{"name": "exercise_29_4", "split": "test", "informal_prefix": "/-- Show that $[0, 1]^\\omega$ is not locally compact in the uniform topology.-/\n", "formal_statement": "theorem exercise_29_4 [TopologicalSpace (β β I)] :\n Β¬ LocallyCompactSpace (β β I) :=", "goal": "instβ : TopologicalSpace (β β βI)\nβ’ Β¬LocallyCompactSpace (β β βI)", "header": "import Mathlib\n\nopen Filter Set TopologicalSpace\nopen scoped Topology\n\nabbrev I : Set β := Icc 0 1\n\n"} |
|
{"name": "exercise_30_10", "split": "test", "informal_prefix": "/-- Show that if $X$ is a countable product of spaces having countable dense subsets, then $X$ has a countable dense subset.-/\n", "formal_statement": "theorem exercise_30_10\n {X : β β Type*} [β i, TopologicalSpace (X i)]\n (h : β i, β (s : Set (X i)), Countable s β§ Dense s) :\n β (s : Set (Ξ i, X i)), Countable s β§ Dense s :=", "goal": "X : β β Type u_1\ninstβ : (i : β) β TopologicalSpace (X i)\nh : β (i : β), β s, Countable βs β§ Dense s\nβ’ β s, Countable βs β§ Dense s", "header": "import Mathlib\n\nopen Filter Set TopologicalSpace\nopen scoped Topology\n\n"} |
|
{"name": "exercise_31_1", "split": "test", "informal_prefix": "/-- Show that if $X$ is regular, every pair of points of $X$ have neighborhoods whose closures are disjoint.-/\n", "formal_statement": "theorem exercise_31_1 {X : Type*} [TopologicalSpace X]\n (hX : RegularSpace X) (x y : X) :\n β (U V : Set X), IsOpen U β§ IsOpen V β§ x β U β§ y β V β§ closure U β© closure V = β
:=", "goal": "X : Type u_1\ninstβ : TopologicalSpace X\nhX : RegularSpace X\nx y : X\nβ’ β U V, IsOpen U β§ IsOpen V β§ x β U β§ y β V β§ closure U β© closure V = β
", "header": "import Mathlib\n\nopen Filter Set TopologicalSpace\nopen scoped Topology\n\n"} |
|
{"name": "exercise_31_3", "split": "test", "informal_prefix": "/-- Show that every order topology is regular.-/\n", "formal_statement": "theorem exercise_31_3 {Ξ± : Type*} [PartialOrder Ξ±]\n [TopologicalSpace Ξ±] (h : OrderTopology Ξ±) : RegularSpace Ξ± :=", "goal": "Ξ± : Type u_1\ninstβΒΉ : PartialOrder Ξ±\ninstβ : TopologicalSpace Ξ±\nh : OrderTopology Ξ±\nβ’ RegularSpace Ξ±", "header": "import Mathlib\n\nopen Filter Set TopologicalSpace\nopen scoped Topology\n\n"} |
|
{"name": "exercise_32_2a", "split": "test", "informal_prefix": "/-- Show that if $\\prod X_\\alpha$ is Hausdorff, then so is $X_\\alpha$. Assume that each $X_\\alpha$ is nonempty.-/\n", "formal_statement": "theorem exercise_32_2a\n {ΞΉ : Type*} {X : ΞΉ β Type*} [β i, TopologicalSpace (X i)]\n (h : β i, Nonempty (X i)) (h2 : T2Space (Ξ i, X i)) :\n β i, T2Space (X i) :=", "goal": "ΞΉ : Type u_1\nX : ΞΉ β Type u_2\ninstβ : (i : ΞΉ) β TopologicalSpace (X i)\nh : β (i : ΞΉ), Nonempty (X i)\nh2 : T2Space ((i : ΞΉ) β X i)\nβ’ β (i : ΞΉ), T2Space (X i)", "header": "import Mathlib\n\nopen Filter Set TopologicalSpace\nopen scoped Topology\n\n"} |
|
{"name": "exercise_32_2c", "split": "test", "informal_prefix": "/-- Show that if $\\prod X_\\alpha$ is normal, then so is $X_\\alpha$. Assume that each $X_\\alpha$ is nonempty.-/\n", "formal_statement": "theorem exercise_32_2c\n {ΞΉ : Type*} {X : ΞΉ β Type*} [β i, TopologicalSpace (X i)]\n (h : β i, Nonempty (X i)) (h2 : NormalSpace (Ξ i, X i)) :\n β i, NormalSpace (X i) :=", "goal": "ΞΉ : Type u_1\nX : ΞΉ β Type u_2\ninstβ : (i : ΞΉ) β TopologicalSpace (X i)\nh : β (i : ΞΉ), Nonempty (X i)\nh2 : NormalSpace ((i : ΞΉ) β X i)\nβ’ β (i : ΞΉ), NormalSpace (X i)", "header": "import Mathlib\n\nopen Filter Set TopologicalSpace\nopen scoped Topology\n\n"} |
|
{"name": "exercise_33_7", "split": "test", "informal_prefix": "/-- Show that every locally compact Hausdorff space is completely regular.-/\n", "formal_statement": "theorem exercise_33_7 {X : Type*} [TopologicalSpace X]\n (hX : LocallyCompactSpace X) (hX' : T2Space X) :\n β x A, IsClosed A β§ Β¬ x β A β\n β (f : X β I), Continuous f β§ f x = 1 β§ f '' A = {0} :=", "goal": "X : Type u_1\ninstβ : TopologicalSpace X\nhX : LocallyCompactSpace X\nhX' : T2Space X\nβ’ β (x : X) (A : Set X), IsClosed A β§ x β A β β f, Continuous f β§ f x = 1 β§ f '' A = {0}", "header": "import Mathlib\n\nopen Filter Set TopologicalSpace\nopen scoped Topology\n\nabbrev I : Set β := Icc 0 1\n\n"} |
|
{"name": "exercise_34_9", "split": "test", "informal_prefix": "/-- Let $X$ be a compact Hausdorff space that is the union of the closed subspaces $X_1$ and $X_2$. If $X_1$ and $X_2$ are metrizable, show that $X$ is metrizable.-/\n", "formal_statement": "theorem exercise_34_9\n (X : Type*) [TopologicalSpace X] [CompactSpace X]\n (X1 X2 : Set X) (hX1 : IsClosed X1) (hX2 : IsClosed X2)\n (hX : X1 βͺ X2 = univ) (hX1m : MetrizableSpace X1)\n (hX2m : MetrizableSpace X2) : MetrizableSpace X :=", "goal": "X : Type u_1\ninstβΒΉ : TopologicalSpace X\ninstβ : CompactSpace X\nX1 X2 : Set X\nhX1 : IsClosed X1\nhX2 : IsClosed X2\nhX : X1 βͺ X2 = univ\nhX1m : MetrizableSpace βX1\nhX2m : MetrizableSpace βX2\nβ’ MetrizableSpace X", "header": "import Mathlib\n\nopen Filter Set TopologicalSpace\nopen scoped Topology\n\n"} |
|
{"name": "exercise_43_2", "split": "test", "informal_prefix": "/-- Let $(X, d_X)$ and $(Y, d_Y)$ be metric spaces; let $Y$ be complete. Let $A \\subset X$. Show that if $f \\colon A \\rightarrow Y$ is uniformly continuous, then $f$ can be uniquely extended to a continuous function $g \\colon \\bar{A} \\rightarrow Y$, and $g$ is uniformly continuous.-/\n", "formal_statement": "theorem exercise_43_2 {X : Type*} [MetricSpace X]\n {Y : Type*} [MetricSpace Y] [CompleteSpace Y] (A : Set X)\n (f : X β Y) (hf : UniformContinuousOn f A) :\n β! (g : X β Y), ContinuousOn g (closure A) β§\n UniformContinuousOn g (closure A) β§ β (x : A), g x = f x :=", "goal": "X : Type u_1\ninstβΒ² : MetricSpace X\nY : Type u_2\ninstβΒΉ : MetricSpace Y\ninstβ : CompleteSpace Y\nA : Set X\nf : X β Y\nhf : UniformContinuousOn f A\nβ’ β! g, ContinuousOn g (closure A) β§ UniformContinuousOn g (closure A) β§ β (x : βA), g βx = f βx", "header": "import Mathlib\n\nopen Filter Set TopologicalSpace\nopen scoped Topology\n\n"} |
|
{"name": "exercise_1_30", "split": "test", "informal_prefix": "/-- Prove that $\\frac{1}{2}+\\frac{1}{3}+\\cdots+\\frac{1}{n}$ is not an integer.-/\n", "formal_statement": "theorem exercise_1_30 {n : β} :\n Β¬ β a : β€, β i : Fin n, (1 : β) / (n+2) = a :=", "goal": "n : β\nβ’ Β¬β a, β i : Fin n, 1 / (βn + 2) = βa", "header": "import Mathlib\n\nopen Real\nopen scoped BigOperators\n\n"} |
|
{"name": "exercise_2_4", "split": "test", "informal_prefix": "/-- If $a$ is a nonzero integer, then for $n>m$ show that $\\left(a^{2^{n}}+1, a^{2^{m}}+1\\right)=1$ or 2 depending on whether $a$ is odd or even.-/\n", "formal_statement": "theorem exercise_2_4 {a : β€} (ha : a β 0)\n (f_a := Ξ» n m : β => Int.gcd (a^(2^n) + 1) (a^(2^m)+1)) {n m : β}\n (hnm : n > m) :\n (Odd a β f_a n m = 1) β§ (Even a β f_a n m = 2) :=", "goal": "a : β€\nha : a β 0\nf_a : optParam (β β β β β) fun n m => (a ^ 2 ^ n + 1).gcd (a ^ 2 ^ m + 1)\nn m : β\nhnm : n > m\nβ’ (Odd a β f_a n m = 1) β§ (Even a β f_a n m = 2)", "header": "import Mathlib\n\nopen Real\nopen scoped BigOperators\n\n"} |
|
{"name": "exercise_2_27a", "split": "test", "informal_prefix": "/-- Show that $\\sum^{\\prime} 1 / n$, the sum being over square free integers, diverges.-/\n", "formal_statement": "theorem exercise_2_27a :\n Β¬ Summable (Ξ» i : {p : β€ // Squarefree p} => (1 : β) / i) :=", "goal": "β’ Β¬Summable fun i => 1 / ββi", "header": "import Mathlib\n\nopen Real\nopen scoped BigOperators\n\n"} |
|
{"name": "exercise_3_4", "split": "test", "informal_prefix": "/-- Show that the equation $3 x^{2}+2=y^{2}$ has no solution in integers.-/\n", "formal_statement": "theorem exercise_3_4 : Β¬ β x y : β€, 3*x^2 + 2 = y^2 :=", "goal": "β’ Β¬β x y, 3 * x ^ 2 + 2 = y ^ 2", "header": "import Mathlib\n\nopen Real\nopen scoped BigOperators\n\n"} |
|
{"name": "exercise_3_10", "split": "test", "informal_prefix": "/-- If $n$ is not a prime, show that $(n-1) ! \\equiv 0(n)$, except when $n=4$.-/\n", "formal_statement": "theorem exercise_3_10 {n : β} (hn0 : Β¬ n.Prime) (hn1 : n β 4) :\n Nat.factorial (n-1) β‘ 0 [MOD n] :=", "goal": "n : β\nhn0 : Β¬n.Prime\nhn1 : n β 4\nβ’ (n - 1).factorial β‘ 0 [MOD n]", "header": "import Mathlib\n\nopen Real\nopen scoped BigOperators\n\n"} |
|
{"name": "exercise_4_4", "split": "test", "informal_prefix": "/-- Consider a prime $p$ of the form $4 t+1$. Show that $a$ is a primitive root modulo $p$ iff $-a$ is a primitive root modulo $p$.-/\n", "formal_statement": "theorem exercise_4_4 {p t: β} (hp0 : p.Prime) (hp1 : p = 4*t + 1)\n (a : ZMod p) :\n IsPrimitiveRoot a p β IsPrimitiveRoot (-a) p :=", "goal": "p t : β\nhp0 : p.Prime\nhp1 : p = 4 * t + 1\na : ZMod p\nβ’ IsPrimitiveRoot a p β IsPrimitiveRoot (-a) p", "header": "import Mathlib\n\nopen Real\nopen scoped BigOperators\n\n"} |
|
{"name": "exercise_4_6", "split": "test", "informal_prefix": "/-- If $p=2^{n}+1$ is a Fermat prime, show that 3 is a primitive root modulo $p$.-/\n", "formal_statement": "theorem exercise_4_6 {p n : β} (hp : p.Prime) (hpn : p = 2^n + 1) :\n IsPrimitiveRoot 3 p :=", "goal": "p n : β\nhp : p.Prime\nhpn : p = 2 ^ n + 1\nβ’ IsPrimitiveRoot 3 p", "header": "import Mathlib\n\nopen Real\nopen scoped BigOperators\n\n"} |
|
{"name": "exercise_4_11", "split": "test", "informal_prefix": "/-- Prove that $1^{k}+2^{k}+\\cdots+(p-1)^{k} \\equiv 0(p)$ if $p-1 \\nmid k$ and $-1(p)$ if $p-1 \\mid k$.-/\n", "formal_statement": "theorem exercise_4_11 {p : β} (hp : p.Prime) (k s: β)\n (s := β n : Fin p, (n : β) ^ k) :\n ((Β¬ p - 1 β£ k) β s β‘ 0 [MOD p]) β§ (p - 1 β£ k β s β‘ 0 [MOD p]) :=", "goal": "p : β\nhp : p.Prime\nk sβ : β\ns : optParam β (β n : Fin p, βn ^ k)\nβ’ (Β¬p - 1 β£ k β s β‘ 0 [MOD p]) β§ (p - 1 β£ k β s β‘ 0 [MOD p])", "header": "import Mathlib\n\nopen Real\nopen scoped BigOperators\n\n"} |
|
{"name": "exercise_5_28", "split": "test", "informal_prefix": "/-- Show that $x^{4} \\equiv 2(p)$ has a solution for $p \\equiv 1(4)$ iff $p$ is of the form $A^{2}+64 B^{2}$.-/\n", "formal_statement": "theorem exercise_5_28 {p : β} (hp : p.Prime) (hp1 : p β‘ 1 [MOD 4]):\n β x, x^4 β‘ 2 [MOD p] β β A B, p = A^2 + 64*B^2 :=", "goal": "p : β\nhp : p.Prime\nhp1 : p β‘ 1 [MOD 4]\nβ’ β x, x ^ 4 β‘ 2 [MOD p] β β A B, p = A ^ 2 + 64 * B ^ 2", "header": "import Mathlib\n\nopen Real\nopen scoped BigOperators\n\n"} |
|
{"name": "exercise_12_12", "split": "test", "informal_prefix": "/-- Show that $\\sin (\\pi / 12)$ is an algebraic number.-/\n", "formal_statement": "theorem exercise_12_12 : IsAlgebraic β (sin (Real.pi/12)) :=", "goal": "β’ IsAlgebraic β (Ο / 12).sin", "header": "import Mathlib\n\nopen Real\nopen scoped BigOperators\n\n"} |
|
{"name": "exercise_2018_a5", "split": "test", "informal_prefix": "/-- Let $f: \\mathbb{R} \\rightarrow \\mathbb{R}$ be an infinitely differentiable function satisfying $f(0)=0, f(1)=1$, and $f(x) \\geq 0$ for all $x \\in$ $\\mathbb{R}$. Show that there exist a positive integer $n$ and a real number $x$ such that $f^{(n)}(x)<0$.-/\n", "formal_statement": "theorem exercise_2018_a5 (f : β β β) (hf : ContDiff β β€ f)\n (hf0 : f 0 = 0) (hf1 : f 1 = 1) (hf2 : β x, f x β₯ 0) :\n β (n : β) (x : β), iteratedDeriv n f x = 0 :=", "goal": "f : β β β\nhf : ContDiff β β€ f\nhf0 : f 0 = 0\nhf1 : f 1 = 1\nhf2 : β (x : β), f x β₯ 0\nβ’ β n x, iteratedDeriv n f x = 0", "header": "import Mathlib\n\nopen scoped BigOperators\n\n"} |
|
{"name": "exercise_2018_b4", "split": "test", "informal_prefix": "/-- Given a real number $a$, we define a sequence by $x_{0}=1$, $x_{1}=x_{2}=a$, and $x_{n+1}=2 x_{n} x_{n-1}-x_{n-2}$ for $n \\geq 2$. Prove that if $x_{n}=0$ for some $n$, then the sequence is periodic.-/\n", "formal_statement": "theorem exercise_2018_b4 (a : β) (x : β β β) (hx0 : x 0 = a)\n (hx1 : x 1 = a)\n (hxn : β n : β, n β₯ 2 β x (n+1) = 2*(x n)*(x (n-1)) - x (n-2))\n (h : β n, x n = 0) :\n β c, Function.Periodic x c :=", "goal": "a : β\nx : β β β\nhx0 : x 0 = a\nhx1 : x 1 = a\nhxn : β n β₯ 2, x (n + 1) = 2 * x n * x (n - 1) - x (n - 2)\nh : β n, x n = 0\nβ’ β c, Function.Periodic x c", "header": "import Mathlib\n\nopen scoped BigOperators\n\n"} |
|
{"name": "exercise_2014_a5", "split": "test", "informal_prefix": "/-- Let-/\n", "formal_statement": "theorem exercise_2014_a5 (P : β β Polynomial β€)\n (hP : β n, P n = β i : Fin n, (n+1) * Polynomial.X ^ n) :\n β (j k : β), j β k β IsCoprime (P j) (P k) :=", "goal": "P : β β Polynomial β€\nhP : β (n : β), P n = β i : Fin n, (βn + 1) * Polynomial.X ^ n\nβ’ β (j k : β), j β k β IsCoprime (P j) (P k)", "header": "import Mathlib\n\nopen scoped BigOperators\n\n"} |
|
{"name": "exercise_2001_a5", "split": "test", "informal_prefix": "/-- Prove that there are unique positive integers $a, n$ such that $a^{n+1}-(a+1)^n=2001$.-/\n", "formal_statement": "theorem exercise_2001_a5 :\n β! a : β, β! n : β, a > 0 β§ n > 0 β§ a^(n+1) - (a+1)^n = 2001 :=", "goal": "β’ β! a, β! n, a > 0 β§ n > 0 β§ a ^ (n + 1) - (a + 1) ^ n = 2001", "header": "import Mathlib\n\nopen scoped BigOperators\n\n"} |
|
{"name": "exercise_1999_b4", "split": "test", "informal_prefix": "/-- Let $f$ be a real function with a continuous third derivative such that $f(x), f^{\\prime}(x), f^{\\prime \\prime}(x), f^{\\prime \\prime \\prime}(x)$ are positive for all $x$. Suppose that $f^{\\prime \\prime \\prime}(x) \\leq f(x)$ for all $x$. Show that $f^{\\prime}(x)<2 f(x)$ for all $x$.-/\n", "formal_statement": "theorem exercise_1999_b4 (f : β β β) (hf: ContDiff β 3 f)\n (hf1 : β n β€ 3, β x : β, iteratedDeriv n f x > 0)\n (hf2 : β x : β, iteratedDeriv 3 f x β€ f x) :\n β x : β, deriv f x < 2 * f x :=", "goal": "f : β β β\nhf : ContDiff β 3 f\nhf1 : β n β€ 3, β (x : β), iteratedDeriv n f x > 0\nhf2 : β (x : β), iteratedDeriv 3 f x β€ f x\nβ’ β (x : β), deriv f x < 2 * f x", "header": "import Mathlib\n\nopen scoped BigOperators\n\n"} |
|
{"name": "exercise_1998_b6", "split": "test", "informal_prefix": "/-- Prove that, for any integers $a, b, c$, there exists a positive integer $n$ such that $\\sqrt{n^3+a n^2+b n+c}$ is not an integer.-/\n", "formal_statement": "theorem exercise_1998_b6 (a b c : β€) :\n β n : β€, n > 0 β§ Β¬ β m : β€, Real.sqrt (n^3 + a*n^2 + b*n + c) = m :=", "goal": "a b c : β€\nβ’ β n > 0, Β¬β m, β(βn ^ 3 + βa * βn ^ 2 + βb * βn + βc) = βm", "header": "import Mathlib\n\nopen scoped BigOperators\n\n"} |
|
|