Documentation
Acmoi
.
Exercise6_1
Search
return to top
source
Imports
Init
Mathlib.Tactic.Ring
Imported by
max_left
max_right
max_ineq
mul_ineq
add_ineq
source
theorem
max_left
{
a
b
b'
c
c'
:
ℕ
}
(
h
:
a
≤
b
*
c
)
:
a
≤
max
b
b'
*
max
c
c'
source
theorem
max_right
{
a'
b
b'
c
c'
:
ℕ
}
(
h
:
a'
≤
b'
*
c'
)
:
a'
≤
max
b
b'
*
max
c
c'
source
theorem
max_ineq
(
a
a'
b
b'
c
c'
:
ℕ
)
(
h
:
a
≤
b
*
c
)
(
h'
:
a'
≤
b'
*
c'
)
:
max
a
a'
≤
max
b
b'
*
max
c
c'
source
theorem
mul_ineq
(
a
a'
b
b'
c
c'
:
ℕ
)
(
h
:
a
≤
b
*
c
)
(
h'
:
a'
≤
b'
*
c'
)
:
a
*
a'
≤
b
*
b'
*
(
c
*
c'
)
source
theorem
add_ineq
(
a
a'
b
b'
c
c'
:
ℕ
)
(
h
:
a
≤
b
+
c
)
(
h'
:
a'
≤
b'
+
c'
)
:
a
+
a'
≤
b
+
b'
+
(
c
+
c'
)