KO EN

Scientific Calculator

 
0

Quadratic Equation (ax² + bx + c = 0)

Enter coefficients

Pythagorean Theorem (a² + b² = c²)

Enter values

Permutation (nPr) & Combination (nCr)

Enter n, r

GCD & LCM

Enter values

FAQ

DEG (degrees) divides a full circle into 360, while RAD (radians) uses 2π. sin(90°) = sin(π/2 rad) = 1. Use DEG for everyday math and RAD for engineering or programming.
1 pyeong = 3.3058 ㎡. For example, a 24-pyeong apartment = 24 × 3.3058 ≈ 79.34 ㎡. An '84㎡ exclusive area' corresponds to about 25.4 pyeong.
Binary is used inside computers, octal for Unix file permissions (chmod 755), hexadecimal for color codes (#FF0000) and memory addresses. Essential for programmers and CS students.
Mean is the sum of all values ÷ count; median is the middle value when sorted. Example: [1, 2, 3, 4, 100] — mean is 22, median is 3. Median is less affected by outliers.
Permutation is used when order matters (1st, 2nd, 3rd place); combination when order does not matter (selecting 3 members). For 5 people choose 3: permutation = 60, combination = 10.
log (common logarithm) has base 10; ln (natural logarithm) has base e (≈2.718). log(100) = 2, ln(e) = 1. ln is common in science/engineering; log is used in everyday calculations.
Standard deviation measures how spread out data is from the mean. A small value means data is clustered near the mean; a large value means it is spread out. In a normal distribution, about 68% of data falls within ±1 standard deviation of the mean.