Get VIP membership and remove the ads, create a chat forum signature and much more!

Just Chat
  • Members: Log in here

Menu

  • Join Just Chat
  • Chat rooms
    • Chat forum one
    • Chat forum two
    • Chat forum three
    • Members only chat
    • Quiz room
    • Our Chat Guides
  • Message boards
  • Our members
    • Recent activity
  • Blog

wannabefatcat

Profile picture of wannabefatcat

@wannabefatcat

active 8 years ago
  • Activity
  • Profile
  • Friends 2
  • Forums
  • Personal
  • Mentions
  • Favourites
  • Friends
  • Profile picture of draculina

    draculina replied to the topic Basic IQ / Maths question in the forum Chat forum three boards 7 years, 10 months ago

    The Open University is the only (fully) public university in the UK. It has lower tution fees than the (semi) private universities, but it’s main feature is that it is primarily a distance learning platform.

    No university will accept applicants with only secondary school qualifications, they must first gain A-Level qualifications after two…[Read more]

  • Profile picture of draculina

    draculina replied to the topic Basic IQ / Maths question in the forum Chat forum three boards 7 years, 10 months ago

    The simulation can be run with any number of doors, I provided the results when there are 3 doors also. Read my response more carefully, lol.

    The typical definition of the Monte Hall problem is that all doors except one (excluding the door previously chosen) are opened.

     

  • Profile picture of draculina

    draculina replied to the topic Basic IQ / Maths question in the forum Chat forum three boards 7 years, 10 months ago

    Why do you say that?

    When the alternate door is offered, 98 of the 99 goat doors are removed from the selection.

    The original choice has 1/100 (1%) chance of being the car, therefore the one remaining door must have a 99/100 (99%) chance of being the car.

  • Profile picture of draculina

    draculina replied to the topic Basic IQ / Maths question in the forum Chat forum three boards 7 years, 10 months ago

    Read what I wrote again :wacko:

     

  • Profile picture of draculina

    draculina replied to the topic Basic IQ / Maths question in the forum Chat forum three boards 7 years, 10 months ago

    Read what I wrote gain :wacko:

     

  • Profile picture of draculina

    draculina replied to the topic Basic IQ / Maths question in the forum Chat forum three boards 7 years, 10 months ago

    A quick search shows that Cambridge offers a masters in ‘film studies’, this isn’t something that is limited only to ex-polytechnics.

    I did my bachelors degree with Open University, which in practice doesn’t have any entry requirements at all. It was still a fairly comprehnsive and challenging course however.

  • Profile picture of draculina

    draculina replied to the topic Basic IQ / Maths question in the forum Chat forum three boards 7 years, 10 months ago

    Running the simulation with 3 doors staying with the initial door gives ~33% chance of winning, switiching doors gives a ~77% chance of winning.

    If you run the simulation with 100 doors  instead, staying with the initial door gives ~1% chance of winning, switiching doors gives a ~99% chance of winning.

  • Profile picture of draculina

    draculina replied to the topic Basic IQ / Maths question in the forum Chat forum three boards 7 years, 10 months ago

    Running the simulation with 3 doors gives ~33% chance of winning, switiching doors gives a ~77% chance of winning.

  • Profile picture of draculina

    draculina replied to the topic Basic IQ / Maths question in the forum Chat forum three boards 7 years, 10 months ago

    This is why you shouldn’t rely on memory, and analyse things properly every time. :wacko:

  • Profile picture of draculina

    draculina replied to the topic Basic IQ / Maths question in the forum Chat forum three boards 7 years, 10 months ago

    I made a slight mistake in the progam, where if you initially select the car, it can give you the same door you selected as the option to swap to. I haved fixed it here :

    public class MontyHall
    {
    public static float calculateProbability(int doors, boolean swap)
    {
    Random rand = new Random();
    int repeats = 1000;

    int wins = 0;
    for(int i = 0; i <=…[Read more]

  • Profile picture of draculina

    draculina replied to the topic Basic IQ / Maths question in the forum Chat forum three boards 7 years, 10 months ago

    I made a slight mistake in the progam, which shouldn’t effect the probabilities much, but I haved fixed it here :

    public class MontyHall
    {
    public static float calculateProbability(int doors, boolean swap)
    {
    Random rand = new Random();
    int repeats = 1000;

    int wins = 0;
    for(int i = 0; i <= repeats; i++) {
    // Place the car behind a random…[Read more]

  • Profile picture of draculina

    draculina replied to the topic Basic IQ / Maths question in the forum Chat forum three boards 7 years, 10 months ago

    I made a slight mistake in the progam, which shouldn’t effect the probabilities much, but I haved fixed it here :

    public class MontyHall
    {
    public static float calculateProbability(int doors, boolean swap)
    {
    Random rand = new Random();
    int repeats = 1000;

    int wins = 0;
    for(int i = 0; i <= repeats; i++) {
    // Place the car behind a random…[Read more]

  • Profile picture of draculina

    draculina replied to the topic Basic IQ / Maths question in the forum Chat forum three boards 7 years, 10 months ago

    Turns out I recalled the solution inncorectly. I wrote a simulation to test the problem, swapping doors idoes mprove your chances of winnining.

    Copy the following text into https://www.compilejava.net/ to run the program in your browser

    import java.util.Random;

    public class MontyHall
    {
    public static float calculateProbability(int doors, boolean…[Read more]

  • Profile picture of draculina

    draculina replied to the topic Basic IQ / Maths question in the forum Chat forum three boards 7 years, 10 months ago

    Turns out I was wrong, I wrote a simulation and it does improve your probablity of winning.

    Copy the following text into https://www.compilejava.net/ to run the program in your browser

    import java.util.Random;

    public class MontyHall
    {
    public static float calculateProbability(int doors, boolean swap)
    {
    Random rand = new Random();
    int repeats =…[Read more]

  • Profile picture of draculina

    draculina replied to the topic Basic IQ / Maths question in the forum Chat forum three boards 7 years, 10 months ago

    Switching doors doesn’t statistically improve your chances of winning the car, the Monty Hall problem is a good example of how raw probabilities can be misleading.

    The easiest way to demonstrate this would be to write two computer programs that randomly select doors. The first program always switches doors, the other will always keep it’s door.…[Read more]

  • Profile picture of draculina

    draculina replied to the topic Basic IQ / Maths question in the forum Chat forum three boards 7 years, 10 months ago

    Switching doors doesn’t statistically improve your chances of winning the car, the Monty Hall problem is a good example of how raw probabilities can be misleading.

     

    The easiest way to demonstrate this would be to write two computer programs that randomly select doors. The first program always switches doors, the other will always keep it’s…[Read more]

  • Profile picture of draculina

    draculina replied to the topic Basic IQ / Maths question in the forum Chat forum three boards 7 years, 10 months ago

    I’m not sure how much I agree with this. From my experience most people who go to university are of average or below average intelligence. And if they already had knowledge then there is no purpose in them attending a university course.

    There are still people who believe that today.

  • Profile picture of draculina

    draculina replied to the topic Basic IQ / Maths question in the forum Chat forum three boards 7 years, 10 months ago

    B-)

  • Profile picture

    Sairs73 changed their profile picture 7 years, 10 months ago

  • Profile picture

    Sairs73 changed their profile picture 7 years, 10 months ago

  • Load More

Enjoy Just Chat? Spread the word!

  • Tweet

News and updates

  • Scheduled chat forum downtime 9 May, 2018
  • Season’s greetings! 24 December, 2017
  • An important update to the site rules 7 July, 2017
  • The new chat forum three — lift off! 12 April, 2017
  • And another year rolls around… 23 December, 2016

Active discussions

  • Before JC
    3 days, 14 hours ago
  • QUIZ ROOM LEAGUE TABLE 2025
    1 week, 6 days ago
  • Divine intervention
    1 month ago
  • How come
    2 months, 1 week ago
  • ADHD and similar
    2 months, 3 weeks ago
Copyright © 2000 - 2025 Martin Reed / Just Chat. Thanks to UK web hosting.
  • Stay safe
  • Terms of service
  • Privacy
  • Rules
  • Links
  • Advertise
  • Contact
We use cookies to give you the best experience on our website. If you continue, we'll assume you're OK with this.OK