Zulip Chat Archive

Stream: new members

Topic: Mechanics of Proof 2.5


Don Burgess (Oct 29 2023 at 22:42):

I am stuck on Exercise 8. Could anyone give me a clue or insight on how to procee?

Do I have the right idea?

How do I show: a=b=c=0?

Thanks for your help.

example {a b c : } (ha : a  b + c) (hb : b  a + c) (hc : c  a + b)
    (ha' : 0  a) (hb' : 0  b) (hc' : 0  c) :
     x y z, x  0  y  0  z  0  a = y + z  b = x + z  c = x + y := by
  use 0, 0, 0
  constructor
  . extra
  . constructor
    . extra
    . constructor
      . extra
      . constructor
        ring
        apply le_antisymm
        calc
          a  b + c := by apply ha
          _ = 0 + 0 := by sorry

Ruben Van de Velde (Oct 29 2023 at 23:19):

Why did you start with use 0, 0, 0? Is that supposed to be the correct mathematical solution?

Don Burgess (Oct 30 2023 at 00:13):

I think x,y,z = 0 works, but I do not know how to prove it

Alex J. Best (Oct 30 2023 at 00:19):

Maybe you can start by considering the case where a = b = c = 1, this satisfies the hypotheses, but then a = y + z won't work with y = z = 0

Ruben Van de Velde (Oct 30 2023 at 09:42):

Also, ha', hb' and hc' are not needed


Last updated: Dec 20 2023 at 11:08 UTC