Path: csiph.com!x330-a1.tempe.blueboxinc.net!newsfeed.hal-mli.net!feeder1.hal-mli.net!feeder.news-service.com!newsfeed.xs4all.nl!newsfeed5.news.xs4all.nl!xs4all!post.news.xs4all.nl!not-for-mail Return-Path: X-Original-To: python-list@python.org Delivered-To: python-list@mail.python.org X-Spam-Status: OK 0.006 X-Spam-Evidence: '*H*': 0.99; '*S*': 0.00; 'else:': 0.03; 'precision': 0.09; 'pm,': 0.10; 'def': 0.12; 'wrote:': 0.14; 'subject:Fibonacci': 0.16; 'sure,': 0.16; 'math': 0.16; 'cheers,': 0.19; 'header:In-Reply-To:1': 0.21; 'seems': 0.21; 'thu,': 0.22; 'so.': 0.22; 'memory': 0.22; 'received:209.85.161.46': 0.23; 'received:mail-fx0-f46.google.com': 0.23; 'charset:iso-8859-7': 0.25; 'function': 0.25; 'received:209.85.161': 0.26; 'message- id:@mail.gmail.com': 0.28; 'beyond': 0.28; 'import': 0.29; 'least': 0.30; 'decimal': 0.30; 'steven': 0.32; 'to:addr:python- list': 0.33; "d'aprano": 0.35; 'using': 0.35; 'received:google.com': 0.37; 'received:209.85': 0.37; 'subject:: ': 0.38; 'some': 0.38; 'skip:s 20': 0.39; 'received:209': 0.39; 'to:addr:python.org': 0.39; 'become': 0.72; '11:58': 0.84 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:in-reply-to:references:from:date :message-id:subject:to:content-type:content-transfer-encoding; bh=7xftggW/5BWWybofzK4DA378fY6n5oYa14iLiOkBOxs=; b=EvI6SCxTcNpBGCBy1+9Yv7qfjaX3u70V4a0IWMfFm9BcZScqKlMjGQTQuiidrmg1er hGkPGa9TyO/MEOeGMBEf3QF8RVKjJU4Ac2s00F/Kg3m2inGfMeYc8Fz6P9r8dWWun06B Srak/UP2QMfT60/I71y6MCDFmfjLKtgdpWdfg= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:in-reply-to:references:from:date:message-id:subject:to :content-type:content-transfer-encoding; b=czi2JqcXWfXo4Fr3AfvfCgSO72LmguLkIXIlbl0y7teUsIt25Ds+H+KvMuam9a1Jiv 2kPQYPCn63OJTAFV1OarF4zyBYXKt39j1hxL9gJ/5QF11RHaYEgeqTDzr3tUHamSDqcM 1EsOFThG7jKAVhH4d4C5IGYn7YTXsz18jX3eY= MIME-Version: 1.0 In-Reply-To: <4dd602ec$0$29996$c3e8da3$5496439d@news.astraweb.com> References: <108ce447-10fa-4cf7-84ef-440ee18dbfd4@22g2000prx.googlegroups.com> <9d9c163b-14fd-4131-81bb-105c3b97c432@h36g2000pro.googlegroups.com> <4dd59e1e$0$29996$c3e8da3$5496439d@news.astraweb.com> <4dd602ec$0$29996$c3e8da3$5496439d@news.astraweb.com> From: Ian Kelly Date: Fri, 20 May 2011 01:26:49 -0600 Subject: Re: Faster Recursive Fibonacci Numbers To: Python Content-Type: text/plain; charset=ISO-8859-7 Content-Transfer-Encoding: quoted-printable X-BeenThere: python-list@python.org X-Mailman-Version: 2.1.12 Precedence: list List-Id: General discussion list for the Python programming language List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Newsgroups: comp.lang.python Message-ID: Lines: 38 NNTP-Posting-Host: 82.94.164.166 X-Trace: 1305876441 news.xs4all.nl 49038 [::ffff:82.94.164.166]:55646 X-Complaints-To: abuse@xs4all.nl Xref: x330-a1.tempe.blueboxinc.net comp.lang.python:5835 On Thu, May 19, 2011 at 11:58 PM, Steven D'Aprano wrote: > Sure, which is why the above fib() function will become increasing > inaccurate beyond some given n, by memory about n=3D71 or so. Er, at leas= t > the fib() function that *was* above until you deleted most of it :) > > If you want an *accurate* fib() function using exponentiation of =F6, you > need arbitrary precision non-integers. This seems to work for arbitrary n, although I only tested it out to about n=3D2000. from decimal import Decimal, localcontext from math import sqrt def fib(n): if n <=3D 70: return fib_float(n) else: return fib_decimal(n) phi_float =3D (1 + sqrt(5)) / 2 def fib_float(n): numerator =3D (phi_float ** n) - (1 - phi_float) ** n denominator =3D sqrt(5) return int(round(numerator / denominator)) def fib_decimal(n): with localcontext() as ctx: ctx.prec =3D n // 4 + 1 sqrt_5 =3D Decimal('5').sqrt() phi =3D (1 + sqrt_5) / 2 numerator =3D (phi ** n) - (1 - phi) ** n return int((numerator / sqrt_5).to_integral_value()) Cheers, Ian