Skip to content

Commit 9bd684e

Browse files
committed
Update Fri Sep 27 01:40:51 EDT 2024
1 parent 27c193d commit 9bd684e

File tree

1 file changed

+46
-0
lines changed

1 file changed

+46
-0
lines changed

Math2001/Homework/hw4.lean

+46
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,46 @@
1+
/- Copyright (c) Heather Macbeth, 2023. All rights reserved. -/
2+
import Library.Basic
3+
import Library.Theory.ModEq.Defs
4+
import AutograderLib
5+
6+
math2001_init
7+
8+
open Int
9+
10+
/-! # Homework 4
11+
12+
Don't forget to compare with the text version,
13+
https://github.com/hrmacbeth/math2001/wiki/Homework-4,
14+
for clearer statements and any special instructions. -/
15+
16+
@[autograded 5]
17+
theorem problem1 (n : ℤ) : Odd (3 * n ^ 2 + 3 * n - 1) := by
18+
sorry
19+
20+
@[autograded 1]
21+
theorem problem2 : (8 : ℤ) ∣ 96 := by
22+
sorry
23+
24+
@[autograded 2]
25+
theorem problem3 : ¬(8 : ℤ) ∣ -55 := by
26+
sorry
27+
28+
@[autograded 4]
29+
theorem problem4 {a b c : ℤ} (hab : a ^ 3 ∣ b) (hbc : b ^ 2 ∣ c) : a ^ 6 ∣ c := by
30+
sorry
31+
32+
@[autograded 1]
33+
theorem problem5 : 3113 [ZMOD 3] := by
34+
sorry
35+
36+
@[autograded 2]
37+
theorem problem6 : ¬ 5162 [ZMOD 5] := by
38+
sorry
39+
40+
@[autograded 5]
41+
theorem problem7 (h : a ≡ b [ZMOD n]) : a ^ 3 ≡ b ^ 3 [ZMOD n] := by
42+
sorry
43+
44+
@[autograded 5]
45+
theorem problem8 (h1 : a ≡ b [ZMOD n]) (h2 : b ≡ c [ZMOD n]) : a ≡ c [ZMOD n] := by
46+
sorry

0 commit comments

Comments
 (0)