Toggle menu
Toggle preferences menu
Toggle personal menu
Not logged in
Your IP address will be publicly visible if you make any edits.
Y5nw (talk | contribs)
(mostly to indicate that the player name starts with a lowercase letter)
 
Y5nw (talk | contribs)
mNo edit summary
Tag: 2017 source edit
 
(7 intermediate revisions by the same user not shown)
Line 1: Line 1:
{{DISPLAYTITLE:User:y5nw}}
{{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 p checked at an interval of T (e.g. tree growth), the expected amount of time t it takes for the event to fire is E(t)=Tp.

Note that, in some definition tables in Minetest (e.g. ABMs), the probability is specified using the reciprocal of p.

Calculations: Let q:=1p be the probability of the event not firing at the next check.

E(t)=n=1(qn1(1q))(Tn)=(1q)Tn=1qn1n=(1q)Tn=1m=1nqn1=(1q)Tn=1m=nqm1=(1q)Tqn=1m=nqm=(1q)Tqn=1(m=0qmm=0n1qm)=(1q)Tqn=1(11q1qn1q)=(1q)Tqn=1qn1q=Tn=0qn=T11q=Tp

(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 ()(x,5) with :×𝔹.

However, given

F:X{{YX}Y},xFxFx:{XY}Y,ff(x),xXC:{X×YZ}{X{YZ}},fCfCf:X{YZ},Cf(x)(y):=f(x,y)

(i.e. C effectively performs function currying.)

The above expression can be parsed into Fx(C)(5). It can be checked that

=Fx(C)(5)=C(x)(5)=()(x,5)

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 Fx(C)(y)(C+)(1). Evaluating this gives ()(x,Fy)(C+)(1) 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)