1. R
    Standard memberRemoved
    Joined
    10 Dec '06
    Moves
    8528
    26 Mar '21 02:56
    If Joe goes to sleep at a random time between 10 pm and 11 pm, and sleep for a random length of time between 8 to 10 hours, What is the probability that he wakes up before 8:30 am?
  2. Subscribervenda
    Dave
    S.Yorks.England
    Joined
    18 Apr '10
    Moves
    83651
    26 Mar '21 20:021 edit
    @joe-shmo said
    If Joe goes to sleep at a random time between 10 pm and 11 pm, and sleep for a random length of time between 8 to 10 hours, What is the probability that he wakes up before 8:30 am?
    It will depend on whether it is the night that the clocks are adjusted for daylight saving!
    All I can say for now is to guarantee waking before 08:30 am(prob =1) and not knowing how long you will sleep for you must go to sleep by 10:29pm
    Sleep well.
  3. R
    Standard memberRemoved
    Joined
    10 Dec '06
    Moves
    8528
    26 Mar '21 20:041 edit
    @venda said
    It will depend on whether it is the night that the clocks are adjusted for daylight saving!
    Its not! No tricks like that.
  4. Subscribervenda
    Dave
    S.Yorks.England
    Joined
    18 Apr '10
    Moves
    83651
    26 Mar '21 20:15
    @joe-shmo said
    Its not! No tricks like that.
    O.K mate.
    I've edited my post above, but I'm sure that's not the answer either!!
  5. R
    Standard memberRemoved
    Joined
    10 Dec '06
    Moves
    8528
    26 Mar '21 20:233 edits
    @venda said
    It will depend on whether it is the night that the clocks are adjusted for daylight saving!
    All I can say for now is to guarantee waking before 08:30 am(prob =1) and not knowing how long you will sleep for you must go to sleep by 10:29pm
    Sleep well.
    Well, that's actually a step in the right direction. Except he doesn't have to go to bed at 10:29, he could go to bed at 10:29:59 etc... The time he has to go to bed has to be: T ≤ 10:30 to wake up at most "exactly" at 8:30 ( the probability of waking "exactly" at 8:30 is actually 0 ).

    Hint:
    Reveal Hidden Content
    Try not to focus on waking before 8:30 just yet. Instead... try to represent ALL times Joe can wake based on what time he goes to sleep in a plot of time asleep vs time awake
  6. SubscriberPonderable
    chemist
    Linkenheim
    Joined
    22 Apr '05
    Moves
    654995
    29 Mar '21 16:175 edits
    So my attempt:

    Reveal Hidden Content
    I quantize to full minutes. If I order by time to sleep to each time to sleep there is an equal chance of 1 in 120 for the time to sleep. For the first 29 minutes (22:00 to 22:29) the probability to wake before 8:30 is exactly 1, the probability to wake on 8:30 is 1/120 when going to bed 22:30. For each successive minute the probability in that timeslot grows with 1/120, So we get for the 31 minutes 351/3120 or 0,1125. SO I get roughly 6,5675% for waking after 8.30.


    A lot of edits to get the hidden thingie right...🙁
  7. R
    Standard memberRemoved
    Joined
    10 Dec '06
    Moves
    8528
    29 Mar '21 16:251 edit

    Removed by poster

  8. R
    Standard memberRemoved
    Joined
    10 Dec '06
    Moves
    8528
    29 Mar '21 16:346 edits
    @Ponderable

    For some reason we cant hide multiline text with "returns".

    Anyhow, your answer is in the ball park. I'm having trouble visualizing how you have arrived to determine where the discrepancy may lie.

    It sounds like you are doing some type of numerical approximation ( Riemann Sum ) where the smallest unit of time is 1 minute. If that is the case, I suppose that is ok ( I was hoping for the analytical approach ). But if that is the case there is typically going to be some upper and lower bound associated with the numerical solution.

    Have you given the lower or upper bound, what is the the other boundary and justification for the boundary magnitude?
  9. R
    Standard memberRemoved
    Joined
    10 Dec '06
    Moves
    8528
    29 Mar '21 19:431 edit
    It seems like you have taken the 2 hr long range, divided it up into minutes ( 120 minutes ) and concluded that the probability of waking up in any given minute is 1/120. Is that an accurate assessment, or am I not getting what you are doing?
  10. R
    Standard memberRemoved
    Joined
    10 Dec '06
    Moves
    8528
    02 Apr '21 13:22
    R

    Standard memberRemoved

    Should I bother to show a solution?

    100% Yes
    0% No
    1 vote • Final results
  11. RSA
    Joined
    20 Oct '16
    Moves
    11569
    16 Apr '21 10:271 edit
    @joe-shmo said
    If Joe goes to sleep at a random time between 10 pm and 11 pm, and sleep for a random length of time between 8 to 10 hours, What is the probability that he wakes up before 8:30 am?
    This can be seen as the sum of two independent uniformly distributed random variables.

    V1 ~ U(0,1)
    V2 ~U(8,10)

    sum distribution = 0 + (1-0)u1 + 8 + (10-8)u2.

    You have to find where this distribution is less than 10.5:

    8 + u1 + 2(u2) < 10.5

    Which simplifies to (1/2)(u1) + u2 < 5/4

    The area under the curve y = (-1/2)x + 5/4 within a square on the Cartesian plane bounded by the points (0,0); (0,1); (1,1) and (1,0) = 0.9375.
  12. RSA
    Joined
    20 Oct '16
    Moves
    11569
    16 Apr '21 12:07
    @joe-shmo said
    @Ponderable

    For some reason we cant hide multiline text with "returns".

    Anyhow, your answer is in the ball park. I'm having trouble visualizing how you have arrived to determine where the discrepancy may lie.

    It sounds like you are doing some type of numerical approximation ( Riemann Sum ) where the smallest unit of time is 1 minute. If that is the case, I suppose ...[text shortened]... e lower or upper bound, what is the the other boundary and justification for the boundary magnitude?
    His slight error comes from the fact that he is effectively treating this as a discrete probability distribution when it is continuous, and thus requires a density function.

    Riemann sums of course lead to varying degrees of error depending on how wide the columns are.
  13. R
    Standard memberRemoved
    Joined
    10 Dec '06
    Moves
    8528
    16 Apr '21 13:152 edits
    @ashiitaka said
    This can be seen as the sum of two independent uniformly distributed random variables.

    V1 ~ U(0,1)
    V2 ~U(8,10)

    sum distribution = 0 + (1-0)u1 + 8 + (10-8)u2.

    You have to find where this distribution is less than 10.5:

    8 + u1 + 2(u2) < 10.5

    Which simplifies to (1/2)(u1) + u2 < 5/4

    The area under the curve y = (-1/2)x + 5/4 within a square on the Cartesian plane bounded by the points (0,0); (0,1); (1,1) and (1,0) = 0.9375.
    Correct! ( I think - its uber apparent your more adept in probability than myself )

    Since this is a uniform distribution:
    I solved by making a plot of time asleep vs time awake. All possible outcomes are represented by the area a parallelogram with vertices ( 10,6 ), ( 10,8 ), (11,7), (11,9 )

    This parallelogram has a base of 2 (hr) and a height of 1 (hr).

    Waking after 8:30 The area of the parallelogram to the right of 8:30 ( a right triangle ) divided by the area of the entire parallelogram.

    P ( Waking > 8:30 ) = (1/2)^3 /2 = (1/2)^4

    Finally:

    P ( Waking < 8:30 ) = 1 - (1/2)^4 = 15/16
  14. Subscribervenda
    Dave
    S.Yorks.England
    Joined
    18 Apr '10
    Moves
    83651
    16 Apr '21 13:55
    @joe-shmo said
    Correct! ( I think - its uber apparent your more adept in probability than myself )

    Since this is a uniform distribution:
    I solved by making a plot of time asleep vs time awake. All possible outcomes are represented by the area a parallelogram with vertices ( 10,6 ), ( 10,8 ), (11,7), (11,9 )

    This parallelogram has a base of 2 (hr) and a height of 1 (hr).

    Waking ...[text shortened]...
    P ( Waking > 8:30 ) = (1/2)^3 /2 = (1/2)^4

    Finally:

    P ( Waking < 8:30 ) = 1 - (1/2)^4 = 15/16
    Shows there is usually more than 1 way to approach a problem.
    I vow to spend time analysing the various problems to see how much I can understand!
    Maybe if there's another lock down?
  15. R
    Standard memberRemoved
    Joined
    10 Dec '06
    Moves
    8528
    16 Apr '21 16:531 edit
    @venda said
    Shows there is usually more than 1 way to approach a problem.
    I vow to spend time analysing the various problems to see how much I can understand!
    Maybe if there's another lock down?
    Maybe if there's another lock down?

    ...Even if it gives extra time to solve puzzles, surely one would hope not!
Back to Top

Cookies help us deliver our Services. By using our Services or clicking I agree, you agree to our use of cookies. Learn More.I Agree