Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

44
votes
16answers
8k views

Is JavaScript's Math broken?

0.1 + 0.2 == 0.3 // returns false 0.1 + 0.2 // returns 0.30000000000000004 Any ideas why this happens?
17
votes
4answers
2k views

regex matching irreducible fraction

How can I match irreducible fraction with regex? For example, 23/25, 3/4, 5/2, 100/101, etc. First of all, I have no idea about gcd-algorithm realisation in regex. UPD: for all answer like "You are ...
11
votes
2answers
548 views

How can I make a “working” repeating decimal representation of a rational number?

I've figured out how to display the repeating part of a repeating decimal using OverBar. repeatingDecimal doesn't actually work as a repeating decimal. I'd like to make a variation of it that looks ...
10
votes
4answers
422 views

What is the best way to separate double into two parts “integer & fraction” in java

I have tried to separate 5.6 (for example) by the following method: private static double[] method(double d) { int integerPart = 0; double fractionPart = 0.0; integerPart = (int) d; ...
6
votes
1answer
198 views

Print number as reduced fraction in R

On my old beat-up TI-83 I can get a reduced fraction representation of a rational real number with the following syntax. .14>Frac 7/50 Is there a similar syntax, function, or CRAN ...
5
votes
2answers
100 views

Is Java Contradicting Itself?

Should I declare Math.round(1/2) in Java to be an int or a double? If both are fine, which is more correct? Also, why is it that Eclipse is telling me Math.round(1/2) = 0.0, while Math.round(0.5) = ...
5
votes
3answers
92 views

Rounding rationals in (0, 1) to the nearest unit fraction

What's a good algorithm for the following problem? Given a rational a / b strictly between 0 and 1, find a natural n that minimizes |a / b - 1 / n|. The simplest algorithm I can think of is to ...
5
votes
5answers
359 views

Converting a float into a string fraction representation

In Java, I am trying to find a way to convert a float number into a fraction string. For example: float num = 1.33333; String numStr = Convert(num); // Should return "1 1/3" float num2 = 1.333; ...
4
votes
1answer
127 views

Simplifying fractions in C#

I have made a console app that adds and subtracts fractions, I have added a function to simplify: public static Numbers Add(Numbers n1, Numbers n2) { int den1; int num1; ...
4
votes
4answers
166 views

range() for floats

Is there a range() equivalent for floats in Python? >>> range(0.5,5,1.5) [0, 1, 2, 3, 4] >>> range(0.5,5,0.5) Traceback (most recent call last): File "<pyshell#10>", line ...
4
votes
2answers
105 views

floating point numbers - closest number to 1.7

I'm preparing for some exams and one of the questions given in the past is to find the closest number to 1.7 given an imaginary floating point format that has a total of 8 bits (1 for sign, 3 for ...
4
votes
3answers
447 views

Egyptian Fractions in C

The ancient Egyptians only used fractions of the form 1/n so any other fraction had to be represented as a sum of such unit fractions and, furthermore, all the unit fractions were different! What is ...
4
votes
5answers
264 views

Optimized algorithm for converting a decimal to a “pretty” fraction

Rather than converting an arbitrary decimal to an exact fraction (something like 323527/4362363), I am trying to convert to just common easily-discernible (in terms of human-readability) quantities ...
4
votes
6answers
421 views

Convert list of Fractions to floats in Python

I have a list of fractions, such as: data = ['24/221 ', '25/221 ', '24/221 ', '25/221 ', '25/221 ', '30/221 ', '31/221 ', '31/221 ', '31/221 ', '31/221 ', '30/221 ', '30/221 ', '33/221 '] How would ...
4
votes
4answers
743 views

Converting fractions to html entities

We've got some fraction information stored in the database, e.g. ¾ ½ Short of doing a search and replace, are there any inbuilt PHP functions that will automatically convert these to proper html ...
3
votes
5answers
139 views

Floating-Point Arithmetic = What is the worst precision/difference from Dec to Binary?

as all know decimal fractions (like 0.1) , when stored as floating point (like double or float) will be internally represented in "binary format" (IEEE 754). And some decimal fractions can not ...
3
votes
3answers
580 views

How to simplify fractions?

How to simplify a fraction in C#? For example, given 1 11/6, I need it simplified to 2 5/6.
3
votes
8answers
869 views

How to output fraction instead of decimal number?

In C++, When I calculate 2/3, it will output decimal values, how can I just get the original format (i.e.g 2/3) instead of 0.66666667 Thanks
3
votes
4answers
229 views

How can fractional number expressions be parsed using pyparsing?

We've just started to kick the tires pyparsing and like it so far, but we've been unable to get it to help us parse fractional number strings to turn them into numeric data types. For example, if a ...
3
votes
2answers
565 views

What algorithm does Python employ in fractions.gcd()?

I'm using the fractions module in Python v3.1 to compute the greatest common divisor. I would like to know what algorithm is used. I'm guessing the Euclidean method, but would like to be sure. The ...
3
votes
6answers
4k views

PHP convert decimal into fraction and back?

I want the user to be able to type in a fraction like: 1/2 2 1/4 3 And convert it into its corresponding decimal, to be saved in MySQL, that way I can order by it and do other comparisons to it. ...
3
votes
6answers
792 views

How can I turn a floating point number into the closest fraction represented by a byte numerator and denominator?

How can I write an algorithm that given a floating point number, and attempts to represent is as accurately as possible using a numerator and a denominator, both restricted to the range of a Java ...
2
votes
3answers
158 views

Convert Fraction String to Decimal?

I'm trying to create a javascript function that can take a fraction input string such as '3/2' and convert it to decimal—either as a string '1.5' or number 1.5 function ratio(fraction) { var ...
2
votes
6answers
125 views

Converting variable type in C++ (or workaround)

The class below is supposed to represent a musical note. I want to be able to store the length of the note (e.g. 1/2 note, 1/4 note, 3/8 note, etc) using only integers. However, I also want to be able ...
2
votes
3answers
407 views

Ruby Regex to round trailing zeros

I'm looking for a regex to remove trailing zeros from decimal numbers. It should return the following results: 0.0002300 -> 0.00023 10.002300 -> 10.0023 100.0 -> 100 1000 -> 1000 ...
2
votes
2answers
260 views

Is there a javascript function that reduces a fraction

say we have fraction 2/4, it can be reduced to 1/2. Is there javascript function that can do the reducing?
2
votes
3answers
90 views

Get the integral part of a BigFraction, as a BigInteger

What is an easy way to get the integral part of a BigFraction as a BigInteger? Basically I want the same result that the intValue and longValue methods return but with arbitrary precision. I also ...
2
votes
3answers
158 views

Python: avoiding fraction simplification

I'm working on a music app' in Python and would like to use the fractions module to handle time signatures amongst other things. My problem is that fractions get simplified, i.e.: >>> from ...
1
vote
5answers
124 views

Using Python to create a Unit Circle calculator?

As a younger programmer, I'm always trying to look for applications of my skills. Anyways, I'm currently taking trig and we're working on unit circles, the formula for converting from degrees to a ...
1
vote
1answer
71 views

Convert number of weeks in decimal to fraction

I ma struggling with this mathematical-based query. I have the difference in seconds between two dates, and would like to convert the number of seconds to a fraction. I have the decimal working well, ...
1
vote
4answers
53 views

__rsub__ and __rtruediv__ with fractions

I'm attempting to use the __rsub__ function in a class I've made called Fraction. Here's the Fraction class code: def __init__(self, num, denom): ''' Creates a new Fraction object num/denom''' ...
1
vote
4answers
163 views

Fraction class overflow (C++)

I've built a normal fraction class for basic operations. Only problem is that since there a huge number of operations ( I'm doing Gaussian Elimination ) there is an overflow either for the numerator ...
1
vote
2answers
383 views

Finding the numerator of a float's fractional value, given a specific denominator [closed]

Possible Duplicates: How to convert floats to human-readable fractions? Convert decimal to fraction in Objective-C? I want to take a decimal, 5.50, which is in a variable, and divide only ...
1
vote
3answers
278 views

How to adding a fraction with a whole..?

how to adding fraction with whole in C#..: 2 + 1 1/5 = ?? or 3 + 3/4 = ?? -----> it's just for example...:), it can be 3 + 2/3 or 4 + 6/7.. help please.. thank you all.. :)
1
vote
4answers
468 views

How to get the length of a numbers fraction part?

How do I find out the length or the number of digits of the fraction part of a decimal number? I can see a few aproaches, e.g. with Strings like this one: public static int ...
1
vote
2answers
97 views

Now I can't get the numerator to output any number. When I do this I get 0/whatever denominator. What am I missing?

//This program evaluates an expression of two fractions added or subtracted #include <iostream> #include <cmath> using namespace std; int CrossMultiplication(int, char, int); int ...
1
vote
2answers
377 views

C# unlimited significant decimal digits (arbitrary precision) without java [closed]

Possible Duplicate: what is the equivalent for java class : BigDecimal in c# I know in this post: Arbitrary precision decimals in C#? says to use java.math.BigDecimal, but I don't have J# ...
1
vote
1answer
142 views

Parsing a fraction in a Django form

I'm using Django on the backend and jQuery on the front end. I would like to accept both fractions and whole numbers (like "1/2", "1 1/4" or "2", for ingredient quantities in a recipe.) I'm using a ...
1
vote
2answers
135 views

What is the easiest way to parse a string and replace 1/2 with ½ (and similar) in PHP?

I have a string with many fractions like 1/2, 1/4 etc. I want to replace them with their Unicode equivalents. I realise I could pick them up with /\s(\d+)\/(\d+)\s/ How would I replace them with ...
1
vote
2answers
163 views

C++ User Input When Initializing Values

I'm a student in an introductory C++ course. For one of our past assignments we have had to create a simple program to add fractions. Each new lab is just an application of new skills learned to ...
1
vote
5answers
1k views

How to simplify fractions in C#?

I'm looking for a library or existing code to simplify fractions. Does anyone have anything at hand or any links? P.S. I already understand the process but really don't want to rewrite the wheel ...
1
vote
1answer
682 views

Calculating negative fractions in Objective C

I've been coding my way through Steve Kochan's Programming in Objective-C 2.0 book. I'm up to an exercise in chapter 7, ex 4, in case anyone has the book. The question posed by the exercise it will ...
1
vote
3answers
149 views

Turning Floats into Their Closest (UTF-8 Character) Fraction

I want to take any real number, and return the closest number, with the closest fraction as available in the UTF-8 character set, appropriate. 0/4 = 0.00 = # < .125 1/4 = 0.25 = ¼ # > .125 ...
1
vote
2answers
355 views

How to display pretty fractions in Crystal Reports generated PDF

I'm exporting a report to PDF using Crystal Reports bundled with VS2008. I need to display non-standard fractions so that they look nice instead of just something like 26/32. I have turned html ...
1
vote
3answers
302 views

Excel's cell center shifted

I have been working on a math drill program for a bit now. I had asked a similar question to this previously but I wasn't getting any good help with it. So I decided to research the problem more ...
0
votes
2answers
60 views

faster fractions module in python

Is there a faster equivalent of the fractions module, something like a cFractions module, just as there is a cDecimal module, which is a faster equivalent of the Decimal module ? The fractions module ...
0
votes
1answer
57 views

convert fraction into string and also insert [] for repeating part

An interview question: Given two int N (numerator) and D (denominator), return the fraction in string. if the fraction is repeating, then display the repeating part in bracket. Example: Input: N=1, ...
0
votes
2answers
181 views

What is the most efficient way to determine the Farey sequence of degree n?

I am going to implement a Farey fraction approximation for converting limited-precision user input into possibly-repeating rationals. http://mathworld.wolfram.com/FareySequence.html I can easily ...
0
votes
3answers
25 views

different output of same value in different situations - array

I can't understand why these arrays give me different outputs: • this value 1/4 came from a table (db) id | value ... 2 | 1/4 3 | 1/7 echo $matrix[0][2]; //show 1/4 • but if i do = 1/4 echo ...
0
votes
1answer
43 views

Is there a replacement for method or function Frac in .NET that will take DateTime parameter?

I am working with Delphi Prism for .NET. I need to be able to take DateTime Value and separate the time from the date. I can do that on Win32 Delphi by using Frac function. I can't seem to find ...

1 2