Mathematics is the study of quantity, structure, space, and change. Any math questions on this site should be programming related.
1
vote
4answers
2k views
Calculate Volume of any Tetrahedron given 4 points
I need to calculate the volume of "any" tetrahedron given 4 points.
I'm writing a program, that needs to find the volume of the tetrahedron, and what I know is:
all X, Y, Z location of the 4 points. ...
0
votes
1answer
52 views
I can't understand the mathematical equations of Easing function
I'm learning Easingfunction's application in XNA. But I can't understand the mathematical equations of it.
For Example, the formula used for BackEase:
f(t) = t^3 - a * t * sin (t * pi)
SinEase:
...
0
votes
2answers
1k views
How can I convert an Int to a CString?
I can convert a Double to a CString using _ecvt
result_str=_ecvt(int,15,&decimal,&sign);
So, is there a method like the one above that converts an int to CString?
0
votes
1answer
105 views
Point around a square with javascript
I was kindly given the code below by AtomicRobot on stackoverflow.
var x,y;
// amount of chairs
var totalChairs = 12;
// square size
var squareSize = 200;
var chairSize = 60;
// issues with ...
0
votes
2answers
96 views
'sqrt' is not a member of 'std'
I compile my program in linux - it has the following line :
std::sqrt((double)num);
On windows it is ok,but on linux I get 'sqrt' is not a member of 'std'
I have an include for math.h
what is a ...
65
votes
17answers
24k views
How does C compute sin() and other math functions?
I've been poring through .NET disassemblies and the GCC source code, but can't seem to find anywhere the actual implementation of sin() and other math functions... they always seem to be referencing ...
5
votes
4answers
2k views
Safe evaluation of arithmetic expressions in Javascript
I need to evaluate user-entered arithmetic expressions like "2 * (3 + 4)" in Javascript but I don't want to use eval for security reasons.
I could strip out all the characters that are not numbers ...
3
votes
6answers
95 views
How to change value in list using basic operations?
Ok, I made myself the challenge so I can do some programming.
However I faced some problems.
adtprice = {19.99 , 49.99}
chldprice = adtprice * (3/4) - 7.5
And this is Error I got as the result.
...
6
votes
1answer
792 views
How to convert from an 'hermite' curve into bezier curve?
As the topic states: How to convert from an Hermite curve into Bezier curve? Specifically I'm looking for a way to convert the Curve class, that uses Hermite interpolation, of the Microsoft XNA ...
0
votes
1answer
24 views
Math: converting coordinate system to other system
I want to convert a map of 1200x1000 pixels to iPhone screen coordinates (480x360) so I can do some manipulation of where to user touches on screen. So let´s say I got 'player' on the map and he is at ...
25
votes
7answers
10k views
Ruby factorial function
I'm going crazy: Where is the Ruby function for factorial? No, I don't need tutorial implementations, I just want the function from the library. It's not in Math!
I'm starting to doubt, is it a ...
0
votes
1answer
102 views
24 Game/Countdown/Number Game solver, but without parentheses in the answer
I've been browsing the internet all day for an existing solution to creating an equation out of a list of numbers and operators for a specified target number.
I came across a lot of 24 Game solvers, ...
22
votes
2answers
8k views
Hexagonal Grid Coordinates To Pixel Coordinates
I am working with a hexagonal grid. I have chosen to use this coordinate system because it is quite elegant.
This question talks about generating the coordinates themselves, and is quite useful. My ...
-1
votes
1answer
44 views
Multiplicative inverse using Fermats Little Theorem [closed]
According to Fermat's Little Theorem :
a x a-1 mod p = ap-2 mod p
In order to find 20-1 mod 403 , I proceed as follows:
20-1 mod 403 = 20359 mod 403.
Now how am I supposed to calculate ...
6
votes
2answers
635 views
Generate “random” matrix of certain rank over a fixed set of elements
I'd like to generate matrices of size mxn and rank r, with elements coming from a specified finite set, e.g. {0,1} or {1,2,3,4,5}. I want them to be "random" in some very loose sense of that word, ...
2
votes
3answers
1k views
Math question regarding Python's uuid4
I'm not great with statistical mathematics, etc. I've been wondering, if I use the following:
import uuid
unique_str = str(uuid.uuid4())
double_str = ''.join([str(uuid.uuid4()), str(uuid.uuid4())])
...
0
votes
5answers
84 views
Solving Quadratic Formula
I'm writing a program to solve quadratic equations using the quadratic formula but it only works when a = 1 but i want it to work when a is more than 1
Here is my code:
import math
def solve(a, b, ...
0
votes
3answers
94 views
Why won't this quadratic equation return negative numbers?
This quadratic equation will not return negative numbers in the string that I've determined it to return.
Here's the equation:
public class QuadraticEquation {
String final0;
public String ...
0
votes
1answer
123 views
Finding the largest prime factor of 600851475143 [duplicate]
I'm trying to use a program to find the largest prime factor of 600851475143. This is for Project Euler here: http://projecteuler.net/problem=3
I first attempted this with this code:
#Ruby ...
0
votes
2answers
94 views
Get coordinates of a point in 3D space from angles its vector makes with axis and its length
I have a magnitude of the vector pointing somewhere in 3D space from the origin (0x, 0y, 0z).
I also have an angle that projection of the vector in X and Z axis makes between itself and the Y axis. In ...
1
vote
6answers
193 views
Use two random function to get a specific random funciton
There are two random functions f1(),f2().
f1() returns 1 with probability p1, and 0 with probability 1-p1.
f2() returns 1 with probability p2, and 0 with probability 1-p2.
I want to implement a ...
1
vote
0answers
44 views
Strange result of math operation
I have problem with result of math operations in calculator app. I have numbers buttons to provide numbers to calculate and four text view (one showing and thre hides). First of hide textview contain ...
1
vote
3answers
77 views
Math library seems not to be found by gcc [duplicate]
I'm trying to execute a very simple code in C :
#include <stdio.h>
#include <stdlib.h>
#include <math.h>
#ifndef M_PI
#define M_PI 3.14
#endif
double cosrad (double n)
{
...
1
vote
1answer
76 views
Detection of abnormally rapid jumps in the graph
I have some problems with detect fast up moving curve in dataset.
Example of dataset:
6500 (integer value), 2013-04-16 15:31 (date time value or timestamp in milliseconds)
6480, 2013-04-16 15:31
6480, ...
0
votes
1answer
55 views
use of nextAfter(double start, double direction); in Android
I am in need of assistance. I will be computing a measured variable, then taking the top 100 values of these and averaging them. Please remember, I have been teaching myself only for the past 6 ...
-1
votes
0answers
24 views
Given a set of S clauses how can I define the Herbrand Universe, Interpretation, base and model [closed]
I'm trying to understand how to generate the above for an exam at university. Any help would be greatly appreciated.
Thanks,
Daniel
3
votes
2answers
329 views
Imaginary numbers in C#
I'm trying to make a simple console-based program that can solve quadratic equations. I still haven't figured out how to calculate the answers if the discriminant is a negative number, so I just ...
-2
votes
2answers
39 views
Mathematical formula for inverse distance in a range [closed]
I often run into this problem but I'm not sure I've nailed down the best way to formulate it. I assume it requires a reciprocal...
Basically, if x is 0, y should be maxY, and if x is 200 (or some ...
1
vote
4answers
283 views
What is wrong with my gravity simulation?
As per advice given to me in this answer, I have implemented a Runge-Kutta integrator in my gravity simulator.
However, after I simulate one year of the solar system, the positions are still off by ...
-2
votes
0answers
19 views
solving linear occurrences - general solution confusion [closed]
I've been trying to get my head around this for days.
I understand what is going on with the calculation of a linear recurrence and I also understand how the characteristic is obtained.
What is ...
0
votes
0answers
35 views
How does Wolfram Alpha pick the graph window when it plots the intersection of two functions?
For example, I want to get the graph of intersections between y = -100x and y = x^2. There will be two points where these functions intersect and Wolfram Alpha gives me a nicely "centered" graph: ...
0
votes
2answers
126 views
Why a power function is often computed as a logarithm?
I am studying some x86 ASM code and what the code really does, it's my understanding that a power function (x^y) internally works as a logarithm function. By internally I mean the CPU registers.
Why ...
0
votes
1answer
66 views
Image warping in .NET
I was searching for a stretch like warp algorithm to apply in my Windows 8 store application.
I found this android (java) code below.
Most things I can port to C# but some android sdk specific things ...
2
votes
1answer
34 views
Power Method - Non converging system
I am creating a risk parity process, where I need to use a Power method, it is an iterative process to find the eigen values of a system.
The aim is to find to the weight in eaach asset that you are ...
1
vote
2answers
367 views
imaginary error function in c++
Is there a GPL library or a piece of code freely available that implements the imaginary error function:
erfi(x)=-i*erf(i*x)
where x is any complex number (or at least real) and i is the imaginary ...
1
vote
1answer
442 views
Conversion from IP Range to CIDR Mask
I've been working on an algorithm for converting an IP Range to a list IPs in CIDR Notation (will be mentioned as tuples henceforth).
Now, what puzzles me is figuring out what is the Worst Case ...
2
votes
1answer
47 views
Incorrect 64-bit division
I am multiplying a 32-bit number with the same number to get their power of 2. Then I want to get certain bits and leave the rest, but the result gets out rounded and not exact.
For example, what I ...
1
vote
3answers
250 views
finding the position of a fraction in farey sequence
For finding the position of a fraction in farey sequence, i tried to implement the algorithm given here http://www.math.harvard.edu/~corina/publications/farey.pdf under "initial algorithm" but i ...
3
votes
2answers
100 views
Lucas Lehmer optimization
I've been working to optimize the Lucas-Lehmer primality test using C# code (yes I'm doing something with Mersenne primes to calculate perfect numbers. I was wondering it is possible with the current ...
1
vote
1answer
72 views
Efficient Calculation of an N-Dimensional Cross Product?
As per the title, is the best way to calculate the n-dimensional cross product just using the determinant definition and using the LU Decomposition method of doing as such or could you guys suggest a ...
4
votes
2answers
86 views
Find x in a^x = a (mod n)
I want to calculate am mod n, where n is a prime number, and m is very large. Rather doing this with binary power calculation, I'd like to find such x that ax = a (mod n) and then calculate a(m mod x) ...
5
votes
5answers
116 views
Writing a function that “solves” an equation
I want to write a function which will allow me to "solve" an equation in js.
what I want (not in a programming language):
function f(x) { 1 + x * x }
var z = 2
var y = f(z) //y will be 5 as a ...
-2
votes
5answers
113 views
Generate valid equation from four numbers by placing arithmetic operators [closed]
I'm trying to solve various puzzles of recursion and one problem I came across is Equation Generator. I'm unable to understand how to solve this problem. The problem statement is like this.
You ...
0
votes
0answers
60 views
Solving coupled equations in python
I want to know how to solve coupled equations in python using scipy or any other module.
The equations are as follows (sorry for the ugly notation).
gam^2 = a_0*f(gam), where a_0 is known const.
...
24
votes
7answers
14k views
Pointer arithmetic for void pointer in C
If a particular type(say int,char,float,..) pointer is incremented the value of pointer variable increased by number which is equal to size of the particular data type.If a void pointer points to data ...
2
votes
7answers
3k views
Python program to calculate harmonic series
Does anyone know how to write a program in Python that will calculate the addition of the harmonic series. i.e. 1 + 1/2 +1/3 +1/4...
1
vote
1answer
71 views
get distance between 2 points and figure out speed
I would have thought this is trivial, but here at the end of the day my brain is dead.
getting distance in meters seems to work, miles seems to be broken, and speed seems to be broken.
any help ...
2
votes
3answers
3k views
Round up to the nearest tenth?
I need to round up to the nearest tenth.
Examples:
10.38 would be 10.4
10.31 would be 10.4
10.4 would be 10.4
So if it is any amount past a full tenth, it should be rounded up.
I'm running Ruby ...
1
vote
1answer
67 views
Generating Positive definite matrix of dimensions 8x8
I am trying to generate a positive definite matrix (A'*A) of dimensions 8x8.
where A is 1x8.
I tried it for many randomly generated matrix A but not able to generate it.
octave-3.6.1.exe:166> A= ...
0
votes
2answers
47 views
How do you find the verticies of a rotated rectangle from its center?
I have a rectangle that I've rotated around its center by an angle. How can I derive the verticies from the rectangle?








