Not logged in

Artifact 6832ef1a0259c561a0959e062c615daa81b4e97d

File master_theorem/masters_of_many_theorems.rx part of check-in [48a095494d] - more master theorem solutions by crc on 2011-09-05 15:12:40. [annotate]


( A Puzzle involving Math                       )
( Or more specifically, the Pythagorean Theorem )
( "For a right triangle with legs a and b and   )
( hypotenuse c:  a^2 + b^2 = c^2                )


needs math'

: toIndex ( c-n )
  'a - 1+ ;

: h 'h toIndex ;
: o 'o toIndex ;
: f 'f toIndex ;
: c 'c toIndex ;

: ^2 ( n-n )  2 pow ;

: toAlpha  ( n-c )
  'a 1- + ;

: x1 h ^2 o ^2 + ^math'squareRoot     toAlpha putc ;
: x2 h ^2 f ^2 + ^math'squareRoot 2 / toAlpha putc ;
: x3 5 ^2 c ^2 - ^math'squareRoot     toAlpha putc ;

: solve  x1 x2 x3 ;