Skip to content

Commit

Permalink
Update question.ts
Browse files Browse the repository at this point in the history
  • Loading branch information
ryangchung authored Oct 27, 2024
1 parent 38f96c9 commit 00f7eb4
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,10 @@ Consider 5-element subsets $\{x_1,x_2,x_3,x_4,x_5\}$ of the set $\{1,2,3,\dots,1
How many such subsets have the property that $x_3 = 7$?
`;

const label1 = "${6 choose 2} \cdot {10 choose 2}$";
const label2 = "${6 choose 2} \cdot {9 choose 2}$";
const label3 = "${7 choose 2} \cdot {10 choose 2}$";
const label4 = "${7 choose 2} \cdot {9 choose 2}$";
const label1 = "${6 \choose 2} \cdot {10 \choose 2}$";
const label2 = "${6 \choose 2} \cdot {9 \choose 2}$";
const label3 = "${7 \choose 2} \cdot {10 \choose 2}$";
const label4 = "${7 \choose 2} \cdot {9 \choose 2}$";

export const question: MultipleChoiceQuestion = {
body: body,
Expand Down

0 comments on commit 00f7eb4

Please sign in to comment.