active questions tagged math - Stack Overflowmost recent 30 from stackoverflow.com2009-12-09T13:37:53Zhttp://stackoverflow.com/feeds/tag/mathhttp://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1872322/java-confirm-method-binary-division-and-find-remainder-is-correct0Java: confirm method Binary division and find remainder is correct?cadwag2009-12-09T08:02:04Z2009-12-09T13:32:30Z
<p>I am parsing binary files and have to implement a CRC algorithm to ensure the file is not corrupted. Problem is that I can't seem to get the binary math working when using larger numbers. </p>
<p>The example I'm trying to get working:</p>
<p><code>BigInteger G = new BigInteger("11001", 2);<br>
BigInteger M = new BigInteger("1110010000", 2);<br>
BigInteger R = M.remainder(G);</code></p>
<p>I am expecting:<br>
<code>R = "0101"</code></p>
<p>But I am getting:<br>
<code>R = "1100"</code></p>
<p>I am assuming the remainder of 0101 is correct since it is given to me in this book I am using as a reference for the CRC algorithm (it's not based in Java), but I can't seem to get it working. I can get small binary calculations to work that I have solved by hand, but not the larger ones. I'll admit that I haven't worked the larger ones by hand yet, that is my next step, but I wanted to see if someone could point out a glaring flaw I have in my code. </p>
<p>Can anyone confirm or deny that my methodology is correct?</p>
<p>Thanks</p>
http://stackoverflow.com/questions/1867426/modeling-distribution-of-performance-measurements4Modeling distribution of performance measurementspeterchen2009-12-08T14:45:23Z2009-12-09T06:24:53Z
<p>How would you mathematically model the distribution of repeated real life performance measurements - "Real life" meaning you are not just looping over the code in question, but it is just a short snippet within a large application running in a typical user scenario?</p>
<p>My experience shows that you usually have a peak around the average execution time that can be modeled adequately with a Gaussian distribution. In addition, there's a "long tail" containing outliers - often with a multiple of the average time. (The behavior is understandable considering the factors contributing to first execution penalty). </p>
<p><strong>My goal</strong> is to model aggregate values that reasonably reflect this, and can be calculated from aggregate values (like for the Gaussian, calculate mu and sigma from N, sum of values and sum of squares). In other terms, number of repetitions is unlimited, but memory and calculation requirements should be minimized. </p>
<p>A normal Gaussian distribution can't model the long tail appropriately and will have the average biased strongly even by a very small percentage of outliers. </p>
<p><strong>I am looking for</strong> ideas, especially if this has been attempted/analysed before. I've checked various distributions models, and I think I could work out something, but my statistics is rusty and I might end up with an overblown solution. Oh, a complete shrink-wrapped solution would be fine, too ;) </p>
<p><strong>Other aspects / ideas:</strong> Sometimes you get "two humps" distributions, which would be acceptable in my scenario with a single mu/sigma covering both, but ideally would be identified separately. </p>
<p>Extrapolating this, another approach would be a "floating probability density calculation" that uses only a limited buffer and adjusts automatically to the range (due to the long tail, bins may not be spaced evenly) - haven't found anything, but with some assumptions about the distribution it should be possible in principle.</p>
<p><hr></p>
<p><strong>Why</strong> (since it was asked) - </p>
<p>For a complex process we need to make guarantees such as "only 0.1% of runs exceed a limit of 3 seconds, and the average processing time is 2.8 seconds". The eprformance of an isolated piece of code can be very different from a normal run-time environment involving varying levels of disk and network access, background services, scheduled events that occur within a day, etc. </p>
<p>This can be solved trivially by accumulating <em>all</em> data. However, to accumulate this data in production, the data produced needs to be limited. For isolated analysis, a gaussian deviation is ok (with some tuning). That doesn't work anymore for the distributions found above. </p>
http://stackoverflow.com/questions/1869155/math-on-batch-win0Math on batch (win)YourComputerHelpZ2009-12-08T19:06:27Z2009-12-09T01:33:29Z
<p>Hello,</p>
<p>i am developing a CMD batch kind of thing.</p>
<p>Now, i want to do some math in it. This formula:</p>
<p>(x+1)100:y</p>
<p>or for guys who are not so good in math: </p>
<p>x+1, answer times 100, answer devided by y.</p>
<p>So in batch, x = %x%, and y = %y%.</p>
<p>So, i know how to set the variables. Now, how can batch calculate this? (WINDOWS CMD)</p>
<p>Do i need something extra?</p>
<p>(I need this to be available to users of Windows XP to 7.)</p>
<p>Thanks.</p>
http://stackoverflow.com/questions/1870341/resizing-columns-algorithm0Resizing Columns AlgorithmSpencer Ruport2009-12-08T22:30:57Z2009-12-08T22:49:07Z
<p>I have a set of columns of varying widths and I need an algorithm to re-size them for some value y which is greater than the sum of all their widths.</p>
<p>I would like the algorithm to prioritize equalizing the widths. So if I have a value that's absolutely huge the columns will end up with more or less the same width. If there isn't enough room for that I want the smaller cells to be given preference.</p>
<p>Any whiz bang ideas? I'd prefer something as simple as:</p>
<pre><code>getNewWidths(NewWidth, ColumnWidths[]) returns NewColumnWidths[]
</code></pre>
http://stackoverflow.com/questions/1865530/more-simple-math-help-in-bash0More simple math help in bash!vgm642009-12-08T08:33:34Z2009-12-08T22:10:35Z
<p>In the same thread as <a href="http://stackoverflow.com/questions/1850235/simple-math-statements-in-bash-in-a-for-loop">this question</a>, I am giving this another shot and ask SO to help address how I should take care of this problem. I'm writing a bash script which needs to perform the following:</p>
<ol>
<li>I have a circle in <code>x</code> and <code>y</code> with radius <code>r</code>.</li>
<li>I specify <code>resolution</code> which is the distance between points I'm checking.</li>
<li>I need to loop over x and y (from -r to r) and check if the current (x,y) is in the circle, but I loop over discrete <code>i</code> and <code>j</code> instead.</li>
<li>Then <code>i</code> and <code>j</code> need to go from <code>-r/resolution</code> to <code>+r/resolution</code>.</li>
<li>In the loop, what will need to happen is <code>echo "some_text i*resolution j*resolution 15.95 cm"</code> (note lack of <code>$</code>'s because I'm clueless). This output is what I'm really looking for.</li>
</ol>
<p>My best shot so far:</p>
<pre><code>r=40.5
resolution=2.5
end=$(echo "scale=0;$r/$resolution") | bc
for (( i=-end; i<=end; i++ ));do
for (( j=-end; j<=end; j++ ));do
x=$(echo "scale=5;$i*$resolution") | bc
y=$(echo "scale=5;$j*$resolution") | bc
if (( x*x + y*y <= r*r ));then <-- No, r*r will not work
echo "some_text i*resolution j*resolution 15.95 cm"
fi
done
done
</code></pre>
<p>I've had just about enough with bash and may look into ksh like was suggested by someone in my last question, but if anyone knows a proper way to execute this, please let me know! What ever the solution to this, it will set my future temperament towards bash scripting for sure.</p>
http://stackoverflow.com/questions/1870118/principal-component-and-factor-analysis1Principal component and Factor Analysis dotNet2009-12-08T21:55:45Z2009-12-08T21:57:42Z
<p>Hi ,
I have some question regarding principal component and factor analysis.</p>
<p>For PCA , does it matter whether the eigenvalues are computed from the covariance matrix or the correlation matrix É
And what about FA , are the results of the eigenvalues the same if I use the covariance or the correlation matrix É</p>
http://stackoverflow.com/questions/1833315/how-to-mix-two-numbers-into-one-hex-string0how to "mix" two numbers into one hex-stringmothorool2009-12-02T14:41:43Z2009-12-08T21:56:53Z
<p>How to generate a code from two numbers, that when you know this code and one of the numbers you can descramble the second number?
For example you have two numbers: <code>983</code> and <code>2303</code> and you "mix" it into hex-string like this:<code>4b17a190bce4ea32236b98dd</code>. When you know first number and this hex-string you can descramble second number. But when you know the second number and hex-string you cannot descramble first number. How to do this?</p>
http://stackoverflow.com/questions/434647/essential-math-for-excelling-as-a-programmer6Essential Math for excelling as a Programmer?Brock Woolf2009-01-12T06:54:28Z2009-12-08T18:13:29Z
<p>Hi everyone,</p>
<p>I was just wondering about math as a programmer. I DO use math a fair bit, mainly vector math and occasionally trigonometry when I do games programming.</p>
<p>My question: Do you consider there to be any essential math that you as a programmer must know in order to be a successful (and awesome) programmer? Mainly I have found that programming is just logic, but there may be times when clever math can (not algorithms specifically) can be used to work around common problems.</p>
http://stackoverflow.com/questions/137550/is-programming-math19Is Programming == Math?moffdub2008-09-26T03:11:29Z2009-12-08T18:07:26Z
<p>I've heard many times that all programming is really a subset of math. <a href="http://c2.com/cgi-bin/wiki?ProgrammingIsMath" rel="nofollow">Some suggest</a> that OO, at its roots, is mathematically based. I don't get the connection. Aside from some obvious examples:</p>
<ul>
<li>using induction to prove a recursive algorithm</li>
<li>formal correctness proofs</li>
<li>functional languages</li>
<li>lambda calculus</li>
<li>asymptotic complexity</li>
<li>DFAs, NFAs, Turing Machines, and theoretical computation in general</li>
<li>the fact that everything on the box is binary</li>
</ul>
<p>In what ways is programming really a subset of math?</p>
<p>I'm looking for an explanation that might have relevance to enterprise/OO development (if there is a strong enough connection, that is). Thanks in advance.</p>
<p>Edit: as I stated in a comment to an answer, math is uber important to programming, but what I struggle with is the "subset" argument.</p>
http://stackoverflow.com/questions/1868115/calculating-shortest-path-between-2-points-on-a-flat-map-of-the-earth1Calculating shortest path between 2 points on a flat map of the Earthhelloworlder2009-12-08T16:28:47Z2009-12-08T17:31:56Z
<p>How do you draw the curve representing the shortest distance between 2 points on a flat map of the Earth?</p>
<p>Of course, the line would not be a straight line because the Earth is curved. (For example, the shortest distance between 2 airports is curved.)</p>
http://stackoverflow.com/questions/1867934/pagerank-vs-svd2Pagerank vs SVDPhil H2009-12-08T16:04:53Z2009-12-08T17:15:14Z
<p><a href="http://en.wikipedia.org/wiki/PageRank" rel="nofollow">Pagerank</a> works on the nodegraph of a series of pages and the directed edges formed by their respective inward and outward links. Thus the rank of a particular page is broadly a locally-induced effect in the nodegraph.</p>
<p><a href="http://en.wikipedia.org/wiki/Singular_value_decomposition" rel="nofollow">SVD</a>, on the other hand, works on a whole matrix of values, and has no directionality - a link between site A and site B would only register as a 1 on the correct matrix element. It is a global system, so ranking is a global effect.</p>
<p>Given the extreme sparseness of web-derived matrices, I would expect SVD to be a bad performer here, as it requires a complete dataset, and has significant memory requirements.</p>
<p>Is that true? Does Pagerank outdo SVD largely because it is a nodegraph-based algorithm? How can Pagerank infer semantic relevance from a page beyond the number of times a word is mentioned? Or would that be a second step, performed after Pagerank has ranked the pages?</p>
http://stackoverflow.com/questions/1852357/multiplying-by-inverse-matrices1Multiplying by inverse matrices?meds2009-12-05T14:36:54Z2009-12-08T16:20:53Z
<p>If I have a matrix which is a combination of World*View*Projection and I multiply it by the inverse of the projection does it yield the World*View matrix or something else? If not then how can I extract the World*View matrix from a World*View*Projection matrix?</p>
<p>Thanks for any help :)</p>
http://stackoverflow.com/questions/1866031/generating-sorted-random-ints-without-the-sort7Generating sorted random ints without the sort?Phil H2009-12-08T10:19:17Z2009-12-08T15:03:34Z
<p>Just been looking at a code golf question about <a href="http://stackoverflow.com/questions/350885/create-sort-and-print-a-list-of-100-random-ints-in-the-fewest-chars-of-code">generating a sorted list of 100 random integers</a>. What popped into my head, however, was the idea that you could generate instead a list of positive deltas, and just keep adding them to a running total, thus:</p>
<pre><code>deltas: 1 3 2 7 2
ints: 1 4 6 13 15
</code></pre>
<p>In fact, you would use floats, then normalise to fit some upper limit, and round, but the effect is the same.</p>
<p>Although it wouldn't make for shorter code, it would certainly be faster without the sort step. But the thing I have no real handle on is this: <b>Would the resulting distribution of integers be the same as generating 100 random integers from a uniformly distributed probability density function?</b></p>
<p>Edit: A sample script:</p>
<pre><code>import random,sys
running = 0
max = 1000
deltas = [random.random() for i in range(0,11)]
floats = []
for d in deltas:
running += d
floats.append(running)
upper = floats.pop()
ints = [int(round(f/upper*max)) for f in floats]
print(ints)
</code></pre>
<p>Whose output (fair dice roll) was:</p>
<pre><code>[24, 71, 133, 261, 308, 347, 499, 543, 722, 852]
</code></pre>
<p><b>UPDATE:</b> <a href="http://stackoverflow.com/questions/1866031/generating-sorted-random-ints-without-the-sort/1866177#1866177">Alok's answer</a> and <a href="http://stackoverflow.com/questions/1866031/generating-sorted-random-ints-without-the-sort/1866055#1866055">Dan Dyer's comment</a> point out that using an <a href="http://en.wikipedia.org/wiki/Exponential_distribution" rel="nofollow">exponential distribution</a> for the deltas would give a uniform distribution of integers.</p>
http://stackoverflow.com/questions/1867349/how-to-find-three-numbers-that-form-certain-number-2How to find three numbers that form certain number ? [closed]Wahid Bitar2009-12-08T14:32:54Z2009-12-08T15:03:21Z
<p>Hi,</p>
<p>I want the equation that give me the "Three or x" numbers that form certain number "e.g. I" when i multiply the numbers ?</p>
<blockquote>
<p><em>e.g.</em></p>
<p><strong>I want to know the three numbers that when i multiply them get "36 for
example"</strong></p>
</blockquote>
<p><strong><em>Edit::</em></strong></p>
<blockquote>
<p>Excuse me i'll delete this question if i could.</p>
<p>Thank u for good "http://mathoverflow.net"</p>
</blockquote>
http://stackoverflow.com/questions/1866862/simple-automatic-classification-of-the-r-r-functions1Simple Automatic Classification of the (R-->R) Functionspsihodelia2009-12-08T13:06:45Z2009-12-08T14:29:03Z
<p>Given data values of some real-time physical process (e.g. network traffic) it is to find a name of the function which "at best" matches with the data. </p>
<p>I have a set of functions of type <code>y=f(t)</code> where <code>y</code> and <code>t</code> are real: </p>
<pre><code>funcs = set([cos, tan, exp, log])
</code></pre>
<p>and a list of data values:</p>
<pre><code>vals = [59874.141, 192754.791, 342413.392, 1102604.284, 3299017.372]
</code></pre>
<p>What is the <strong>simplest possible method to find a function from given set</strong> which will generate the very similar values? </p>
<p>PS: <code>t</code> is increasing starting from some positive value by almost-equal intervals</p>
http://stackoverflow.com/questions/1862287/optimizing-a-pinhole-camera-rendering-system2Optimizing a pinhole camera rendering systemknight6662009-12-07T19:24:37Z2009-12-08T12:59:03Z
<p>Hello,</p>
<p>I'm making a software rasterizer for school, and I'm using an unusual rendering method instead of traditional matrix calculations. It's based on a <a href="http://en.wikipedia.org/wiki/Pinhole%5Fcamera%5Fmodel" rel="nofollow">pinhole camera</a>. I have a few points in 3D space, and I convert them to 2D screen coordinates by taking the distance between it and the camera and normalizing it</p>
<pre><code>Vec3 ray_to_camera = (a_Point - plane_pos).Normalize();
</code></pre>
<p>This gives me a directional vector towards the camera. I then turn that direction into a ray by placing the ray's origin on the camera and performing a ray-plane intersection with a plane slightly behind the camera.</p>
<pre><code>Vec3 plane_pos = m_Position + (m_Direction * m_ScreenDistance);
float dot = ray_to_camera.GetDotProduct(m_Direction);
if (dot < 0)
{
float time = (-m_ScreenDistance - plane_pos.GetDotProduct(m_Direction)) / dot;
// if time is smaller than 0 the ray is either parallel to the plane or misses it
if (time >= 0)
{
// retrieving the actual intersection point
a_Point -= (m_Direction * ((a_Point - plane_pos).GetDotProduct(m_Direction)));
// subtracting the plane origin from the intersection point
// puts the point at world origin (0, 0, 0)
Vec3 sub = a_Point - plane_pos;
// the axes are calculated by saying the directional vector of the camera
// is the new z axis
projected.x = sub.GetDotProduct(m_Axis[0]);
projected.y = sub.GetDotProduct(m_Axis[1]);
}
}
</code></pre>
<p>This works wonderful, but I'm wondering: can the algorithm be made any faster? Right now, for every triangle in the scene, I have to calculate three normals. </p>
<pre><code>float length = 1 / sqrtf(GetSquaredLength());
x *= length;
y *= length;
z *= length;
</code></pre>
<p>Even with a fast reciprocal square root approximation (<code>1 / sqrt(x)</code>) that's going to be very demanding.</p>
<p>My questions are thus:<br>
Is there a good way to approximate the three normals?<br>
What is this rendering technique called?<br>
Can the three vertex points be approximated using the normal of the centroid? ((v0 + v1 + v2) / 3)</p>
<p>Thanks in advance.</p>
<p>P.S. "You will build a fully functional software rasterizer in the next seven weeks with the help of an expert in this field. Begin." I ADORE my education. :)</p>
<p><strong>EDIT:</strong></p>
<pre><code>Vec2 projected;
// the plane is behind the camera
Vec3 plane_pos = m_Position + (m_Direction * m_ScreenDistance);
float scale = m_ScreenDistance / (m_Position - plane_pos).GetSquaredLength();
// times -100 because of the squared length instead of the length
// (which would involve a squared root)
projected.x = a_Point.GetDotProduct(m_Axis[0]).x * scale * -100;
projected.y = a_Point.GetDotProduct(m_Axis[1]).y * scale * -100;
return projected;
</code></pre>
<p>This returns the correct results, however the model is now independent of the camera position. :(</p>
<p>It's a lot shorter and faster though!</p>
http://stackoverflow.com/questions/1861177/formula-for-a-curve-algebra-in-javascript0Formula for a curve (algebra in javascript)David Murdoch2009-12-07T16:38:50Z2009-12-07T21:13:04Z
<p>I need an exponential equation with the following parameters:</p>
<p>When x = 0, y = 153.<br>
When x = 500, y = 53.<br>
Y should increase exponentially as X approaches 0 and should decrease exponentially when X approaches 500.</p>
<p>For some reason I can't remember how to do this.
I'm sure once I see the equation (or one similar) I can figure out the rest.</p>
<p>Context in Programming: This is for a Javascript function that changes the color of a div when a textarea's max-length is about to be reached. Other alternatives or code snippets are very welcome.</p>
<p><strong>UPDATE:</strong>
I don't know why but -1500/(x+15)+153 gives me something close to what I am looking for. So It looks like what I was asking for is not what I really wanted.</p>
<p>I guess what I am looking for is:<br>
When x = 0, y = 53.<br>
When x = 500, y = 153. </p>
http://stackoverflow.com/questions/1862753/finding-the-translation-between-points0Finding the translation between pointsEli Courtwright2009-12-07T20:41:58Z2009-12-07T21:03:49Z
<p>I have a map of the US, and I've got a lot of pixel coordinates on that map which correspond to places of interest. These are dynamically drawn on the map at runtime according to various settings and statistics.</p>
<p>I now need to switch over to a different map of the US which is differently sized, and the top left corner of the map is in a slightly place in the ocean.</p>
<p>So I've manually collected a small set of coordinates for each map that correspond to one another. For example, the point (244,312) on the first map corresponds to the point (598,624) on the second map, and (1323,374) on the first map corresponds to (2793,545) on the second map, etc.</p>
<p>So I'm trying to decide the translation for the X and Y dimensions. So given a set of points for the old and new maps, how do I find the <code>x' = A*x + C</code> and <code>y' = B*x + D</code> equations to automatically translate any point from the old map to the new one?</p>
http://stackoverflow.com/questions/1862111/simple-problem-velocity-and-collisions1Simple Problem - Velocity and CollisionsFascia2009-12-07T18:57:12Z2009-12-07T19:06:18Z
<p>Okay I'm working on a Space sim and as most space sims I need to work out where the opponents ship will be (the 3d position) when my bullet reaches it. How do I calculate this from the velocity that bullets travel at and the velocity of the opponents ship? </p>
http://stackoverflow.com/questions/1859604/minimising-distance-distance-formula3Minimising distance: distance formulanowonder2009-12-07T12:06:09Z2009-12-07T16:06:54Z
<p>I am writing a program in C. I want to find a solution by minimizing expression</p>
<pre><code>D1+D2+......+Dn
</code></pre>
<p>where Di's are distances calculated by distance formula between 2 points. The above expression is in x & y variables</p>
<p>Now I will differentiate this expression and find the solution. My doubt is:</p>
<p>since in the above expression, all Di's will occur as square roots which will be difficult to solve. So instead we can solve for this expression:</p>
<pre><code>D1^2 + D2^2 + ......+ Dn^2
</code></pre>
<p>Will the answer produced by the above expression will be same as that would have been produced by solving the original one? </p>
<p>I have checked for simple test cases such as n=2. It produces the correct answer. Is it true in general?</p>
<p><strong>If not, how this problem can be solved?</strong></p>
http://stackoverflow.com/questions/1859554/what-is-entropy-and-information-gain3What is "entropy and information gain"?alex2009-12-07T11:54:32Z2009-12-07T14:04:38Z
<p>I am reading this book (<a href="http://www.nltk.org/book" rel="nofollow">NLTK</a>) and it is confusing. <strong>Entropy</strong> is <a href="http://nltk.googlecode.com/svn/trunk/doc/book/ch06.html#information%5Fgain%5Findex%5Fterm" rel="nofollow">defined as</a>:</p>
<blockquote>
<p>Entropy is the sum of the probability of each label
times the log probability of that same label</p>
</blockquote>
<p>How can I apply <em>entropy</em> and <em>maximum entropy</em> in terms of text mining? Can someone give me a easy, simple example (visual)?</p>
http://stackoverflow.com/questions/1856681/implementing-a-audio-visualizer-in-wpf0Implementing a audio visualizer in WPFjoemoe2009-12-06T21:30:13Z2009-12-07T13:30:47Z
<p>I wish to implement a audio visualizer widget (similar to what Winamp has) in WPF. How would I approach this problem?</p>
http://stackoverflow.com/questions/1823864/a-good-algorithm-for-generating-an-order-number4A good algorithm for generating an order numberJason2009-12-01T03:46:48Z2009-12-07T01:32:40Z
<p>As much as I like using GUIDs as the unique identifiers in my system, it is not very user-friendly for fields like an order number where a customer may have to repeat that to a customer service representative.</p>
<p>What's a good algorithm to use to generate order number so that it is:</p>
<ul>
<li>Unique</li>
<li>Not sequential</li>
<li>Numeric values only</li>
<li>< 10 digits</li>
<li>Can be generated in the middle tier without doing a round trip to the database.</li>
</ul>
<p>UPDATE (12/05/2009)
After carefully reviewing each of the answers posted, we decided to randomize a 9-digit number in the middle tier to be saved in the DB. In the case of a collision, we'll regenerate a new number.</p>
http://stackoverflow.com/questions/1850235/simple-math-statements-in-bash-in-a-for-loop0Simple math statements in bash in a for loop.vgm642009-12-04T23:03:18Z2009-12-07T00:45:28Z
<p>Hi. I'm quite new to bash scripting and usually avoid it all costs but I need to write a bash script to execute some simple things on a remote cluster. I'm having problems with a for loop that does the following:</p>
<pre><code>for i in {1..20}
do
for j in {1..20}
do
echo (i*i + j*j ) **.5 <--- Pseudo code!
done
done
</code></pre>
<p>Can you help me with this simple math? I've thrown <code>$</code>'s everywhere and can't write it properly. If you could help me understand how variables are named/assigned in bash for loops and the limitations of bash math interpretation (how do you do the square root?) I'd be very grateful. Thanks!</p>
http://stackoverflow.com/questions/1856521/dealing-with-negative-numbers-in-strings0Dealing with Negative Numbers in Stringsjakeisonline2009-12-06T20:37:21Z2009-12-06T21:16:41Z
<p>I have a simple, but perplexing problem, with Math.</p>
<p>The following code will take a number from a string (usually contained in a span or div) and subtract the value of 1 from it.</p>
<p><code>.replace(/(\d+)/g, function(a,n){ return (+n-1); });</code></p>
<p>This works really well, except when we get below zero. Once we get to -1 we're obviously dealing with negative subtraction.</p>
<p><code>-1 - 1 = -0<br>
-0 - 1 = --1</code></p>
<p>how can I avoid this? It's likely I've got a general problem with the math here.</p>
http://stackoverflow.com/questions/1855671/implementing-wilson-score-in-sql1Implementing Wilson Score in SQLdansays2009-12-06T15:21:53Z2009-12-06T16:14:11Z
<p>We have a relatively small table that we would like to sort based on rating, using the <a href="http://www.evanmiller.org/how-not-to-sort-by-average-rating.html" rel="nofollow">Wilson interval</a> or a reasonable equivalent. I'm a reasonably smart guy, but my math fu is nowhere near strong enough to understand this:</p>
<p><img src="http://www.evanmiller.org/rating-equation.png" alt="Wilson Score" title=""></p>
<p>The above formula, I am told, calculates a score for a positive/negative (thumbs up/thumbs down) voting system. I've never taken a statistics course, and it's been 15 years since I've done any sort of advanced mathematics. I don't have a clue what the little hat that the <em>p</em> is wearing means, or what the backwards Jesus fish beneath <em>z</em> indicates.</p>
<p>I would like to know two things:</p>
<ol>
<li><p>Can this formula be altered to accommodate a 5-star rating system? I found <a href="http://www.goproblems.com/test/wilson/wilson.php?v1=0&v2=0&v3=3&v4=0&v5=0" rel="nofollow">this</a>, but the author expresses his doubts as to the accuracy of his formula.</p></li>
<li><p>How can this formula be expressed in a SQL function? Note that I do not need to calculate and sort in real-time. The score can be calculated and cached daily.</p></li>
<li><p>Am I overlooking something built-in to Microsoft SQL Server?</p></li>
</ol>
http://stackoverflow.com/questions/1853637/how-to-find-the-mathematical-function-defining-a-bezier-curve1How to find the mathematical function defining a bezier curvemizipzor2009-12-05T22:12:24Z2009-12-05T23:26:30Z
<p>Im trying to implement a bezier curve and line segment intersection test. The closest thing my searching has turned up is to take the bezier curve (lets limit it to three control points for simplicity) find the mathematical function generating that curve and place it on origo. Then, using the function for the line segment as another function and let them be equal and solve the equation.</p>
<p>Many sources state the above solution (unless Ive misunderstood them), my problem is I cant find the way to calculate the mathematical function that generates the bezier curve.</p>
<p>Oh, and please point out if Im completely off track with finding the intersection point(s).</p>
http://stackoverflow.com/questions/1784786/mathml-and-java3MathML and JavaTom R2009-11-23T17:45:20Z2009-12-05T16:12:02Z
<p>Hi all.</p>
<p>I've been doing some research for a mathematical Android related project I'd like to embark upon and I stumbled across for the first time MathML. </p>
<p>Does anyone know of any Java libraries which can do any (preferably all) of the following things?</p>
<ol>
<li>Parse MathML</li>
<li>Output MathML by parsing standard mathematical notation</li>
<li>Render MathML (particularly important)</li>
<li>Do any other cool maths-ey things (like re-arrange equations in terms of different things)</li>
</ol>
<p>Number 3 is probably the most important, and number 4 the least.</p>
<p>Thanks in advance.</p>
http://stackoverflow.com/questions/1851442/determining-output-printing-of-float-with-f-in-c-c1Determining output (printing) of float with %f in C/C++ Debanjan2009-12-05T07:19:51Z2009-12-05T16:06:09Z
<p><code>I have gone through earlier discussions on floating point numbers in SO but that didn't clarified my problem,I knew this floating point issues may be common in every forum but my question in not concerned about Floating point arithmetic or Comparison.I am rather inquisitive about its representation and output with %f.</code> </p>
<p>The question is straight forward :<strong>"How to determine the exact output of :</strong></p>
<pre><code>float = <Some_Value>f;
printf("%f \n",<Float_Variable>);
</code></pre>
<p>Lets us consider this code snippet:</p>
<pre><code>float f = 43.2f,
f1 = 23.7f,
f2 = 58.89f,
f3 = 0.7f;
printf("f1 = %f\n",f);
printf("f2 = %f\n",f1);
printf("f3 = %f\n",f2);
printf("f4 = %f\n",f3);
</code></pre>
<p><strong>Output:</strong></p>
<pre><code>f1 = 43.200001
f2 = 23.700001
f3 = 58.889999
f4 = 0.700000
</code></pre>
<p>I am aware that %f (is meant to be for double) has a default precision of 6, also I am aware that the problem (in this case) can be fixed by using double but I am inquisitive about the output <code>f2 = 23.700001</code> and <code>f3 = 58.889999</code> in float.</p>
<p><code>EDIT: I am aware that floating point number cannot be represented precisely, but what is the rule of for obtaining the closest representable value ?</code> </p>
<p>Thanks,</p>
http://stackoverflow.com/questions/1847131/how-many-digits-in-this-base8How many digits in this base ?Debanjan2009-12-04T14:05:04Z2009-12-05T08:47:11Z
<p>The problem is to derive a formula for determining number of digits a given decimal number could have in a given base.</p>
<p>For example: <strong>The decimal number 100006 can be represented by 17,11,9,8,7,6,8 digits in bases 2,3,4,5,6,7,8 respectively.</strong></p>
<p>Well the formula I derived so far is like this : (log10(num) /log10(base)) + 1.</p>
<p>in C/C++ I used this formula to compute the above given results.</p>
<p><code>long long int size = ((double)log10(num) / (double)log10(base)) + 1.0;</code></p>
<p>But sadly the formula is not giving correct answer is some cases,like these :</p>
<pre><code>Number 8 in base 2 : 1,0,0,0
Number of digits: 4
Formula returned: 3
Number 64 in base 2 : 1,0,0,0,0,0,0
Number of digits: 7
Formula returned: 6
Number 64 in base 4 : 1,0,0,0
Number of digits: 4
Formula returned: 3
Number 125 in base 5 : 1,0,0,0
Number of digits: 4
Formula returned: 3
Number 128 in base 2 : 1,0,0,0,0,0,0,0
Number of digits: 8
Formula returned: 7
Number 216 in base 6 : 1,0,0,0
Number of digits: 4
Formula returned: 3
Number 243 in base 3 : 1,0,0,0,0,0
Number of digits: 6
Formula returned: 5
Number 343 in base 7 : 1,0,0,0
Number of digits: 4
Formula returned: 3
</code></pre>
<p>So the error is by 1 digit.I just want somebody to help me to correct the formula so that it work for every possible cases.</p>
<p><strong>Edit :</strong> As per the input specification I have to deal with cases like 10000000000, i.e 10^10,I don't think log10() in either C/C++ can handle such cases ? So any other procedure/formula for this problem will be highly appreciated.</p>