from tense import
.probability(*vf , length ?)
from tense import
.probability(*valuesAndFrequencies , length ?) for 0.3.24
from Tense08.tense08 import Tense08
Tense08.probability(*valuesAndFrequencies , length ?) before 0.3.24
from Tense08.tense08 import Tense08
Tense08.complexity(values , frequencies , length ?)
Version | Update |
---|---|
0.3.26c2 |
Retracted support for tense.tcs.FinalVar , instead check, how to receive its value in documentation of this module.
Instead added support for tkinter.IntVar
|
0.3.26c1 |
Parameter length can now be instance of tense.tcs.FinalVar , which has an integer value
|
0.3.26a3 |
Completely patched ZeroDivisionError , 2 values are now possible
|
0.3.25 |
Added support for sequences of type deque[int] and sets of types set[int] and frozenset[int] , renamed rest parameter from
valuesAndFrequencies to vf . Allowing to put type None or ellipsis as a role of second item (value in dictionairies).
|
0.3.24 |
Added support for dictionairies of type dict[int, int | None] , added constant PROBABILITY_ALL , which since now is default value
of length button. Equivalent to value -1 . Due to reorganization in the same version, probability() method is now inside
class Tense as a class method (all time it is class method; in module tense ).
|
0.3.19 |
Merged obligatory parameters values and frequencies into one rest parameter valuesAndFrequencies (12th October 2023),
renamed method from complexity() to probability() . Method, which earlier had the name probability() , has been renamed
to probability2() - this method lost formula, because probability() remains better choice; that method only allowed 2 numeric
values put in 2 single parameters. Before this version, values and frequencies both wanted to have same sequence size, otherwise it
resulted in easy error.
|
0.3.8 |
Created method Tense08.complexity() (method Tense08.probability() operated only on 2 integer values)
|
vf
(former name: valuesAndFrequencies
) - A rest parameter, which may contain simple integers, dictionairies of type dict[int, int | None]
,
sets and frozen sets of type int
, tuples of type tuple[int, int | None]
, and lists of type int
. Following rules concerning this parameter's
sequence types:None
.None
, nor ellipsis.vf
parameter awaits at least 2 (since 0.3.25 - 3) values.ZeroDivisionError
exception. To prevent this mistake, consider
using method Tense.probability2()
, which bases on 2 values. This variation of Tense.probability()
method will be documented below. ZeroDivisionError
has been partially patched on 0.3.25, replacing error with tense.primary.MissingValueError
, which signs lack of at least 3 values. Support for 2 values has been provided on 0.3.26a3 after
tests 3 days later, and exactly, method Tense.probability2()
was used in the inner code!
length
(Optional) - Length of the internal list, counterpart of denominator in probability function. This list stores all values from vf
parameter. Defaults to -1
inside constant PROBABILITY_COMPUTE
. That means length is determined by every second item from sequences; if there isn't one, added is 1 as default. Example: for probability((0, 2), (1, 5999), (2, 5999))
,
which is syntax for coin flip, assuming 1/6000 chance to land on side (value 0
), length equals 12000
. So using probability((0, 2), 1, 2, length = 12000)
will
be also correct and will work.
Tense08Games
, to put secrets inside. This invention has been discontinued, but new class Games
inside module
tense.extensions
is planned in further versions of Tense. This method uses both reckon()
and
abroad()
functions,
instead of traditional duo range()
and len()
.Tense.probability()
, it is in my opinion fun method. Basic usage would concern dice roll:
.probability(1 , 2 , 3 , 4 , 5 , 6 )
random.randint(1, 6)
and random.randrange(6) + 1
. But what, if we went further, and do the same, but with coin flip? According to the article from
Wikipedia, and also video from Reigarw Comparisons Probability Comparison: Rarest Things in the Universe, coin may also land on side, but it is incredibly rare event: it may happen with
probability 1 to 6000! So the code below excludes this part:
import random
random .choice ((heads , tails ))
random .choice ((heads , tails , side ))
Tense.probability()
solves this issue:
.probability((0 , 2 ), (1 , 5999 ), (2 , 5999 ))
0
equals land on side, other 2 (1
and 2
) equal heads and tails. Now a little explanation there: do you see second items in every
tuple? Code sums them! That means denominator in probability function in math will be equal: 2 + 5999 + 5999 = 12000. So since we know its denominator, we can easily find probability of dropping every
number included as first items in every tuple: value 0
will have 2/12000 (that's right, it is 1/6000!) chance of dropping, meanwhile other 2: 5999/12000 (close to 1/2, 0.49991666666666...).
In percents: both heads and tails have chance equally 49.99%, while for side it is extremely low - 0.016%!length
, also replacing tuple with other sequences:
.probability({0 , 2 }, 1 , 2 , length 12000 ) set
.probability({0 : 2 }, 1 , 2 , length 12000 ) dict
.probability([0 , 2 ], 1 , 2 , length 12000 ) list
6
more than mere dice roll:
.probability(1 , 2 , 3 , 4 , 5 , (6 , 100 ))
6
will by then have 100/105 (20/21, 95.24%) chance of dropping, meanwhile the rest have 1/105
(0.95%) each.
length
value can be only in range [1, sys.maxsize
] (-1 excluded). If you are unsure, which value sys.maxsize
variable returns, it bases on system architecture:
Tense.probability ((0, int(1e+9) - 1), 1, length = int(1e+9))
, what means 1
will be really rare value to drop.
Going above sys.maxsize
results in an error. This problem can be solved by replacing single list with multidimensional one, however, result may need more time to generate (and it can increase limit to 2127 - 1,
which equals 170141183460469231731687303715884105727, 1.70141183460469231731687303715 884105728e+38). So make sure you won't go above value from sys.maxsize
! This also concerns Tense.probability2()
class method.
.probability((0 , 2 ), 1 , 2 , length 12000 ) OK
.probability((0 , 2 ), 1 , 2 , length 1.2e+4 ) TypeError: Expected integer or constant 'PROBABILITY_COMPUTE'
.probability((0 , 2 ), 1 , 2 , length int (1.2e+4 )) OK
coinflip .probability((0 , 2 ), 1 , 2 , length 12000 )
if coinflip 0 :
.print (Coin landed on side! )
note we can actually do vice versa with these both below
elif coinflip 1 :
.print (Coin landed on heads! )
else :
.print (Coin landed on tails! )
Tense.probability()
method base especially on probability definition, but also typical type checking.Error | Reasons |
---|---|
tense.types_collection.MissingValueError |
|
IndexError |
|
KeyError |
|
ValueError |
|
TypeError |
|
class method Tense.probability2() ⬤
x
and y
. Since 0.3.25 any type is allowed for this method, and
this type will be returned.
from tense import
.probability2(x ?, y ?, frequency ?, length ?)
from Tense08.tense08 import Tense08
Tense08.probability2(rareValue ?, usualValue ?, frequency ?, length ?)
from Tense08.tense08 import Tense08
Tense08.probability(value ?, frequency ?, length ?)
Version | Update |
---|---|
0.3.26a3 |
Parameter length may now have value -1 factually referring to default value 10000
|
0.3.25 |
Renamed 2 first parameters (rareValue to x and usualValue to y ), both also received any type support;
default values of both are kept
|
0.3.24 | Without a notice during rewriting whole TensePy project, method disappeared in the code written afresh |
0.3.19 |
Renamed this method to its current name (probability() was its name from before), added new parameter usualValue and renamed value
to rareValue
|
0.3.8 |
Created method Tense08.probability() with 3 integer parameters: value , frequency and length
|
x
(Optional; former name: rareValue
) - Least probable value to return. Defaults to 1.y
(Optional; former name: usualValue
) - More probable value to return. Defaults to 0.frequency
(Optional) - determines about probability fraction numerator for value y
. Defaults to 1.length
(Optional) - probability fraction denominator. Defaults to 10000.x
will have 1/10000 (0.01%) chance to drop, and the rest of chance (99.99%) goes to value y
.
Tense.probability2()
mainly refer to probability definition. To faciliate it, there is small notation: Px(f / l)
,
where f
means frequency
and l
means length
. I used slash, because character ÷ (factual division sign) in code font
can be wrongly interpreted as an add sign. So below there are listed all 3 possible errors from this method.
Error | Reasons |
---|---|
ZeroDivisionError |
|
ValueError |
|
TypeError |
|
Tense.probability()
. It's usage is really simple. In the following examples I commented
possibility of returning x
and y
in percents. In case of these both parameters you could put completely various values,
because when these both will have equal value, returned will be always the same value they both represent, and this is obviously not the result you
are waiting for.
.probability2() x = 0.01%, y = 99.99%
.probability2(length 10 ) x = 10%, y = 90%
.probability2(length 100 ) x = 1%, y = 99%
.probability2(length 1000 ) x = 0.1%, y = 99.9%
.probability2(length 10000 ) x = 0.01%, y = 99.99%; default
.probability2(length 100000 ) x = 0.001%, y = 99.999%
.probability2(length 1000000 ) x = 0.0001%, y = 99.9999%
.probability2(length 10000000 ) x = 0.00001%, y = 99.99999%
.probability2(length 100000000 ) x = 0.000001%, y = 99.999999%
.probability2(length 1000000000 ) x = 0.0000001%, y = 99.9999999%
... (going further only allowed for systems with 64-bit architecture)
.probability2(frequency 0 ) x = 0%, y = 100%
.probability2(frequency 10 ) x = 0.1%, y = 99.9%
.probability2(frequency 100 ) x = 1%, y = 99%
.probability2(frequency 1000 ) x = 10%, y = 90%
.probability2(frequency 10000 ) x = 100%, y = 0%
.probability2(frequency 100000 ) x = 100%, y = 0%
.probability2(frequency 1000000 ) x = 100%, y = 0%
...
.probability2(length 5 ) x = 20%, y = 80%
.probability2(length 12 ) x = 8.333333%, y = 91.666667%
.probability2(length 60 ) x = 1.666667%, y = 98.333333%
.probability2(length 516 ) x = 0.193798%, y = 99.806202%
.probability2(length 2048 ) x = 0.048828125%, y = 99.951171875%
.probability2(length 5000 ) x = 0.02%, y = 99.98%
.probability2(length 12006 ) x = 0.008329%, y = 99.991671%
.probability2(frequency 5 ) x = 0.05%, y = 99.95%
.probability2(frequency 12 ) x = 0.12%, y = 99.88%
.probability2(frequency 60 ) x = 0.6%, y = 99.4%
.probability2(frequency 516 ) x = 5.16%, y = 94.84%
.probability2(frequency 2048 ) x = 20.48%, y = 89.52%
.probability2(frequency 5000 ) x = 50%, y = 50%
.probability2(frequency 12006 ) x = 100%, y = 0%
.probability2(frequency 6 , length 10 ) x = 60%, y = 40%
.probability2(frequency 6 , length 100 ) x = 6%, y = 94%
.probability2(frequency 6 , length 1000 ) x = 0.6%, y = 99.4%
.probability2(frequency 6 , length 10000 ) x = 0.06%, y = 99.94%
.probability2(frequency 6 , length 100000 ) x = 0.006%, y = 99.994%
.probability2(frequency 6 , length 1000000 ) x = 0.0006%, y = 99.9994%
.probability2(frequency 6 , length 10000000 ) x = 0.00006%, y = 99.99994%