Imagine you have this trivial problem:
How many ways can n people pick two flavours from a choice of k flavours (with no repetition on the flavours).
Suppose that you think the answer is ${k \choose 2}^n$
How do you write a formal proof to show this? Do you just state the steps? For example, would this be suffice:
Lemma: There are ${k \choose 2}^n$ ways for n people to pick two flavours from k flavours.
Proof. There are ${k \choose 2}$ ways for a person to pick two flavours. There are n people, so there are ${k \choose 2}^n$ ways.
I know this is a trivial example, but I am working on a more complex problem and I wanted some advice on how to formally state the proof.