列車が到着する前に時間をモデル化するために使用する分布は何ですか?


15

電車の到着時間に関するデータをモデル化しようとしています。「長く待つほど、電車が現れる可能性が高くなります」をキャプチャするディストリビューションを使用したいと思います。そのような分布はCDFのように見えるはずなので、P(train show up | waited 60 minutes)は1に近くなります。ここでどの分布を使用するのが適切ですか?


10
あなたは25時間を待って何の電車がなかったならば、私は次の分に上げて、列車のチャンスが近いかもしれ疑いラインが一時的または恒久的に閉じられたことは非常に可能であるとして0
ヘンリー

@ヘンリー、これはあなたが以前の確率を信じているかどうかに完全に依存します。たとえば、英国で最も使用されていない鉄道駅theguardian.com/uk-news/2016/dec/09/…には、1日以上(日曜日は運行していない)到着のギャップがあります。
セクストゥス

@MartijnWeterings -ジャーナリストにおそらくおかげで、Shippeaヒルは、使用中に1200パーセントの増加を見ても、しなかった次の年の使用の最低10のいくつかは、このようなティーズサイド空港として、1つの方向の一方の電車週間持っている
ヘンリー

回答:


17

2つの確率の乗算

tt + d t(待機時間)の間の時間に最初に到着する確率は、tt+dt

  • tt+dt間の到着の確率(これは、時間ts(t)到着率s t )に関連する可能性があります)t
  • そして、時刻t前に到着しない確率(または、そうでなければ最初ではない)。

この後者の用語は次のものに関連しています。

P(n=0,t+dt)=(1s(t)dt)P(n=0,t)

または

P(n=0,t)t=s(t)P(n=0,t)

与える:

P(n=0,t)=e0ts(t)dt

待ち時間の確率分布は次のとおりです。

f(t)=s(t)e0ts(t)dt

累積分布の導出。

あるいは、時刻がtであるという条件付きで到着が1回未満になる確率の式を使用することもできます。t

P(n<1|t)=F(n=0;t)

そして、時間tt+dt間に到達する確率は導関数に等しい

farrival time(t)=ddtF(n=0|t)

このアプローチ/方法は、例えば、ポアソンプロセスのn番目の到着の待機時間としてガンマ分布を導出するのに役立ちます。(ポアソンプロセスの待機時間-ガンマ分布


2つの例

これを待っているパラドックスに関連付けることができます(待っているパラドックスを説明してください)。

  • s(t)=λ

    f(t)=λeλt

  • Constant distribution: If the arrivals are occurring at a constant rate (such as trains arriving according to a fixed schedule), then the probability of an arrival, when a person has already been waiting for some time, is increasing. Say a train is supposed to arrive every T minutes then the frequency, after already waiting t minutes is s(t)=1/(Tt) and the pdf for the waiting time will be:

    f(t)=e0t1TtdtTt=1T
    which makes sense since every time between 0 and T should have equal probability to be the first arrival.


So it is this second case, with "then the probability of an arrival, when a person has already been waiting for some time is increasing", that relates to your question.

It might need some adjustments depending on your situation. With more information the probability s(t)dt for a train to arrive at a certain moment might be a more complex function.


Written by StackExchangeStrike


弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.