Getting started
“Notes calculator” is a notepad for working through problems that involve calculations. Type a calculation in the input field (left side), and the result will be displayed on the right side.
The currency conversion below uses an illustrative rate of USD 1 = EUR 0.8. Live currency results vary with the app’s current rate.
| Calculation | Result |
|---|---|
(75 + 25) x 3 | 300 |
100 + 50% | 150 |
20% of 40 | 8 |
| |
100 dollars in euro | €80 |
60 degree in radians | 1,05 rad |
1 kg in g | 1.000 g |
1 day in seconds | 86.400 seconds |
| |
// You can also use variables: <-- this is a comment, which is ignored | |
discount = 10% | 10% |
cost = 550€ | €550 |
cost - discount | €495 |
Calculations are performed automatically as you type, and the result is updated in real-time.
What’s new
Section titled “What’s new”- Decimal Point & Thousands Separators — type grouped numbers like
1.234.567(matching your “Use dot as decimal point” setting) or1_000_000with underscores. - Line References — refer to an earlier line by its number, e.g.
line1. - User-Defined Functions — define your own functions like
f(x) = 2*x + 1. - Number Bases & Scientific Notation — hex, binary, octal, and scientific literals plus
in hex/as scientificpostfixes.