forked from trekhleb/javascript-algorithms
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Factorial turkish readme (trekhleb#740)
* added turkish readme for factorial * Added redirect link to Turkish document.
- Loading branch information
1 parent
00887c2
commit c1b2e89
Showing
2 changed files
with
39 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
# Faktöriyel | ||
|
||
_Bunu diğer dillerde okuyun:_ | ||
[_简体中文_](README.zh-CN.md), [français](README.fr-FR.md). | ||
|
||
Faktöriyel, matematikte, sağına ünlem işareti konulmuş sayıya | ||
verilen isim, daha genel olan Gama fonksiyonunun tam sayılarla | ||
sınırlanmış özel bir durumudur. 1'den başlayarak belirli bir | ||
sayma sayısına kadar olan sayıların çarpımına o sayının | ||
faktöriyeli denir. Basit bir şekilde faktöriyel, n tane ayrık | ||
elemanın kaç farklı şekilde sıralanabileceğidir. | ||
|
||
``` | ||
5! = 5 * 4 * 3 * 2 * 1 = 120 | ||
``` | ||
|
||
| n | n! | | ||
| --- | ----------------: | | ||
| 0 | 1 | | ||
| 1 | 1 | | ||
| 2 | 2 | | ||
| 3 | 6 | | ||
| 4 | 24 | | ||
| 5 | 120 | | ||
| 6 | 720 | | ||
| 7 | 5 040 | | ||
| 8 | 40 320 | | ||
| 9 | 362 880 | | ||
| 10 | 3 628 800 | | ||
| 11 | 39 916 800 | | ||
| 12 | 479 001 600 | | ||
| 13 | 6 227 020 800 | | ||
| 14 | 87 178 291 200 | | ||
| 15 | 1 307 674 368 000 | | ||
|
||
## Referanslar | ||
|
||
[Wikipedia](https://en.wikipedia.org/wiki/Factorial) |