Pages

Tuesday, December 6, 2011

Mathcalc8 Basis : formula calculation

Try playing with following formulas by following the input hint listed below :
  1. 7x(18 ÷ 2)-3
    Input : 7*(18/2)-3
    Ans. 60
     
  2. (3x5)÷(2x6-(-3))
    Input : 3*5/(2*6--3)
    Ans. 1
     
  3. ½(¾)
    Input : 1/2*3/4
    Ans. 0.375
     
  4. 2x3x4
    ———
    5x7x9
    Input : 2*3*4/(5*7*9)
    Or
    Input : 2*3*4/5/7/9
    Ans. 0.07619
     
  5. 458
    ——
    11½
    Input : 458/(11+1/2)
    Ans. 39.826
     
  6. 0.0256x937.2
    ———————
    84.07x0.567
    Input : 0.0256*937.2/(84.07*0.567)
    Ans. 0.5033
     
  7. 3½-1¾
    Input : 3+1/2-(1+3/4)
    Ans. 1.75
     
  8. √7.63
    Input : sqrt(7.63)
    Ans. 2,7622
     
  9. 3√8
    Input : pow(8,1/3)
    Ans. 2
     
  10. 16
    Input : pow(16,-1/2)
    Or
    Input : 1/sqrt(16)
    Ans. 0.25
     
  11. (√3)4
    Input : pow(sqrt(3),4)
    Ans. 9
     
  12. 102
    Input : 1e2
    Or
    Input : pow(10,2)
    Ans. 100
     
  13. 8.4x107
    Input : 8.4e7
    Ans. 84000000
     
  14. 73÷57
    Input : pow(7,3)/pow(5,7)
    Ans. 0.00439
     
  15. e-2
    Input : exp(-2)
    Ans. 0.1353
     
  16. 4860000
    Input : 4.86e6
    Ans. 4860000
     
  17. 0.086
    Input : 8.6e-2
    Ans. 0.086
     
  18. 2.42+3.12
    Input : pow(2.4,2)+pow(3.1,2)
    Ans. 15.37
     
  19. 2.86x104+3.1x102
    Input : 2.86e4+3.1e2
    Ans. 28910
     
  20. 2.1x104x4.6x105
    Input : 2.1e4*4.6e5
    Ans. 9.66e9
     
  21. 4.52x105÷9x10-2
    Input : 4.52e5/9e-2
    Ans. 5022222.2
     
  22. (5x106)2
    Input : pow(5e6,2)
    Ans. 2.5e13
     
  23. log10100
    Input : log(100)
    Ans. 2
     
  24. log264
    Input : log(64)/log(2)
    Ans. 6
     
  25. ln(e)
    Input : ln(E)
    Or
    Input : ln(exp(1))
    Ans. 1
     
  26. ln(e-2)
    Input : ln(exp(-2))
    Or
    Input : ln(pow(E,-2))
    Ans. -2
     
  27. 23x(32)4
    ———
    22x35
    Input : pow(2,3)*pow(pow(3,2),4)/(pow(2,2)*pow(3,5))
    Ans. 54
     
  28. 1+√2
    ———
    1-√2
    Input : (1+sqrt(2))/(1-sqrt(2))
    Ans. -5.8284
     
  29. (18.7-15.3)2     (0.037-0.089)2
    ——————  - ———————
    18.7x15.3        0.037x0.089
    Input : pow(18.7-15.3,2)/(18.7*15.3)-pow(0.037-0.089,2)/(0.037*0.089)
    Ans. -0.7807
     
  30. 7xsin(40o)
    —————
        12
    Input : 7*sin(rad(40))/12
    Ans. 0.375
     
  31. sin-1((¾)xsin(82.8o)) in degree
    Input : deg(asin(3/4*sin(rad(82.6))))
    Ans. 48.052
     

No comments:

Post a Comment

Note: Only a member of this blog may post a comment.