Zulip Chat Archive
Stream: new members
Topic: A problem in mathematics in lean
tsuki hao (Jul 16 2023 at 00:56):
'''
example (h₀ : d ≤ e) : c + exp (a + d) ≤ c + exp (a + e) := by
sorry
'''
Can someone tell me how to complete the above code
Kevin Buzzard (Jul 16 2023 at 00:57):
Can you please post a #mwe using #backticks ? That's the best way to ask a question here.
Notification Bot (Jul 16 2023 at 01:00):
This topic was moved here from #lean4 > A problem in mathematics in lean by Yury G. Kudryashov.
Yury G. Kudryashov (Jul 16 2023 at 01:01):
As far as I understand, #lean4 is for questions that may need attention of core developers.
tsuki hao (Jul 16 2023 at 01:10):
Kevin Buzzard said:
Can you please post a #mwe using #backticks ? That's the best way to ask a question here.
Thanks for the reminder, my problem is this
example (h₀ : d ≤ e) : c + exp (a + d) ≤ c + exp (a + e) := by
sorry
tsuki hao (Jul 16 2023 at 01:11):
Yury G. Kudryashov said:
As far as I understand, #lean4 is for questions that may need attention of core developers.
Sorry, besides, can I ask you where I should be asking
Yury G. Kudryashov (Jul 16 2023 at 01:12):
#new members, #general , or #maths (I can't formulate exact rules; we'll move if we think a thread is more appropriate in another stream)
Yury G. Kudryashov (Jul 16 2023 at 01:13):
A #mwe includes all required import
s, open
s, and variable
s (if any)
Yury G. Kudryashov (Jul 16 2023 at 01:14):
Try gcongr
or mono*
. Should just work.
tsuki hao (Jul 16 2023 at 01:15):
Yury G. Kudryashov said:
#new members, #general , or #maths (I can't formulate exact rules; we'll move if we think a thread is more appropriate in another stream)
Thank you very much!
Last updated: Dec 20 2023 at 11:08 UTC