answersLogoWhite

0

Why is a shell a Fibonacci?

User Avatar

Anonymous

9y ago
Updated: 8/21/2019

Because the shape of Fibonacci is the same way and structure.

User Avatar

Wiki User

9y ago

What else can I help you with?

Related Questions

Where can the Fibonacci series be seen in nature or daily lifes?

The circle of a pine cone or a spiral shell.


Fibbomacci series using recursion shell programming?

Here is a good answer for recursion Fibonacci series. #include <stdio.h> #include <conio.h> long Fibonacci(long n); int main() { long r, n,i; printf("Enter the value of n: "); scanf("%ld",&n); for(i=0;i<=n;i++) { printf(" Fibonacci(%ld)= %ld\n", i,Fibonacci(i)); } getch(); return 0; } long Fibonacci(long n) { if(n==0 n==1) return n; else { return (Fibonacci(n-1)+Fibonacci(n-2)); } } for n=5; Output: Fibonacci(0)=0 Fibonacci(1)=1 Fibonacci(2)=1 Fibonacci(3)=2 Fibonacci(4)=3 Fibonacci(5)=5


Why did Fibonacci think of the Fibonacci code?

There is the Fibonacci sequence but what is the Fibonacci code?


What is the use of Fibonacci series in nature?

Turns up in many things - the leaves of a fern, the spirals in pinecones, the nautilus shell chambers etc


How long did Leonardo Fibonacci live?

He lived [Fibonacci(10) + Fibonacci(8) + Fibonacci(6)] years


What is Fibonacci functions?

what is fibonacci?


Why is the Fibonacci sequence named after Fibonacci?

Leonardo Fibonacci discovered the number sequence which is named after him.


Does the Fibonacci series show that snails for instance were designed and did not appear by accident?

Fibonacci series composing of the numbers 1,1,2,3,5,8, 13 and so on is indeed an intriguing set of numbers. From purely geometric point of view, the physical design of the shell of a snail looks like an implementation of this series. Knowing though that the snail evolved its shell over time it is more likely that the shell taking this form is because it is a sturdy and efficient shape. There are many patterns in the natural world and there is no evidence of a "designer".


Why did Fibonacci create the Fibonacci Sequence?

I think Fibonacci wanted to find how many swirls or petals were on a flower ....... most of them are Fibonacci numbers....i think.... doin a projct......= )


Who discovered Fibonacci numbers?

Leonardo Fibonacci


What is the first name of Fibonacci?

Leonardo Fibonacci


Is 13 a Fibonacci number?

the first seven Fibonacci numbers are 1,1,2,3,5,8,13. 13 is a Fibonacci number.