How solve this summation using loop for x=3? but if could solve it without using build in function (factorial)
Afficher commentaires plus anciens

4 commentaires
Dyuman Joshi
le 23 Déc 2023
As this is clearly a HW question, show us what have you tried yet to solve it.
Bajdar Nouredine
le 16 Jan 2024
Dyuman Joshi
le 16 Jan 2024
Modifié(e) : Dyuman Joshi
le 16 Jan 2024
Let me push you in the right direction - How can you define factorial of an integer using basic arithmatic operations?
Steven Lord
le 16 Jan 2024
5! is a constant, you could easily compute it before the loop and store it in a variable for use in the loop. Or you could pull it outside the summation and multiply the sum by 5! at the end, since it doesn't depend on n.
Another hint: Let's say you knew x^k/k! for one value of k. How could you use that result to compute x^(k+1)/(k+1)! without recomputing either the exponentiation or the factorial, just using arithmetic?
Réponse acceptée
Plus de réponses (0)
Catégories
En savoir plus sur Loops and Conditional Statements dans Centre d'aide et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!