Zulip Chat Archive

Stream: Is there code for X?

Topic: 1 ≤ Real.log 3


Michael Stoll (Jan 02 2024 at 16:33):

How do I prove the statement in the title without much fuss?

Yaël Dillies (Jan 02 2024 at 16:36):

Something like

calc
  1 = log (exp 1) := by rw [log_exp]
  _  log 3 := Real.log_le_log (by positivity) $ Real.exp_one_lt_d9.le.trans $ by norm_num

Yaël Dillies (Jan 02 2024 at 16:36):

(untested)

Michael Stoll (Jan 02 2024 at 16:42):

There was an (...).le missing, but otherwise it works.

Yaël Dillies (Jan 02 2024 at 16:43):

Edited

Yury G. Kudryashov (Jan 02 2024 at 17:14):

Should we have Real.exp_one_lt_three?


Last updated: May 02 2025 at 03:31 UTC