Effacer les filtres
Effacer les filtres

understanding MATLAB method in long equation

1 vue (au cours des 30 derniers jours)
Abdullah Sultan
Abdullah Sultan le 15 Déc 2021
Commenté : Abdullah Sultan le 16 Déc 2021
this the orginal equation
and this is the equation code
fn= 1/sqrt(5) * ( ( (1+sqrt(5)) / 2 )^n - (1-sqrt(5)/2).^n )
just to understand matlab proccess, why in the first (1+sqrt(5)) part we should put () more than the second part (1-sqrt(5)/2) even though they are the same side
to be more clear I make the () bold to mention why here we should make more () the other side
fn= 1/sqrt(5) * ( ( (1+sqrt(5)) / 2 )^n - (1-sqrt(5)/2).^n )

Réponse acceptée

Voss
Voss le 15 Déc 2021
Modifié(e) : Voss le 15 Déc 2021
The 1-sqrt(5) needs parentheses around it too.
  3 commentaires
Voss
Voss le 15 Déc 2021
Modifié(e) : Voss le 15 Déc 2021
(1+sqrt(5)) / 2 means: add 1 to the square root of 5 and divide the result by 2.
1+sqrt(5) / 2 means: divide the square root of 5 by 2 and add one to the result.
The parentheses are necessary to treat the whole expression 1+sqrt(5) as the numerator of a fraction in the equation.
Abdullah Sultan
Abdullah Sultan le 16 Déc 2021
thank you again , your explanation is very useful ,
best regards

Connectez-vous pour commenter.

Plus de réponses (0)

Catégories

En savoir plus sur Loops and Conditional Statements dans Help Center et File Exchange

Produits


Version

R2021b

Community Treasure Hunt

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

Start Hunting!

Translated by