Skip to content

Latest commit

 

History

History
14 lines (7 loc) · 197 Bytes

Law.md

File metadata and controls

14 lines (7 loc) · 197 Bytes

Sequences

1 + 2 + 3 + .....+ N = (N*(N+1))/2

1 + 2^2 + 3^2 + .... + N^2 = (N*(N+1)*(2N+1))/6

Permutaion && Combination

NPR = N! / (N-R)!

NCR = N! / ((N-R)! x R!)

NC2 = (N * (N-1 ))/ 2