-
Notifications
You must be signed in to change notification settings - Fork 0
integrated calculator
ItsZariep edited this page Sep 11, 2024
·
1 revision
SGLauncher can show the answer of a math operation if the option is enabled. Is also possible to disable scientific notation if needed, the formulas are num1 operand num2 operand ...
, so you can do something like:
2+4-2/2*2
Here's the updated table with the expected answers added:
Operand | Operation Description | Example | Literal Expression | Expected Answer |
---|---|---|---|---|
+ |
Summation | 4 + 2 | 4 increase 2 | 6 |
- |
Subtraction | 4 - 2 | 4 decrease 2 | 2 |
* |
Multiplication | 4 * 2 | 4 multiplied by 2 | 8 |
/ |
Division | 4 / 2 | 4 divided by 2 | 2 |
^ |
Power | 4 ^ 2 | 4 raised to the power 2 | 16 |
% |
Percentage | 10 % 3 | 10 percent of 3 | 0.3 |
r |
Square root | r 16 | square root of 16 | 4 |
n |
Root with base | 27 n 3 | cube root of 27 | 3 |
c |
Cosine | c 45 | cosine of 45 degrees | 0.7071 |
ch |
Hyperbolic Cosine | ch 1 | hyperbolic cosine of 1 | 1.5431 |
t |
Tangent | t 45 | tangent of 45 degrees | 1 |
th |
Hyperbolic Tangent | th 1 | hyperbolic tangent of 1 | 0.7616 |
s |
Secant | s 60 | secant of 60 degrees | 2 |
sh |
Hyperbolic Secant | sh 1 | hyperbolic secant of 1 | 0.6481 |
l |
Natural Logarithm | l 10 | natural log of 10 | 2.3026 |
b |
Logarithm with base | 2 b 8 | log of 8 with base 2 | 3 |
S |
Arcsine | S 0.5 | arcsine of 0.5 | 30 |
C |
Arccosine | C 0.5 | arccosine of 0.5 | 60 |
T |
Arctangent | T 1 | arctangent of 1 | 45 |