Skip to content

Commit ddddcd0

Browse files
committed
Update Thu Sep 5 09:09:02 EDT 2024
1 parent dac4fa5 commit ddddcd0

File tree

1 file changed

+33
-0
lines changed

1 file changed

+33
-0
lines changed

Math2001/Homework/hw1.lean

+33
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
/- Copyright (c) Heather Macbeth, 2023. All rights reserved. -/
2+
import Mathlib.Data.Real.Basic
3+
import Library.Basic
4+
import AutograderLib
5+
6+
math2001_init
7+
8+
/-! # Homework 1
9+
10+
Don't forget to compare with the text version,
11+
https://github.com/hrmacbeth/math2001/wiki/Homework-1,
12+
for clearer statements and any special instructions. -/
13+
14+
15+
@[autograded 5]
16+
theorem problem1 {p q : ℤ} (h1 : p + 4 * q = 1) (h2 : q - 1 = 2) : p = -11 := by
17+
sorry
18+
19+
@[autograded 5]
20+
theorem problem2 {a b : ℝ} (h1 : a + 2 * b = 4) (h2 : a - b = 1) : a = 2 := by
21+
sorry
22+
23+
@[autograded 5]
24+
theorem problem3 {x : ℤ} (hx : x ≥ 9) : x ^ 3 - 8 * x ^ 2 + 2 * x ≥ 3 := by
25+
sorry
26+
27+
@[autograded 5]
28+
theorem problem4 {x : ℚ} : x ^ 2 - 2 * x ≥ -1 := by
29+
sorry
30+
31+
@[autograded 5]
32+
theorem problem5 (a b : ℝ) (h1 : -b ≤ a) (h2 : a ≤ b) : a ^ 2 ≤ b ^ 2 := by
33+
sorry

0 commit comments

Comments
 (0)