This repository was archived by the owner on Apr 16, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathproblem033.py
More file actions
44 lines (32 loc) · 1.33 KB
/
problem033.py
File metadata and controls
44 lines (32 loc) · 1.33 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
"""
The fraction 49/98 is a curious fraction, as an inexperienced mathematician in
attempting to simplify it may incorrectly believe that 49/98 = 4/8, which is
correct, is obtained by cancelling the 9s.
We shall consider fractions like, 30/50 = 3/5, to be trivial examples.
There are exactly four non-trivial examples of this type of fraction, less than
one in value, and containing two digits in the numerator and denominator.
If the product of these four fractions is given in its lowest common terms,
find the value of the denominator.
"""
from fractions import Fraction
from operator import mul
def main():
"""
>>> main()
100
"""
# not a curious fraction 30/50 or 77/77
curious_fractions = []
for numerator_tens in range(1, 10):
for denominator_unit in range(1, 10):
for cancler in range(1, 10):
numerator = numerator_tens * 10 + cancler
denominator = cancler * 10 + denominator_unit
fraction1 = Fraction(numerator, denominator)
fraction2 = Fraction(numerator_tens, denominator_unit)
if fraction1 == fraction2 and numerator != denominator:
curious_fractions.append(fraction1)
print(reduce(mul, curious_fractions).denominator)
if __name__ == "__main__":
import doctest
doctest.testmod()