Logic Puzzle
Author: mistertfy64
Find the amount of permutations of {1, 2, 3, 4, 5, 6, 7, 8, 9} that satisfy these conditions:
- The first number from the left is divisible by the fifth number from the left.
- The second number from the left is divisible by the sixth number from the left.
- The product of the third number from the left and the fourth number from the left is equal to or greater than 15.
- The rightmost number, that is, the ninth number from the left, is even.
Formally, find the number of permutations p of {1, 2, 3, 4, 5, 6, 7, 8, 9} such that:
- p1 mod p5 = 0, that is, there exists an integer a that ap5 = p1.
- p2 mod p6 = 0, that is, there exists an integer b that bp6 = p2.
- p3p4 ≥ 15
- p9 mod 2 = 0, that is, there exists an integer c that 2c = p9.
Two such permutations to include are {4, 3, 5, 9, 2, 1, 8, 7, 6} and {7, 4, 3, 9, 1, 2, 5, 8, 6}.
Please log in to submit answers.
Correct Answers
# | Username | Timestamp |
---|---|---|
1 | MisterO | 2025-05-02T08:08:00.927Z |
2 | mistertfy64 | 2025-05-04T08:06:02.538Z |
3 | morlums | 2025-05-12T17:53:14.436Z |
4 | admin | 2025-05-12T18:41:21.362Z |
5 | Waigoon | 2025-08-12T10:05:16.950Z |