TE
科技回声
首页24小时热榜最新最佳问答展示工作
GitHubTwitter
首页

科技回声

基于 Next.js 构建的科技新闻平台,提供全球科技新闻和讨论内容。

GitHubTwitter

首页

首页最新最佳问答展示工作

资源链接

HackerNews API原版 HackerNewsNext.js

© 2025 科技回声. 版权所有。

Using Python and heat maps to determine the best place to aim on a dart board

111 点作者 middlegeek超过 14 年前

7 条评论

bl4k超过 14 年前
Dart shots are not evenly distributed. You are more likely to get the height wrong then the width - this is because of how the dart travels.<p>Darts dip a lot in flight - they do not move side to side as much. As a dart player, I guesstimate that after only a few hours practice most people will be off 1.5cm or so in the vertical but only 0.75cm in the horizontal<p>Professional dart players are always aiming at 20. If they block the triple-twenty with their first or second dart, they then aim at triple-19.with some players preferring triple-18 since height-wise it is in similar range
评论 #2106740 未加载
tmcw超过 14 年前
Three statisticians played a game of darts. The first statistician shot, but missed, by a meter to the left. The second statistician shot, but also missed, by a meter to the right. The third statistician yelled "bullseye!"<p>- relevant statistician joke
vColin超过 14 年前
Find where you should aim with this handy utility: <a href="http://www-stat.stanford.edu/~ryantibs/darts/dartsapplet.html" rel="nofollow">http://www-stat.stanford.edu/~ryantibs/darts/dartsapplet.htm...</a> (context: <a href="http://www-stat.stanford.edu/~ryantibs/darts/" rel="nofollow">http://www-stat.stanford.edu/~ryantibs/darts/</a>)
mitko超过 14 年前
Gaussians? Why Gaussians? Why not Cauchy for example (it has fatter tail)? And why identity matrix for the Gaussian covariance?<p>I really like the way you are using your technical skills for computation but I think you are using it on the wrong problem.<p>In reality, even if your dart throws are Gaussians they need not be independent of each other.<p>I'm coming from math background and was observing math people(physicists as a proxy) to the approach of making unreasonable assumptions if they will simplify the problem and make it solvable.<p>It reminds me of the joke:<p><i>A person is walking around a street light. Another asks him</i><p>"<i>What are you doing there?</i>"<p>"<i>Looking for my keys.</i>"<p>"<i>Did you lose them there?</i>"<p>"<i>No, but there is more light here.</i>"<p>Edit: formatting
gregdetre超过 14 年前
This is a delight!<p>There's only one more thing this needs to be perfect. I'd love to be able to calibrate it to me, by aiming for the bullseye 10 times and telling it what I hit. That way, it could assess my expertise, and suggest what I should personally be aiming for.
rgarcia超过 14 年前
back in college the first problem set in my intro AI class was something very similar to this, except instead of maximizing the points scored on the current throw, it looked ahead and solved for the best "path" to get to zero points given your current score (in darts you win by reducing your score down to zero). Like the OP, I also remember being surprised by the fact that the bullseye wasn't the highest scoring point on the dartboard, but things get even more interesting when you look at the optimal strategy for actually winning the game.
评论 #2106094 未加载
评论 #2111885 未加载
sesqu超过 14 年前
This reminds me of two things. The first is the intro to statistics exercise on how you can't have uniform probability on a continuous domain, since you will almost surely miss any particular point on the board. It is often illustrated with dart boards, and caused me great consternation once.<p>The second is that in my experience, dart throws aren't normally distributed: they're skewed towards the bottom, because I don't throw very hard. I wonder if that effect goes away with practise.