Mathematics is the study of quantity, structure, space, and change. Any math questions on this site should be programming related.
0
votes
0answers
2 views
3D graphics - vector math, I seem to get something wrong
The goal is to get a point in 3D space projected on the cameras screen (the final goal is to produce a points cloud)
This is the setup:
Camera
postion: px,py,pz
up direction: ux,uy,uz
...
-1
votes
2answers
19 views
Getting Price by Multiplying Dropdown Number in Javascript [closed]
I have created a form with payment options. I would like to display the price they will be paying based on how many accounts they are submitting. They will be selecting from a dropdown menu how many ...
-3
votes
6answers
57 views
Program that solves a simple math equation
I'm having trouble understanding the syntax of Java and how to use Java to solve math equations. Below is just an example of a simple equation. I want the program to simply be able to output the ...
13
votes
7answers
7k views
What is the maximum number of edges in a directed graph with n nodes?
What is the maximum number of edges in a directed graph with n nodes? Is there any upper bound?
7
votes
10answers
10k views
How Does Modulus Divison Work
I don't really understand how modulus division works.
I was calculating 27 % 16 and wound up with 11 and I don't understand why.
I can't seem to find an explanation in layman's terms online.
Can ...
133
votes
5answers
3k views
Fastest way in C to determine if an integer is between two integers (inclusive) with known sets of values
Is there any faster way than x >= start && x <= end in C to test if a value is between two integers inclusively? I know that x, start and end are between 0 and 128.
UPDATE: My specific ...
0
votes
1answer
36 views
Basic Arithmetic operations in Android, casting between different data types i.e string to long or int to perform arithmetic functions
I am a novice programmer, and i'm still in my baby steps when it comes to android application development..
I'm trying to write an application that will
Take in figures in pairs (done)
Multiply ...
4
votes
3answers
535 views
Finding the coordinates of points from distance matrix
I have a set of points (with unknow coordinates) and the distance matrix. I need to find the coordinates of these points in order to plot them and show the solution of my algorithm.
I can set one of ...
-3
votes
9answers
278 views
How to calculate numbers upto thousand of digits [closed]
Ho to do calculation on 32 bit computers with 2GB RAM.
When i do long number arithmetic then the programs start to give garbage value. But i want to do calculate numbers upto tens of thousands of ...
0
votes
2answers
57 views
Is INT_MIN/-1 defined behavior in C++?
I have the following code for INT_MIN/-1. I would expect for this to have came out to be INT_MAX+1 (or 0 with rollover). However, the actual result I get is INT_MIN. This is my test code:
#define ...
14
votes
3answers
1k views
Generate random coordinates around a location
I'd like to have a function that accepts a geo location (Latitude, Longitude) and generates random sets of coordinates around it but also takes these parameters as a part of the calculation:
Number ...
12
votes
3answers
4k views
Generating a probability distribution
Given an array of size n I want to generate random probabilities for each index such that Sigma(a[0]..a[n-1])=1
One possible result might be:
0 1 2 3 4
0.15 0.2 0.18 0.22 0.25
...
-1
votes
4answers
34 views
Strange math with rounding and multiplying
I have an odd problem. I'm grabbing numbers from the web audio API, what I get out is a constant list of:
3.1051260268969075e-28 etc etc
I want to round that figure, but using:
...
4
votes
4answers
92 views
C pointer arithmetic for arrays
I'm reading the section on array arithmetic in K&R and came across something curious. I posted the whole paragraph for context, but I'm mainly focused on the bold part.
If p and q point to ...
0
votes
3answers
35 views
Divide an objects css positioning on load
I am trying to grab an objects css positioning on load of a page and then divide it by 2 on load
JS Fiddle here:
http://jsfiddle.net/27gMu/
Here is my function:
$("#blue").delay(2000).css("top" , ...
-4
votes
0answers
40 views
Division over a set of objects (Matlab Image Process)
I have a set of images x= 1000, and I have a set of objects and i want to divide the images over the objects in a for loop.
Obj = length (objects)
for i= Obj
x = round(x./Obj);
...
-1
votes
3answers
43 views
Slim algorithm with unique result for combining two numbers
I have a vector class with two double components and precision up to the third decimal place which is instantiated like a billion times per second.
I calculate their length about as many times.
Now I ...
0
votes
1answer
47 views
Re-creating NPER in Rails
For specifically the formula below, I tried recreating it as a method named nper inside one of my models. The calculations aren't resulting as expected (testing using the NPER function in Excel), and ...
1
vote
2answers
389 views
Parallel Forward-Backward Algorithm for Hidden Markov Model
As a side project, I want to implement a Hidden Markov Model for my NVidia graphics card so that I can have it execute quickly and using many cores.
I'm looking at the Forward-Backward algorithm and ...
0
votes
1answer
28 views
vb.net math.round returns the wrong number with no decimals
I am using this code for dividing and rounding two numbers and then return only two decimals:
Dim mb As Long = Math.Round(((Endsize - startSize) / 1000000), 2)
however, this returns the rounded ...
1
vote
2answers
82 views
Projection of 3D Coordinates onto a 2D image with known points
I'm writing a .NET program that allows a user to register an image by identifying specific points on an image and then specifying the real world coordinates associated with each of those points.
...
16
votes
4answers
8k views
why must we normalize a vector
Just curious, I am reading a book on game AI. And one of the terms that is being used is to normalize a vector which is to turn a vector into a unit. To do so you must divide each dimension x, y and z ...
0
votes
0answers
10 views
Compare the similarity of entities with differing lengths in IDL
Okay so I have an array of objects. Each object has a vector of x and y co-ordinates in pixels.
I need to effectively go through and compare them to each other and say they're the same one.
(They're ...
5
votes
3answers
299 views
+400
Display Good-looking Math Formula in Android
It is sad to see that science and math is never given enough attention in Android platform. Maybe this is an easy problem, but I'm a total dude in javascript so I'm struggling to understand how to ...
1
vote
2answers
46 views
Objective-C: Flooring to 3 decimals correctly
I am trying to floor a float value to the third decimal. For example, the value 2.56976 shall be 2.569 not 2.570. I searched and found answers like these:
floor double by decimal place
Such answers ...
0
votes
2answers
49 views
How do I create an android application that takes in numbers in pairs, multiplies them, and adds the result?
Until three weeks ago I knew nothing about developing applications for android, and with very basic Java background.
However, I took up the interest, and I'm now tying to develop a simple application ...
16
votes
4answers
987 views
+500
Improved Area Lighting in WebGL & ThreeJS
I have been working on an area lighting implementation in WebGL similar to this demo:
http://threejs.org/examples/webgldeferred_arealights.html
The above implementation in three.js was ported from ...
0
votes
0answers
7 views
Google Spreedsheet Maths Date function
ok so in column A i have todays date 18/06/2013 and i want to add 25 days to it, but because i have a list of 100 dates (all different) I need away to do the same thing that
=DATE(2013,06,18)+25
...
1
vote
1answer
38 views
Objective-C: floorf( ) returns wrong value
Here is the code:
float passedPrice = 2.953;
float placed = 1000.0; //3 decimals
NSLog("%f", placed); // Gives 2953;
float withNoFractions = floorf(passedPrice * placed);
The value ...
0
votes
1answer
28 views
Gradually rotate towards a direction
I have a car object, and I want it to gradually rotate to the direction where the user clicked.
Every frame I did math to calculate the new direction it needs, and it's stored at car.direction. The ...
5
votes
4answers
841 views
Extracting the exponent and mantissa of a Javascript Number
Is there a reasonably fast way to extract the exponent and mantissa from a Number in Javascript?
AFAIK there's no way to get at the bits behind a Number in Javascript, which makes it seem to me that ...
4
votes
2answers
2k views
Run Javascript on the body of a Gmail message
I want to display LaTeX math in the gmail messages that I receive, so that for example $\mathbb P^2$ would show as a nice formula. Now, there are several Javascripts available (for example, this one, ...
-1
votes
1answer
16 views
Hamiltonian cycle NP comeplete? [closed]
How to prove that finding the shortest Hamiltonian cycle in a graph is an NP-complete problem?
Should I try to reduce the TSP to this one (shortest hamiltonian cycle)?
0
votes
3answers
40 views
Using apply to get a numeric value
I have two columns of data, eg:
col1: c(1,2,3,0,7)
col2: c(4,5,6,7,3)
For each column I would like to compute this ratio and place it as the last value of the column:
No. of values less than ...
1
vote
2answers
48 views
Verify if a point is part of quadratic Bezier curve in Java
I want to verify if a Point is part of a quadratic Bezier curve defined by points p0, p1 and p2..
This is my function to obtain a Point in the curve with a certain t:
public static final Point ...
7
votes
2answers
34k views
Rounding numbers to 2 digits after comma
I have no idea how to do this? I'm adding comma numbers, result is of course always a number with way too many digits after the comma. anyone?
0
votes
3answers
39 views
Matchings between 2 or more equal size sets
Suppose I have 2 equal size sets {1,2,3,4} and {a,b,c,d}. I want to count all possible matchings between these 2 sets:
{1a,2b,3c,4d}
{1a,2b,3d,4c}
{1a,2c,3b,4d}
{1a,2c,3d,4b}
{1a,2d,3b,4d}
...
0
votes
0answers
31 views
OpenGL conformal texture mapping [closed]
I'm a 3D programmer with background in physics, interested to better know how texture mapping can be made using conformal maps for simple surfaces.
I want to texture map a paraboloid:
...
4
votes
5answers
6k views
how to round up integer division and have int result in java
i just wrote a tiny method to count the number of page for cell phone sms.i had not option to
round up using Math.ceil and honestly it seems to be very ugly.
here is my code
public class Main {
/**
...
0
votes
2answers
24 views
Effective reasonable indexing for numeric vector search?
I have a long numeric table where 7 columns are a key and 4 columns is a value to find.
Actually I have rendered an object with different distances and perspective angles and have calculated Hu ...
0
votes
1answer
37 views
Translating lat/lon coordinate on rotated/scaled maps
I need to indicate a lat/lon coordinate in an old map like this:
http://www.davidrumsey.com/luna/servlet/detail/RUMSEY~8~1~3017~90020003:Topographical-Map-Of-The-City-and-C
Projected on Google Maps:
...
0
votes
1answer
38 views
Math Library for peaks finding
Is there any free math library for peaks/valley finding in 2D array? I can write a simple one checking the slope in two consecutive steps, but I need something more advanced, like tolerance to small ...
1
vote
2answers
104 views
finite element library
I use the following features of Comsol in my work:
I can use weak form and other forms of boundary value problems ( not only predefined modes like electrodynamics or heat transfer modes)
An ...
5
votes
4answers
679 views
Finite element method introduction references
Could you recommend some good articles/notes/tutorials on finite element method (FEM)? I don't deal with advanced math every day, so a tutorial that introduces me to math needed to understand FEM will ...
1
vote
1answer
62 views
Integral when function is unknown?
I'm trying to find a way to calculate area under a curve using python 2.7 when the function is unknown. Only data I have are coordinates, such as:
0 0
0.000194439 0
0.000388878 0
...
0
votes
2answers
40 views
generating variable number sequence without duplicates
my idea is to create a tool which generate every possible anagram for a sequence of characters, for the sake of mathematics I will use numbers here (which I will use to indicate the indices of the ...
0
votes
2answers
63 views
Checking if a point is inside a rotated rectangle
I know this question has been asked a few times before, and I have read various posts about this. However I am struggling to get this to work.
bool isClicked()
{
Vector2 origLoc = ...
0
votes
1answer
36 views
Recursive descent parsing Java - The idea of recursion
I have the following assignment for university. I need help with the recursion, because I don't quite understand how the recursion is gonna work here.
I parse the Input-String, which looks something ...
-1
votes
2answers
62 views
Expand 2^(k + 1) [closed]
http://doyourmath.com/web-algebrator/#c=expand_algexpand&v5=2%5E(k%2B1)
Anyone can explain why does expand 2^(k + 1) equal to (2^k) + 1?
0
votes
0answers
47 views
fraction of ounces increasing each time?
public static String convertGramsToPoundsAndOunces(String grams) {
double weightInKG = Double.parseDouble(grams) / 1000;
double pounds = weightInKG / 0.45359237;
double lbs = ...







