From 9a08a5927441d3c59831b1a5e07629b68a51f782 Mon Sep 17 00:00:00 2001 From: GTBarkley <67718465+GTBarkley@users.noreply.github.com> Date: Sat, 10 Jun 2023 18:40:48 -0400 Subject: [PATCH] added more references to readme --- README.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index d3e6216..058a6e8 100644 --- a/README.md +++ b/README.md @@ -9,6 +9,8 @@ Feel free to add, modify, and expand this file. Below are starting points for th - Definitions of an ideal, prime ideal, and maximal ideal: ```lean def Mathlib.RingTheory.Ideal.Basic.Ideal (R : Type u) [Semiring R] := Submodule R R +class Mathlib.RingTheory.Ideal.Basic.IsPrime (I : Ideal α) : Prop +class IsMaximal (I : Ideal α) : Prop ``` - Definition of a Spec of a ring: `Mathlib.AlgebraicGeometry.PrimeSpectrum.Basic.PrimeSpectrum` @@ -31,7 +33,7 @@ Give Examples of each of the above cases for a particular instances of ring Theorem 0: Hilbert Basis Theorem: ```lean -instance isNoetherianRing [Finite σ] [IsNoetherianRing R] : IsNoetherianRing (MvPolynomial σ R) +theorem Mathlib.RingTheory.Polynomial.Basic.Polynomial.isNoetherianRing [inst : IsNoetherianRing R] : IsNoetherianRing R[X] ``` Theorem 1: If A is a nonzero ring, then dim A[t] >= dim A +1