How solve this summation using loop for x=3? but if could solve it without using build in function (factorial)
古いコメントを表示

4 件のコメント
Dyuman Joshi
2023 年 12 月 23 日
As this is clearly a HW question, show us what have you tried yet to solve it.
Bajdar Nouredine
2024 年 1 月 16 日
Dyuman Joshi
2024 年 1 月 16 日
編集済み: Dyuman Joshi
2024 年 1 月 16 日
Let me push you in the right direction - How can you define factorial of an integer using basic arithmatic operations?
Steven Lord
2024 年 1 月 16 日
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?
採用された回答
その他の回答 (0 件)
カテゴリ
ヘルプ センター および File Exchange で Loops and Conditional Statements についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!