Skip to content
Allin

Pascal's triangle generator

Generate Pascal's triangle to any depth, with exact big-integer entries. Each number is the sum of the two above it, and row n holds the binomial coefficients — the coefficients of (a+b)ⁿ. The triangle hides the Fibonacci numbers, powers of two, and the Sierpinski pattern.

Angle Bisector Calculator (triangle)Enter the three sides or the three vertices and get the length of each internal angle bisector, the incenter, the inradius, and the exact point where every bisector cuts the opposite side. The angle bisector theorem is the heart of it: the bisector splits the opposite side in the ratio of the two adjacent sides. The triangle inequality is checked before anything is computed, and the triangle is drawn with its three bisectors.Equilateral triangle calculatorCompute the area, height and perimeter of an equilateral triangle from its side.General Triangle SolverSolve any triangle from 3 known values (SSS, SAS, ASA/AAS, SSA) with the laws of sines and cosines: all sides and angles, area, perimeter and type, handling the ambiguous SSA case (0, 1 or 2 triangles).Triangle area calculator (Heron's formula)Compute a triangle's area from the length of its three sides.Sierpinski triangle generatorGenerate the Sierpinski triangle two ways: by recursive subdivision, which removes the central triangle at every level, or by the chaos game, where thousands of random midpoint jumps make the fractal emerge from pure randomness. Choose the depth or iteration count and a colour palette.Triangle area calculatorArea of a triangle from base and height, three sides, or two sides and the angle between them.Triangle Centroid CalculatorFind the centroid of a triangle from its three vertices, with the medians, side midpoints, median lengths and the 2:1 ratio, plus a diagram.Triangle Orthocenter CalculatorFind the orthocenter of a triangle (the intersection of its altitudes) from the three vertices, with the altitude equations and a diagram — note it can lie outside an obtuse triangle.

Pascal's triangle generator is free to use as often as you like, directly from this page. You will find it under Sequences & series, with Angle Bisector Calculator (triangle) and Equilateral triangle calculator for the neighbouring cases.

How to use it

  1. Open the tool — no signup or install needed.
  2. Enter your input or adjust the available options.
  3. Get your result instantly, then copy or download it.

Frequently asked questions

What is Pascal's triangle generator?

Generate Pascal's triangle to any depth, with exact big-integer entries. Each number is the sum of the two above it, and row n holds the binomial coefficients — the coefficients of (a+b)ⁿ. The triangle hides the Fibonacci numbers, powers of two, and the Sierpinski pattern.

What does a concrete case look like?

n = 5 → 1, 5, 10, 10, 5, 1 — the tool shows every step in between, not just the final figure.

When would I actually use this?

Finding the nth term without listing every one before it, summing a long run in one step, and recognising which family a sequence belongs to.

What is the most common mistake?

Starting the index at the wrong end. Whether the first term is a₀ or a₁ shifts every result by one position, and the two conventions are both common.

How is Pascal's triangle generator different from Angle Bisector Calculator (triangle)?

They sit next to each other but answer different questions: Angle Bisector Calculator (triangle) is the one to open when you need it to enter the three sides or the three vertices and get the length of each internal angle bisector, the incenter, the inradius, and the exact point where every bisector cuts the opposite side. The angle bisector theorem is the heart of it: the bisector splits the opposite side in the ratio of the two adjacent sides. The triangle inequality is checked before anything is computed, and the triangle is drawn with its three bisectors. Pick whichever matches what you're starting from — both are free.

Is there a tool for the next step?

Equilateral triangle calculator is the closest one after this: Compute the area, height and perimeter of an equilateral triangle from its side.

What else is worth having open alongside it?

General Triangle Solver and Triangle area calculator (Heron's formula) — they come up in the same task often enough to be worth a second tab.

Where do the figures come from?

The closed forms are the standard ones, and the tool states the indexing convention it uses so a result can be compared against a textbook without ambiguity.

Further reading

All guides