Borrar filtros
Borrar filtros

Can anyone explain or show how to do this?

1 visualización (últimos 30 días)
Brandon Morgan
Brandon Morgan el 28 de Sept. de 2018
Respondida: Karun Mathiazhagan el 3 de Oct. de 2018
Prompt the user to enter a second INTEGER number (num2) from the keyboard where 2≤num2 ≤15 and then determine how many terms in the sequence are necessary to obtain the PHI number with a precision better than 10-num2. That is, compare the absolute difference between the ratio of two consecutive numbers in the sequence (for instance 1/1, 2/1, 3/2, 5/3, 8/5, ….) with the mathematical expression for the PHI number given by to determine the number of terms in the sequence to achieve a precision better than 10-num2. Your program MUST display on the screen the number of terms in the sequence to achieve the desired precision
  2 comentarios
Guillaume
Guillaume el 28 de Sept. de 2018
This looks like fairly simple homework. Which bit do you find difficult? What have you done so far?
Stephen23
Stephen23 el 29 de Sept. de 2018
@Brandon Morgan: what have you tried so far?

Iniciar sesión para comentar.

Respuestas (1)

Karun Mathiazhagan
Karun Mathiazhagan el 3 de Oct. de 2018
Hello Brandon,
The algorithm should involve evaluating the ratios of the consecutive terms and storing them in a second numeric array. The evaluation must proceed in a loop until the tolerance criterion mentioned is met. One over the size of this final second array can then be displayed after the loop terminates. This will be the number of elements of the original series used in evaluation.
I think the following MATLAB in-built functions might be of use to you:

Categorías

Más información sobre Loops and Conditional Statements en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by