You are not logged in.
Pages: 1
Hi,
Today I want to propose you a beautiful problem:
Solve the equation:
mant{x^(-1)}=mant{x}=mant{x^2}
Where mant{x} is the mantissa function
Offline
Hi Eulero;
"The good news about computers is that they do what you tell them to do. The bad news is that they do what you tell them to do." - Ted Nelson
Offline
It's a solution but not the only one
Offline
Hi;
In mathematics, you don't understand things. You just get used to them.
If it ain't broke, fix it until it is.
Always satisfy the Prime Directive of getting the right answer above all else.
Offline
Good job!
But the fourth solution you proposed is wrong as you can see here. The exercise exalts one of the most curious proprieties of golden ratio : it's the only not integer number whose himself and reciprocal and square have the same fractionary part. When you have time would you post the execution?
Last edited by Eulero (2016-09-15 07:46:15)
Offline
Hi;
From the link you gave, mant is the positive fractional part .
So:
f[x_] := Abs[FractionalPart[x]];
n = -(8/5);
FindRoot[f[1/x] == f[x] && f[1/y] == f[y^2] && f[z] == f[z^2], {{x, n}, {y, n}, {z, n}}, WorkingPrecision -> 50]
yields a root at
{x -> -1.6180339887498948482045868343656381177203091798058,
y -> -1.6180339887498948482045868343656381177203091798058,
z -> -1.6180339887498948482045868343656381177203091798058}
which is
When you have time would you post the execution?
My solution is a numerical one and I will post it when I can.
In mathematics, you don't understand things. You just get used to them.
If it ain't broke, fix it until it is.
Always satisfy the Prime Directive of getting the right answer above all else.
Offline
When x=-1.618033989
floor(x)= -2
mant(x)=-1.618033989-(-2)=0.381966011
So
{1}Vasudhaiva Kutumakam.{The whole Universe is a family.}
(2)Yatra naaryasthu poojyanthe Ramanthe tatra Devataha
{Gods rejoice at those places where ladies are respected.}
Offline
Are you guys using the absolute value as the page describes?
In mathematics, you don't understand things. You just get used to them.
If it ain't broke, fix it until it is.
Always satisfy the Prime Directive of getting the right answer above all else.
Offline
Last edited by zetafunc (2016-09-16 01:35:22)
Offline
Hi;
The page he gave http://mathworld.wolfram.com/Mantissa.html describes it like that.
In mathematics, you don't understand things. You just get used to them.
If it ain't broke, fix it until it is.
Always satisfy the Prime Directive of getting the right answer above all else.
Offline
Last edited by zetafunc (2016-09-16 01:44:43)
Offline
Hi;
Nope, I am not sure. I will agree then that - phi is not a solution.
In mathematics, you don't understand things. You just get used to them.
If it ain't broke, fix it until it is.
Always satisfy the Prime Directive of getting the right answer above all else.
Offline
Good job zetafunc!
Offline
Hi Bobbym,
If you recall characteristic and mantissa of log to the base 10 in logarithm tables, the concept becomes clear.
{1}Vasudhaiva Kutumakam.{The whole Universe is a family.}
(2)Yatra naaryasthu poojyanthe Ramanthe tatra Devataha
{Gods rejoice at those places where ladies are respected.}
Offline
Hi;
If you recall characteristic and mantissa of log to the base 10 in logarithm tables, the concept becomes clear.
I do not agree. Eric's page is ambiguous to me in this case.
I agree with Knuth:
For instance Knuth adopts the third representation 0.12345 × 10+3 in the example above, and calls 0.12345 the fraction part of the number; he adds:[7] "[...] it is an abuse of terminology to call the fraction part a mantissa, since this concept has quite a different meaning in connection with logarithms [...]".
But as this is the interpretation that the OP wanted I can only blame myself for not asking him to clear up the confusion in how I see that page.
In mathematics, you don't understand things. You just get used to them.
If it ain't broke, fix it until it is.
Always satisfy the Prime Directive of getting the right answer above all else.
Offline
It might have been confusing because the Wolfram page says the phrase "positive fractional part" immediately before the formula, which is somewhat tautological (if the author had just written the formula, that would have been made clearer to the reader). But the lack of the word "of" between that phrase and the formula makes it technically unambiguous, I think. (But easy to misinterpret.)
It is made slightly worse by the fact that its counterpart "negative fractional part" is never explicitly defined on the website -- at least, I cannot seem to find it. But I'm assuming that if it does exist, it would have a definition something like the one I gave in post #10.
Last edited by zetafunc (2016-09-16 04:34:23)
Offline
Yes, but even the alphabet is confusing to a bumpkin.
In mathematics, you don't understand things. You just get used to them.
If it ain't broke, fix it until it is.
Always satisfy the Prime Directive of getting the right answer above all else.
Offline
Pages: 1