Answered step by step
Verified Expert Solution
Question
1 Approved Answer
1 ) Write a function get _ continued _ fraction ( lst ) which given a list of numbers [ 0 , . . .
Write a function getcontinuedfractionlst which given a list of numbers
computes the continued fraction:
Your function should return a pair of integers
where
For example: getcontinuedfraction should return
Python code:
def getcontinuedfractionlst:
assert lenlst
n d getcontinuedfraction
printfTest # : nd
assert n and d
n d getcontinuedfraction
printfTest # : nd
assert n and d
n d getcontinuedfraction
printfTest # : nd
assert n and d
n d getcontinuedfraction
printfTest # : nd
assert n and d
Write a function makecontinuedfractiona b given numerator a and denominator b wherein that returns a list corresponding to the continued fraction representation of
Python code:
def makecontinuedfractiona b:
assert a
assert a b
# your code here
continuedfraction
while b :
quotient b a
remainder b a
continuedfraction.appendquotient
a b remainder, a
return continuedfraction
f makecontinuedfraction
printf ContinuedFractionf
assert f
f makecontinuedfraction
printf ContinuedFractionf
assert f
f makecontinuedfraction
printf ContinuedFractionf
assert f
f makecontinuedfraction
printf ContinuedFractionf
assert f
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started