简体   繁体   English

您如何使用 Excel 计算从 X 中获得 1 个新客户的概率?

[英]How do you calculate the probability of getting 1 new customer out of X using Excel?

How do you calculate the probability of getting 1 new customer out of X. I am expecting to come up with 2,3,4...10.您如何计算从 X 中获得 1 个新客户的概率。我期望得出 2,3,4...10。 I have tried using the probability function, but it doesn't seem to like what I am using for parameters.我曾尝试使用概率函数,但它似乎不喜欢我用于参数的内容。

=BINOM.DIST(1,500,1/500,TRUE) =BINOM.DIST(1,500,1/500,TRUE)

The correct syntax is:正确的语法是:

BINOM.DIST(number_s,trials,probability_s,cumulative) BINOM.DIST(number_s,trials,probability_s,cumulative)

  • Number_s The number of successes in trials. Number_s 试验成功的次数。
  • Trials The number of independent trials.试验 独立试验的数量。
  • Probability_s The probability of success on each trial. Probability_s 每次试验的成功概率。
  • Cumulative A logical value that determines the form of the function.累积 确定函数形式的逻辑值。 If cumulative is TRUE, then BINOM.DIST returns the cumulative distribution function, which is the probability that there are at most number_s successes;如果cumulative 为TRUE,则BINOM.DIST 返回累积分布函数,即最多有number_s 次成功的概率; if FALSE, it returns the probability mass function, which is the probability that there are number_s successes.如果为 FALSE,则返回概率质量函数,即有 number_s 次成功的概率。

http://office.microsoft.com/en-us/excel-help/binom-dist-function-HP010335671.aspx http://office.microsoft.com/en-us/excel-help/binom-dist-function-HP010335671.aspx

It returns a probability (0< X<1), so a value between 0 and 1. Note that "Probability of success in each trial" is asking what the chances are of getting a new customer EACH time you call (one trial).它返回一个概率 (0< X<1),因此是一个介于 0 和 1 之间的值。请注意,“每次试验的成功概率”是在询问您每次致电(一次试验)时获得新客户的机会有多大。 By entering 1/500, it appears you are assuming a probability of 0.002 for each trial.通过输入 1/500,您似乎假设每次试验的概率为 0.002。 The resulting answer of 0.736 indicates you have a 73.6% chance of getting 1 new client for each 500 calls, or "trials".得到的答案 0.736 表明您有 73.6% 的机会在每 500 个电话或“试用”中获得 1 个新客户。

Do you have a number you can enter based on your past experience calling leads?根据您过去呼叫潜在客户的经验,您是否有可以输入的号码?

I don't know in what sense this "doesn't work".我不知道这在什么意义上“不起作用”。 Excel is returning exactly what you asked for: the cumulative probability of 1 success out of 500 trials where the probability of success is 1/500 in each independent trial. Excel 返回的正是您所要求的:500 次试验中 1 次成功的累积概率,其中每次独立试验的成功概率为 1/500。

Instead of looking at the cumulative distribution, though, consider each possible number of successes separately:不过,与其查看累积分布,不如分别考虑每种可能的成功次数:

在此处输入图片说明

If the probability of getting a customer is 1/500, then if you ask 500 people, there is a 36.8% chance that you will get zero customers.如果得到一个客户的概率是 1/500,那么如果你问 500 个人,你得到零个客户的概率是 36.8%。 There is also a 36.8% chance that you'll get one new customer, for a cumulative probability of 73.6%.您还有 36.8% 的机会获得一位新客户,累积概率为 73.6%。 There is a 99.6% chance that you will get 4 or fewer new customers from 500 tries.您有 99.6% 的机会从 500 次尝试中获得 4 个或更少的新客户。

To be clear, the formula for the "Prob" column is需要明确的是,“Prob”列的公式是

=BINOM.DIST(cell_with_success_number,500,1/500,0)

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM