What this Newton binomial calculator does
This calculator expands expressions of the form (a + b)n using Newton's binomial theorem. It gives you the full symbolic expansion, optional numeric evaluation, and a specific term if you provide a value for k. That makes it useful for algebra homework, quick checks, and coefficient lookups.
Newton's binomial theorem in one line
For any non-negative integer n:
(a + b)n = Σ C(n,k) an-k bk, where k = 0 ... n.
The value C(n,k) is the binomial coefficient ("n choose k"), computed as: n! / (k!(n-k)!).
Why this is useful
- Expand powers without multiplying repeatedly.
- Find specific coefficients quickly.
- Check manual algebra steps for mistakes.
- Apply to probability, combinatorics, and approximation problems.
How to use the calculator
1) Choose the exponent
Enter a non-negative integer for n. The tool supports practical classroom ranges while keeping output readable.
2) Set symbols for a and b
By default, symbols are x and y, but you can use anything like m and n, or p and q.
3) (Optional) Enter numeric values
If you provide both numeric values, the calculator also computes the numeric result of (a + b)n.
4) (Optional) Enter k for a single term
If you care about one term only, enter k to get: C(n,k)an-kbk directly.
Worked examples
Example A: Symbolic expansion
For (x + y)5, the expansion is: x5 + 5x4y + 10x3y2 + 10x2y3 + 5xy4 + y5.
Example B: Numeric evaluation
Set a = 2, b = 3, and n = 4. The tool returns (2 + 3)4 = 625.
Example C: Specific coefficient
For (x + y)8 and k = 3, the coefficient is C(8,3) = 56, so the term is 56x5y3.
Common mistakes to avoid
- Using a negative or non-integer exponent with the standard finite binomial expansion.
- Confusing term index with power of b. In this calculator, k is the power of b.
- Forgetting that powers on a and b always add up to n.
- Supplying only one numeric input and expecting a numeric final value.
Where binomial expansions appear in real life
The theorem shows up in many places: probability models (like Bernoulli and binomial distributions), algorithm analysis, error propagation, and polynomial approximations. Even if you mainly need it for class right now, getting comfortable with these patterns pays off in statistics, engineering, and data science.
Quick recap
Use this Newton binomial calculator to generate the full expansion, inspect any specific term, and optionally compute the numeric result. It's fast, clear, and built to mirror the exact theorem you see in textbooks.