Skip to content

Commit

Permalink
Update Thu Sep 19 20:13:46 EDT 2024
Browse files Browse the repository at this point in the history
hrmacbeth committed Sep 20, 2024

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
1 parent f2eac4f commit ab91788
Showing 1 changed file with 37 additions and 0 deletions.
37 changes: 37 additions & 0 deletions Math2001/Homework/hw3.lean
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
/- Copyright (c) Heather Macbeth, 2023. All rights reserved. -/
import Library.Basic
import AutograderLib

math2001_init

open Nat

/-! # Homework 3
Don't forget to compare with the text version,
https://github.com/hrmacbeth/math2001/wiki/Homework-3,
for clearer statements and any special instructions. -/

@[autograded 2]
theorem problem1 {a b : ℚ} (h : a = 3 - b) : a + b = 3 ∨ a + b = 4 := by
sorry

@[autograded 5]
theorem problem2 {t : ℚ} (h : t ^ 2 + t - 6 = 0) : t = 2 ∨ t = -3 := by
sorry

@[autograded 3]
example : ∃ a b : ℕ, a ≠ 02 ^ a = 5 * b + 1 := by
sorry

@[autograded 5]
theorem problem4 (x : ℚ) : ∃ y : ℚ, y ^ 2 > x := by
sorry

@[autograded 5]
theorem problem5 {x : ℕ} (hx : Odd x) : Odd (x ^ 3) := by
sorry

@[autograded 5]
theorem problem6 (n : ℕ) : ∃ m ≥ n, Odd m := by
sorry

0 comments on commit ab91788

Please sign in to comment.