I am trying to factorize a large number,
$$600851475143$$
So I just started trying primes and in my TI-84, I got that
$$600851475143=61\cdot 9850024183$$
so then I got
$$9850024183=7\cdot 1407146312$$
Which can't be possible since this implies the original number is even as a factor is even itself. When checking other sources, it is clear $61$ is NOT a prime factor. But why then would my calculator give an incorrect factor to begin with?
Often cases such as this are caused by floating point error, which is worth being familiar with. In this case, however, it is highly unlikely that floating point error is at all relevant, given the scale of these computations.
What seems to be more likely is that you have a display precision setting active on your calculator, which is causing you calculator to round answer before displaying them. You may want to navigate to theMODEmenu and check which setting is highlighted on the third line that readsFLOAT 1 2 3 4 5 6 7 8 9.Correction: the TI-84 series can only display 10 significant figures regardless of display settings. You may wish to use a different device to perform these computations, such as a computer algebra system like Sage, in order to make use of greater precision. This has the added benefit of allowing you to automate many common tasks. For instance, you can trivially factor any integer in sage with the following:
As mentioned in the comments, there is also the
remainderfunction which can be found underMATH>NUM>0:remainder(which can be used to more effectively test the divisibility of two integers.