Lotto Forums
Click Here For Your Free Lottery Report

Go Back   Lotto Forums > Lotto Forums Players Toolbox > Lotto Tips & Strategies

Lotto Tips & Strategies Methods and Systems for Winning the Jackpot.

Reply
 
Thread Tools Display Modes
  #16  
Old 11-07-2008, 12:10 PM
fourwayflashers fourwayflashers is offline
Registered User
 
Join Date: Jan 2006
Posts: 2
Using Excel,

would it be easy to go through the master list of 13 million combinations and pick out the lines that contain a certian number? (Ex all lines that have the number 13?)
Reply With Quote
  #17  
Old 11-07-2008, 05:14 PM
GillesD's Avatar
GillesD GillesD is offline
Registered User
 
Join Date: Oct 1999
Location: Montréal
Posts: 715
Cycling through all combinations

Quote:
Originally Posted by fourwayflashers
Using Excel, would it be easy to go through the master list of 13 million combinations and pick out the lines that contain a certian number? (Ex all lines that have the number 13?)

Yes, very easy, the following macro cycles through all 13,983,816 combinations:

Option Explicit

Dim A As Integer, B As Integer, C As Integer
Dim D As Integer, E As Integer, F As Integer

Sub Cycle_All()
' Go through all possible combinations
For A = 1 To 44
For B = A + 1 To 45
For C = B + 1 To 46
For D = C + 1 To 47
For E = D + 1 To 48
For F = E + 1 To 49
' Insert statements to do whatever you want on each combination
...
Next F
Next E
Next D
Next C
Next B
Next A
End Sub

You then have to insert statements at the place indicated to evaluate each combination and take appropriate action.

If you want to find how many combinations have the number 13 as one of the 6 numbers, then:
- declare a variable to store the number of combinations such as "Dim N as Double" (it has to be declared as DOUBLE in case there are more than 32,767 combinations) at the top with other declarations
- set the variable N to 0 with the line "N=0" at the top of the macro
- then add the line "If A = 13 Or B = 13 Or C = 13 Or D = 13 Or E = 13 Or F = 13 Then N = N + 1" where indicated
- the last line of the macro (before the End Sub statement) could something like "Range("A1").Value=N" to display the value obtained in cell A1.

And by the way, there are only 1,712,304 combinations with the number 13 in it.
Reply With Quote
  #18  
Old 02-01-2009, 12:52 AM
hopefull hopefull is offline
Registered User
 
Join Date: Feb 2008
Posts: 210
I like the number 13,and I like numerical order even better.
12-Nov-1983 . 01 02 07 13 22 31
05-Feb-1994 .01 02 13 17 31 41
24-Dec-1983 .01 02 13 21 42 48
22-Feb-1997 .01 03 07 13 39 46
12-Jun-1993 .01 03 13 21 32 45
12-Aug-1987 .01 04 13 16 30 31
30-May-1998 .01 05 12 13 16 21
27-Jul-2002 .01 05 13 22 28 43
30-Jan-1993 .01 06 13 14 19 34
03-Sep-1983 .01 06 13 15 22 27
25-Dec-1993 .01 07 13 24 40 46
12-Jan-2002 .01 07 13 30 34 36
23-Oct-2004 .01 08 13 24 27 43
16-Jul-1988 .01 08 13 28 31 44
15-Jan-1986 .01 10 13 19 25 33
31-Mar-2001 .01 12 13 28 32 44
04-Jan-1989 .01 13 14 45 46 48
30-Dec-1987 .01 13 17 18 45 48
30-Jan-1991 .01 13 17 23 30 40
24-Mar-2007 .01 13 19 26 32 46
14-Nov-1987 .01 13 19 32 33 38
20-Sep-1989 .01 13 21 31 36 48
12-Jan-2005 .01 13 21 34 36 42
12-Apr-2008 .01 13 23 35 38 42
17-May-2000 .01 13 23 36 37 48
20-Oct-2004 . 02 03 13 14 31 36
13-Sep-1995 . 02 03 13 16 22 48
20-Jun-2001 . 02 03 13 17 23 32
21-Sep-1996 . 02 03 13 17 23 42
22-Dec-1990 . 02 03 13 26 36 38
07-Sep-1994 . 02 03 13 27 30 49
28-Jun-1989 . 02 04 13 16 17 40
07-Sep-1988 . 02 05 13 23 35 45
01-Aug-1990 . 02 08 13 23 27 44
30-Apr-1986 . 02 09 13 18 20 29
17-Oct-1992 . 02 13 15 24 33 35
15-Oct-1988 . 02 13 27 29 35 38
25-May-1988 . 02 13 28 40 41 43
07-May-1983 . 02 13 41 42 44 47.
this was just a tiny example.
on my home computer, I am sorting all previously drawn combinations in a numerical order to see where the hits are congregating the most.yes statistics.
Reply With Quote
  #19  
Old 02-02-2009, 04:27 AM
GillesD's Avatar
GillesD GillesD is offline
Registered User
 
Join Date: Oct 1999
Location: Montréal
Posts: 715
Numerical order

Using the lexographic value as the index key and you will find even more quickly that

- lowest set is #883, on 08/07/92 with 01, 02, 03, 04, 13 and 48;

- highest set is #1748 on 21/10/00 with 38, 43, 44, 45, 46 and 47
Reply With Quote
  #20  
Old 02-28-2009, 12:18 AM
Flexalong's Avatar
Flexalong Flexalong is offline
Registered User
 
Join Date: Aug 2006
Location: Malaysia
Posts: 113
Hi GilesD,

I would like to seek your help on this. I would like to remove combinations with numbers that multiply to make a third number in them for example 1 6 8 48 50 52 has 6 x 8 = 48.

In this case I won't be removing combinations from all possible combinations but just a group of maybe thousand plus combinations.

Hope you can help me with an excel macro or formulas for this.

Thanks in advance.
Reply With Quote
  #21  
Old 02-28-2009, 11:25 PM
GillesD's Avatar
GillesD GillesD is offline
Registered User
 
Join Date: Oct 1999
Location: Montréal
Posts: 715
Sum of numbers

You are right, Flexalong, there are many ways to achieve this, macro or formulas. I will give you a formula-based solution that gives you some flexibility to see where the number that adds up to two other is.

Let's assume your data has draw # in column A and the winning numbers in columns B to G (in increasing order).

- If you want to see if the third number (column D) is the sum of the first two, then in cell H2, you could put the formula =IF(B2+C2=D2,1,0) to give you a 1 if it is the sum of the first two numbers and a 0 if it is not.

- If you want to see if the fourth number (column E) is the sum of any of the first two, then in cell I2, you could put the formula =IF(OR(B2+C2=E2,B2+D2=E2,C2+D2=E2),1,0) to give you a 1 if it is the sum of the two of the first three numbers and a 0 if it is not.

You can continue like this for the fifth or sixth number, although the OR(...) condition will get longer and longer.

Then you can delete lines where you get a 1 in one of the columns (H to K) depending on which condition you want to eliminate a line.
Reply With Quote
  #22  
Old 03-01-2009, 03:54 AM
Flexalong's Avatar
Flexalong Flexalong is offline
Registered User
 
Join Date: Aug 2006
Location: Malaysia
Posts: 113
Quote:
Originally Posted by GillesD
You are right, Flexalong, there are many ways to achieve this, macro or formulas. I will give you a formula-based solution that gives you some flexibility to see where the number that adds up to two other is.

Let's assume your data has draw # in column A and the winning numbers in columns B to G (in increasing order).

- If you want to see if the third number (column D) is the sum of the first two, then in cell H2, you could put the formula =IF(B2+C2=D2,1,0) to give you a 1 if it is the sum of the first two numbers and a 0 if it is not.

- If you want to see if the fourth number (column E) is the sum of any of the first two, then in cell I2, you could put the formula =IF(OR(B2+C2=E2,B2+D2=E2,C2+D2=E2),1,0) to give you a 1 if it is the sum of the two of the first three numbers and a 0 if it is not.

You can continue like this for the fifth or sixth number, although the OR(...) condition will get longer and longer.

Then you can delete lines where you get a 1 in one of the columns (H to K) depending on which condition you want to eliminate a line.

Very long condition indeed, thanks GilesD.
Reply With Quote
  #23  
Old 03-01-2009, 11:37 PM
CMF's Avatar
CMF CMF is offline
Registered User
 
Join Date: Dec 2003
Location: Sydney, Australia
Posts: 170
FlexAlong

Before coding it's a good idea to set out what you're trying to do in pseudo-code or logical every day language.

My understanding is that from the six integers in numerical order you want to eliminate any combination where the product of any two integers equals a following integer. This means you really have a problem with the integer 1 and I can't for the life of me figure out how it has so offended you! Closely following this is integer 2 which when multiplied by up to 24 is less than 49 and so on.

Setting aside your reasoning for wanting to do this the exercise intrigued me. I work it out that the combinations left will be 702,878.

My suggestion for doing things like this is to download a free copy of Visual Basic Express and print out to a console or message box. You can use it as a calculator only if you want to without getting in to more sophisticated coding. Also you can still use the debug window in VB8 and I have to admit for something rough and ready I still use the debug window in my old copy of Access 2000.

Regards
Colin Fairbrother
Reply With Quote
  #24  
Old 03-02-2009, 12:07 AM
CMF's Avatar
CMF CMF is offline
Registered User
 
Join Date: Dec 2003
Location: Sydney, Australia
Posts: 170
Correction:

Combinations left: 13,280,938
Combinations eliminated: 702,878

Colin Fairbrother
Reply With Quote
  #25  
Old 03-02-2009, 12:41 AM
Flexalong's Avatar
Flexalong Flexalong is offline
Registered User
 
Join Date: Aug 2006
Location: Malaysia
Posts: 113
Quote:
Originally Posted by CMF
FlexAlong

Before coding it's a good idea to set out what you're trying to do in pseudo-code or logical every day language.

My understanding is that from the six integers in numerical order you want to eliminate any combination where the product of any two integers equals a following integer. This means you really have a problem with the integer 1 and I can't for the life of me figure out how it has so offended you! Closely following this is integer 2 which when multiplied by up to 24 is less than 49 and so on.

Setting aside your reasoning for wanting to do this the exercise intrigued me. I work it out that the combinations left will be 702,878.

My suggestion for doing things like this is to download a free copy of Visual Basic Express and print out to a console or message box. You can use it as a calculator only if you want to without getting in to more sophisticated coding. Also you can still use the debug window in VB8 and I have to admit for something rough and ready I still use the debug window in my old copy of Access 2000.

Regards
Colin Fairbrother

Hi Colin,

Maybe I am not thinking this deep enough but why would I have a problem? From my analysis of my lottery, past 281 draws only have 10 such combinations where the product of 2 numbers equal a third number in a combination.
Reply With Quote
  #26  
Old 03-02-2009, 07:16 PM
CMF's Avatar
CMF CMF is offline
Registered User
 
Join Date: Dec 2003
Location: Sydney, Australia
Posts: 170
Flexalong

Point conceded.

At first glance it would appear that the lower integers are being favored especially with 06 08 46 47 48 49 being the last combination in your 702,878 combinations eliminated for a lexicographic enumeration.

At the outset each integer appears 1,712,304 times in the 13,983,816 combinations. There are 47,397 combinations eliminated with the integer 1 and the same applies to integer 49. There will be overlaps.

However, I still scratch my head and wonder at what you have achieved by reducing the possibilities, in your way of looking at things, to 13,280,938. In my mind at every draw the possibilities are 13,983,816. For that not to be so there would have to be a predictable bias. In any case even if you thought there was a bias it still has to be useful. A 5% percent elimination from 13,983,816 possibilities is simply not enough.

Regards
Colin Fairbrother
Reply With Quote
  #27  
Old 03-08-2009, 12:11 PM
newb2 newb2 is offline
Registered User
 
Join Date: Mar 2008
Posts: 27
You should also keep in mind that as you delete groups of lines you may be deleting potential 3, 4 or 5 number hits. You may end up with 10,000 lines with one line hitting the jackpot but the other 9,999 lines will win you absolutely nothing. This is an extreme example but removing large numbers of lines also reduces the chances of winning anything.
Reply With Quote
Reply


Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is Off
HTML code is Off
Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
4/4 win tonight robertlanglois Keno 26 07-22-2008 06:30 AM
What's your KENO strategy? gmac78 Keno 375 11-01-2007 11:50 PM
Side By Side Stratedgy fullhouse Lotto Tips & Strategies 185 06-02-2006 08:59 PM
Predicting/Using Width of Line Beaker Lotto Tips & Strategies 24 07-22-2003 03:17 PM
May 28 Piks Sheba Lotto 649 44 05-29-2003 11:19 AM


All times are GMT -5. The time now is 07:48 PM.

Silver Lotto System
Silver Lotto System

 

Lottery Circle Manual

 


Powered by vBulletin
Copyright © 2000 - 2012 Jelsoft Enterprises Ltd.
Copyright © 1999 - 2012 LottoForums.com