Skip to content

Latest commit

 

History

History
26 lines (16 loc) · 366 Bytes

Ex_1_4_01.md

File metadata and controls

26 lines (16 loc) · 366 Bytes
title date draft tags categories
Algorithm4 Java Solution 1.4.01
2019-08-06 15:54:00 +0800
false
JAVA
TECH
archives

1.4.01

Problem:

Show that the number of different triples that can be chosen from N items is precisely N(N-1)(N-2)/6. Hint : Use mathematical induction.

Solution:

$C(N,3)=N(N-1)(N-2)/6$

Reference: