Community Tip - You can Bookmark boards, posts or articles that you'd like to access again easily! X
And whats the motivation for doing so - hat would be the benefit?
Using a numeric solve block would limit the precision of the numbers to be used significantly and there seems to be no reason for using the symbolic "solve" as long as we have "factor".
To factor numbers in pure numeric mode you would have to write your own program - but the limitation of precision remains the same as long as you evaluate it numerically.
A numerical solution block and Prime at all are not made for dealing with number theoretic problems. An old program like Derive sure would to a better job here as it brings along a lot of useful functions for that purpose and AFAIK there also exist specialized software.
In Prime you could also play around with constraints like x=trunc(x) instead of "x in Z" or "x=integer", but I doubt that you will have success.
@ttokoro wrote:
How to factorize the number by using solve block?
?? Not sure what you have in mind? Maybe you can be more specific
My Prime 6 sheet attached. Below is my question. How to use the solve block?
And whats the motivation for doing so - hat would be the benefit?
Using a numeric solve block would limit the precision of the numbers to be used significantly and there seems to be no reason for using the symbolic "solve" as long as we have "factor".
To factor numbers in pure numeric mode you would have to write your own program - but the limitation of precision remains the same as long as you evaluate it numerically.
A numerical solution block and Prime at all are not made for dealing with number theoretic problems. An old program like Derive sure would to a better job here as it brings along a lot of useful functions for that purpose and AFAIK there also exist specialized software.
In Prime you could also play around with constraints like x=trunc(x) instead of "x in Z" or "x=integer", but I doubt that you will have success.
This is the limit of 15 digits.
This is the list:
Luc
Prime 6.0 can't solve. I try to use 15, It can do soon!
However, 2^2^9+1 is hang-up!
@ttokoro wrote:
This is the limit of 15 digits.
Yes, thats the usual limit for numerical evaluation in all programs using the common IEEE data types for data storing. Thats the reason you have to use the symbolic engine for a higher degree of precision.