Probability using binomial probability?
古いコメントを表示
Suppose I have a field of points, where I want to find the most likely location of a point. If I have 400 points then obviously I have a 1/400 chance of finding that point. However if I assume that the points closer to the centre are more likely, is it coherent to suggest that I should use binomial probability. So I could just choose the closest distance but i want a dynamic way of telling how likely a point is in the correct location with varying distances. I don't have a whole lot of practise with probability so I m not really sure if this is right?
採用された回答
その他の回答 (1 件)
the cyclist
2015 年 11 月 23 日
0 投票
I'm afraid I don't understand the endpoint goal.
Do you mean that you have a field of points, with locations, and you want to know the probability of the location of another point taken from a similar sample?
5 件のコメント
Ronan
2015 年 11 月 24 日
the cyclist
2015 年 11 月 24 日
編集済み: the cyclist
2015 年 11 月 24 日
So far, I don't see any probability in this problem. Everything you have described is deterministic. Here is a subset of your data:
distance = [0.1 0.2 0.4 1.0];
price = [500 400 200 100];
The best hotel is the first one (closest and priciest); the worst hotel is the last one (farthest and cheapest).
There is no "probability of being best".
What am I missing? Can you take this toy example and describe what the output should look like, and what I'm not understanding?
Ronan
2015 年 11 月 24 日
the cyclist
2015 年 11 月 24 日
OK, so we're inching toward a complete description of the problem.
It's still not perfectly clear how to use probability -- I actually think you might mean statistics -- to solve this. You somehow need to generate a formula that takes you from these two measures to the one that truly measures quality (worst -- best).
If you actually had a quality measure of these hotels (e.g. star ratings) ...
stars = [4.3 4.4 3.7 3.2]
then you could build a mathematical model for estimating quality, based on the data.
Otherwise, I don't see a good way to solve the problem.
Ronan
2015 年 11 月 24 日
カテゴリ
ヘルプ センター および File Exchange で Student's t Distribution についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!
