how many formations are possible using ascending strings?

jack

Member
how many formations are possible using ascending strings?
* example is for a 31/7 lottery
string = 00011112246678 = 14 digits
can generate this = 01 06 08 14 17 21 26
* ok, but could generate more, the question is
* how many more?
* or a string given how many formations would it have?
almost there the training is from the limit of 01 to 31
and must have 7 numbers (14 digits)
ex = 01 06 08 14 17 21 26, or 02 04 07 12 21 26 ...
the macro has look at the amount of digits

to mount the 7-number string
the macro always has to have
* a reference string
* to create the training
ex = digit to reference string
* 00111222677899
above the digit 3
* i.e., 3,4,5,6,7,8,9,0
* are for the last digit
* ex = 28 last digit 8
or I will type certain or chosen string in the worksheet the macro will generate all the combinations, taking the string as base
 

jack

Member
matriz lottery= 31/7
01 02 03 04 05 06 07 08 09 10
11 12 13 14 15 16 17 18 19 20
21 22 23 24 25 26 27 28 29 30
31
 

time*treat

Member
how many formations are possible using ascending strings?
* example is for a 31/7 lottery
string = 00011112246678 = 14 digits
can generate this = 01 06 08 14 17 21 26
* ok, but could generate more, the question is
* how many more?
* or a string given how many formations would it have?
almost there the training is from the limit of 01 to 31
and must have 7 numbers (14 digits)
ex = 01 06 08 14 17 21 26, or 02 04 07 12 21 26 ...
the macro has look at the amount of digits

to mount the 7-number string
the macro always has to have
* a reference string
* to create the training
ex = digit to reference string
* 00111222677899
above the digit 3
* i.e., 3,4,5,6,7,8,9,0
* are for the last digit
* ex = 28 last digit 8
or I will type certain or chosen string in the worksheet the macro will generate all the combinations, taking the string as base

string = 00011112246678 = 14 digits
can generate this = 01 06 08 14 17 21 26
* ok, but could generate more, the question is
* how many more?
174 more, 175 total.

string 00111222677899
Total of 78 combos, if 31 choose 7.
 

jack

Member
hello, ok let's go for parts =
* my lottery = is 7/31
* we have 7 numbers from 01 to 31
* ex = 02 03 15 19 23 25 26
* we can separate the initial digit and last digit
0011222 = initial digit
last digit = 2359356 = increasing = 2335569
then we have the initial digit pose being in the ascending, but the last digit has to be positional
* So how many combinations can we make in the 2335569?
* I decided to split the strings into two parts digits initial and last digit
then only for last digit = 0001111 ...... 7888999 = na crecent
* Can you see how many formations now only last we digit? please later we will see delays, to cross with formations of the digits inicail
 

Sidebar

Top