Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

Write a python function named compare that compares two fractions. The function should take two fractions (represented as tuples) as arguments and return an integer.

Write a python function named compare that compares two fractions. The function should take two fractions (represented as tuples) as arguments and return an integer. If the first argument is smaller than the second argument the function should return -1 if the first argument is larger than the second the function should return 1 if the first argument is equal to the second argument the function should return 0. For example compare( (1,2), (1,3)) should return 1 since 1/2 is greater than 1/3. Any computations that you do inside the functions need to involve only integer mathematics. You mustn't just divide the numerators by denominators and compare the resulting decimal numbers. 

Step by Step Solution

3.48 Rating (155 Votes )

There are 3 Steps involved in it

Step: 1

Heres Python function named compare that compares 2 fractions represented as tuples def g... blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image_2

Step: 3

blur-text-image_3

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Elements Of Chemical Reaction Engineering

Authors: H. Fogler

6th Edition

013548622X, 978-0135486221

More Books

Students also viewed these Operating System questions

Question

Define deferred revenue. Why is it a liability?

Answered: 1 week ago