let a be positive Real; :: thesis: for x being Real st |.x.| >= a holds
x ^2 >= a ^2

let x be Real; :: thesis: ( |.x.| >= a implies x ^2 >= a ^2 )
assume A1: |.x.| >= a ; :: thesis: x ^2 >= a ^2
per cases ( x >= 0 or x < 0 ) ;
end;