Skip to content

Commit ab91788

Browse files
committed
Update Thu Sep 19 20:13:46 EDT 2024
1 parent f2eac4f commit ab91788

File tree

1 file changed

+37
-0
lines changed

1 file changed

+37
-0
lines changed

Math2001/Homework/hw3.lean

+37
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
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 ≠ 02 ^ 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

0 commit comments

Comments
 (0)