File tree 1 file changed +44
-0
lines changed
1 file changed +44
-0
lines changed Original file line number Diff line number Diff line change
1
+ /- Copyright (c) Heather Macbeth, 2023-4. All rights reserved. -/
2
+ import Mathlib.Data.Real.Basic
3
+ import Library.Basic
4
+ import Library.Tactic.ModEq
5
+ import AutograderLib
6
+
7
+ math2001_init
8
+
9
+ /-! # Homework 5
10
+
11
+ Don't forget to compare with the text version,
12
+ https://github.com/hrmacbeth/math2001/wiki/Homework-5,
13
+ for clearer statements and any special instructions. -/
14
+
15
+ @[autograded 2]
16
+ theorem problem1 : ∃ k : ℤ, k > 10 ∧ 3 * k ≡ 2 [ZMOD 5 ] ∧ k ∣ 72 := by
17
+ sorry
18
+
19
+ @[autograded 3]
20
+ theorem problem2 {a : ℤ} (ha : a ≡ 4 [ZMOD 5 ]) :
21
+ a ^ 3 + 2 * a ^ 2 + 3 ≡ 4 [ZMOD 5 ] := by
22
+ sorry
23
+
24
+ @[autograded 5]
25
+ theorem problem3 {x : ℤ} : x ^ 5 ≡ x [ZMOD 5 ] := by
26
+ sorry
27
+
28
+ @[autograded 3]
29
+ theorem problem4 {a : ℚ} (h : ∀ b : ℚ, a + b ^ 2 ≥ 0 ) : a ≥ 0 := by
30
+ sorry
31
+
32
+ @[autograded 5]
33
+ theorem problem5 (n : ℕ) (h : ∀ a : ℕ, 6 ≤ a → a ≤ 10 → a ∣ n) :
34
+ ∀ b : ℕ, 1 ≤ b → b ≤ 5 → b ∣ n := by
35
+ sorry
36
+
37
+ @[autograded 3]
38
+ theorem problem6 : ∃ a : ℝ, ∀ b : ℝ, a ≤ b ^ 2 := by
39
+ sorry
40
+
41
+ @[autograded 4]
42
+ theorem problem7 : forall_sufficiently_large x : ℝ, x ^ 3 - 5 * x ≥ 11 * x ^ 2 := by
43
+ dsimp
44
+ sorry
You can’t perform that action at this time.
0 commit comments