- Home
- Premium Memberships
- Lottery Results
- Forums
- Predictions
- Lottery Post Videos
- News
- Search Drawings
- Search Lottery Post
- Lottery Systems
- Lottery Charts
- Lottery Wheels
- Worldwide Jackpots
- Quick Picks
- On This Day in History
- Blogs
- Online Games
- Premium Features
- Contact Us
- Whitelist Lottery Post
- Rules
- Lottery Book Store
- Lottery Post Gift Shop
The time is now 3:49 am
You last visited
June 3, 2026, 5:36 pm
All times shown are
Eastern Time (GMT-5:00)
cycles? inthe order go the draw or inascending order?Prev TopicNext Topic
-
Analyzing the Increasing Arrangement of Numbers: An Intriguing Approach
Understanding the StrategyThe idea of analyzing the increasing arrangement of numbers in a lottery game is interesting and, in a way, intuitive. The premise is that, by identifying patterns in the order in which the numbers are drawn, we could find cycles or trends that allow us to make more accurate predictions.
How it Works in Practice:
Ordering: After each draw, the numbers are ordered in ascending order.
Position Analysis: For each position (first, second and third), it is verified whether there was an increase, decrease or if the number remained the same in relation to the previous draw.
Pattern Identification: When analyzing a large volume of data, the aim is to identify whether there is a tendency for the numbers to increase, decrease or remain stable in certain positions.
Creating the Filter: Based on the identified patterns, a filter is created that predicts the probability of a number increasing, decreasing or remaining the same in each position.
Example:Imagine that, after analyzing the last 100 draws, you noticed that the first position tends to be occupied by a larger number than the number that occupied that position in the previous draw. Based on this observation, you could create a filter that always chooses larger numbers for the first position.
-
so like this
$lotteryNumbers = @(
@(12, 8, 25, 73, 80, 6),
@(24, 41, 10, 5, 30, 51),
@(76, 15, 12, 17, 71, 39),
@(6, 61, 71, 24, 57, 75),
@(49, 54, 34, 61, 8, 2),
@(51, 69, 2, 21, 9, 27),
@(29, 33, 39, 5, 53, 28),
@(15, 77, 56, 46, 8, 14),
@(57, 35, 34, 36, 38, 59),
@(80, 36, 23, 58, 44, 63),
@(47, 8, 54, 1, 78, 33)
)$trends = @(
@(), # 1st position
@(), # 2nd position
@(), # 3rd position
@(), # 4th position
@(), # 5th position
@() # 6th position
)# Sort numbers and analyze trends
foreach ($row in $lotteryNumbers) {
$sortedRow = $row | Sort-Object
for ($i = 0; $i -lt $sortedRow.Length; $i++) {
$trends[$i] += $sortedRow[$i]
}
}# Display trends for each position
for ($i = 0; $i -lt $trends.Length; $i++) {
$positionTrend = $trends[$i]
$min = $positionTrend | Measure-Object -Minimum | Select-Object -ExpandProperty Minimum
$max = $positionTrend | Measure-Object -Maximum | Select-Object -ExpandProperty Maximum
$avg = [math]::Round(($positionTrend | Measure-Object -Average | Select-Object -ExpandProperty Average), 2)Write-Host "Position $($i + 1):"
Write-Host " Minimum: $min"
Write-Host " Maximum: $max"
Write-Host " Average: $avg"
Write-Host ""
}output
Position 1:
Minimum: 1
Maximum: 34
Average: 9.45Position 2:
Minimum: 8
Maximum: 36
Average: 17.73Position 3:
Minimum: 12
Maximum: 57
Average: 29.27Position 4:
Minimum: 25
Maximum: 61
Average: 41.18Position 5:
Minimum: 39
Maximum: 73
Average: 57.27Position 6:
Minimum: 51
Maximum: 80
Average: 69 -
hello ethanl!but the example you showed is not in ascending order! It is in the order of draw. The question is what is better in the order of draw or the draw in ascending order to see the cycles by position
-
like this , is not show me a example
Cycles in Order of Draw
Position 1:
Draw 1: Number = 12, Trend =
Draw 2: Number = 24, Trend = Increase
Draw 3: Number = 76, Trend = Increase
Draw 4: Number = 6, Trend = Decrease
Draw 5: Number = 49, Trend = Increase
Draw 6: Number = 51, Trend = Increase
Draw 7: Number = 29, Trend = Decrease
Draw 8: Number = 15, Trend = Decrease
Draw 9: Number = 57, Trend = Increase
Draw 10: Number = 80, Trend = Increase
Draw 11: Number = 47, Trend = DecreasePosition 2:
Draw 1: Number = 8, Trend =
Draw 2: Number = 41, Trend = Increase
Draw 3: Number = 15, Trend = Decrease
Draw 4: Number = 61, Trend = Increase
Draw 5: Number = 54, Trend = Decrease
Draw 6: Number = 69, Trend = Increase
Draw 7: Number = 33, Trend = Decrease
Draw 8: Number = 77, Trend = Increase
Draw 9: Number = 35, Trend = Decrease
Draw 10: Number = 36, Trend = Increase
Draw 11: Number = 8, Trend = DecreasePosition 3:
Draw 1: Number = 25, Trend =
Draw 2: Number = 10, Trend = Decrease
Draw 3: Number = 12, Trend = Increase
Draw 4: Number = 71, Trend = Increase
Draw 5: Number = 34, Trend = Decrease
Draw 6: Number = 2, Trend = Decrease
Draw 7: Number = 39, Trend = Increase
Draw 8: Number = 56, Trend = Increase
Draw 9: Number = 34, Trend = Decrease
Draw 10: Number = 23, Trend = Decrease
Draw 11: Number = 54, Trend = IncreasePosition 4:
Draw 1: Number = 73, Trend =
Draw 2: Number = 5, Trend = Decrease
Draw 3: Number = 17, Trend = Increase
Draw 4: Number = 24, Trend = Increase
Draw 5: Number = 61, Trend = Increase
Draw 6: Number = 21, Trend = Decrease
Draw 7: Number = 5, Trend = Decrease
Draw 8: Number = 46, Trend = Increase
Draw 9: Number = 36, Trend = Decrease
Draw 10: Number = 58, Trend = Increase
Draw 11: Number = 1, Trend = DecreasePosition 5:
Draw 1: Number = 80, Trend =
Draw 2: Number = 30, Trend = Decrease
Draw 3: Number = 71, Trend = Increase
Draw 4: Number = 57, Trend = Decrease
Draw 5: Number = 8, Trend = Decrease
Draw 6: Number = 9, Trend = Increase
Draw 7: Number = 53, Trend = Increase
Draw 8: Number = 8, Trend = Decrease
Draw 9: Number = 38, Trend = Increase
Draw 10: Number = 44, Trend = Increase
Draw 11: Number = 78, Trend = IncreasePosition 6:
Draw 1: Number = 6, Trend =
Draw 2: Number = 51, Trend = Increase
Draw 3: Number = 39, Trend = Decrease
Draw 4: Number = 75, Trend = Increase
Draw 5: Number = 2, Trend = Decrease
Draw 6: Number = 27, Trend = Increase
Draw 7: Number = 28, Trend = Increase
Draw 8: Number = 14, Trend = Decrease
Draw 9: Number = 59, Trend = Increase
Draw 10: Number = 63, Trend = Increase
Draw 11: Number = 33, Trend = DecreaseCycles in Ascending Order
Position 1:
Draw 1: Number = 6, Trend =
Draw 2: Number = 5, Trend = Decrease
Draw 3: Number = 12, Trend = Increase
Draw 4: Number = 6, Trend = Decrease
Draw 5: Number = 2, Trend = Decrease
Draw 6: Number = 2, Trend = Stable
Draw 7: Number = 5, Trend = Increase
Draw 8: Number = 8, Trend = Increase
Draw 9: Number = 34, Trend = Increase
Draw 10: Number = 23, Trend = Decrease
Draw 11: Number = 1, Trend = DecreasePosition 2:
Draw 1: Number = 8, Trend =
Draw 2: Number = 10, Trend = Increase
Draw 3: Number = 15, Trend = Increase
Draw 4: Number = 24, Trend = Increase
Draw 5: Number = 8, Trend = Decrease
Draw 6: Number = 9, Trend = Increase
Draw 7: Number = 28, Trend = Increase
Draw 8: Number = 14, Trend = Decrease
Draw 9: Number = 35, Trend = Increase
Draw 10: Number = 36, Trend = Increase
Draw 11: Number = 8, Trend = DecreasePosition 3:
Draw 1: Number = 12, Trend =
Draw 2: Number = 24, Trend = Increase
Draw 3: Number = 17, Trend = Decrease
Draw 4: Number = 57, Trend = Increase
Draw 5: Number = 34, Trend = Decrease
Draw 6: Number = 21, Trend = Decrease
Draw 7: Number = 29, Trend = Increase
Draw 8: Number = 15, Trend = Decrease
Draw 9: Number = 36, Trend = Increase
Draw 10: Number = 44, Trend = Increase
Draw 11: Number = 33, Trend = DecreasePosition 4:
Draw 1: Number = 25, Trend =
Draw 2: Number = 30, Trend = Increase
Draw 3: Number = 39, Trend = Increase
Draw 4: Number = 61, Trend = Increase
Draw 5: Number = 49, Trend = Decrease
Draw 6: Number = 27, Trend = Decrease
Draw 7: Number = 33, Trend = Increase
Draw 8: Number = 46, Trend = Increase
Draw 9: Number = 38, Trend = Decrease
Draw 10: Number = 58, Trend = Increase
Draw 11: Number = 47, Trend = DecreasePosition 5:
Draw 1: Number = 73, Trend =
Draw 2: Number = 41, Trend = Decrease
Draw 3: Number = 71, Trend = Increase
Draw 4: Number = 71, Trend = Stable
Draw 5: Number = 54, Trend = Decrease
Draw 6: Number = 51, Trend = Decrease
Draw 7: Number = 39, Trend = Decrease
Draw 8: Number = 56, Trend = Increase
Draw 9: Number = 57, Trend = Increase
Draw 10: Number = 63, Trend = Increase
Draw 11: Number = 54, Trend = DecreasePosition 6:
Draw 1: Number = 80, Trend =
Draw 2: Number = 51, Trend = Decrease
Draw 3: Number = 76, Trend = Increase
Draw 4: Number = 75, Trend = Decrease
Draw 5: Number = 61, Trend = Decrease
Draw 6: Number = 69, Trend = Increase
Draw 7: Number = 53, Trend = Decrease
Draw 8: Number = 77, Trend = Increase
Draw 9: Number = 59, Trend = Decrease
Draw 10: Number = 80, Trend = Increase
Draw 11: Number = 78, Trend = Decrease -
Generally sorted order (ascending) results are easier to obtain. Think of sorted order like a processing step. In raw draw data, draw order can be anywhere, where sorted order creates boundaries... such that a 1 can only ever be in the first position. However, it is essentially trying to impose some sort of order on an otherwise chaotic system... the numbers will not know they have been sorted and will certainly not appear or skip based on that. That is why it is usually more interesting to work with pick n style games as the results are already posted as they were drawn.
You can see the difference in a spreadsheet by putting =(MODE(A1:A<last row of your data>) for each column. If you then do a =countif(A1:E<end row of your data>;<each number in the matrix>) you will notice that the most drawn numbers by sorted order position is decidedly different than the most drawn overall. (This assumes a 5 of x format, like the white balls in MM)
If you think that using sorted order data, which is the most readily available, gives you an advantage, then use that. However if you think the raw draw data gives you an advantage, then use that.
Have an EXCELlent day!
-
Quote: Originally posted by dr san on Nov 10, 2024
Analyzing the Increasing Arrangement of Numbers: An Intriguing Approach
Understanding the StrategyThe idea of analyzing the increasing arrangement of numbers in a lottery game is interesting and, in a way, intuitive. The premise is that, by identifying patterns in the order in which the numbers are drawn, we could find cycles or trends that allow us to make more accurate predictions.
How it Works in Practice:
Ordering: After each draw, the numbers are ordered in ascending order.
Position Analysis: For each position (first, second and third), it is verified whether there was an increase, decrease or if the number remained the same in relation to the previous draw.
Pattern Identification: When analyzing a large volume of data, the aim is to identify whether there is a tendency for the numbers to increase, decrease or remain stable in certain positions.
Creating the Filter: Based on the identified patterns, a filter is created that predicts the probability of a number increasing, decreasing or remaining the same in each position.
Example:Imagine that, after analyzing the last 100 draws, you noticed that the first position tends to be occupied by a larger number than the number that occupied that position in the previous draw. Based on this observation, you could create a filter that always chooses larger numbers for the first position.
I don't see where this approach can be of any help at all in selecting your numbers, but here are some results from OH Pick 3.
L = Next draw position is Lower than previous draw.
s = Next draw position is Same than previous draw.
H = Next draw position is HIgher than previous draw.***** Results from 8807 OH Pick 3 Midday draws. *****
P1 Went Lower 3948 times.
P1 Stays Same 893 times.
P1 Went Higher 3966 times.P2 Went Lower 3936 times.
P2 Stays Same 904 times.
P2 Went Higher 3967 times.P3 Went Lower 3957 times.
P3 Stays Same 926 times.
P3 Went Higher 3924 times.*Each position has a change of either [H]igher or [L]ower
HHL 820 times
LHL 814 times
HLH 809 times
LHH 807 times
HLL 804 times
LLH 793 times
HHH 766 times
LLL 752 times*One position remains the [S]ame
LLS 205 times
HSL 192 times
SLL 188 times
SHH 182 times
LSL 181 times
HHS 180 times
LSH 179 times
LHS 179 times
HSH 179 times
SLH 172 times
HLS 167 times
SHL 165 times*Two positions remain the [S]ame
SHS 54 times
HSS 49 times
SLS 46 times
SSL 41 times
LSS 38 times
SSH 37 times*Three positions remain the [S]ame
SSS 8 times
***** Results from 14957 OH Pick 3 Eve draws. *****P1 Went Lower 6758 times.
P1 Stays Same 1520 times.
P1 Went Higher 6679 times.P2 Went Lower 6699 times.
P2 Stays Same 1525 times.
P2 Went Higher 6733 times.P3 Went Lower 6767 times.
P3 Stays Same 1463 times.
P3 Went Higher 6727 times.*Each position has a change of either [H]igher or [L]ower
LLL 1393 times
LHL 1389 times
HHH 1383 times
HLL 1379 times
LLH 1361 times
LHH 1346 times
HHL 1320 times
HLH 1316 times*One position remains the [S]ame
SHH 333 times
HSH 323 times
LSH 320 times
SHL 318 times
LLS 309 times
HHS 306 times
LSL 301 times
SLL 295 times
HLS 295 times
HSL 292 times
LHS 278 times
SLH 278 times*Two positions remain the [S]ame
SSL 80 times
SLS 73 times
SSH 67 times
HSS 65 times
LSS 61 times
SHS 60 times*Three positions remain the [S]ame
SSS 16 times
Previous Eve Draw was 348. Here are the LSH results for 348 Eve;***** HHL 7 times
00256 Fri 09/26/1980 E 348
00257 Sat 09/27/1980 E 85300532 Sat 08/15/1981 E 348
00533 Mon 08/17/1981 E 78704369 Mon 11/29/1993 E 348
04370 Tue 11/30/1993 E 68005957 Thu 12/31/1998 E 348
05958 Fri 01/01/1999 E 66006376 Thu 05/04/2000 E 348
06377 Fri 05/05/2000 E 86707492 Mon 12/01/2003 E 348
07493 Tue 12/02/2003 E 65210029 Fri 05/13/2011 E 348
10030 Sat 05/14/2011 E 863***** HLL 6 times
01308 Thu 02/09/1984 E 348
01309 Fri 02/10/1984 E 70703023 Mon 08/07/1989 E 348
03024 Tue 08/08/1989 E 92304377 Wed 12/08/1993 E 348
04378 Thu 12/09/1993 E 81605600 Fri 11/07/1997 E 348
05601 Sat 11/08/1997 E 61308413 Sat 11/11/2006 E 348
08414 Mon 11/13/2006 E 91711167 Tue 06/24/2014 E 348
11168 Wed 06/25/2014 E 910***** LHL 2 times
05852 Sat 08/29/1998 E 348
05853 Mon 08/31/1998 E 18213842 Wed 10/20/2021 E 348
13843 Thu 10/21/2021 E 263***** LLL 1 time
05457 Sat 05/24/1997 E 348
05458 Mon 05/26/1997 E 017***** LHH 1 time
03727 Fri 11/08/1991 E 348
03728 Sat 11/09/1991 E 089***** SHL 1 time
04142 Tue 03/09/1993 E 348
04143 Wed 03/10/1993 E 395***** HLH 1 time
04077 Tue 12/22/1992 E 348
04078 Wed 12/23/1992 E 719***** HSH 1 time
00760 Mon 05/10/1982 E 348
00761 Tue 05/11/1982 E 649***** HHS 1 time
03918 Fri 06/19/1992 E 348
03919 Sat 06/20/1992 E 598***** HHH 1 times
00969 Mon 01/10/1983 E 348
00970 Tue 01/11/1983 E 869What goes around comes around.
