S1E2:Is this the correct equation? Why is there no prior? #19
Unanswered
FrancisLau098
asked this question in
Q&A(提问题在隔壁~)
Replies: 1 comment
-
我认为你说的是对的, 我也存在这个疑问, 然后找了一些资料验证了一下, 认为置信度应该为 解释:首先,我检查了一下有15条边的 Graph 1,其前15轮的置信度变化,发现其就是公式 def f(n):
result = 1-(1-1/15)**n
return f"{100*result:.2f}%"
for i in range(1, 16):
print(f"f({i}):{f(i)}", end="\t") Output:
其次,我找到了其他讲义资料验证,分别为: 摘抄的解释(详见上述讲义): |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
位置:Session 1练习题Exercise 2: The equation currently being used for confidence is 1-(1/E)^n, where E is the number of edges in the graph, and n is the number of trials run. Is this the correct equation? Why is there no prior?
问题:题干中提到所用的表达式1-(1/E)^n与示例Graph 1不符?Graph 1的图有15条边,第一次互动时confidence显示为6.67%,即1/15。但是如果代入E=15,n=1于表达式中,结果为14/15。
我认为置信度应该为1-(1-1/E)^n。首先,代入E=15,n=1后结果为1/15,与互动结果相符;其次,这是对最狡猾的骗子prover的估计,假若骗子prover只有1条边是不符合规范的(颜色相同),其他的边都符合规范(颜色不同),那么连续n次都欺骗成功的概率是(1-1/E)^n,所以prover不是最狡猾的骗子的概率应该为1-P(连续n次都欺骗成功)即1-(1-1/E)^n。
另一方面,假若有一个拙劣的骗子prover,他只有1条边是符合规范的(颜色不同),其他的边都不符合规范(颜色相同),那么连续n次都欺骗成功的概率是(1/E)^n,那么prover不是拙劣的骗子的概率应该为1-P(连续n次都欺骗成功)即1-(1/E)^n,即题干中的表达式。
综上,我认为以拙劣的骗子作估计并不合适,宜改用最狡猾的骗子作估计。我说的对吗?
Beta Was this translation helpful? Give feedback.
All reactions