Skip to content

Commit

Permalink
Update Thu Oct 3 23:54:58 EDT 2024
Browse files Browse the repository at this point in the history
  • Loading branch information
hrmacbeth committed Oct 4, 2024
1 parent 9bd684e commit 9e6e99a
Showing 1 changed file with 44 additions and 0 deletions.
44 changes: 44 additions & 0 deletions Math2001/Homework/hw5.lean
Original file line number Diff line number Diff line change
@@ -0,0 +1,44 @@
/- Copyright (c) Heather Macbeth, 2023-4. All rights reserved. -/
import Mathlib.Data.Real.Basic
import Library.Basic
import Library.Tactic.ModEq
import AutograderLib

math2001_init

/-! # Homework 5
Don't forget to compare with the text version,
https://github.com/hrmacbeth/math2001/wiki/Homework-5,
for clearer statements and any special instructions. -/

@[autograded 2]
theorem problem1 : ∃ k : ℤ, k > 103 * k ≡ 2 [ZMOD 5] ∧ k ∣ 72 := by
sorry

@[autograded 3]
theorem problem2 {a : ℤ} (ha : a ≡ 4 [ZMOD 5]) :
a ^ 3 + 2 * a ^ 2 + 34 [ZMOD 5] := by
sorry

@[autograded 5]
theorem problem3 {x : ℤ} : x ^ 5 ≡ x [ZMOD 5] := by
sorry

@[autograded 3]
theorem problem4 {a : ℚ} (h : ∀ b : ℚ, a + b ^ 20) : a ≥ 0 := by
sorry

@[autograded 5]
theorem problem5 (n : ℕ) (h : ∀ a : ℕ, 6 ≤ a → a ≤ 10 → a ∣ n) :
∀ b : ℕ, 1 ≤ b → b ≤ 5 → b ∣ n := by
sorry

@[autograded 3]
theorem problem6 : ∃ a : ℝ, ∀ b : ℝ, a ≤ b ^ 2 := by
sorry

@[autograded 4]
theorem problem7 : forall_sufficiently_large x : ℝ, x ^ 3 - 5 * x ≥ 11 * x ^ 2 := by
dsimp
sorry

0 comments on commit 9e6e99a

Please sign in to comment.