I am creating a Java program but am dealing with a math problem but can't seem to solve it. This is my assignment:
I have infinite numbers of numbered papers(1,2,3, ..).
This papers are stacked into stacks using 2 variables a and b.
If a = 5 and b = 3 the stacks look like:
So the first stack has "a" items (5) and each next has "b" more (3) as previous.
Now I have to figure out an equation that would tell me how many papers I need to remove to get to the specific one.
For example, if I want to get to the paper numbered with 20, I will need to remove 4 papers to get to it. And this is the solution I am looking for, when I would enter a number of a specific paper, I just need to know how many I need to move (in the stack that it is in) to get to it. When I have this I put all papers back and search for the next one.
Since I will make a program with it, that will deal with long numbers (up to 16 digits), the best solution would be to find some "non loop" equation. For example, if I will set a = 34354 and b = 56774 and I want to know how many papers to remove to get to paper numbered with 533663634611112.
My inputs will be:
- numbers a and b
- number of papers I want to reach (c)
- regarding the above variable (c), I will input this many numbers that represent numbered papers
Output:
- number of papers I have to move to get to all the papers that I have inserted
All number will be very long, so would be the best to make a non loop program. Thanks for all help about this issue.
Mathy answer, but it might be enough to help you:
Stack number is the single integer solution of two inequalities:
Whether that can be computed without using a loop I cannot say and I don't know of any library that could help you (though I am not an expert in math Java libraries). After that the answer you're looking for is