Mathematics is the study of quantity, structure, space, and change. Any math questions on this site should be programming related.
6
votes
3answers
67 views
Why can't my program access the math methods in java?
I'm learning java for the first time. I wrote a simple program:
public class Solver {
public static void main(String[] args) {
double angle = 1.5;
double height = ...
0
votes
1answer
40 views
Disallow numbers divided not equally in jquery
There is table of records, where columns are 12 month + summary.
I have simple jQuery action which onChange of summary row divide number equaly for each month.
Because it's accounting stuff I round ...
-1
votes
2answers
38 views
How do you get a random decimal number (positive and negative) in PHP
I wish to randomly position markers on a Google map so hoped to randomly generate the longitude and latitude of the markers using PHP and load them in via AJAX. The problem I have is not only are ...
0
votes
1answer
20 views
Determining diagonals in a matrix
I have a square matrix, and , if I select two random elements in it, I am interested to determine two cases:
If the two elements are situated on a diagonal parallel with the main diagonal
If the two ...
0
votes
0answers
35 views
calculate the distance between two point from iPhone Camera [closed]
i want to calculate the distance between two point from iPhone camera. i am explain you that what i want. Suppose i am standing with my iPhone (with camera on) 10 feet far from the object. So my two ...
-1
votes
3answers
56 views
How to get the endpoint of a line in Java given the midpoint and the other endpoint [closed]
I know how to do the maths on paper but I am struggling to work out how to take potential negative values into account.
Given 2 locations: endpoint(x1, y1) and midpoint(x2, y2)
Find the other ...
-2
votes
0answers
63 views
MySQL calculate difference between first and last row
So I need to calculate bandwidth between a starting row and an end row in MySQL.
This is just for a basic bandwidth meter and I don't care about data points in between.
Here is an example of the ...
-2
votes
0answers
54 views
Particle Trajectory [closed]
How can I solve this equation? I have tried this..
while(input.good()){
int tNum=0;
float velocity=0.00, lAngle=0.00, distance=0.00, acceleration=9.8, time=0.00;
float initialXY[2];
...
0
votes
1answer
61 views
What would be an efficient way of calculating ratio of two factorials with arbitrary precision?
In a research paper, I read the following statement
The computations of S (...) and C (...) involve computing ratios of factorials
such as (2n)!/(2k)!, where 0 ≤k ≤ n. This can be done in time ...
0
votes
1answer
43 views
How can I plot 3 equations with 3 variables in MATLAB?
I am trying to plot this system:
x1 - x2 + 3x3 = 8
2x1 - x2 + 4x3 = 11
- x1 + 2x2 -4x3 = -11
I tried with ezsurf and meshgrid, but I wasn't able to do it.
clc
clear all
close all
A = [1 ...
0
votes
2answers
36 views
How to get top left coordinate when the coordinate on circumference of circle is known?
I have two concentric circles, the distance between is certain constant.
I obtain the coordinate on the circumference of the outer most circle based on the angle obtained when i touch in the circular ...
1
vote
3answers
109 views
Optimized way to handle extremely large number without using external library
Optimized way to handle the value of n^n (1 ≤ n ≤ 10^9)
I used long long int but it's not good enough as the value might be (1000^1000)
Searched and found the GMP library http://gmplib.org/ and ...
-1
votes
2answers
50 views
PITCH and YAW to 2d screen coords? [closed]
So i need to somehow convert PITCH and YAW angles pointing at a entity in a 3d world (i also have distance) to 2d screen X and Y positions. Does anyone know how i would go about this?
1
vote
1answer
30 views
Can anyone recommend a concise resource for picking up the maths/physics necessary for implementing lighting in GLSL? [closed]
I've searched the internet for a good while regarding the implementation of a light source using GLSL ES, but every last "tutorial" assumes that the reader already has a working understanding of the ...
1
vote
0answers
43 views
Calculating height on heightmap
Like in topic. I have heightmap generated and I want to calculate exact height on single heightmap square. Each square have 4 heights, one for each corner.
For example:
0---4 4---4
----- -----
...
2
votes
1answer
91 views
select the right type of variable C#
i want to create pi more than 16 thousand numbers after the decimal point
but the problam is that i kant find any type that could fill my wishes.
I tried to use object but it rounds the number after ...
-3
votes
1answer
67 views
math function analyse / break down [closed]
I have a function like 1x^2+4x-2 or x^2+34x+43 or 8x^2-7x+1
How I can split all these parameters dynamically ?
The Input is string, but what I want is a object with the parameters. I'm not even ...
1
vote
3answers
43 views
How to evaluate a function at a point in Matlab?
For example, if I have a function f(x)=x^2, how can I evaluate it at x=2?
I have tried employing the symbolic toolbox and using the following code in the Command Window:
syms x;
f = sym(x^2);
...
2
votes
1answer
78 views
C++ Algorithm compression ratio calculation
I am stuck since 2 days with a seemingly simple calculation.
But I just don't get it.
I am encoding an audio file with a compressing algorithm.
The entire audio file is separated into "chunks" of ...
4
votes
1answer
35 views
How to detect mouseenter direction on a specific element
I currently have a function which detects the direction of the mouse enter. It returns an integer (0-3) for each section as illustrated below.
I'm trying to figure out how to alter this function to ...
3
votes
3answers
46 views
Given f, is there an automatic way to calculate fprime for Newton's method?
The following was ported from the pseudo-code from the Wikipedia article on Newton's method:
#! /usr/bin/env python3
# https://en.wikipedia.org/wiki/Newton's_method
import sys
x0 = 1
f = lambda x: x ...
0
votes
2answers
57 views
Return a rectangle from an rectangle intersection?
Been struggling to come up with a solution to return a rectangle representing the actual intersection between two rectangles.
What I am looking for is much like this:
MSDN - Rectangle::Intersect ...
-1
votes
4answers
148 views
how can I make string equation? [closed]
I need a function public Func<double,double,bool> StringToEquation(string equation); that takes string and make it function. for example, the string xy = y^3 * (sin(x) + ln(x)) + pi will become ...
-1
votes
0answers
22 views
AC voltage description relationship [closed]
How to describe AC voltage what we got in our homes?
i need to describe 230V 50Hz what is used in europe with this relationship
U = A sin(ωt+ φ)
where:
ω=2πf
φ=Phase in radius
...
1
vote
2answers
41 views
how to convert longitude and altitude to a grid with equal(nearly) area on the Earth sphere in Matlab or C/C++?
The range of longitude and latitude of Earth sphere are [-180, 180] and [-90, 90] respectively. I want to get equal area grids by 0.5 deg * 0.5 deg (area around the equator).
As the distortion ...
4
votes
1answer
49 views
Trying to zoom image based on mouse origin, yet my math is slightly off
I'm working on a full screen image viewer, I'll temporarily open a dev URL here:
http://www.jungledragon.org/apps/jd3/image/704/great_grey_owl.html/zoom
This viewer is responsive and scales to your ...
0
votes
0answers
22 views
Byte Addressable Locations
A processor has
24 bit address bus
16 bit data bus
word contains 2 bytes
byte addressable
Peripherals and memory units will be connected and the entire memory space most likely will be used.
There ...
0
votes
1answer
54 views
Ray tracing ray-disk intersection
So I'm trying to write code that sees if a ray intersects a flat circular disk and I was hoping to get it checked out here. My disk is always centered on the negative z axis so its normal vector ...
1
vote
2answers
62 views
Looking for values in Python Dictionaries
I'm trying to memoize divisor sums of numbers.
divisorSums = {}
def sumDivisors(num):
global divisorSums
total = 0
if num == 1:
return 0
for i in xrange(num/2, 0, -1):
...
1
vote
2answers
68 views
Why doesn't my C++ program calculate more digits of 'e'?
I recently picked up the c++ programming language, and I'm trying to calculate the digits of 'e' for a Calculus Project at school. I'll paste the pgoram that I've written below. It's based on e= ...
0
votes
2answers
93 views
Counting the number of solutions for a given sudoku puzzle?
I'm developing a web based sudoku game that allows the user to custom made his own sudoku board. I need a way of telling the user the number of possible solutions that the board he assembled has. The ...
0
votes
4answers
42 views
x,y,z polar coordinates in a sphere
I am currently using the following math to get the x,y,z coordinates with an assumed Hypotenuse of 150 and my known yaw pitch and roll.
float zPos = (float)Math.tan(Math.toRadians(rmPitch-90))*150;
...
3
votes
2answers
64 views
Finding circumcircle and incircle of a shape in c#
I need to find circumcircle and incircle of this shape
my code finds the circumcircle but the incircle is wrong
for (int r = 1; ; r++) //r is radius
{
int found = 0; //counts found pixels
...
2
votes
1answer
31 views
What is the maximum number of possible topological sorts of N-order Direct Acyclic Graph?
I need to find the maximum number of topological sorts on Direct Acyclic Graph of N-order. I've checked by running Depth first search algorithm on various Direct Acyclic graphs, and it looks like it ...
1
vote
0answers
20 views
Rendering math functions in Android with JLatexMath
Im' trying to render and display in real time a math functions into my android app... I founded some libraries and i'm trying to use JLatexMath. I've created a ImageView into my layout but i dont't ...
2
votes
2answers
54 views
Derive number of number pyramid from index number
The problem goes like this:
Suppose I have a number N, whose value is used to create a number pyramid. A number pyramid for N= 4 would look like this:
3
2 3
1 2 3
0 1 2 3
Equivalently, ...
-1
votes
2answers
37 views
Mathematical expression to check if value changed [closed]
I have 10 values, some of them changed and some of them didn't. I need an equation to find out how many of them changed in pure mathematical form(no ifs or whiles).
I tried something like ...
0
votes
1answer
31 views
Translate point coordinates to image
How to translate Cartesian point coordinates to BufferedImage pixels from the top left corner?
The question is in the context of plotting 2D math functions.
Let the image of height h and width w be ...
0
votes
3answers
55 views
Convert arithmetic string into double in Java
I have a program where the user inputs 6 doubles, and the program outputs every combination of operators that can go in-between the doubles as 1024 separate strings. Here are the first two results if ...
0
votes
4answers
68 views
Euclidean algorithm (GCD) with multiple numbers?
So I'm writing a program in Python to get the GCD of any amount of numbers.
def GCD(numbers):
if numbers[-1] == 0:
return numbers[0]
# i'm stuck here, this is wrong
for i in ...
0
votes
1answer
25 views
Locational triangulation
I have data about 10 point in a 2D map, I know the location of points 1,2 and 3. I also know the distance between point 1,2 and 3 to all other points.
I know that cell phone uses distance from gsm ...
0
votes
0answers
20 views
Move 3d body using keyboard
I want control model using arrays. I have code for now:
For rotation:
rotation=0.0f;
if(Gdx.input.isKeyPressed(Keys.A))
{
rotation += 80;
}else ...
2
votes
1answer
42 views
finding the intersection where multiple 3D parametric equations meet
I have some 3D parametric equations that I plot in matlab/octave and would like to find out where they intersect how can I go about doing this. Please note this is just a simple example I plan on ...
0
votes
1answer
55 views
If a number is multiple of 3 starting at different numbers
I'm not sure of the mathematical term for what I'm after, but I'm looking for a way in PHP to assign a variable to an integer which is a multiple of three. The multiple will start from numbers 1, 2 ...
-3
votes
1answer
53 views
How to separated zero with point in my bash script? [closed]
My script
echo -n "number 1 : ";
read bil1
echo -n "number 2 :";
read bil2
jlh=$(echo $bil1 + $bil2 |bc -l |sed -e 's/^\./0./' -e 's/^-\./-0' -e 's/\.0*$//');
echo " Your result : $bil1 + $bil2 ...
1
vote
1answer
39 views
L (long) postfix in boost erf(): when is needed and when not?
In the Boost implementation of erf function
in a header <boost/math/special_functions/erf.hpp> we have
result = z * 1.125 + z * 0.003379167095512573896158903121545171688L;
in the code ...
6
votes
2answers
76 views
Clipping a Rectangle in JavaScript
I'm trying to write a function that takes two overlapping rectangles and returns an array of rectangles that cover the area of rectangle A, but exclude area of rectangle B. I'm having a hard time ...
0
votes
1answer
43 views
Gaussian Blur of 3D Data
I have a program in which I am querying all points included in a sphere S of radius R. The points are 3D points actually aligned on the vertices of a 3D regular grid, but I don't think this detail is ...
1
vote
5answers
90 views
Counters that flip signs in java
Ok so im trying to make a program and i need to have the counter start at -3 and go down by 2, but every other number has to be a positive: for example:
-3, 5, -7, 9, -11, 13, -15, 17, -19,...
any ...
2
votes
2answers
68 views
What is the big-O complexity of this naive code to compute combinations?
The following recursive algorithm is a (fairly inefficient) way to compute n choose k:
int combinationsOf(int n, int k) {
if (k == 0) return 1;
if (n == 0) return 0;
return ...





