Skip to content

Commit e38e967

Browse files
committed
Update Sat Mar 2 04:21:56 UTC 2024
1 parent 50ea2d4 commit e38e967

File tree

1 file changed

+39
-0
lines changed

1 file changed

+39
-0
lines changed

Math2001/Homework/hw5.lean

+39
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
1+
/- Copyright (c) Heather Macbeth, 2023. All rights reserved. -/
2+
import Mathlib.Data.Real.Basic
3+
import Library.Basic
4+
import Library.Tactic.ModEq
5+
import AutograderLib
6+
7+
-- BOTH:
8+
math2001_init
9+
10+
/-! # Homework 5
11+
12+
Don't forget to compare with the text version,
13+
https://github.com/hrmacbeth/math2001/wiki/Homework-5,
14+
for clearer statements and any special instructions. -/
15+
16+
@[autograded 4]
17+
theorem problem1 : ∃ a : ℝ, ∀ b : ℝ, ∃ c : ℝ, a + c < b := by
18+
sorry
19+
20+
@[autograded 4]
21+
theorem problem2 : forall_sufficiently_large x : ℝ, x ^ 3 - 3 * x ≥ 12 * x ^ 2 := by
22+
dsimp
23+
sorry
24+
25+
@[autograded 3]
26+
theorem problem3 (x : ℝ) : 3 * x + 1 = 10 ↔ x = 3 := by
27+
sorry
28+
29+
@[autograded 6]
30+
theorem problem4 (n : ℤ) : n ^ 2 + n + 30 [ZMOD 5] ↔ n ≡ 1 [ZMOD 5] ∨ n ≡ 3 [ZMOD 5] := by
31+
sorry
32+
33+
@[autograded 4]
34+
theorem problem5 : ¬ (∃ t : ℝ, 2 * t ≤ 8 ∧ t ≥ 5) := by
35+
sorry
36+
37+
@[autograded 4]
38+
theorem problem6 : ¬ (∃ a : ℝ, ∀ b : ℝ, a ≤ b) := by
39+
sorry

0 commit comments

Comments
 (0)