Free Golden Ratio (φ) Calculator

Calculate divine proportions, generate custom typography hierarchies, and divide layout segments using the constant of φ

Golden Ratio (φ) Calculator

Given Value
Value Represents
Golden Ratio (φ)
Default: 1.61803398875 (adjust for different interpretations)

Golden Ratio Results

Side A
Shorter Segment
Side B
Longer Segment
Ratio B/A =
φ ≈ 1.61803398875
Total:
Difference:
Reciprocal:
Golden Ratio Visualization
B =
A =
B-A =
φ = B/A =
Rectangle divides into square A and smaller golden rectangle B-A
Quick Calculations:

The Golden Ratio (φ) in Modern Design

The Golden Ratio — mathematically represented by the Greek letter phi (φ) and approximately equal to 1.61803398875 — is a unique mathematical proportion. Throughout history, artists, architects, and designers have utilized this constant to create compositions that feel organically balanced and visually harmonious.

The Mathematical Breakdown of Phi (φ)

The Golden Ratio occurs when a line is divided into two segments such that the ratio of the whole line (a + b) to the longer segment (b) is exactly equal to the ratio of the longer segment to the shorter segment (a):

(a + b) ÷ b = b ÷ a = φ ≈ 1.61803398875

It is the positive solution to the quadratic equation **$x^2 = x + 1$**, represented exactly by:

φ = (1 + √5) ÷ 2 ≈ 1.61803398875
Reciprocal Conjugate (1 ÷ φ) = φ - 1 ≈ 0.61803398875

Mathematical Proportions Reference Table

Core mathematical variations of the Golden Ratio and their exact properties:

Mathematical FormEquationNumerical ValueDesign Application
Primary Ratio (φ)(1 + √5) ÷ 21.6180339887Main scaling factor for layouts & fonts
Conjugate (1/φ)φ - 10.6180339887Dividing layout columns (61.8% / 38.2%)
Square (φ²)φ + 12.6180339887Deep typographic jumps (Body to Page Titles)
Square Root (√φ)√φ1.2720196495Subtle proportion scale updates

Golden Ratio Applications in Web UI

📐 Proportional Columns

Divide a 1000px content width into a main content area of 618px and a sidebar of 382px (a perfect 61.8% to 38.2% layout layout grid).

✍️ Typoscales

Scale font weights beautifully. If the body is 16px, subsequent sizes are: 26px (H3), 42px (H2), and 68px (H1).

CSS Implementation Example

Define golden scales in your root custom variables using relative CSS units:

:root {
  --phi: 1.618;
  --font-base: 1rem;
  --font-lg: calc(var(--font-base) * var(--phi)); /* 1.618rem */
  --font-xl: calc(var(--font-lg) * var(--phi)); /* 2.618rem */
  --sidebar-width: 38.2%;
  --content-width: 61.8%;
}

Frequently Asked Questions (FAQs)

A Golden Ratio Calculator helps you calculate proportions based on the golden ratio (φ ≈ 1.618). It can find missing dimensions, create harmonious layouts, and generate design scales based on this mathematical constant.

The Golden Ratio (φ, approximately 1.61803398875) is a mathematical proportion where the ratio of the whole to the larger part equals the ratio of the larger part to the smaller part: (a+b)/a = a/b = φ.

φ = (1 + √5)/2 ≈ 1.61803398875. It's the positive solution to the equation x² = x + 1. The reciprocal 1/φ = φ - 1 ≈ 0.61803398875.

Common proportions are 61.8% : 38.2% (approximating φ:1). In design, these percentages are often used for layout divisions, typography scales, and spacing systems.

Used for: 1) Typography scales (multiply font sizes by φ), 2) Layout proportions (61.8%/38.2% columns), 3) Spacing systems, 4) Logo proportions, 5) Responsive breakpoint progressions.

The ratio of consecutive Fibonacci numbers approaches φ. Example: 3/2=1.5, 5/3=1.667, 8/5=1.6, 13/8=1.625, 21/13=1.615... approaching φ=1.618...

Apple logo proportions, Twitter bird design, National Geographic logo rectangle, typography hierarchies (16px base → 26px heading → 42px title), layout grids (sidebar: 382px, content: 618px in 1000px container).

Start with a base font size (e.g., 16px). Multiply by φ (1.618) for each level: 16px → 26px → 42px → 68px → 110px. This creates a harmonious typographic scale.

Rule of Thirds divides space into 1/3 (33.3%) segments. Golden Ratio uses 38.2%/61.8% divisions. Golden Ratio is mathematically precise and often creates more aesthetically pleasing proportions.

Yes! Use φ to generate breakpoints: Mobile: 320px, Tablet: 320×φ≈518px, Desktop: 518×φ≈838px, Large: 838×φ≈1356px. Creates a harmonious progression of screen sizes.