Calcolatore Triangolo di Pascal — Formula
Pascal's Triangle
Binomial Coefficient
C(n, k) = n! / (k! × (n-k)!)
This is the entry in row n, position k of Pascal's triangle (both starting from 0).
Properties
Esempio Risolto
Find the entry at row 6, position 2 of Pascal's triangle.
- C(6, 2) = 6! / (2! × 4!)
- = 720 / (2 × 24)
- = 720 / 48
- = 15
- Row 6: 1, 6, 15, 20, 15, 6, 1