File tree 1 file changed +37
-0
lines changed
1 file changed +37
-0
lines changed Original file line number Diff line number Diff line change
1
+ /- Copyright (c) Heather Macbeth, 2023. All rights reserved. -/
2
+ import Library.Basic
3
+ import AutograderLib
4
+
5
+ math2001_init
6
+
7
+ open Nat
8
+
9
+ /-! # Homework 3
10
+
11
+ Don't forget to compare with the text version,
12
+ https://github.com/hrmacbeth/math2001/wiki/Homework-3,
13
+ for clearer statements and any special instructions. -/
14
+
15
+ @[autograded 2]
16
+ theorem problem1 {a b : ℚ} (h : a = 3 - b) : a + b = 3 ∨ a + b = 4 := by
17
+ sorry
18
+
19
+ @[autograded 5]
20
+ theorem problem2 {t : ℚ} (h : t ^ 2 + t - 6 = 0 ) : t = 2 ∨ t = -3 := by
21
+ sorry
22
+
23
+ @[autograded 3]
24
+ example : ∃ a b : ℕ, a ≠ 0 ∧ 2 ^ a = 5 * b + 1 := by
25
+ sorry
26
+
27
+ @[autograded 5]
28
+ theorem problem4 (x : ℚ) : ∃ y : ℚ, y ^ 2 > x := by
29
+ sorry
30
+
31
+ @[autograded 5]
32
+ theorem problem5 {x : ℕ} (hx : Odd x) : Odd (x ^ 3 ) := by
33
+ sorry
34
+
35
+ @[autograded 5]
36
+ theorem problem6 (n : ℕ) : ∃ m ≥ n, Odd m := by
37
+ sorry
You can’t perform that action at this time.
0 commit comments