Skip to content

Commit f3bf06c

Browse files
committed
Update Fri Apr 12 19:47:09 EDT 2024
1 parent 98bac99 commit f3bf06c

File tree

1 file changed

+21
-0
lines changed

1 file changed

+21
-0
lines changed

Math2001/Homework/hw8.lean

+21
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
/- Copyright (c) Heather Macbeth, 2024. All rights reserved. -/
2+
import Mathlib.Tactic.GCongr
3+
import Library.Basic
4+
import AutograderLib
5+
6+
math2001_init
7+
8+
/-! # Homework 8
9+
10+
Don't forget to compare with the text version,
11+
https://github.com/hrmacbeth/math2001/wiki/Homework-8,
12+
for clearer statements and any special instructions. -/
13+
14+
15+
@[autograded 4]
16+
theorem problem3 (m : ℤ) (hn : 6641 * m) : 66 ∣ m := by
17+
sorry
18+
19+
@[autograded 6]
20+
theorem problem4 (a : ℤ) : 3333 ∣ a ↔ (101 ∣ a ∧ 33 ∣ a) := by
21+
sorry

0 commit comments

Comments
 (0)