File tree Expand file tree Collapse file tree 2 files changed +39
-1
lines changed
src/algorithms/math/factorial Expand file tree Collapse file tree 2 files changed +39
-1
lines changed Original file line number Diff line number Diff line change 11# Factorial
22
33_ Read this in other languages:_
4- [ _ 简体中文_ ] ( README.zh-CN.md ) , [ français] ( README.fr-FR.md ) .
4+ [ _ 简体中文_ ] ( README.zh-CN.md ) , [ français] ( README.fr-FR.md ) , [ turkish ] ( README.tr-TR.md ) .
55
66In mathematics, the factorial of a non-negative integer ` n ` ,
77denoted by ` n! ` , is the product of all positive integers less
Original file line number Diff line number Diff line change 1+ # Faktöriyel
2+
3+ _ Bunu diğer dillerde okuyun:_
4+ [ _ 简体中文_ ] ( README.zh-CN.md ) , [ français] ( README.fr-FR.md ) .
5+
6+ Faktöriyel, matematikte, sağına ünlem işareti konulmuş sayıya
7+ verilen isim, daha genel olan Gama fonksiyonunun tam sayılarla
8+ sınırlanmış özel bir durumudur. 1'den başlayarak belirli bir
9+ sayma sayısına kadar olan sayıların çarpımına o sayının
10+ faktöriyeli denir. Basit bir şekilde faktöriyel, n tane ayrık
11+ elemanın kaç farklı şekilde sıralanabileceğidir.
12+
13+ ```
14+ 5! = 5 * 4 * 3 * 2 * 1 = 120
15+ ```
16+
17+ | n | n! |
18+ | --- | ----------------: |
19+ | 0 | 1 |
20+ | 1 | 1 |
21+ | 2 | 2 |
22+ | 3 | 6 |
23+ | 4 | 24 |
24+ | 5 | 120 |
25+ | 6 | 720 |
26+ | 7 | 5 040 |
27+ | 8 | 40 320 |
28+ | 9 | 362 880 |
29+ | 10 | 3 628 800 |
30+ | 11 | 39 916 800 |
31+ | 12 | 479 001 600 |
32+ | 13 | 6 227 020 800 |
33+ | 14 | 87 178 291 200 |
34+ | 15 | 1 307 674 368 000 |
35+
36+ ## Referanslar
37+
38+ [ Wikipedia] ( https://en.wikipedia.org/wiki/Factorial )
You can’t perform that action at this time.
0 commit comments