You are not logged in. Your edit will be placed in a queue until it is peer reviewed.
We welcome edits that make the post easier to understand and more valuable for readers. Because community members review edits, please try to make the post substantially better than how you found it, for example, by fixing grammar or adding additional resources and hyperlinks.
Required fields*
-
5One thing I would add here is that it is technically possible for real computers to produce numbers that are for all intents and purposes random by using other hardware, such as by measuring thermal noise. However, those methods produce random sequences very slowly, so they are impractical for most applications, and when they are used, it is usually just to generate a PRNG seed.murgatroid99– murgatroid992026-02-27 00:22:17 +00:00Commented 2 days ago
-
5Conversely, there's also the saying, "The generation of random numbers is too important to leave to chance!". Since Humans are bad at estimating "randomness", pseudorandom numbers can lead to better feelings of "randomness" than actually random numbers! That's the exact kind of gamefeel that's relevant in games.Raven Dreamer– Raven Dreamer2026-02-27 01:33:26 +00:00Commented 2 days ago
-
4@murgatroid99 I think I overloaded my terminology - I agree that pesudorandom number generators should be statistically indistinguishable. My larger point was - sometimes "mostly-random" makes for better gameplay. (e.g. Fire Emblem's various 2RN systems)Raven Dreamer– Raven Dreamer2026-02-27 04:32:24 +00:00Commented 2 days ago
-
342 mentioned, yay! Also +1 for computer science degreepinckerman– pinckerman2026-02-27 09:16:19 +00:00Commented yesterday
-
3@AlexanderThe1st The fixed point is not a general property of PRNGs or even LCGs, it is a consequence of the specific parameters chosen for the example. The Linear congruential generator Wikipedia article describes how the choice of those parameters affects the behavior, and it specifically notes that there are choices of parameters for which every seed has the full period.murgatroid99– murgatroid992026-02-28 02:11:44 +00:00Commented yesterday
|
Show 8 more comments
How to Edit
- Correct minor typos or mistakes
- Clarify meaning without changing it
- Add related resources or links
- Always respect the author’s intent
- Don’t use edits to reply to the author
How to Format
-
create code fences with backticks ` or tildes ~
```
like so
``` -
add language identifier to highlight code
```python
def function(foo):
print(foo)
``` - put returns between paragraphs
- for linebreak add 2 spaces at end
- _italic_ or **bold**
- indent code by 4 spaces
- backtick escapes
`like _so_` - quote by placing > at start of line
- to make links (use https whenever possible)
<https://example.com>[example](https://example.com)<a href="https://example.com">example</a>
How to Tag
A tag is a keyword or label that categorizes your question with other, similar questions. Choose one or more (up to 5) tags that will help answerers to find and interpret your question.
- complete the sentence: my question is about...
- use tags that describe things or concepts that are essential, not incidental to your question
- favor using existing popular tags
- read the descriptions that appear below the tag
If your question is primarily about a topic for which you can't find a tag:
- combine multiple words into single-words with hyphens (e.g. minecraft-java-edition), up to a maximum of 35 characters
- creating new tags is a privilege; if you can't yet create a tag you need, then post this question without it, then ask the community to create it for you