短い答え
A scientific calculator extends basic arithmetic with trigonometry, logarithms, exponents, roots, and constants like π and e. Expressions follow standard order of operations, and functions like sin(), log(), and sqrt() take their argument in parentheses immediately after the function name. Trigonometric results depend on whether angles are read in degrees or radians, so checking that mode first prevents a very common class of wrong answers.
重要なポイント
- log() computes base-10 logarithm; ln() computes natural logarithm (base e) — two different functions on the same keypad, not two names for the same thing.
- Trig functions (sin, cos, tan) need the correct angle mode selected before evaluating, or the result will be numerically correct for the wrong angle unit.
- Parentheses override the default order of operations and can be nested to force a specific evaluation order.
- π や e のような定数は無理数です。電卓は高精度の小数近似値を代用するため、これらの定数を含む結果は技術的には近似値であり、正確な値ではありません。
度対ラジアン
| モード | Full circle | sin(30) |
|---|---|---|
| 学位 | 360° | 0.5 |
| Radians | 2π | ≈ −0.988 |
The same input, sin(30), produces two completely different — but each individually correct — answers depending on the angle mode. Neither result is wrong; they're answers to two different questions.
ログと ln の比較
10² = 100 なので、log(100) = 2
e^4.605 ≈ 100 なので、ln(100) ≈ 4.605
この計算機では、log は常に 10 を底とすることを意味します。 ln は常に基数 e を意味します。問題でまったく異なる塩基が指定されている場合は、塩基変更式を使用して変換します。
Worked example: a multi-function expression
2 + 3 × √16 − log(1000)
= 2 + 3 × 4 − 3 (√16 = 4、log(1000) = 3)
= 2 + 12 − 3 = 11
√ や log などの関数が最初に (最も内側から最も外側に) 評価され、次に結果が通常の演算順序 (加算と減算の前に乗算、左から右) に入力されます。
避けるべきよくある間違い
- Forgetting to switch between degree and radian mode before a trig calculation — the same input gives very different, both "valid-looking" outputs.
- Using log() when a problem actually calls for ln(), or vice versa — always check which base the problem intends.
- 関数呼び出しの後に閉じ括弧がないと、エラーが発生するか、意図しないものが暗黙的に評価されます。
- Treating π and e as exact values — they're irrational, so any result derived from them is a rounded approximation, not an exact number.