Question

In mathematics, two quantities are in the golden ratio if their ratio is the same as the ratio of their sum to the larger ofProblem 1 Your task is to write a function that computes the golden ratio based on the Fibonacci sequence up to a user-specifAn example output is shown below: >> [GRn, fibo_n ) = golden (10) Returns: GRn = 1.617647058823529 fibo_n = 1 1 2 3 5 8 13 21

Done in matlab

0 0
Add a comment Improve this question Transcribed image text
Answer #1

`Hey,

Note: Brother if you have any queries related the answer please do comment. I would be very happy to resolve all your queries.

clc
clear all
close all
format long
[GRn,fibo_n]=golden(10)
function [GRn,fibo_n]=golden(n)
v=zeros(1,n);
[~,f]=fibo(n);
for j=2:n
v(j)=(f(j))/f(j-1);
end
fibo_n=f;
GRn=v(end);
plot(1:n,v);
function [fibonum,f]=fibo(m)
f=[1,1];
for i=3:m
f(i)=f(i-1)+f(i-2);
end
fibonum=f(end);
end
  
end

- 5 x Pradeep - 0 X 56 Search Documentation Tax X ahk.m x bisectionmethodbypradeep.m X + | | A MATLAB R2018 HOME PLOTS APPS E

Kindly revert for any queries

Thanks.

Add a comment
Know the answer?
Add Answer to:
Done in matlab In mathematics, two quantities are in the golden ratio if their ratio is...
Your Answer:

Post as a guest

Your Name:

What's your source?

Earn Coins

Coins can be redeemed for fabulous gifts.

Not the answer you're looking for? Ask your own homework help question. Our experts will answer your question WITHIN MINUTES for Free.
Similar Homework Help Questions
  • In mathematics, the Fibonacci numbers are the series of number that exhibit the following pattern: 0,1,1,2,3,5,8,13,21,34,55,89,144,.......

    In mathematics, the Fibonacci numbers are the series of number that exhibit the following pattern: 0,1,1,2,3,5,8,13,21,34,55,89,144,.... In mathematical notation the sequence Fn of Fibonacci number is defined by the following recurrence relation: Fn=Fn-1+Fn-2 With the initial values of F0=0 and F1=1. Thus, the next number in the series is the sum of the previous two numbers. Write a program that asks the user for a positive integer N and generate the Nth Fibonacci number. Your main function should handle user...

  • Using R code only 4. The Fibonacci numbers are the sequence of numbers defined by the...

    Using R code only 4. The Fibonacci numbers are the sequence of numbers defined by the linear recurrence equation Fn F-1 F-2 where F F2 1 and by convention Fo 0. For example, the first 8 Fibonacci numbers are 1, 1, 2, 3, 5, 8, 13, 21. (a) For a given n, compute the nth Fibonnaci number using a for loop (b) For a given n, compute the nth Fibonnaci number using a while loop Print the 15th Fibonacci number...

  • • Fibonacci numbers, denoted as Fn, form a sequence, called the Fibonacci sequence, such that each...

    • Fibonacci numbers, denoted as Fn, form a sequence, called the Fibonacci sequence, such that each number is the sum of the two preceding ones, starting from 0 and 1. • Fn = Fn-1 + Fn-2 (n > 1) • Fo = 0 and F1 = 1 • Submit the R script to write the first 100 numbers of Fibonacci sequence, i.e., F, to F99, to a file named as Fibonacci_100.txt and put in the folder in path /user/R/output/. •...

  • 2. The Fibonacci numbers are defined by the sequence: f = 1 f2 = 1 fo=fni...

    2. The Fibonacci numbers are defined by the sequence: f = 1 f2 = 1 fo=fni + 2 Implement a program that prompts the user for an integer, n, and prints all the Fibonacci numbers, up to the nth Fibonacci number. Use n=10. Show a sample output with the expected results. Output: Enter a number: 100 number Fib 89

  • MATLAB 1. The Fibonacci sequence is defined by the recurrence relation Fn = Fn-1+Fn-2 where Fo...

    MATLAB 1. The Fibonacci sequence is defined by the recurrence relation Fn = Fn-1+Fn-2 where Fo = 0 and F1 = 1. Hence F2 = 1, F3 = 2, F4 = 3, etc. In this problem you will use three different methods to compute the n-th element of the sequence. Then, you will compare the time complexity of these methods. (a) Write a recursive function called fibRec with the following declaration line begin code function nElem = fibrec (n) end...

  • python Write a function that takes as input a single integer parametern and computes the nth...

    python Write a function that takes as input a single integer parametern and computes the nth Fibonacci Sequence number The Fibonacci sequence first two terms are 1 and 1(so, if n - 2 your function should return 1). From there, the previous two values are summed to come up with the next result in the sequence 1.1,2,3,5,8,13, 21, 34, 55, etc.) For example, if the input is 7 then your function should return 13 26561.1615880 1 def Fibonacci(n): # your...

  • Question 1. A linear homogeneous recurrence relation of degree 2 with constant coefficients is a recurrence...

    Question 1. A linear homogeneous recurrence relation of degree 2 with constant coefficients is a recurrence relation of the form an = Cian-1 + c2an-2, for real constants Ci and C2, and all n 2. Show that if an = r" for some constant r, then r must satisfy the characteristic equation, p2 - cir= c = 0. Question 2. Given a linear homogeneous recurrence relation of degree 2 with constant coefficients, the solutions of its characteristic equation are called...

  • 4. One interesting property of a Fibonacci sequence is that the ratio of the values of...

    4. One interesting property of a Fibonacci sequence is that the ratio of the values of adjacent members of the sequence approaches a number called "the golden ratio". Create a program that accepts the first two numbers of a Fibonacci sequence as user input and then calculates additional values in the sequence until the ratio of adjacent values converges to within 0.001 You can do this in a while loop by comparing the ratio of element k to element k...

  • PYTHON 3 - please show format Question 2. ) Use the Design Recipe to write a...

    PYTHON 3 - please show format Question 2. ) Use the Design Recipe to write a function yesOrNo which has no parameters. When called, it gets input from the user until the user types either 'yes' or 'no', at which point the function should return True if the user typed 'yes' and False if the user typed 'no'. Any other entries by the user are ignored and another value must be input. For example: Test Input Result print(yesOrNo()) hello blank...

  • The Fibonacci sequence is named after an Italian mathematician: Leonardo Bonacci (c. 1170-c. 1250...

    The Fibonacci sequence is named after an Italian mathematician: Leonardo Bonacci (c. 1170-c. 1250)-known as Fibonacci, and also Leonardo of Pisa, Leonardo Pisano Bigollo, and as Leonardo Fibonacci. His 1202 book Liber Abaci introduced the sequence to Western European mathematics, although the sequence had been described earlier in Indian mathematics. In mathematical terms, the sequence F of Fibonacci numbers is defined by the recurrence relation FF1F-2 with seed values F1, F21or F1-0, F2-1 The Liber Abaci began the sequence with...

ADVERTISEMENT
Free Homework Help App
Download From Google Play
Scan Your Homework
to Get Instant Free Answers
Need Online Homework Help?
Ask a Question
Get Answers For Free
Most questions answered within 3 hours.
ADVERTISEMENT
ADVERTISEMENT
ADVERTISEMENT