active questions tagged numbers - Stack Overflow most recent 30 from stackoverflow.com 2009-12-20T04:24:36Z http://stackoverflow.com/feeds/tag/numbers http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1550351/generate-two-numbers-that-are-not-equal-in-php 4 Generate two numbers that are NOT equal in PHP Fred Bergman 2009-10-11T10:26:50Z 2009-12-17T17:46:24Z <p>Hello everyone!</p> <p>I need to generate two numbers that are NOT equal in PHP.</p> <p>I know that I use <code>$random1 = (rand()%9);</code> to generate random a number between 0-9. I need to add something to this I guess.</p> <p>Thanks!</p> http://stackoverflow.com/questions/1860339/get-factors-of-a-number 0 Get factors of a number Salman A 2009-12-07T14:34:30Z 2009-12-17T14:36:57Z <p>I need to get two factors ( x, y ) of a given number ( n ) such that:</p> <ul> <li>x * y &lt;= n</li> <li>x * y should be as close to n as possible</li> <li>x and y should be as close to each other as possible.</li> </ul> <p>Examples:</p> <ul> <li>n = 16 => x = 4, y = 4</li> <li>n = 17 => x = 4, y = 4</li> <li>n = 18 => x = 6, y = 3</li> <li>n = 20 => x = 5, y = 4</li> </ul> <p>Any language will do but preferably php.</p> <p>EDIT -- CLARIFICATION</p> <p>I want to create a rectangle, x units wide * y units tall such that its area is as close to n as possible. x and y must be integers. If n is a prime number then factors of n - 1 are acceptable.</p> http://stackoverflow.com/questions/1858117/flexible-numeric-string-parsing-in-python 4 Flexible numeric string parsing in Python Kevin Ivarsen 2009-12-07T06:06:50Z 2009-12-17T08:35:40Z <p>Are there any Python libraries that help parse and validate numeric strings beyond what is supported by the built-in float() function? For example, in addition to simple numbers (1234.56) and scientific notation (3.2e15), I would like to be able to parse formats like:</p> <ul> <li>Numbers with commas: 2,147,483,647</li> <li>Named large numbers: 5.5 billion</li> <li>Fractions: 1/4</li> </ul> <p>I did a bit of searching and could not find anything, though I would be surprised if such a library did not already exist.</p> http://stackoverflow.com/questions/1909528/regular-expression-where-part-of-string-must-be-number-between-0-100 3 Regular expression where part of string must be number between 0-100 Neil Barnwell 2009-12-15T18:50:46Z 2009-12-15T19:43:37Z <p>I need to validate serial numbers. For this we use regular expressions in C#, and a certain product, part of the serial number is the "seconds since midnight". There are 86400 seconds in a day, but how can I validate it as a 5-digit number in this string?:</p> <pre><code>654984051-86400-231324 </code></pre> <p>I can't use this concept:</p> <pre><code>[0-8][0-6][0-4][0-0][0-0] </code></pre> <p>Because then <code>86399</code> wouldn't be valid. How can I overcome this? I want something like:</p> <pre><code>[00000-86400] </code></pre> <p><strong>UPDATE</strong><br> I want to make it clear that I'm aware of - and agree with - the <em>"don't use regular expressions when there's a simpler way"</em> school-of-thought. <a href="http://stackoverflow.com/questions/1909528/regular-expression-where-part-of-string-must-be-number-between-0-100#1909559">Jason's answer</a> is exactly how I'd like to do it, however this serial number validation is for all serial numbers that pass through our system - there's currently no custom validation code for these specific ones. <em>In this case</em> I have a good reason for looking for a regex solution.</p> <p>Of course, if there isn't one, then that makes the case for custom validation for these particular products undeniable, but I wanted to explore this avenue fully before going with a solution that requires code changes.</p> http://stackoverflow.com/questions/1904321/can-12-1-be-represented-exactly-as-a-floating-point-number 2 Can 12.1 be represented exactly as a floating point number? Claudiu 2009-12-14T23:41:07Z 2009-12-15T19:24:04Z <p>This is in reference to the comments in <a href="http://stackoverflow.com/questions/202302/rounding-to-an-arbitrary-number-of-significant-digits/202336#202336">this question</a>:</p> <blockquote> <p>This code in Java produces 12.100000000000001 and this is using 64-bit doubles which can present 12.1 exactly. – Pyrolistical </p> </blockquote> <p>Is this true? I felt that since a floating point number is represented as a sum of powers of two, you cannot represent 12.1 exactly, no matter how many bits you have. However, when I implemented both the algorithms and printed the results of calling them with (12.1, 3) with many significant digits, I get, for his and mine respectively:</p> <p>12.10000000000000000000000000000000000000000000000000000000000000000000000000 12.10000000000000100000000000000000000000000000000000000000000000000000000000</p> <p>I printed this using <code>String.format("%76f")</code>. I know that's more zeros than necessary, but I don't see any rounding in the 12.1 .</p> http://stackoverflow.com/questions/483744/why-do-most-languages-not-allow-binary-numbers 11 Why do most languages not allow binary numbers? racket 2009-01-27T15:04:25Z 2009-12-15T14:57:40Z <p>Why do most computer programming languages not allow binary numbers to be used like decimal or hexadecimal?</p> <ul> <li>In VB.NET you could write a hexadecimal number like &amp;H4</li> <li>In C you could write a hexadecimal number like 0x04</li> </ul> <p>Why not allow binary numbers?</p> <ul> <li>&amp;B010101</li> <li>0y1010</li> </ul> <p>Bonus Points!... What languages <em>do</em> allow binary numbers?</p> <p><hr /></p> <p><strong>Edit</strong></p> <p>Wow! - So the majority think it's because of brevity and poor old "waves" thinks it's due to the technical aspects of the binary representation.</p> http://stackoverflow.com/questions/1892375/matlab-generate-random-numbers 1 MATLAB generate random numbers Tan Wei Jin 2009-12-12T05:08:03Z 2009-12-14T17:43:33Z <p>Hi I am trying to generate random numbers in MATLAB with a random MEAN value.</p> <p>For example, if I use</p> <pre><code>e = mean(rand(1000,1)) </code></pre> <p>the answer for <code>e</code> will always be close to <code>0.5</code>. What I want is for the value of <code>e</code> (mean) to be random, so that <code>e</code> can be 0.1, 0.2, 0.3, etc...</p> <p>Is it correct for me to use <code>e = mean( unifrnd(0,1,[1000,1]) )</code> ?</p> <p>Thanks</p> http://stackoverflow.com/questions/1885636/algorithm-for-assigning-a-unique-series-of-bits-for-each-user 2 Algorithm for assigning a unique series of bits for each user? Mark 2009-12-11T03:34:48Z 2009-12-11T18:17:52Z <p>The problem seems simple at first: just assign an id and represent that in binary. </p> <p>The issue arises because the user is capable of changing as many 0 bits to a 1 bit. To clarify, the hash could go from 0011 to 0111 or 1111 but never 1010. Each bit has an equal chance of being changed and is independent of other changes.</p> <p>What would you have to store in order to go from hash -> user assuming a low percentage of bit tampering by the user? I also assume failure in some cases so the correct solution should have an acceptable error rate.</p> <p>I would an estimate the maximum number of bits tampered with would be about 30% of the total set.</p> <p>I guess the acceptable error rate would depend on the number of hashes needed and the number of bits being set per hash.</p> <p>I'm worried with enough manipulation the id can not be reconstructed from the hash. The question I am asking I guess is what safe guards or unique positioning systems can I use to ensure this happens.</p> http://stackoverflow.com/questions/1022203/sorting-strings-containing-numbers-in-a-user-friendly-way 2 Sorting strings containing numbers in a user friendly way Mariusz 2009-06-20T18:37:23Z 2009-12-08T00:25:51Z <p>Being used to the standard way of sorting strings, I was surprised when I noticed that Windows sorts files by their names in a kind of advanced way. Let me give you an example:</p> <p>Track1.mp3<br/> Track2.mp3<br/> Track10.mp3<br/> Track20.mp3<br/></p> <p>I think that those names are compared (during sorting) based on letters and by numbers separately.</p> <p>On the other hand, the following is the same list sorted in a standard way:<br/> Track1.mp3<br/> Track10.mp3<br/> Track2.mp3<br/> Track20.mp3<br/></p> <p>I would like to create a comparing alogorithm in Delphi that would let me sort strings in the same way. At first I thought it would be enough to compare consecutive characters of two strings while they are letters. When a digit would be found at some position of both the strings, I would read all digits following them to form a number and then compare the numbers.</p> <p>To give you an example, I'll compare "Track10" and "Track2" strings this way:<br/> 1) read characters while they are equal and while they are letters: "Track", "Track"<br/> 2) if a digit is found, read all following digits: "10", "2"<br/> 2a) if they are equal, go to 1 or else finish<br/> Ten is greater than two, so "Track10" is greater than "Track2"<br/></p> <p>It had seemed that everything would be all right until I noticed, during my tests, that Windows considered "Track010" lower than "Track10", while I thought the first one was greater as it was longer (not mentioning that according to my algorithm both the strings would be equal, which is wrong).</p> <p>Could you provide me with the idea how exactly Windows sorts files by names or maybe you have a ready-to-use algorithm (in any programming language) that I could base on?</p> <p>Thanks a lot!<br/> Mariusz</p> http://stackoverflow.com/questions/1190909/pi-infinite-numbers 7 Pi/Infinite Numbers Ben Shelock 2009-07-27T22:04:22Z 2009-12-07T23:09:08Z <p>I'm curious about infinite numbers in computing, in particular pi.</p> <p>For a computer to render a circle it would have to understand pi. But how can it if it is infinite?</p> <p>Am I looking too much into this? Would it just use a rounded value?</p> http://stackoverflow.com/questions/1831419/whats-the-shortest-regex-that-can-match-non-zero-floating-point-numbers-with-any 4 What's the shortest regex that can match non-zero floating point numbers with any number of decimal places? luvieere 2009-12-02T08:25:35Z 2009-12-02T11:37:03Z <p>What's the shortest regex that can match non-zero floating point numbers with any number of decimal places?</p> <p>It should accept numbers like</p> <pre><code>-1 -5.9652 -7.00002 -0.8 -0.0500 -0.58000 0.01 0.000005 0.9900 5 7.5 7.005 </code></pre> <p>but reject constructions such as</p> <pre><code>. .02 -. -.996 0 -0 0. -0. -0.000 0.00 -- .. + +0 +1 +. +1.26 ,etc </code></pre> <p>I do not need support for the scientific notation, with e , E and such.<br> The language I'm using is C#, by the way.</p> http://stackoverflow.com/questions/1824266/colorize-negative-positive-numbers-jquery 0 Colorize negative/positive numbers (jQuery) Nimbuz 2009-12-01T06:01:13Z 2009-12-01T06:50:05Z <p>I'd like to color numbers in a table for better readability: </p> <p>green for positive (+00.00); red for negative (-00.00) and; black for default case (no sign)</p> <p>Many thanks!</p> http://stackoverflow.com/questions/1813732/isnumber-function-doesnt-work-for-me-unix-shell 0 is_number function doesn't work for me - unix shell goe 2009-11-28T20:39:29Z 2009-11-28T20:56:27Z <p>When I pass in 2009 as a arg to this shell function it returns 0, why?</p> <pre><code>isyear() { case $arg in [0-9][0-9][0-9][0-9]) NUM=1 ;; *) NUM=0 ;; esac echo $arg } </code></pre> http://stackoverflow.com/questions/1811922/how-might-i-convert-integer-values-into-words-for-instance-1006-becomes-one-th 1 How might I convert integer values into words (for instance, 1006 becomes "one thousand and 6")? [closed] er-robinverma1987-hotmail-co-uk 2009-11-28T07:55:58Z 2009-11-28T16:41:04Z <blockquote> <p><strong>Possible Duplicates:</strong><br> <a href="http://stackoverflow.com/questions/466042/convert-an-integer-to-a-string-of-words">Convert an Integer to a string of words</a><br> <a href="http://stackoverflow.com/questions/759198/how-to-convert-a-number-to-word-form-eg-72-to-seventy-two">How to convert a number to word form? eg: &ldquo;72&rdquo; to &ldquo;Seventy two&rdquo;</a> </p> </blockquote> <p>I want to convert an integer into a string using using C#. The main problem is that I am making a application in which user will enter the digits in a bank cheque and after clicking on the submit button the number should be displayed as is customary for currency amounts on cheques (1000 becomes "one thousand", etc.)</p> http://stackoverflow.com/questions/1809569/reflectively-determining-if-a-member-type-is-a-number-in-c -1 Reflectively determining if a member type is a number in C# [closed] Alex Marshall 2009-11-27T16:12:19Z 2009-11-27T16:23:08Z <blockquote> <p><strong>Possible Duplicate:</strong><br> <a href="http://stackoverflow.com/questions/1749966/c-how-to-determine-whether-a-type-is-a-number">C# - how to determine whether a Type is a number </a> </p> </blockquote> <p>Are there any convenience methods for determining if a Type is the type of a number in C# ? I know that in Java, you could just use something like :</p> <pre><code>Double myNum = 0.0; if (Number.class.isAssignableFrom(myNum.getClass())) { doStuff(); } </code></pre> <p>... but is there a counterpart in C# ? This is made more difficult by the fact that C# has no common Number hierarchy like Java.</p> http://stackoverflow.com/questions/95727/how-to-convert-floats-to-human-readable-fractions 11 How to convert floats to human-readable fractions? Swaroop C H 2008-09-18T19:00:09Z 2009-11-27T00:32:25Z <p>Let's say we have 0.33, we need to output "1/3". <br /> If we have "0.4", we need to output "2/5".</p> <p>The idea is to make it human-readable to make the user understand "x parts out of y" as a better way of understanding data.</p> <p>I know that percentages is a good substitute but I was wondering if there was a simple way to do this?</p> http://stackoverflow.com/questions/1784901/can-coordinates-of-constructable-points-be-represented-exactly 6 Can coordinates of constructable points be represented exactly? Jason Orendorff 2009-11-23T18:02:50Z 2009-11-25T18:41:38Z <p>I'd like to write a program that lets users draw points, lines, and circles as though with a straightedge and compass. Then I want to be able to answer the question, "are these three points collinear?" To answer correctly, I need to avoid rounding error when calculating the points.</p> <p>Is this possible? How can I represent the points in memory?</p> <p>(I looked into some unusual numeric libraries, but I didn't find anything that claimed to offer both exact arithmetic and exact comparisons that are guaranteed to terminate.)</p> http://stackoverflow.com/questions/1787249/why-doesnt-this-division-work-in-python 0 Why doesn't this division work in python? alex 2009-11-24T01:32:31Z 2009-11-24T02:22:30Z <pre><code>&gt;&gt;&gt; numerator = 29 &gt;&gt;&gt; denom = 1009 &gt;&gt;&gt; print str(float(numerator/denom)) 0.0 </code></pre> <p>I just want it to return a decimal...</p> http://stackoverflow.com/questions/1783519/how-to-round-down-integers-in-java 4 How to round *down* integers in Java? Redandwhite 2009-11-23T14:38:16Z 2009-11-23T21:03:21Z <p>I'd like to round integers down to their nearest 1000 in Java.</p> <p>So for example:</p> <ul> <li>13,623 rounds to 13,000</li> <li>18,999 rounds to 18,000</li> <li>etc</li> </ul> http://stackoverflow.com/questions/1779013/check-if-string-contains-only-digits 0 Check if string contains only digits Isabell 2009-11-22T15:24:21Z 2009-11-22T22:18:29Z <p>Hello</p> <p>I want to check if a string contains only digits. I used this:</p> <pre><code>var isANumber = isNaN(theValue) === false; if (isANumber){ .. } </code></pre> <p>.. but realized that it also allows + and -. Basically I wanna make sure the input contains ONLY digits and no other letters. Since +100 and -5 are both numbers, isNaN, is not the right way to go. Perhaps a regexp is what I need? Any tips?</p> http://stackoverflow.com/questions/1779850/java-recursion-phone-number-letters 0 Java recursion phone number letters isaaclimdc 2009-11-22T20:20:47Z 2009-11-22T21:26:56Z <p>How do you write a java program using a recursive method that takes in an int like "234" and converts this into the corresponding letters on a phone pad (2 = ABC, 3 = DEF, etc), and prints out the permutations of this? e.g.:</p> <p>input = 234</p> <p>output = ADG ADH ADI AEG AEH AEI AFG AFH AFI BDG BDH BDI BEG BEH BEI BFG BFH BFI CDG CDH CDI CEG CEH CEI CFG CFH CFI</p> <p><hr></p> <p>input = 89</p> <p>output = TW TX TY TZ UW UX UY UZ VW VX VY VZ</p> http://stackoverflow.com/questions/622/most-efficient-code-for-the-first-10000-prime-numbers 7 Most efficient code for the first 10000 prime numbers? Niyaz 2008-08-03T05:45:21Z 2009-11-21T17:00:48Z <p>I want to print the first 10000 prime numbers. Can anyone give me the most efficient code for this? Clarifications:</p> <ol> <li>It does not matter if your code is inefficient for n &gt;10000.</li> <li>The size of the code does not matter.</li> <li>You cannot just hard code the values in any manner.</li> </ol> http://stackoverflow.com/questions/1769680/random-prime-number 7 Random prime number gmile 2009-11-20T10:45:51Z 2009-11-20T13:33:16Z <p>How do I quickly generate a random prime number, that is for sure 1024 bit long? </p> http://stackoverflow.com/questions/1656361/how-many-possible-urls-can-you-make-with-the-following-characters 2 How many possible URLs can you make with the following characters? mager 2009-11-01T04:11:48Z 2009-11-14T19:18:28Z <p>I want to make a short URL service for 2 million assets but I want to use the shortest number of possible characters.</p> <p>What is the math equation that I would need to use to figure it out? I know it has something to do with factorials, right?</p> http://stackoverflow.com/questions/1613317/fastest-way-to-separate-the-digits-of-an-int-into-an-array-in-net 9 Fastest way to separate the digits of an int into an array in .NET? Moayad Mardini 2009-10-23T13:11:13Z 2009-11-13T10:56:59Z <p>I want to separate the digits of an integer, say 12345, into an array of bytes {1,2,3,4,5}, but I want the most performance effective way to do that, because my program does that millions of times.</p> <p>Any suggestions? Thanks.</p> http://stackoverflow.com/questions/1388209/how-to-format-numbers-according-to-locale-in-haskell 1 How to format numbers according to locale in Haskell? jetxee 2009-09-07T08:31:15Z 2009-11-12T19:26:12Z <p>In Python I can use <code>locale.format</code> to pretty-print numbers according to locale setting:</p> <pre><code>&gt;&gt;&gt; import locale &gt;&gt;&gt; locale.setlocale(locale.LC_ALL, "en_US.UTF-8") 'en_US.UTF-8' &gt;&gt;&gt; locale.format("%.2f",1234567.89,grouping=True) '1,234,567.89' </code></pre> <p>How can I do the same in Haskell? I see that there are <a href="http://hackage.haskell.org/packages/archive/bindings-common/0.2.4/doc/html/Bindings-C.html#3" rel="nofollow">localeconv and setlocale</a> bindings, but is there a generic pretty printer which respects <code>Lconv</code>?</p> http://stackoverflow.com/questions/1715703/c-numeric-formatting-question 0 C# Numeric formatting question stefan 2009-11-11T14:57:18Z 2009-11-11T15:25:05Z <p>Hi, I have these numbers:</p> <pre><code>5.25 10251.35 5 </code></pre> <p>and I want them to be formatted with groups and always with 2 decimals ,XX</p> <p>this is what <code>.ToString("N2")</code> does:</p> <pre><code>5,25 10.251,35 5 </code></pre> <p>How can i make the <strong>'5'</strong> look like <strong>5,00</strong> too ? And for multiple cultures of course (en: 5.0, de: 5,0 ...)</p> <p><strong>In fact this question has no sense, N2 should do it at all costs. The problem was in my WebServer.</strong> </p> http://stackoverflow.com/questions/1630610/regex-match-only-letters-numbers-and-one-space-between-each-word 0 Regex - Match only letters, numbers, and one space between each word Alon 2009-10-27T12:55:05Z 2009-11-10T19:45:59Z <p>How can I create a regex expression which will match only letters and numbers, and <strong>one</strong> space between each word?</p> <p><strong>Good Examples:</strong></p> <pre> Amazing Hello Beautiful World I am 13 years old </pre> <p><strong>Bad Examples:</strong> </p> <pre> Hello world I am 13 years old. I am Chuck Norris </pre> http://stackoverflow.com/questions/1684431/how-to-convert-numbers-to-words-in-erlang 2 How to convert numbers to words in Erlang? Roberto Aloi 2009-11-05T23:38:00Z 2009-11-10T11:07:46Z <p>I found this interesting question about converting numbers into "words":</p> <p><a href="http://stackoverflow.com/questions/309884/code-golf-number-to-words">http://stackoverflow.com/questions/309884/code-golf-number-to-words</a></p> <p>I would really like to see how you would implement this efficiently in Erlang.</p> http://stackoverflow.com/questions/1691876/using-the-right-numeric-data-type 1 Using the right numeric data type Scanningcrew 2009-11-07T03:28:02Z 2009-11-07T18:01:30Z <p>After becoming more engaged with training new engineers as well as reading <a href="http://msmvps.com/blogs/jon%5Fskeet/archive/2009/11/02/omg-ponies-aka-humanity-epic-fail.aspx" rel="nofollow">Jon Skeet's DevDays presentation</a> I have begun to recognize many engineers aren't clear when to use which numeric datatypes when. I appreciate the role a formal computer science degree plays in helping with this, but I see a lot of new engineers showing uncertainty because they have never worked with large data sets, or financial software, or programming phyiscs or statistics problems, or complex datastore issues.</p> <p>My experience is that people really grok concepts when they are explained within context. I am looking for good examples of real programming problems where certain data is best represented using data type. Try to stay away from the textbook examples if possible. I am tagging this with Java, but feel free to give examples in other languages and retag:</p> <p>Integer, Long, Double, Float, BigInteger, etc...</p>