operations question

skyemonae2

New member
Joined
Jun 16, 2007
Messages
2
I need all possible operations: addition, subtraction, multiplication, division, ^, exp, log, etc.. to make the end result 24.


the numbers are 12, 5, 6 & 4


Thanks
 
Work it out, trying different things, until you get it...like anyone else would have to. :)

John.
 
12 / 5 * (6 + 4) = 24

12^(-5+6) * sqrt(4) = 24

12 * 5 - 6^sqrt(4) = 24

Loads more if you don't have to keep 'em in 12-5-6-4 order.
 
\(\displaystyle \L\ \frac{0 + (b - b)x^{\theta} + i^2 + 1 + log_e (e^{20 + 4\int_0^1\1dm})}{\frac{6}{\pi\^2}\(Pr(A) + Pr(A^'))\sum_{n=1}^{\infty}\ n^{-2}}\\)

also..

24 + 0

24 - 1 + 1

24e/e

24(idhihdihd)^0, where i, d, h are all nonzero
 
Basic 4 operations, as always:

A = 4, B = 5, C = 6, D = 12
Code:
 (D/B)x(C+A)      Dx((C+A)/B)      ((C+A)xD)/B      D/(B/(C+A))                  
 (C+A)x(D/B)      Dx((A+C)/B)      ((A+C)xD)/B      D/(B/(A+C))                  
 (A+C)x(D/B)      (Dx(C+A))/B      ((C+A)/B)xD      (C+A)/(B/D)                  
 (D/B)x(A+C)      (Dx(A+C))/B      ((A+C)/B)xD      (A+C)/(B/D)
 
Top