The question is:

One way to approximate decimals by a fraction is by using this method.
For decimal value X, initial conditions are, Z1 = X, D1 = 1 and D0 = 0
Repeat
       Z(i+1) = 1 / (Z(i) + floor(Z(i)))          |
       D(i+1) = D(i) * floor(z(i+1)) + D(i-1)     | for i = 1,2,3,...
       N(i+1) = round(X * D(i+1))                 |
Until |X - (N(i) / D(i))| < ϵ

Write a C program to approximate a decimal by a fraction.

This is as far as I have gotten:

#include <stdio.h>
#include <math.h>
int main()
{
float x,z[100],d[100],n[100],dino,nume;
int i=1;
printf("Enter a decimal: ");
scanf("%f",&x);
z[1]=x;
d[1]=1.0;
d[0]=0.0;

do
{
    z[i+1]=1/(z[i]+floor(z[i]));
    d[i+1]=d[i] * floor(z[i+1])+d[i-1];
    n[i+1]=round(x*d[i+1]);
    dino=d[i];
    nume=n[i];
    i++;
}
while (fabs(x-(nume/dino))<.001);

printf("The fractional value is %.f / %.f",nume,dino);
return 0;
}

But obviously, I have made a mistake somewhere. The error is that every time, the answer that i get is 1 / 1.

link|improve this question

62% accept rate
1  
Can you please explain what is going wrong? Just giving us code is not helpful if we don't know what you consider 'wrong' – linuxuser27 Dec 20 '11 at 17:26
1  
What makes you think you made a mistake? We are not clairvoyant here! – TonyK Dec 20 '11 at 17:27
And obviously we cannot help unless you tell us what is wrong... – thkala Dec 20 '11 at 17:27
What is this code doing that's "obviously" wrong? Blowing up? Returning bad results? Kicking your dog? – Marc B Dec 20 '11 at 17:28
Please define the symptoms of your error. Show any compiler errors or the wrong output - and think about the possible causes for a moment, this solves almost any problem. – thiton Dec 20 '11 at 17:28
show 5 more comments
feedback

5 Answers

I don't think that pseudocode

Until |X - (N(i) / D(i))| < ϵ

translates to C:

while (fabs(x-(nume/dino))<.001);
link|improve this answer
isn't that exactly what i did? o.O – Shashwat Mehta Dec 20 '11 at 17:30
1  
Good catch. Should be >= – linuxuser27 Dec 20 '11 at 17:30
1  
No. You need to read what the pseudo-code is telling you. It is giving you a predicate that says do this 'until' this happens, not do this 'while' it does. – linuxuser27 Dec 20 '11 at 17:36
1  
@ShashwatMehta: "while" and "until" is the catch. In terms of the problem: You want to loop while you have not reached the required precision. Or, in other terms, until you have reached it. – thiton Dec 20 '11 at 17:36
1  
Error in the same line: In the first loop iteration, you use n[1], which is uninitialized and causes loop termination. The pseudocode meant the updated values here, not the original values. – thiton Dec 20 '11 at 17:49
show 2 more comments
feedback

The line

d[i+1]=d[i] * floor(z[i]+1)+d[i-1];

differs from your pseudo-code. It should read

d[i+1]=d[i] * floor(z[i+1])+d[i-1];

instead.

link|improve this answer
i still get the error, ever after correcting that... :( – Shashwat Mehta Dec 20 '11 at 17:31
@Shashwat Mehta: Did you also correct the issue stated by thiton? – Howard Dec 20 '11 at 17:36
yes, i corrected both of them... now i get 0 / 0 :( – Shashwat Mehta Dec 20 '11 at 17:41
feedback

It should be

while (fabs(x-(nume/dino))>.001);

instead of

while (fabs(x-(nume/dino))<.001);

You want the algorithm to proceed while the absolute error is still too big.

(But I must admit, there appear to be other problems too.)

link|improve this answer
could you please mention them?? – Shashwat Mehta Dec 20 '11 at 17:52
I ran the code on my own computer and it's not giving good results. I don't understand the algorithm or the pseudocode. So, I know there are other problems, I just don't know what they are! Can you edit your question in order to explain the mathematics more clearly? One observation is that the psuedocode uses N(i) before it has been initialized. Were you given that psuedocode by your professor? – Aaron McDaid Dec 20 '11 at 18:00
yes, and seems like my professor is wrong... again... this shows the correct algorithm... and it works.. thanks anyways.. :) – Shashwat Mehta Dec 20 '11 at 19:00
1  
That's an interesting document, thanks. It's based on Continued Fractions. – Aaron McDaid Dec 20 '11 at 19:09
feedback

Some advice: Forget about the software for a moment. Your first task should be to go through this method with pen and paper to ensure that you understand the method and the maths behind it. This will help you to write correct pseudocode. When you have done this, you can post the correct pseudocode along with a worked example here, and then you will be ready to ask us for programming advice.

I don't know what your algorithm is trying to do. For example, others have pointed out that N(i) is used before it is initialized. This is why it's very important for you to post a correct pseudocode that we all understand.

link|improve this answer
feedback

An important point about the algorithm is that it works only for 0 < x < 1 (well, it sort of works also for -1 <= x < 0, if you don't mind solutions like 123 / -567), and for nonzero numbers closer than ε to the nearest integer, where ε is the tolerance, here 0.001. If you try it with input between 0 and 1, you'll get reasonable results, if the mentioned problems are fixed.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.