Skip to main content

วิธีการคำนวณ Fibonacci

learn.whatIsHeading

The Fibonacci sequence is a series where each number is the sum of the two preceding ones: 0, 1, 1, 2, 3, 5, 8, 13, 21, 34... The ratio of consecutive Fibonacci numbers approaches the golden ratio φ ≈ 1.618.

คำแนะนำทีละขั้นตอน

  1. 1F(0) = 0, F(1) = 1
  2. 2F(n) = F(n-1) + F(n-2)
  3. 3Closed form (Binet's formula): F(n) = (φⁿ − ψⁿ) / √5
  4. 4φ = (1+√5)/2 ≈ 1.6180339887 (golden ratio)

ตัวอย่างที่มีคำตอบ

อินพุต
F(10)
ผลลัพธ์
55
0,1,1,2,3,5,8,13,21,34,55
อินพุต
F(20)
ผลลัพธ์
6,765
อินพุต
F(50)
ผลลัพธ์
12,586,269,025
About 12.6 billion

พร้อมที่จะคำนวณแล้วหรือยัง? ลองใช้เครื่องคิดเลข Fibonacci ฟรี

ลองด้วยตัวคุณเอง→

การตั้งค่า