Mathematics is the study of quantity, structure, space, and change. Any math questions on this site should be programming related.
3
votes
3answers
105 views
Fastest way to sort vectors by angle without actually computing that angle
Many algorithms (e.g. Graham scan) require points or vectors to be sorted by their angle (perhaps as seen from some other point, i.e. using difference vectors). This order is inherently cyclic, and ...
4
votes
7answers
2k views
Algorithm to find a common multiplier to convert decimal numbers to whole numbers
I have an array of numbers that potentially have up to 8 decimal places and I need to find the smallest common number I can multiply them by so that they are all whole numbers. I need this so all the ...
2
votes
3answers
1k views
Recursive Fibonacci memoization
I need some help with a program I'm writing for my Programming II class at universtiy. The question asks that one calculates the Fibonacci sequence using recursion. One must store the calculated ...
4
votes
2answers
62 views
Find and execute mathematical expression from an xml attribute and replace the value
Below is an excerpt from some xml files that need processing:
<BirimAdi>Adet</BirimAdi>
<BirimCarpan>1</BirimCarpan>
<HavaleFiyati>0</HavaleFiyati>
...
6
votes
6answers
191 views
Add/subtract variables in a really dumb shell
I am writing a shell script which works on my local /bin/sh fine (dash on Ubuntu 13.04), but I unltimately need to run it on a dumb box where I'm getting an error because of an operation on variables:
...
3
votes
2answers
215 views
How can i extrapolate a new quaternion rotation from two previous packets?
I'm at my wits end here! I'm working on lag-reduction in my First Person Shooter, and now it's just a case of adding some extrapolation.
I can extrapolate position; getting the last two positions and ...
0
votes
2answers
56 views
How do I turn a 2x3 matrix into a 3x3 matrix
I'm sorry if this is a stupid question but I just can't find the answer I need.
I have the following matrix:-
A |6 6 0|
|9 0 0|
Each column represents co-ordinates on a grid.
Now to find the ...
1
vote
3answers
75 views
Convert negative angle to positive: Involves invalid operand use
I am attempting to convert a negative angle (in degrees) to positive. But I am getting a compile error saying:
test.cpp invalid operands of types 'double' and 'int' to binary 'operator%'
...
-3
votes
0answers
28 views
How do i make a search for only specific letters in a proposition
I have this phrase: aawwaaazzeezzzee.
I need to make a search that returns:
if the letter a has been grouped(aa) 2 times show how many times.
if the letter a has been grouped(aaa) 3 times show how ...
2
votes
1answer
2k views
Android SensorManager.java getOrientation and getRotationMatrix algorithm
I am trying to figure out how getRotationMatrix and getOrientation work exactly.
So far I've known that in getRotationMatrix function it crossproducts the gravity vector with the magnetic vector to ...
3
votes
1answer
124 views
Geometric transformations
The task is to when we have a line segment in 3 dementional space (we have coordinate of both ends) and we have informations as angle, ratio and amount. Our job is to give us next few line segments ...
-1
votes
2answers
76 views
Can this Python function to test for prime numbers be extended to higher numbers? [closed]
Here's the relevant code, using a Sieve of Erasthones method (the last part of a larger function with argument x):
sieve = [num for num in range(2, int(sqrt(x)) + 2)]
count = 0
for item in sieve:
...
1
vote
3answers
31 views
How to measure the rate of events through a system
I need to measure that rate at which a software system is consuming messages from a message queue and report on that periodically.
Specifically, messages arrive from a message queueing system and I ...
2
votes
1answer
98 views
RegEx in java to replace a String
I've been trying to replace this mathematical function x^2*sqrt(x^3) to this pow(x,2)*Math.sqrt(pow(x,3))
so this is the regex
/([0-9a-zA-Z\.\(\)]*)^([0-9a-zA-Z\.\(\)]*)/ pow(\1,\2)
it works ...
0
votes
2answers
22 views
HTML Trying to get value from textbox and use it for a math equation in Javascript(Volume)
I would like to make it so it pulls the value I input into the textbox into the variables l w and h then does the equation l*w*h and presents the answer im not that good at coding I just started and ...
9
votes
2answers
400 views
Redraw image from 3d perspective to 2d
I need an inverse perspective transform written in Pascal/Delphi/Lazarus. See the following image:
I think I need to walk through destination pixels and then calculate the corresponding position in ...
-1
votes
3answers
93 views
to find if there exist n integers sum together to number x and multiplying together to get number y [closed]
Given three integers
N , X and Y
passed to my function as parameters,
I have to figure out if there exists any combination of N different integers (positive or negative) whose sum is X and product is ...
25
votes
14answers
26k views
Prime factors
What is the best approach to calculating the largest prime factor of a number?
I'm thinking the most efficient would be the following:
Find lowest prime number that divides cleanly
Check if result ...
-6
votes
2answers
53 views
How to make if statement if value is not given [closed]
I am working on an Android project and got stuck.
I have an editable text field in layout and when user input some value I want to make some mathematical actions with that Integer value.
Now, it ...
1
vote
2answers
52 views
Store arithmetic operators in an array with Fortran
I would like to solve a given equation of the following kind with FORTRAN:
1 ? 2 ? 3 = 7
In this equation only the arithmetic operators are missing and the solution would be '+' for the first ...
-1
votes
0answers
28 views
Shortcut method for getting rate of interest from principal, compound interest and number of years [closed]
I need a shortcut method for getting the rate of interest if the following are given.
1) Principal(P)
2) Compound interest(r)
3) years(n).
I know that with the traditional formula, I can solve ...
1
vote
4answers
32 views
Non Decimal Numbers on Math.ceil or Math.round in JavaScript?
I want to use Javascript to round up a number.
For example like this,
15 => 20
345 => 400
201 => 300
180 => 200
93 => 100
22 => 30
How to achieve this using Javascript? I know i ...
0
votes
2answers
36 views
javascript calculate date from week number
How i can calculate the date in javascript knowing weeknumber and the year? For week number 20 and year 2013 to obtain 5/16/2013
I am trying so:
Date.prototype.dayofYear = function() {
...
-2
votes
2answers
36 views
Adding JavaScript variables more efficiently?
If i have two sum variables with total individual variables. Is there an easier way of getting the sum?
Example:
var first_one = 5;
var first_two = 5;
var second_one = 5;
var second_two = 5;
var ...
0
votes
3answers
61 views
Finding a value of a variant in a permutation equation [closed]
I have a math problem that I can't solve: I don't know how to find the value of n so that
365! / ((365-n)! * 365^n) = 50%.
I am using the Casio 500ms scientific calculator but I don't know how.
...
3
votes
1answer
85 views
Calculus to convert Y coordinates for purpose of updating bpm in a metronome
I'm in the course of developing a metronome for iPad. I'm using CGAffineTransformRotate for the metronomeArm animation, NSTimer(I'm not interested in great precision) for sound and a ...
0
votes
0answers
40 views
Variance matrix from polar to cartesian coordinates
I am dealing with a time series in polar coordinates and I am applying the Kalman filter for predictions. The time series is related with the satellite orbite.
However my prediction and estimation ...
6
votes
4answers
182 views
Calculate count of ones in result of 11^n
The following problem was asked in an interview. Given a number 11n (where n ∈ [0, 1000]), get the count of 1s in the result. For example, n=3, 113 = 1331, so the expected result would be 2. Or given ...
1
vote
2answers
61 views
animate 3d plot in matlab / octave
I'm trying to animate this spiral using matlab / octave I want it to spiral up or down
t = 0:0.1:10*pi;
r = linspace (0, 1, numel (t));
z = linspace (0, 1, numel (t));
plot3 (r.*sin(t), r.*cos(t), ...
1
vote
2answers
26 views
How to compute readable format ratio from image dimensions
I would like to calculate a readable format ratio (such as 3:4 or 2:3) from a given set of dimensions (such as 40x60).
Probably very basic maths, but i can't wrap my head around it.
Anyone know how ...
1
vote
1answer
53 views
Using math.h sqrt function in C [duplicate]
Reading the documentation for math.h, it seems like all I should have to do is include math.h, and use the math functions included, such as sqrt. The problem is I get the following error when trying ...
4
votes
2answers
1k views
COLLADA: Inverse bind pose in the wrong space?
I'm working on writing my own COLLADA importer. I've gotten pretty far, loading meshes and materials and such. But I've hit a snag on animation, specifically: joint rotations.
The formula I'm using ...
2
votes
5answers
110 views
Assign javascript variables using html select options
Thanks a lot guys for the all the help - really appreciate it.
However, what I want to do next is really complicated and I am certain you guys have the brains to help me.
This is the more complex ...
1
vote
4answers
95 views
Check if 2 numbers are within 1% of each other
public static double squareRoot(double num) throws IllegalArgumentException
{
if (num < 0.0)
throw new IllegalArgumentException("Number cannot be negative.");
...
0
votes
0answers
20 views
Parse Math Expression in PHP
I'm currently trying to parse math expression into expression tree.
But I'm stuck on the stage where I need to implement functions and negates. I don't understand logic to do it using Shunting-Yard ...
-1
votes
0answers
32 views
Decimal to hexadecimal, four base 16 digits to represent answer
Im having trouble with converting 61543 to hexadecimal. And then use four base 16 digits to represent my answer.
What I have done so far is turning 61543 to binary = 1111000001100111
and then just ...
5
votes
8answers
2k views
How do programming languages handle huge number arithmetic
For a computer working with a 64 bit processor, the largest number that it can handle would be 264 = 18,446,744,073,709,551,616. How does programming languages, say Java or be it C, C++ handle ...
2
votes
5answers
388 views
Algorithm design manual solutions error?
I've read about Big O notation from many sources, including Skiena and the Wikipedia entry, the Example section of which states:
In typical usage, the formal definition of O notation is not used
...
0
votes
1answer
34 views
jQMath - Elementary math Sum line equivalent in MathML
I know that general lower math is not supported in jqMath, and so I’ve created a small work around using css and jQuery which adds a border to the bottom of a table cell. This works fine in Chrome, ...
1
vote
3answers
59 views
How to hide or delete the zero in my bash script?
This is my script:
echo -n "number 1 :";
read bil1
echo -n "number 2 :";
read bil2
multiple=$(echo $bil1*$bil2 |bc -l |sed -e 's/^\./0./' -e 's/^-\./-0./');
echo " Your result : $bil1 * $bil2 = ...
1
vote
1answer
57 views
Point is close to the diagonal
I would like to calculate if the point is near a diagonal of rectangle.
The rectangle is representing as two points (min and max). Now I have third point and I would like to check if is near the ...
-2
votes
1answer
80 views
Doing javascript calculations using select dropdown options? [closed]
Is it possible to do calculations based on selected options?
Here is my code:
<input type="text" id="resultBox" readonly="true" />
<select id="select1">
<option ...
1
vote
3answers
238 views
Solved: Trying to decrypt a PHP PseudoCrypt class
I am trying to create a way to reverse the PseudoCrypt script listed at: http://blog.kevburnsjr.com/php-unique-hash. In this code it has the following equation:
$dec = ($num * $prime)-floor($num * ...
0
votes
1answer
26 views
Python ndarray division
I have this piece of code
from scipy import misc
from numpy import fft
orig = misc.imread('lena256.png')
blur = misc.imread('lena256blur.png')
orig_f = fft.rfft2(orig)
blur_f = fft.rfft2(blur)
...
5
votes
2answers
122 views
Writing an algorithm to decide whether a target number can be reached with a set of other numbers and specific operators?
I'm trying to learn more about algorithm design, and I've set myself the challenge of creating a simple game that presents users with an array of numbers, a target number, and a range of operators ...
6
votes
3answers
156 views
Quadratic Read Method
I have to write a read method for a quadratic class where a quadratic is entered in the form ax^2 + bx + c. The description for the class is this:
Add a read method that asks the user for an equation ...
4
votes
4answers
681 views
Numbers of weekdays in a date range in TSQL
This is harder than it looks. I need a function that calculates the numbers of a given weekday in a date range. I don't want any loops or recusive sql, there are millions of examples doing just that, ...
14
votes
6answers
7k views
Calculate the center point of multiple latitude/longitude coordinate pairs
Given a set of latitude and longitude points, how can I calculate the latitude and longitude of the center point of that set (aka a point that would center a view on all points)?
EDIT: Solution I ...
1
vote
2answers
38 views
Calculating a value range in percent
The following function takes a DPI value and returns a percentage:
100% if the value is bigger than 200
50% to 100% if the value is between 100 and 200
25% to 50% if the value is ...
1
vote
1answer
40 views
Doing calculations using javascript with select options? [closed]
Somebody please help me with some javascript coding. I am building a website using asp.net where there are multiple html select elements and their selected option determines what the value of an input ...



