Problems when 'mod' quite big number (like factorial).
1 vue (au cours des 30 derniers jours)
Afficher commentaires plus anciens
mod(factorial(22),10000)
mod(factorial(23),10000)
The answers should both be 0. However, the answers are 0 and 2864 seperately.
How to solve this problem?
Thank you very much!
0 commentaires
Réponse acceptée
David Hill
le 5 Mai 2022
Modifié(e) : David Hill
le 5 Mai 2022
x=sym('23');
mod(factorial(x),10000)
x=sym('24');
mod(factorial(x),10000)
Plus de réponses (0)
Voir également
Catégories
En savoir plus sur Loops and Conditional Statements dans Help Center et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!