The Altera Centauri collection has been brought up to date by Darsnan. It comprises every decent scenario he's been able to find anywhere on the web, going back over 20 years.
25 themes/skins/styles are now available to members. Check the select drop-down at the bottom-left of each page.
Call To Power 2 Cradle 3+ mod in progress: https://apolyton.net/forum/other-games/call-to-power-2/ctp2-creation/9437883-making-cradle-3-fully-compatible-with-the-apolyton-edition
You won't reproduce so your obviously inferior genes won't be recircuclated, so you'll be spared.
"Beware of the man who works hard to learn something, learns it, and finds himself no wiser than before. He is full of murderous resentment of people who are ignorant without having come by their ignorance the hard way. "
-Bokonon
Good thinking, please report to the gas chamber tomorrow.
"Beware of the man who works hard to learn something, learns it, and finds himself no wiser than before. He is full of murderous resentment of people who are ignorant without having come by their ignorance the hard way. "
-Bokonon
I didn't want to take Calc242 as my math req., which I had placed into with that test during orientation, so I decided to take Math114. I'm a Hist/Poly Sci major, so it didn't need to be anything really great...just a math class. Math114 is Basic College Math and Statistics.
He was trying to explain normal distribution curves and standard deviation, and it took him the whole damn class. I understood the material as he was drawing it, and it took 50 minutes to explain it because people just weren't getting it. Unreal. I almost wish I had taken the higher course.
Oh, and then during a game of monopoly one of my (slower...) friends was trying to argue that it was best to build houses on orange because "it gets landed on more than any other set" to which we all tried to explain to him that it had the same probability as every other set (minus the ones that only have two tiles), to which he said "yeah, but it still gets landed on more"
Needless to say, he lost quite badly as usual.
"Chegitz, still angry about the fall of the Soviet Union in 1991?
You provide no source. You PROVIDE NOTHING! And yet you want to destroy capitalism.. you criminal..." - Fez
"I was hoping for a Communist utopia that would last forever." - Imran Siddiqui
Not entirely true, orange. If starting position was chosen randomly and there were no Chance or Community Chest cards, you'd be correct. However, the fact that you always start in one spot does skew Monopoly a bit, as do (obviously) cards that say things like "Go to St. James Place." Consider that Mediterranean & Baltic Ave. are screwed over anyway not just because they have only 2 slots, but because you're less likely to hit them in your initial pass around the board. Not that this matters much, considering that the first pass around the board- when the probabilities are most skewed- is also when nobody owns anything, and therefore arguments about what to buy become more moot.
All syllogisms have three parts.
Therefore this is not a syllogism.
I play with the rule that you can buy properties from the start. Which was advantageous one game where all the players rolled exactly the same, giving the person who went first quite the advantage.
The jail and the "go to jail" square also help skew probabilities a bit too.
I'm building a wagon! On some other part of the internets, obviously (but not that other site).
Ignoring the initial skew caused by the start location (which will become insignificant by the time people are buying large numbers of houses), the greatest nonrandom effect will be from the jail. Certainly, there are cards that advance people to mayfair, king's cross station, etc, but there are also cards that send people to jail, plus the 'go to jail' square, plus the three-doubles rule.
So, people will quite often be starting off from jail, moving the distance shown on two dice. The most likely result from rolling two dice is seven, and the other likely results are clustered around that value. On the board, moving that distance onwards from jail corresponds roughly to the orange set. So, the friend was right.
The probability of rolling at least one six on n dice is:
1 - (probability of not rolling any sixes on n dice)
The chance of not rolling a six on one dice is 5/6, so the chance of not rolling any sixes on n dice is (5/6)^n. So, the expression given above is:
1 - (5/6)^n
Or, for n = 3, 42%.
A more difficult class of problem involves rolling a dice a certain number of times, and then asking what the probability is of the dice being biased. It's possible to solve, but only if you knew the probability that it was biased before you collected any further data. For example, a simpler problem of the same type:
A bag contains a normal coin and a two-headed coin. You take a coin out, without looking at it, and toss it. It comes up heads. You pick it up, without looking at the reverse side, and toss it again. It comes up heads. You repeat this until it has come up heads a total of n times. What is the probability that it is the two-headed coin?
Pseudo-random number generators are quite easy to write. Here is one for example (sorry its in FORTRAN77):
FUNCTION RAN1(I)
C-----------------------------------------------------------------------
C MAIN RANDOM NUMBER GENERATOR
C USES METHOD OF l'Ecuyer, (VIA F.JAMES, COMP PHYS COMM 60(1990)329)
C-----------------------------------------------------------------------
IMPLICIT NONE
DOUBLE PRECISION RAN1,HWRSET,HWRGET
INTEGER I,ISEED(2),K,IZ,JSEED(2)
SAVE ISEED
DATA ISEED/12345,67890/
K=ISEED(1)/53668
ISEED(1)=40014*(ISEED(1)-K*53668)-K*12211
IF (ISEED(1).LT.0) ISEED(1)=ISEED(1)+2147483563
K=ISEED(2)/52774
ISEED(2)=40692*(ISEED(2)-K*52774)-K*3791
IF (ISEED(2).LT.0) ISEED(2)=ISEED(2)+2147483399
IZ=ISEED(1)-ISEED(2)
IF (IZ.LT.1) IZ=IZ+2147483562
RAN1=DBLE(IZ)*4.656613001013252D-10
RETURN
Writing a true random numbe generator is, of course, impossible.
Human beings really weren't designed for probability and statistics. We work too much on hunches and instincts. Doctors do notoriously bad on statistic tests.
Think of it this way. Someone flips a coin 9 times, and it lands on heads each time. What would you bet the next outcome would be? Heads, obviously. 9 times out of 10! That's not right! Barnhouse Effect! Providing that there was no cheating or telekinesis, then most people would bet on tails under the assumption that it's got to come up eventually.
“As a lifelong member of the Columbia Business School community, I adhere to the principles of truth, integrity, and respect. I will not lie, cheat, steal, or tolerate those who do.”
"Capitalism ho!"
Yes Orange, computer simulations proved not long ago taht Kentucky is the most landed on property in a game of Monopoly, not long ago.
Although your basic argument is correct, the difference in probability is very thin between each, but the effects that teleport you affect it a bit, as the starting position but almost imperceptibly. The oranges ARE often landed upon while coming out of prison which is the most landed on space so he wasnt totally wrong...
Originally posted by LulThyme
Yes Orange, computer simulations proved not long ago taht Kentucky is the most landed on property in a game of Monopoly, not long ago.
Although your basic argument is correct, the difference in probability is very thin between each, but the effects that teleport you affect it a bit, as the starting position but almost imperceptibly. The oranges ARE often landed upon while coming out of prison which is the most landed on space so he wasnt totally wrong...
You need to get laid.
A lot of Republicans are not racist, but a lot of racists are Republican.
Comment