/* GeoGebra - Dynamic Mathematics for Everyone http://www.geogebra.org This file is part of GeoGebra. This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation. */ package org.geogebra.common.kernel.statistics; import org.apache.commons.math3.distribution.BinomialDistribution; import org.geogebra.common.kernel.Construction; import org.geogebra.common.kernel.commands.Commands; import org.geogebra.common.kernel.geos.GeoBoolean; import org.geogebra.common.kernel.geos.GeoNumberValue; import org.geogebra.common.util.debug.Log; /** * * @author G. Sturr */ public class AlgoBinomialDist extends AlgoDistribution { /** * @param cons * construction * @param label * label * @param a * number of trials * @param b * probability of success * @param c * value of random variable * @param isCumulative * cumulative */ public AlgoBinomialDist(Construction cons, String label, GeoNumberValue a, GeoNumberValue b, GeoNumberValue c, GeoBoolean isCumulative) { super(cons, label, a, b, c, isCumulative); } /** * @param cons * construction * @param a * number of trials * @param b * probability of success * @param c * value of random variable * @param isCumulative * cumulative */ public AlgoBinomialDist(Construction cons, GeoNumberValue a, GeoNumberValue b, GeoNumberValue c, GeoBoolean isCumulative) { super(cons, a, b, c, isCumulative); } @Override public Commands getClassName() { return Commands.BinomialDist; } @Override public final void compute() { if (input[0].isDefined() && input[1].isDefined() && input[2].isDefined() && input[3].isDefined()) { int param = (int) Math.round(a.getDouble()); double param2 = b.getDouble(); int val = (int) Math.round(c.getDouble()); try { BinomialDistribution dist = getBinomialDistribution(param, param2); if (isCumulative.getBoolean()) { num.setValue(dist.cumulativeProbability(val)); // P(X <= // val) } else { num.setValue(dist.probability(val)); // P(X = val) } } catch (Exception e) { Log.debug(e.getMessage()); num.setUndefined(); } } else { num.setUndefined(); } } }