File tree 1 file changed +38
-0
lines changed
1 file changed +38
-0
lines changed Original file line number Diff line number Diff line change
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
+ math2001_init
8
+ set_option pp.funBinderTypes true
9
+
10
+ /-! # Homework 6
11
+
12
+ Don't forget to compare with the text version,
13
+ https://github.com/hrmacbeth/math2001/wiki/Homework-6,
14
+ for clearer statements and any special instructions. -/
15
+
16
+ @[autograded 4]
17
+ theorem problem1 : ¬ (∃ t : ℝ, t ≤ 5 ∧ 2 * t ≥ 12 ) := by
18
+ sorry
19
+
20
+ @[autograded 3]
21
+ theorem problem2 : ¬ (∃ x : ℝ, ∀ y : ℝ, y ≤ x) := by
22
+ sorry
23
+
24
+ @[autograded 3]
25
+ theorem problem3 (a : ℚ) : 3 * a + 2 < 11 ↔ a < 3 := by
26
+ sorry
27
+
28
+ @[autograded 6]
29
+ theorem problem4 (t : ℤ) : t ^ 2 + t + 3 ≡ 0 [ZMOD 5 ] ↔ t ≡ 1 [ZMOD 5 ] ∨ t ≡ 3 [ZMOD 5 ] := by
30
+ sorry
31
+
32
+ @[autograded 4]
33
+ theorem problem5 (P Q : Prop ) : (P ∧ Q) ↔ (Q ∧ P) := by
34
+ sorry
35
+
36
+ @[autograded 5]
37
+ theorem problem6 (P : α → Prop ) (Q : Prop ) : ((∃ x, P x) ∧ Q) ↔ ∃ x, (P x ∧ Q) := by
38
+ sorry
You can’t perform that action at this time.
0 commit comments