(mostly to indicate that the player name starts with a lowercase letter) |
mNo edit summary Tag: 2017 source edit |
||
(7 intermediate revisions by the same user not shown) | |||
Line 1: | Line 1: | ||
{{DISPLAYTITLE | {{DISPLAYTITLE:y5nw}} | ||
'''y5nw''' is a player on the server. | '''y5nw''' is a player on the server. | ||
== Personal bookmark == | |||
* <categorytree mode="pages" hideprefix="always">Category:Judgments by accusation</categorytree> | |||
* [[/sandbox]] | |||
== Notes == | |||
''Note: This section is more or less written based on my own knowledge. Feel free to suggest corrections in my talk page.'' | |||
=== Event chance calculation === | |||
For a one-shot event that fires with a probability of <math>p</math> checked at an interval of <math>T</math> (e.g. tree growth), the expected amount of time <math>t</math> it takes for the event to fire is <math>E(t) = \frac{T}{p}</math>. | |||
Note that, in some definition tables in Minetest (e.g. ABMs), the probability is specified using the reciprocal of <math>p</math>. | |||
Calculations: Let <math>q := 1-p</math> be the probability of the event ''not'' firing at the next check. | |||
<math> | |||
\begin{align} | |||
E(t) &= \sum_{n=1}^{\infty} (q^{n-1} (1-q)) (T n) = (1-q) T \sum_{n=1}^{\infty} q^{n-1} n = (1-q) T \sum_{n=1}^{\infty} \sum_{m=1}^n q^{n-1} \\ | |||
&= (1-q) T \sum_{n=1}^{\infty} \sum_{m=n}^{\infty} q^{m-1} = \frac{(1-q) T}{q} \sum_{n=1}^{\infty} \sum_{m=n}^{\infty} q^m \\ | |||
&= \frac{(1-q) T}{q} \sum_{n=1}^{\infty} \left( \sum_{m=0}^{\infty} q^m - \sum_{m=0}^{n-1} q^m \right) = \frac{(1-q) T}{q} \sum_{n=1}^{\infty} \left( \frac{1}{1-q} - \frac{1-q^n}{1-q} \right) = \frac{(1-q) T}{q} \sum_{n=1}^{\infty} \frac{q^n}{1-q} \\ | |||
&= T \sum_{n=0}^{\infty} q^n = T \cdot \frac{1}{1-q} = \frac{T}{p} | |||
\end{align} | |||
</math> | |||
=== (Abandoned) Idea for prefix-notation syntax === | |||
For my [https://codeberg.org/y5nw/railtour railtour] mod I considered using a simple prefix-notation syntax for filter expressions (although IMO filters have a low priority at the time of writing). A somewhat adequate prefix syntax can be made to sufficiently resemble infix notation used for mathematics. Consider the following example: | |||
<pre> | |||
x >= 5 | |||
</pre> | |||
As an infix expression, this is parsed to something similar to <math>(\ge)(x, 5)</math> with <math>\ge: \mathbb{R} \times \mathbb{R} \to \mathbb{B}</math>. | |||
However, given | |||
<math> | |||
\begin{align} | |||
F&: X \to \{\{Y \to X\} \to Y \}, x \mapsto F_x \\ | |||
F_x&: \{X \to Y\} \to Y, f \mapsto f(x), x \in X \\ | |||
C&: \{X \times Y \to Z\} \to \{X \to \{Y \to Z\}\}, f \mapsto C_f \\ | |||
C_f&: X \to \{Y \to Z\}, C_f(x)(y) := f(x, y) | |||
\end{align} | |||
</math> | |||
(i.e. <math>C</math> effectively performs function currying.) | |||
The above expression can be parsed into <math>F_x(C_\ge)(5)</math>. It can be checked that | |||
<math> | |||
\begin{align} | |||
&\phantom{=} F_x(C_\ge)(5) \\ | |||
&= C_\ge(x)(5) \\ | |||
&= (\ge)(x, 5) | |||
\end{align} | |||
</math> | |||
It should be noted that this approach reaches its limitations when multiple "infix" operators are used, as in <code>x >= y + 1</code>, which is parsed into <math>F_x(C_\ge)(y)(C_+)(1)</math>. Evaluating this gives <math>(\ge)(x, F_y)(C_+)(1)</math> which does not have a sensible result. | |||
The above issue can be avoided (albeit counterintuitively) by adding parentheses where appropriate, i.e. with <code>x >= (y + 1)</code> However, with the use of parentheses, a Lisp-based syntax à la <code>(>= x (+ y 1))</code> appears more attractive as it also involves less function-related abstractions (which avoids issues arising from such abstractions; compare <code>x >= 5</code> and <code>5 <= x</code> with the custom prefix notation) |
Latest revision as of 07:27, 9 January 2025
y5nw is a player on the server.
Personal bookmark
Notes
Note: This section is more or less written based on my own knowledge. Feel free to suggest corrections in my talk page.
Event chance calculation
For a one-shot event that fires with a probability of checked at an interval of (e.g. tree growth), the expected amount of time it takes for the event to fire is .
Note that, in some definition tables in Minetest (e.g. ABMs), the probability is specified using the reciprocal of .
Calculations: Let be the probability of the event not firing at the next check.
(Abandoned) Idea for prefix-notation syntax
For my railtour mod I considered using a simple prefix-notation syntax for filter expressions (although IMO filters have a low priority at the time of writing). A somewhat adequate prefix syntax can be made to sufficiently resemble infix notation used for mathematics. Consider the following example:
x >= 5
As an infix expression, this is parsed to something similar to with .
However, given
(i.e. effectively performs function currying.)
The above expression can be parsed into . It can be checked that
It should be noted that this approach reaches its limitations when multiple "infix" operators are used, as in x >= y + 1
, which is parsed into . Evaluating this gives which does not have a sensible result.
The above issue can be avoided (albeit counterintuitively) by adding parentheses where appropriate, i.e. with x >= (y + 1)
However, with the use of parentheses, a Lisp-based syntax à la (>= x (+ y 1))
appears more attractive as it also involves less function-related abstractions (which avoids issues arising from such abstractions; compare x >= 5
and 5 <= x
with the custom prefix notation)