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

科技回声

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

GitHubTwitter

首页

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

资源链接

HackerNews API原版 HackerNewsNext.js

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

German tank problem

231 点作者 fortepianissimo超过 11 年前

17 条评论

T-hawk超过 11 年前
This actually hit my previous company in a software context.<p>We would number our hotfixes sequentially. Many would be items demanded by a single client, so would get deployed as hotfixes only to that customer&#x27;s site, and just rolled into the main trunk for the next quarterly release for everyone else. Clients would always be notified about hotfixes going onto their live sites.<p>One savvy client noticed the hotfix numbering sequence. Naturally, that ensued quite a number of extremely awkward discussions as they would regularly ask why our software needed so many hotfixes (tens per week) and why they weren&#x27;t entitled to all of them right away.<p>Solution: a new policy to randomly generate hotfix numbers. Which of course led to the next problem, that now the sequence was not obvious from the names, so dependent hotfixes would sometimes get deployed in the wrong order. Why can&#x27;t anything be easy...
评论 #7280559 未加载
评论 #7280785 未加载
评论 #7281998 未加载
评论 #7284480 未加载
评论 #7280090 未加载
sparkman55超过 11 年前
There is some practical relevance to software development here. One shouldn&#x27;t expose sequential IDs (a.k.a. serial numbers) to the public for anything non-public.<p>I see this Hacker News post has a numerical ID in the URL, for example; I can estimate the size of Hacker News given enough of these numbers... More directly, I can modify that numerical ID to crawl Hacker News.<p>Many sites do this; it&#x27;s generally better to generate a (random or hashed or generated from a natural key) &#x27;slug&#x27; to use as the key instead. For example, Amazon generates a unique, non-sequential, 10-digit alphanumeric string for each item in their catalog.
评论 #7280793 未加载
评论 #7279142 未加载
评论 #7279063 未加载
评论 #7279340 未加载
评论 #7280968 未加载
评论 #7280884 未加载
评论 #7279511 未加载
评论 #7280662 未加载
jxf超过 11 年前
It&#x27;s astounding how accurate they were using only statistical methods:<p>&gt; Analysis of wheels from two tanks (48 wheels each, 96 wheels total) yielded <i></i>an estimate of 270 produced in February 1944<i></i>, substantially more than had previously been suspected.<p>&gt; German records after the war showed production for the month of February 1944 was <i></i>276<i></i>.
评论 #7279406 未加载
schoen超过 11 年前
Huh, I once visited a military base where people on the trip wanted to be photographed with a tank. The soldiers said it was OK, as long as somebody obscured the tank&#x27;s serial number by standing in front of it. I wonder if their training in this respect was inspired by this history!<p>(But if so, why not print the serial numbers inside the tank, not outside? Or maybe encrypt or HMAC them?)
评论 #7278787 未加载
评论 #7278824 未加载
评论 #7279060 未加载
评论 #7281039 未加载
评论 #7278755 未加载
评论 #7278841 未加载
IgorPartola超过 11 年前
Don&#x27;t remember where I read it at least 12 years ago, but someone talked about an April Fools prank where they released three pigs in their high school, with numbers 1, 2, and 4 written on them. Allegedly the administrators spent weeks looking for number 3.
评论 #7282389 未加载
评论 #7281232 未加载
sbirch超过 11 年前
My favorite explanation of this (posed instead as the Locomotive problem) is in Allen Downey&#x27;s &quot;Think Bayes,&quot; pp.22<p>It&#x27;s online too, and worth reading!<p><a href="http://www.greenteapress.com/thinkbayes/" rel="nofollow">http:&#x2F;&#x2F;www.greenteapress.com&#x2F;thinkbayes&#x2F;</a>
评论 #7278666 未加载
te超过 11 年前
The frequentist and Bayesian analyses give different answers to the central question. Which one is more correct?
评论 #7278920 未加载
评论 #7278570 未加载
stillsut超过 11 年前
This is why the whole secret agent &quot;#3&quot; thing in movies like Bourne Legacy, James Bond etc are so ridiculous.<p>That&#x27;s a worse code name then just using the person real name as it gives hints of the total participation in the secret organization.
评论 #7280799 未加载
therealmarv超过 11 年前
Interesting. Especially because there is no German translation or Wikipedia entry for this article.
评论 #7279082 未加载
评论 #7278447 未加载
评论 #7279096 未加载
评论 #7278834 未加载
RA_Fisher大约 11 年前
I remember my theoretical stats teacher showing us this problem. It&#x27;s used all the time in ecology. His example used it to estimate the number of alligators in Louisiana swamps. They tag the alligators, release, and then using the tags they re-capture over subsequent years, they can get an estimate of how many alligators exist in the wild!
评论 #7282236 未加载
bane超过 11 年前
So here&#x27;s an idea. Conventional intelligence was off by quite a bit, spurring the allies to overproduce tanks (which was possible due to the absurd American industrial capacity), which then allowed the allies to cleanly overwhelm the order of magnitude fewer tanks they actually came in kinetic contact with.
评论 #7280885 未加载
concernedctzn超过 11 年前
This sounds like an excerpt from the Cryptonomicon, which I happen to be reading right now.
auctiontheory超过 11 年前
I first read about this work a few years ago, but had I encountered it before college, I think I might have majored in statistics. Such powerful results - feel like magic.
Pinatubo大约 11 年前
Tank #7, you are now known as tank #22347.<p>Tank #1 and tank #22347, report to the commander for the orders related to your suicide mission ...
ariwilson超过 11 年前
I encountered a slightly different problem trying to find the size of the union of a bunch of sets. We ended up just storing the smallest k int64 hashes of each item in each set, and computing 2^64 &#x2F; ((largest hash - smallest hash) &#x2F; (k - 1) as an estimate of the size of the union.
评论 #7281257 未加载
germanTankPanzy超过 11 年前
I think the most important information is the table: Month Statistical estimate Intelligence estimate German records June 1940 169 1,000 122 June 1941 244 1,550 271 August 1942 327 1,550 342<p>Intelligence estimates... so off the mark.
评论 #7280067 未加载
elwell超过 11 年前
The Germans should have sanded off the serial numbers.