How solve this summation using loop for x=3? but if could solve it without using build in function (factorial)
Mostra commenti meno recenti

4 Commenti
Dyuman Joshi
il 23 Dic 2023
As this is clearly a HW question, show us what have you tried yet to solve it.
Bajdar Nouredine
il 16 Gen 2024
Dyuman Joshi
il 16 Gen 2024
Modificato: Dyuman Joshi
il 16 Gen 2024
Let me push you in the right direction - How can you define factorial of an integer using basic arithmatic operations?
Steven Lord
il 16 Gen 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?
Risposta accettata
Più risposte (0)
Categorie
Scopri di più su Loops and Conditional Statements in Centro assistenza e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!