Logarithms, GCD/LCM and Area - New Math Calculators

Calculate logarithms (log10, ln, log2), find GCD and LCM of any numbers, compute area of 7 shapes. Three free math calculators with step-by-step formulas.

Patryk Matyjasik · 9 June 2026 · 7 min read

How many times do you multiply 10 by itself to get 1000? Three times. That is what log(1000) = 3 means. What is the largest number that divides 48, 60 and 72 without a remainder? Twelve. And the area of a triangle with base 12 and height 8? Exactly 48 square units.

Three problems, three calculators, zero guesswork. Each one shows the formula, the steps and the result.


Logarithm Calculator - four bases, one tool

Logarithms reverse exponentiation. Instead of asking "what is 10 to the power of 3?", you ask "what power of 10 gives 1000?" The answer is the logarithm.

Logarithm Calculator - log base 10 of 1000 equals 3, with formula breakdown

The calculator supports four logarithm types:

TypeNotationBaseWhere you see it
Commonlog(x)10pH scale, decibels, Richter scale
Naturalln(x)e (2.718...)Calculus, compound interest, physics
Binarylog2(x)2Computer science, bits, algorithm complexity
Customlog_a(x)any a > 0Specific math problems

A quick reference for values worth remembering:

Inputlog10lnlog2
1000
20.3010.6931
1012.3033.322
10024.6056.644
100036.9089.966

The change-of-base formula connects all types: log_a(x) = log(x) / log(a). You only need one type to calculate any other. The calculator handles conversions automatically.

Where does this matter outside a textbook? Sound intensity in decibels uses log10. The pH scale for acidity is -log10 of hydrogen ion concentration. Binary search in computer science runs in O(log2 n) time. And compound interest doubling time uses the natural log: years = ln(2) / ln(1 + rate).


GCD & LCM Calculator - from fractions to scheduling

Greatest Common Divisor and Least Common Multiple are two sides of the same coin. GCD finds the largest shared factor. LCM finds the smallest shared multiple.

GCD and LCM Calculator - GCD of 48, 60, 72 is 12, LCM is 720

Enter 48, 60, 72 and the calculator returns GCD = 12 and LCM = 720. The Euclidean algorithm does the heavy lifting - repeatedly dividing and taking remainders until it reaches zero.

The relationship between GCD and LCM is elegant: GCD(a,b) x LCM(a,b) = a x b. Knowing one gives you the other instantly.

ProblemUsesExample
Simplifying fractionsGCD48/72 = (48/12)/(72/12) = 4/6 = 2/3
Finding common denominatorLCM1/48 + 1/60 needs LCD = LCM(48,60) = 240
SchedulingLCMBus A every 48 min, Bus B every 60 min - both at stop together every 240 min
Tiling a floorGCDRoom 48x60 cm - largest square tile is 12x12 cm
Gear ratiosGCD48-tooth and 72-tooth gears - ratio 4:6 simplified by GCD=12

Two numbers with GCD = 1 are called coprime. They share no common factors. Any two consecutive integers are always coprime. This property is fundamental in cryptography - RSA key generation requires checking that two numbers are coprime.


Area Calculator - seven shapes, one formula table

Pick a shape, enter dimensions, get the area. No need to remember whether the trapezoid formula divides by 2 or multiplies by it.

Area Calculator - triangle with base 12 and height 8, area equals 48 square units

Triangle with base 12 and height 8: area = (12 x 8) / 2 = 48 square units. The calculator shows the formula used and the unit.

All seven supported shapes at a glance:

ShapeFormulaQuick example
Squarea^2Side 5 -> area 25
Rectanglea x b8 x 3 -> area 24
Triangle(base x height) / 212 x 8 / 2 -> area 48
Circlepi x r^2r=7 -> area 153.94
Trapezoid(a + b) x h / 2(6+10) x 4 / 2 -> area 32
Parallelogrambase x height12 x 5 -> area 60
Rhombus(d1 x d2) / 210 x 8 / 2 -> area 40

The height of a triangle is the perpendicular distance from base to opposite vertex - not the length of a side. This is the most common mistake. For a trapezoid, both parallel sides (bases) are needed plus the perpendicular height between them.

For irregular shapes, break them into simpler components. An L-shaped room? Two rectangles. A house floor plan? Rectangles plus triangles for the roof section. Calculate each piece, add them up.


Tools featured in this article

Logarithm Calculator - Calculate log base 10, natural log (ln), binary log (log2) or any custom base. Step-by-step formula with verification.

GCD & LCM Calculator - Find the Greatest Common Divisor and Least Common Multiple of two or more numbers. Euclidean algorithm shown step by step.

Area Calculator - Calculate the area of 7 geometric shapes: square, rectangle, triangle, circle, trapezoid, parallelogram, rhombus.

More Math tools


Check for a specific number