5 kyu
Multiples of 3, you say?
29 of 116donaldsebleung
Description:
This Kata is a part of a collection of supplementary exercises for Logical Foundations.
Consider the set of all natural numbers that are multiples of 3. A straightforward inductive definition of this set is as follows:
- 0 is a multiple of 3
- For every natural number n that is a multiple of 3, 3 + n is also a multiple of 3
Another possible but rather clumsy inductive definition of the same set is as follows:
- 30 is a multiple of 3
- 21 is a multiple of 3
- For every pair of natural numbers (n, m) that are both multiples of 3, n + m is also a multiple of 3
- For every ordered triple of natural numbers (l, n, m) where n, m are multiples of 3 and l + n = m, l is also a multiple of 3
Prove that both inductive definitions do indeed define the same set.
Preloaded
The full source code for Preloaded.lean
is displayed below for your reference:
inductive mult_3 : set ℕ
| mult_3_O :
mult_3 0
| mult_3_SSS : ∀ n,
mult_3 n →
mult_3 (n + 3)
inductive mult_3' : set ℕ
| mult_3'_30 :
mult_3' 30
| mult_3'_21 :
mult_3' 21
| mult_3'_sum : ∀ n m,
mult_3' n →
mult_3' m →
mult_3' (n + m)
| mult_3'_difference : ∀ l n m,
mult_3' n →
mult_3' m →
l + n = m →
mult_3' l
def SUBMISSION := mult_3 = mult_3'
notation `SUBMISSION` := SUBMISSION
Theorem Proving
Puzzles
Similar Kata:
Stats:
Created | Apr 27, 2019 |
Published | Apr 27, 2019 |
Warriors Trained | 615 |
Total Skips | 25 |
Total Code Submissions | 180 |
Total Times Completed | 116 |
Coq Completions | 60 |
Agda Completions | 27 |
Idris Completions | 7 |
Lean Completions | 29 |
Total Stars | 9 |
% of votes with a positive feedback rating | 91% of 23 |
Total "Very Satisfied" Votes | 19 |
Total "Somewhat Satisfied" Votes | 4 |
Total "Not Satisfied" Votes | 0 |
Total Rank Assessments | 3 |
Average Assessed Rank | 5 kyu |
Highest Assessed Rank | 4 kyu |
Lowest Assessed Rank | 8 kyu |