Divide any large number by its divisor then calculate the result to original value
up vote
0
down vote
favorite
What I'm trying to do is to divide any large whole numbers then after the result a formula will convert it back to the original value:
For example:
736,778,906,400 / 10,000,000 = 73,677
700 Billion divided by 10 Million the result will be 73,677
I must find a way to convert the 73,677 back into 736,778,906,400 (the starting/original value).
Is there any formula or algorithm to do this?
discrete-mathematics division-algebras
add a comment |
up vote
0
down vote
favorite
What I'm trying to do is to divide any large whole numbers then after the result a formula will convert it back to the original value:
For example:
736,778,906,400 / 10,000,000 = 73,677
700 Billion divided by 10 Million the result will be 73,677
I must find a way to convert the 73,677 back into 736,778,906,400 (the starting/original value).
Is there any formula or algorithm to do this?
discrete-mathematics division-algebras
This is hard to follow. Your quotient is actually $73677.89064$. You can recover the original numerator by multiplying by $10$ million. If you round the quotient then you can't recover the numerator...you've discarded information. Is that what you are asking?
– lulu
Dec 2 at 14:27
@lulu yes, but when I tried to multiply the qiotient by 10 million it produces this result: 736770000000, not the exact value (like the original value).
– Denzell
Dec 2 at 14:31
Right, because you discarded information when you rounded. If you don't want to discard information, don't round.
– lulu
Dec 2 at 14:32
add a comment |
up vote
0
down vote
favorite
up vote
0
down vote
favorite
What I'm trying to do is to divide any large whole numbers then after the result a formula will convert it back to the original value:
For example:
736,778,906,400 / 10,000,000 = 73,677
700 Billion divided by 10 Million the result will be 73,677
I must find a way to convert the 73,677 back into 736,778,906,400 (the starting/original value).
Is there any formula or algorithm to do this?
discrete-mathematics division-algebras
What I'm trying to do is to divide any large whole numbers then after the result a formula will convert it back to the original value:
For example:
736,778,906,400 / 10,000,000 = 73,677
700 Billion divided by 10 Million the result will be 73,677
I must find a way to convert the 73,677 back into 736,778,906,400 (the starting/original value).
Is there any formula or algorithm to do this?
discrete-mathematics division-algebras
discrete-mathematics division-algebras
asked Dec 2 at 14:22
Denzell
51
51
This is hard to follow. Your quotient is actually $73677.89064$. You can recover the original numerator by multiplying by $10$ million. If you round the quotient then you can't recover the numerator...you've discarded information. Is that what you are asking?
– lulu
Dec 2 at 14:27
@lulu yes, but when I tried to multiply the qiotient by 10 million it produces this result: 736770000000, not the exact value (like the original value).
– Denzell
Dec 2 at 14:31
Right, because you discarded information when you rounded. If you don't want to discard information, don't round.
– lulu
Dec 2 at 14:32
add a comment |
This is hard to follow. Your quotient is actually $73677.89064$. You can recover the original numerator by multiplying by $10$ million. If you round the quotient then you can't recover the numerator...you've discarded information. Is that what you are asking?
– lulu
Dec 2 at 14:27
@lulu yes, but when I tried to multiply the qiotient by 10 million it produces this result: 736770000000, not the exact value (like the original value).
– Denzell
Dec 2 at 14:31
Right, because you discarded information when you rounded. If you don't want to discard information, don't round.
– lulu
Dec 2 at 14:32
This is hard to follow. Your quotient is actually $73677.89064$. You can recover the original numerator by multiplying by $10$ million. If you round the quotient then you can't recover the numerator...you've discarded information. Is that what you are asking?
– lulu
Dec 2 at 14:27
This is hard to follow. Your quotient is actually $73677.89064$. You can recover the original numerator by multiplying by $10$ million. If you round the quotient then you can't recover the numerator...you've discarded information. Is that what you are asking?
– lulu
Dec 2 at 14:27
@lulu yes, but when I tried to multiply the qiotient by 10 million it produces this result: 736770000000, not the exact value (like the original value).
– Denzell
Dec 2 at 14:31
@lulu yes, but when I tried to multiply the qiotient by 10 million it produces this result: 736770000000, not the exact value (like the original value).
– Denzell
Dec 2 at 14:31
Right, because you discarded information when you rounded. If you don't want to discard information, don't round.
– lulu
Dec 2 at 14:32
Right, because you discarded information when you rounded. If you don't want to discard information, don't round.
– lulu
Dec 2 at 14:32
add a comment |
2 Answers
2
active
oldest
votes
up vote
1
down vote
accepted
First of all, you need to decide what the operation "$/$" means to you.
Now that you have decided what it means, do you agree with the equation on the next line?
$$ 736{,}770{,}000{,}000 / 10{,}000{,}000 = 73{,}677.$$
If you don't agree with that, you really need to explain what you think "$/$" means.
If you do agree with the equation, then consider this question:
Someone had a number $x,$ they performed the operation $x / 10{,}000{,}000$
according to my interpretation of the operation "$/$",
and the result was $73{,}677.$
Supposing I have been told the information in the preceding sentence but have not been told what actual number they used for $x,$ is there any way for me to determine with certainty whether the original number $x$ was $736{,}778{,}906{,}400,$
or $736{,}770{,}000{,}000,$ or possibly something else?
The answer to this question is "no," just as you cannot tell by looking at a puddle of water whether the puddle came from an ice sculpture of a unicorn that melted, or
an ice sculpture of a pineapple that melted, or something else.
The answer to your original question is then also "no."
If you don't like the answer, try explaining what this all is for.
People usually don't just go around dividing large numbers by ten million;
it seems likely you have some larger task that this is part of.
If you do, perhaps someone can suggest a better way to do things.
add a comment |
up vote
0
down vote
I just realised from the answer that when you divided:
$$ dfrac{736,778,906,400}{ 10,000,000} = 73,677 $$
But you discarded the decimal part, so your answer is actually
$$ dfrac{736,778,906,400}{ 10,000,000} = 73,677.8906400 $$
You can convert it to orginal by multiplying $10 text{ million}$.
add a comment |
2 Answers
2
active
oldest
votes
2 Answers
2
active
oldest
votes
active
oldest
votes
active
oldest
votes
up vote
1
down vote
accepted
First of all, you need to decide what the operation "$/$" means to you.
Now that you have decided what it means, do you agree with the equation on the next line?
$$ 736{,}770{,}000{,}000 / 10{,}000{,}000 = 73{,}677.$$
If you don't agree with that, you really need to explain what you think "$/$" means.
If you do agree with the equation, then consider this question:
Someone had a number $x,$ they performed the operation $x / 10{,}000{,}000$
according to my interpretation of the operation "$/$",
and the result was $73{,}677.$
Supposing I have been told the information in the preceding sentence but have not been told what actual number they used for $x,$ is there any way for me to determine with certainty whether the original number $x$ was $736{,}778{,}906{,}400,$
or $736{,}770{,}000{,}000,$ or possibly something else?
The answer to this question is "no," just as you cannot tell by looking at a puddle of water whether the puddle came from an ice sculpture of a unicorn that melted, or
an ice sculpture of a pineapple that melted, or something else.
The answer to your original question is then also "no."
If you don't like the answer, try explaining what this all is for.
People usually don't just go around dividing large numbers by ten million;
it seems likely you have some larger task that this is part of.
If you do, perhaps someone can suggest a better way to do things.
add a comment |
up vote
1
down vote
accepted
First of all, you need to decide what the operation "$/$" means to you.
Now that you have decided what it means, do you agree with the equation on the next line?
$$ 736{,}770{,}000{,}000 / 10{,}000{,}000 = 73{,}677.$$
If you don't agree with that, you really need to explain what you think "$/$" means.
If you do agree with the equation, then consider this question:
Someone had a number $x,$ they performed the operation $x / 10{,}000{,}000$
according to my interpretation of the operation "$/$",
and the result was $73{,}677.$
Supposing I have been told the information in the preceding sentence but have not been told what actual number they used for $x,$ is there any way for me to determine with certainty whether the original number $x$ was $736{,}778{,}906{,}400,$
or $736{,}770{,}000{,}000,$ or possibly something else?
The answer to this question is "no," just as you cannot tell by looking at a puddle of water whether the puddle came from an ice sculpture of a unicorn that melted, or
an ice sculpture of a pineapple that melted, or something else.
The answer to your original question is then also "no."
If you don't like the answer, try explaining what this all is for.
People usually don't just go around dividing large numbers by ten million;
it seems likely you have some larger task that this is part of.
If you do, perhaps someone can suggest a better way to do things.
add a comment |
up vote
1
down vote
accepted
up vote
1
down vote
accepted
First of all, you need to decide what the operation "$/$" means to you.
Now that you have decided what it means, do you agree with the equation on the next line?
$$ 736{,}770{,}000{,}000 / 10{,}000{,}000 = 73{,}677.$$
If you don't agree with that, you really need to explain what you think "$/$" means.
If you do agree with the equation, then consider this question:
Someone had a number $x,$ they performed the operation $x / 10{,}000{,}000$
according to my interpretation of the operation "$/$",
and the result was $73{,}677.$
Supposing I have been told the information in the preceding sentence but have not been told what actual number they used for $x,$ is there any way for me to determine with certainty whether the original number $x$ was $736{,}778{,}906{,}400,$
or $736{,}770{,}000{,}000,$ or possibly something else?
The answer to this question is "no," just as you cannot tell by looking at a puddle of water whether the puddle came from an ice sculpture of a unicorn that melted, or
an ice sculpture of a pineapple that melted, or something else.
The answer to your original question is then also "no."
If you don't like the answer, try explaining what this all is for.
People usually don't just go around dividing large numbers by ten million;
it seems likely you have some larger task that this is part of.
If you do, perhaps someone can suggest a better way to do things.
First of all, you need to decide what the operation "$/$" means to you.
Now that you have decided what it means, do you agree with the equation on the next line?
$$ 736{,}770{,}000{,}000 / 10{,}000{,}000 = 73{,}677.$$
If you don't agree with that, you really need to explain what you think "$/$" means.
If you do agree with the equation, then consider this question:
Someone had a number $x,$ they performed the operation $x / 10{,}000{,}000$
according to my interpretation of the operation "$/$",
and the result was $73{,}677.$
Supposing I have been told the information in the preceding sentence but have not been told what actual number they used for $x,$ is there any way for me to determine with certainty whether the original number $x$ was $736{,}778{,}906{,}400,$
or $736{,}770{,}000{,}000,$ or possibly something else?
The answer to this question is "no," just as you cannot tell by looking at a puddle of water whether the puddle came from an ice sculpture of a unicorn that melted, or
an ice sculpture of a pineapple that melted, or something else.
The answer to your original question is then also "no."
If you don't like the answer, try explaining what this all is for.
People usually don't just go around dividing large numbers by ten million;
it seems likely you have some larger task that this is part of.
If you do, perhaps someone can suggest a better way to do things.
answered Dec 2 at 15:23
David K
51.8k340114
51.8k340114
add a comment |
add a comment |
up vote
0
down vote
I just realised from the answer that when you divided:
$$ dfrac{736,778,906,400}{ 10,000,000} = 73,677 $$
But you discarded the decimal part, so your answer is actually
$$ dfrac{736,778,906,400}{ 10,000,000} = 73,677.8906400 $$
You can convert it to orginal by multiplying $10 text{ million}$.
add a comment |
up vote
0
down vote
I just realised from the answer that when you divided:
$$ dfrac{736,778,906,400}{ 10,000,000} = 73,677 $$
But you discarded the decimal part, so your answer is actually
$$ dfrac{736,778,906,400}{ 10,000,000} = 73,677.8906400 $$
You can convert it to orginal by multiplying $10 text{ million}$.
add a comment |
up vote
0
down vote
up vote
0
down vote
I just realised from the answer that when you divided:
$$ dfrac{736,778,906,400}{ 10,000,000} = 73,677 $$
But you discarded the decimal part, so your answer is actually
$$ dfrac{736,778,906,400}{ 10,000,000} = 73,677.8906400 $$
You can convert it to orginal by multiplying $10 text{ million}$.
I just realised from the answer that when you divided:
$$ dfrac{736,778,906,400}{ 10,000,000} = 73,677 $$
But you discarded the decimal part, so your answer is actually
$$ dfrac{736,778,906,400}{ 10,000,000} = 73,677.8906400 $$
You can convert it to orginal by multiplying $10 text{ million}$.
answered Dec 2 at 14:46
Lakshya Sinha
464
464
add a comment |
add a comment |
Thanks for contributing an answer to Mathematics Stack Exchange!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
Use MathJax to format equations. MathJax reference.
To learn more, see our tips on writing great answers.
Some of your past answers have not been well-received, and you're in danger of being blocked from answering.
Please pay close attention to the following guidance:
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fmath.stackexchange.com%2fquestions%2f3022694%2fdivide-any-large-number-by-its-divisor-then-calculate-the-result-to-original-val%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
This is hard to follow. Your quotient is actually $73677.89064$. You can recover the original numerator by multiplying by $10$ million. If you round the quotient then you can't recover the numerator...you've discarded information. Is that what you are asking?
– lulu
Dec 2 at 14:27
@lulu yes, but when I tried to multiply the qiotient by 10 million it produces this result: 736770000000, not the exact value (like the original value).
– Denzell
Dec 2 at 14:31
Right, because you discarded information when you rounded. If you don't want to discard information, don't round.
– lulu
Dec 2 at 14:32