/

Syntax

Change Log

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)

Parameters

Returned value

An integer. Argument, which led to this returned value, is shortening code a little as in case of checking values which can be returned from this method.

If there has to be definietely any type to be returned, selected by user, I will have to massively rewrite the code of this method, what can one day lead to unpredictable errors.

Description and usage

This method was one of my hardest project to compose. Greatest solution wasn't really easy to find, until "you are good in making a pseudocode". This method opens unseen today vision to probability in code. It exists since my invention, class , 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 and abroad() functions, instead of traditional duo range() and len().

Probability is not that seen in real life, still provides a good topic. Sometimes we want to know, when a specific moment will occur, not even knowing when. In games you will see chances of dropping specific items, which are often divided into rarities: common, uncommon, rare, epic, legendary, mythic. These are sorted in order from the most to least probable to drop.

But moving back to method Tense.probability(), it is in my opinion fun method. Basic usage would concern dice roll:

.probability(1, 2, 3, 4, 5, 6)
which is equivalent to 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))

This will be more probable to allow coin land on side, but omitting really low change of its happening:

random.choice((heads, tails, side))
But class method Tense.probability() solves this issue:

.probability((0, 2), (1, 5999), (2, 5999))
There value 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%!
Other way to do this is hidden inside optional parameter length, also replacing tuple with other sequences:

.probability({0, 2}, 1, 2, length12000) set
.probability({0: 2}, 1, 2, length12000) dict
.probability([0, 2], 1, 2, length12000) list

This code will suprisingly give 6 more than mere dice roll:

.probability(1, 2, 3, 4, 5, (6, 100))
Denominator there equals 105. If mere integers are provided (not sequences), length is added by 1. 6 will by then have 100/105 (20/21, 95.24%) chance of dropping, meanwhile the rest have 1/105 (0.95%) each.

Since 0.3.26b3 parameter 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:
  • for systems with 32-bit architecture that value is 231 - 1 (2147483647; 2.147483647e+9)
  • for systems with 64-bit architecture that value is 263 - 1 (9223372036854775807; 9.223372036854775807e+18, like in my case)
However, I consider these as satisfacionary, because this is not like users putting e.g. 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.

Due to strict typing you cannot use simple scientific notation without manual cast to an integer.

.probability((0, 2), 1, 2, length12000) OK
.probability((0, 2), 1, 2, length1.2e+4) TypeError: Expected integer or constant 'PROBABILITY_COMPUTE' .probability((0, 2), 1, 2, lengthint(1.2e+4)) OK

Still, you can do lots of things with this method! For example, finally this coin flip we mentioned about before:

coinflip.probability((0, 2), 1, 2, length12000)
if coinflip0:
   .print(Coin landed on side!)
note we can actually do vice versa with these both below
elif coinflip1:
   .print(Coin landed on heads!)
else:
   .print(Coin landed on tails!)

Thrown errors

Errors thrown by Tense.probability() method base especially on probability definition, but also typical type checking.


Error Reasons
tense.types_collection.MissingValueError
  • there are least than 2 (for 0.3.25 to 0.3.26a2 - 3; check details of this parameter) values in parameter vf.
IndexError
  • parameter vf has sequence (list, tuple, set, frozenset, deque), which is not of size in range 1-2
KeyError
  • parameter vf has dictionary with a key which is not an integer
ValueError
  • parameter length is least than -1 or greater than sys.maxsize
  • parameter vf has dictionary with a value which is not an integer, None nor ellipsis
  • parameter vf has dictionary with a value which is a negative integer or equal zero
  • parameter vf has sequence (list, tuple, set, frozenset, deque) with second item which is a negative integer or equal zero
TypeError
  • parameter length is not an integer
  • parameter vf has at least one occurence of inappropriate type from gamut: int/list/tuple/set/frozenset/deque/dict
  • parameter vf has sequence (list, tuple, set, frozenset, deque) with first item which is not an integer
  • parameter vf has sequence (list, tuple, set, frozenset, deque) with second item which is not an integer, None nor ellipsis

class method Tense.probability2()

≥ 0.3.8; < 0.3.24; ≥ 0.3.25
Standard ≥ 0.3.9

This method operates on 2 values, respectively: x and y. Since 0.3.25 any type is allowed for this method, and this type will be returned.

Syntax

Change Log

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

Parameters

Thrown errors

Errors thrown by 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
  • parameter length equals zero
ValueError
  • parameter frequency has negative integer
  • parameter length has negative integer or integer greater than sys.maxsize
TypeError
  • parameter types of x and y do not match
  • parameter frequency isn't an integer
  • parameter length isn't an integer

Description and usage

This method is less complex version of method 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(length10) x = 10%, y = 90%
.probability2(length100) x = 1%, y = 99%
.probability2(length1000) x = 0.1%, y = 99.9%
.probability2(length10000) x = 0.01%, y = 99.99%; default
.probability2(length100000) x = 0.001%, y = 99.999%
.probability2(length1000000) x = 0.0001%, y = 99.9999%
.probability2(length10000000) x = 0.00001%, y = 99.99999%
.probability2(length100000000) x = 0.000001%, y = 99.999999%
.probability2(length1000000000) x = 0.0000001%, y = 99.9999999%
... (going further only allowed for systems with 64-bit architecture)

.probability2(frequency0) x = 0%, y = 100%
.probability2(frequency10) x = 0.1%, y = 99.9%
.probability2(frequency100) x = 1%, y = 99%
.probability2(frequency1000) x = 10%, y = 90%
.probability2(frequency10000) x = 100%, y = 0%
.probability2(frequency100000) x = 100%, y = 0%
.probability2(frequency1000000) x = 100%, y = 0%
...

.probability2(length5) x = 20%, y = 80%
.probability2(length12) x = 8.333333%, y = 91.666667%
.probability2(length60) x = 1.666667%, y = 98.333333%
.probability2(length516) x = 0.193798%, y = 99.806202%
.probability2(length2048) x = 0.048828125%, y = 99.951171875%
.probability2(length5000) x = 0.02%, y = 99.98%
.probability2(length12006) x = 0.008329%, y = 99.991671%

.probability2(frequency5) x = 0.05%, y = 99.95%
.probability2(frequency12) x = 0.12%, y = 99.88%
.probability2(frequency60) x = 0.6%, y = 99.4%
.probability2(frequency516) x = 5.16%, y = 94.84%
.probability2(frequency2048) x = 20.48%, y = 89.52%
.probability2(frequency5000) x = 50%, y = 50%
.probability2(frequency12006) x = 100%, y = 0%

.probability2(frequency6, length10) x = 60%, y = 40%
.probability2(frequency6, length100) x = 6%, y = 94%
.probability2(frequency6, length1000) x = 0.6%, y = 99.4%
.probability2(frequency6, length10000) x = 0.06%, y = 99.94%
.probability2(frequency6, length100000) x = 0.006%, y = 99.994%
.probability2(frequency6, length1000000) x = 0.0006%, y = 99.9994%
.probability2(frequency6, length10000000) x = 0.00006%, y = 99.99994%