Fibonacci - Maple Help
For the best experience, we recommend viewing online help using Google Chrome or Microsoft Edge.

Online Help

All Products    Maple    MapleSim


StringTools

  

Fibonacci

  

generate a Fibonacci string

 

Calling Sequence

Parameters

Description

Examples

Calling Sequence

Fibonacci( n, a, b )

Parameters

n

-

non-negative integer; specifies that Fibonacci return the nth Fibonacci string

a

-

character; (optional) first symbol to use

b

-

character; (optional) second symbol to use

Description

• 

The Fibonacci(n, a, b) generates the nth Fibonacci string, with initial values a and b. The arguments after the first are optional, and default to the strings  and , respectively.

• 

Given starting symbols a and b, the nth Fibonacci string is defined by the recurrence Fibonacci( n, a, b ) = cat( Fibonacci( n - 1, a, b ), Fibonacci( n - 2, a, b ) ), for , and the initial conditions Fibonacci( 0, a, b ) = b and Fibonacci( 1, a, b ) = a. The length of Fibonacci( n ) is equal to the nth+1 Fibonacci number.

• 

The Fibonacci procedure has option remember.

• 

All of the StringTools package commands treat strings as (null-terminated) sequences of -bit (ASCII) characters.  Thus, there is no support for multibyte character encodings, such as unicode encodings.

Examples

(1)

(2)

(3)

(4)

See Also

combinat[fibonacci]

string

StringTools

 


Download Help Document