Demonstrate the BinomialTheorem for the gun problem.

The example is taken from:
Nahin, P. J., "Duelling Idiots and Other Probability Puzzlers,"
Princeton University Press.
------------------------------------------------------------------------
See also Plot2D, BinomialTheorem
------------------------------------------------------------------------
%---------------------------------------------------------------------------
%   Copyright (c) 2003 Princeton Satellite Systems, Inc.
%   All rights reserved.
%---------------------------------------------------------------------------

p = linspace(0,1);
pC = zeros(1,length(p));

for j = 1:length(p)
  pC(j) = BinomialTheorem( 100, 50, p(j) );
end

Plot2D( p, pC, 'Hypothesis', 'Probability', 'Gun Problem')


%--------------------------------------

% $Id: 8f69050c5406f0d4b83276793fa9d4e531d23e46 $