• IP addresses are NOT logged in this forum so there's no point asking. Please note that this forum is full of homophobes, racists, lunatics, schizophrenics & absolute nut jobs with a smattering of geniuses, Chinese chauvinists, Moderate Muslims and last but not least a couple of "know-it-alls" constantly sprouting their dubious wisdom. If you believe that content generated by unsavory characters might cause you offense PLEASE LEAVE NOW! Sammyboy Admin and Staff are not responsible for your hurt feelings should you choose to read any of the content here.

    The OTHER forum is HERE so please stop asking.

Need Advice. How to win TOTO/LOTO 649

Lotto Max 20 July Draw
12 15 16 19 23 31 32
01 09 27 28 29 36 48
01 12 18 22 36 37 49
Extra 3147277
 
Lotto 649 21 July 2021 Draw
04 14 19 20 43 46
10 14 27 29 47 49
Extra
2964898
1357416
Guaranteed prize draw
39929906-01
39928910-01
 
If I win $5m.

I will buy $1m worth of high yield dividend stocks according to the portfolio recommendation from Adriano from the Passive Income investing site. It will give me about $10k a month in monthly dividends. This will more than take care of my monthly income requirements and still have savings. I can stop work.

Another $1m I will set aside to slowly buy into dividend aristocrats like BMO, TD Bank, CIBC, RBC, BNS, ENB, TC. Probably about $10,000 a month.

The remainder $3m I will set up a family trust fund investing into GICs for my children.

Change my life? For sure man.

How will doing the above change your life? Will it give you a sense of self worth, a clarity of purpose and a set of guiding principles upon which to lead a meaningful existence?
 
How will doing the above change your life? Will it give you a sense of self worth, a clarity of purpose and a set of guiding principles upon which to lead a meaningful existence?
Yes it will.

For one I will be free to truly think about and choose what I want to do with my time.

What I choose to do will no longer impact on the financial health of the family. So I am free to finally decide.

My current purpose in life would be fulfilled - it is to provide for the family.

I would choose to find things that i enjoy and want to do.

This stuff about doing "meaningful" things. Aiyah fuck it man.

What the fuck is meaningful? In the end we all work because we have to. Have to pay the bills. Save and invest for retirement hoping dont have to work till die. Often choose whatever gives most money fastest to achieve that goal of retirement.

Sure it helps if you like your work. It is torture if you hate your work (that's me).

So $5m will be fantastic.

Actually $2m also can.
 
Last edited:
Bro,
I’ve been watching over a special set of numbers over 40 years, yet I win more using QuickPicks. Does Lotto allow randomly picked numbers by the computers?
 
I have never bought 3 lotto tickets in my whole life and won $1000 so I am ahead of the game.
 
Bro,
I’ve been watching over a special set of numbers over 40 years, yet I win more using QuickPicks. Does Lotto allow randomly picked numbers by the computers?
Yes. Quick picks. I been buying quick picks.

The closest i ever won was TOTO. I had 5 numbers out of 6. And the number i missed was 15. Mine was 5. So missee by a digit 1. I think the top prize for that draw was $2.2m. That was before i migrated to Canada.

That time i said aiyah.....if win then sure can go Canada liao. Haha.
 
I have never bought 3 lotto tickets in my whole life and won $1000 so I am ahead of the game.
I didnt buy so much lottery during the years that I was not a doctor.

I guess I see lottery as my escape route from medicine.
 
ah lian got 1 firm got develop 1 apps dat generate toto, 4d numbers ...
 
Random Number Information

(Click to generate some Random Numbers)
The Nature of Randomness

Certain natural events are believed (by most physicists) to be completely random. An often-quoted example of such an event is the spontaneous decay of a radioactive atom: there is no way that one can predict the time when such an event will occur, and so the time between two consecutive clicks on a Geiger counter is to all intents and purposes truly random.

The randomness of other, more everyday, events may be harder to determine. Take the example of flipping a coin. It is generally accepted that the result - heads or tails - is random, but what would happen if the coin was poorly flipped so that it is possible to watch it spinning in the air? If we knew the initial orientation of the coin then we could count the number of times it turned before being caught, and so we could predict the outcome of the flip. We would no longer call it a random event. If we had fast enough reflexes then perhaps we could watch any coin-flip and predict the outcome accurately - certainly it's possible to imagine a machine which could do something like this.

So, is flipping a coin a random event? It really depends on the definition of the word 'random'. If we take it to mean that the outcome is theoretically unpredictable then no, the coin flip is not random. But in the real world it is practically impossible to predict the outcome of a good flip, so in that respect we can call it a random event.
Lotteries and Butterflies

Similarly the tumbling balls inside a Lotto machine all obey the laws of physics so in theory it should be possible to predict the lottery numbers given the initial starting positions of all the balls and a precise description of their physical properties. But in practice we can never know these values with sufficient accuracy, and even a tiny discrepancy in the initial conditions will lead to a huge variation in the outcome - making it impossible to predict the lottery numbers that will be drawn by the machine. In the field of weather forecasting this potential for a massive change in outcome for a miniscule difference in the starting conditions is often known as the 'butterfly effect', from the observation that a butterfly flapping its wings in South America might ultimately alter the course of a storm in Florida!
Chaos out of Order
Often it is very useful to have a computer generate a series of random numbers - they can be used to test the behavior of computer simulations, or to create unpredictable events (such as the motion of an enemy in a game). However a computer is an inherently predictable machine, so how can it be used to generate random numbers? The solution is to produce numbers which are predictable to the computer, but which behave as though they were random - rather like the coin-flipping experiment.

Typically one of the required characteristics of a random number generator is that all numbers within a given range are equally likely. This behavior could be achieved if we listed all the numbers in the range, then shuffled the list and returned the numbers in the new sequence. Each number would be guaranteed to appear exactly once, so all would be equally likely, and if the shuffling was performed well enough then it would be practically impossible to predict one number from the next.

It turns out that there are certain relatively simple mathematical operations which will effectively step through all the numbers in certain ranges in a 'shuffled' order, visiting each number exactly once. Such sequences of numbers are sometimes called 'pseudo-random', since the sequence is in fact predictable but has many characteristics in common with a truly random sequence.
An Example - the LCG

The family of formulae most commonly used to generate pseudo-random numbers are known as 'Linear Congruential Generators' (LCGs). These have the property that each number in the sequence is derived from the previous one by multiplying it by a suitable number a, adding an offset b, and taking the result modulo n. (Modulo n means the remainder after dividing by n. For values of n which are a power of 2, this is a very easy operation for computers.) Let's take an example, using a=4, b=5, and n=9. Then if we start with the number 0, our second number is:
(0 x 4) + 5 modulo 9 = 5.
The third number is:
(5 x 4) + 5 modulo 9 = 7 (because 20+5=25, and 25/9 is 2 remainder 7)
The fourth number is:
(7 x 4) + 5 modulo 9 = 6

The complete sequence is:
0, 5, 7, 6, 2, 4, 3, 8, 1, 0, 5, 7, 6...
We can see that this sequence works through all the numbers from 0 to 8, in its particular shuffled order, before repeating.

Not all choices of a, b and n produce sequences which include all the values from 0 to n - there is an art to choosing suitable values. Try manually calculating the sequence using a=5, b=3, and n=9 - you will find there are four distinct 'sub-sequences' generated, depending on the starting value.

Using a bigger value of n will make it possible to produce sequences that run for longer before repeating - although the corresponding a and b values need to be chosen carefully in order to produce maximal length sequences.

A feature of LCGs is that the lower (rightmost) digits tend to be 'less random' than the higher digits. To avoid this problem, it is good practice to use only the higher digits of the generated values, since there will then be less correlation between successive values.
In Use

Typical values used in a 'real' LCG are:
a=1664525, b=1013904223, n=232=4294967296
which cycles through all possible 32-bit numbers, and has the advantage that the modulo operation happens automatically on most computers. The first few values in this sequence are:
1013904223, 3442648290, 4022689497, 1349532260,
3173630579, 2017633590, 132832029, 2625544664

It can be seen that these numbers alternate - odd, even, odd, even, odd... - which is an example of the non-randomness of the lower digits. Using higher digits from these numbers would remove this pattern.

There are many refinements to the LCG - for example a variant which stores the last few values and returns them in a shuffled order, or another variant which combines two LCGs with different repeat periods to produce a third sequence with a much longer period than either of the original sequences. There are also other pseudo-random generators based on shift registers, which are useful for producing a stream of single binary random 'bits'. However the LCG is by far the most popular method for generating pseudo-random sequences and is found in virtually all computer languages.
 
If you want to win ToTo/Lottery...just join PAP politics in Singapore and become a minister.

Same winnings...and also donch have to work for it.
 
Bro,
I’ve been watching over a special set of numbers over 40 years, yet I win more using QuickPicks. Does Lotto allow randomly picked numbers by the computers?

Senor

My method is counting sheep to sleep
Example last number before I fell asleep is 2345
So I note the last two digits 45
And so on

ALLTOGETHER NOW, HUAT AH
 
Senor

Many Won but lost in the end

Quote :
Believe it or not, statistics show 70% of lottery winners end up broke and a third go on to declare bankruptcy, according to the National Endowment for Financial Education. Runaway spending, toxic investments and poor accounting can burn through a lucrative windfall in next to no time. From rags to riches then back to rags again, click or scroll through to see the 27 unlucky lottery winners who found this out the hard way.
 
If you want to win ToTo/Lottery...just join PAP politics in Singapore and become a minister.

Same winnings...and also donch have to work for it.
I regret now lor.

Last time they invited me to kopi. I said not interested in politics.
 
gov already give you tip what nos to buy and will come out.you never catch it.
2 persons
5 persons
8 persons
2
5
8 again
buy 2 5 8 25 and 3
 
Back
Top