Ask Your Question
1

Symbolic expression of the quotient of a continued fraction

asked 2021-08-23 11:56:20 +0200

oldani gravatar image

Hi,

Is it possible to get the symbolic expression of the numerator and denominator $p_n(a_0,...,a_n$ and $q_n(a_0,...,a_n)$ of the partial quotients of a continued fraction?

Thanks GO

edit retag flag offensive close merge delete

1 Answer

Sort by ยป oldest newest most voted
1

answered 2021-08-23 21:43:18 +0200

Max Alekseyev gravatar image

updated 2021-08-23 21:59:13 +0200

Such expressions are given by continuants - namely, $p_n(a_0,\dots,a_n)= K_{n+1}(a_0,\dots,a_n)$ and $q_n(a_0,\dots,a_n)= K_n(a_1,\dots,a_n)$ . Sage provides function continuantfor computing them - see https://doc.sagemath.org/html/en/refe...

Here is an example for $n=5$:

R.<a> = InfinitePolynomialRing(QQ)
print('p=', continuant( [a[i] for i in (0..5)]) )
print('q=', continuant( [a[i] for i in (1..5)]) )
edit flag offensive delete link more

Your Answer

Please start posting anonymously - your entry will be published after you log in or create a new account.

Add Answer

Question Tools

Stats

Asked: 2021-08-23 11:56:20 +0200

Seen: 132 times

Last updated: Aug 23 '21