Why isn’t Manipulate[] working with large numbers?
For instance this works
Manipulate[k, {k, 0, 1000000000, 1}]
and this doesn’t
Manipulate[k, {k, 0, 10000000000, 1}]
I believe that there should be some Mathematica variable which affects this but I cannot find one.
This is a known bug with
ManipulateandSlider, specifically when there are more than2^31discrete “steps” for the slider.As a workaround, you could do the following, for example:
By not specifying the step size (fourth argument), you allow the slider to set non-integer values for the variable, but you can get around this by using
Round(orIntegerPart).Hope that helps!