write a function to calculate f(n)=f(1-1)+f(1-2) where f1=(1),f2=(2)

1 view (last 30 days)
write a function to calculate f(n)=f(1-1)+f(1-2) where f1=(1),f2=(2)

Answers (1)

Walter Roberson
Walter Roberson on 8 Dec 2019
f(1-1) is f(0) and f(1-2) is f(-1) . The sum of the two would be constant, so f(n) would have to be constant. That is inconsistent with f1 being different than f2. The equation is therefore inconsistent, and no such function can be written.

Categories

Find more on Get Started with MATLAB in Help Center and File Exchange

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!