Mathematics is the study of quantity, structure, space, and change. Any math questions on this site should be programming related.

learn more… | top users | synonyms (4)

0
votes
1answer
16 views

Get new position x distance away from another position using a slope

Excuse me if I phrased the title wrong, I am not great with math and don't know the right term, but I figure someone will edit it correctly. I am creating a script in Lua and I have a target location ...
0
votes
3answers
37 views

javascript or jquery to extract integer out of html markup

I'm trying to extract the second integer from inside the below markup. <div class="orbit-slide-number"> <span>1</span> of <span>3</span> </div> If I ...
0
votes
0answers
34 views

Stack with chosing the right math parser

Right now I am working on a C# program, that will solve some calculus problems. My problem is how to parse an equation with more than one variable (I'm asking about a lib. or code), then get a list of ...
-1
votes
3answers
63 views

error in the code “floating point exception” [closed]

I am trying to solve a mathematics question, and this is my code for. It is raising a 'floating point exception' error. I cannot locate where i am wrong. pls help #include<iostream> ...
0
votes
2answers
17 views

markov chains stationary distribution's condition about the init state

As a property of the markov chain, the stationary distribution has been widely used in many fields like page_rank etc. However, since the distribution is just a property about the transition matrix ...
-3
votes
1answer
39 views

Fastest way to calculate rectangle sides from area?

I need to calculate two integer sides of a rectangle from its area.In other words, I need to find two integers that multiplied give a number X, from the number X. This is a lazy code that I wrote in ...
1
vote
2answers
99 views

Can someone please explain to me what the “|” symbol is doing in Javascript?

What does it do? At first I thought it was a shorthand way of doing Math.max() Every time I did (1 | 0) or (0 | 2985235), I got back the larger number. However, I was wrong, as I soon found out when ...
0
votes
2answers
19 views

How to check if point is in line shadow

I can't really figure out how exactly to phrase this question, so I made a crude graphic explaining what I'm trying to ask: Given a line comprised of two points, how would I go about checking if a ...
0
votes
0answers
19 views

how to install LAPACK on mac

I download the source file from http://www.netlib.org/lapack/ , and make & make install, but that only installs package, no header files is installed, anyone knows how to correctly install LAPACK ...
0
votes
0answers
37 views

Calculate work progress in percentage of batches that contain tasks and task contain sub tasks [closed]

I am trying to calculate work progress in percentage. I have multiple batches, and each batch contains a set of tasks and each task also contains a set of sub tasks. Below code is the best I could ...
0
votes
3answers
91 views

Code optimisation of math.asin function vb.net

I have the following line of code: SomeDouble= constant1/ ((a * b) * (Math.Asin((c- a) / (a * d)) + constant2)) The two constants are different and calculated out of the loops, a - d are variables ...
0
votes
3answers
30 views

Generating invalid inequality combinations

This is a pretty obscure question but I thought I'd try my luck. I need to generate invalid combinations of inequalities for a set of unknown variables. For example, given a, b and c, I would like ...
0
votes
0answers
26 views

Discrete transfer fcn (Z-transform) - Simulink

in Simulink i have a simple constant block with value 1 , its connected to discrete transfer function(Z-Transform) with this parameters Numerator=1 Denominator=[1 -1] sample time=1 the function ...
1
vote
1answer
35 views

Find a maximum tree subgraph with given number of edges that is a subgraph of a tree

So a problem is as follows: you are given a graph which is a tree and the number of edges that you can use. Starting at v1, you choose the edges that go out of any of the verticies that you have ...
0
votes
2answers
33 views

Combination with a minimum number of elements in a fixed length subset

I have been searching for long but unable to find a solution for this. My question is "Suppose you have n street lights(cannot be moved) and if you get any m from them then it should have atleast k ...
-4
votes
3answers
60 views

What is 2's Complement Number? [closed]

What is 2's Complement Number? Why do we take 1's Complement and add 1 to it? Why don't we subtract 1 after taking 1's Complement? Why do computers use 2's Complement?
0
votes
1answer
44 views

Simple Javascript Math Function- addition/not working?

This is my function: var ans=(X*X)/(Y+Z); When I enter 10, 20, and 10 - respectively- the addition bit comes out as 2010 and not 30. How can I fix this?
2
votes
7answers
92 views

Brute force method finding prime numbers

I'm having trouble writing a program that finds the prime numbers between 2-50. My program right now finds "mostly" prime numbers but some non-prime numbers are included. I know there are way more ...
0
votes
2answers
21 views

Keeping image ratio for its height using jQuery

Hey all i am trying to automatically get the height for an image. I can not seem to find any jQuery to do this? What i am looking to do is something like it does in photoshop: If the image was: ...
0
votes
5answers
42 views

How do I displaying strings?

How can I get this code to work? I can't make it puts "+" or puts "]": puts " Enter an option:" puts "------------------" puts "1] Learn to FOIL" puts "2] Learn to factor" puts "3] Practice!!!!!!!" ...
0
votes
0answers
21 views

Maths trick to get azimuth value from one unique origin point

I'll try to explain you better what's my problem. First of all i calculate the screen_adjustment as you showed me and i display it on my screen to know when i move my display in which case i am : ...
0
votes
2answers
30 views

n-squared / 2 chunking for parallel processing

I have an n-squared loop that I want to break up into chunks to run concurrently. The loop looks like this: for i = n to m for j = i to m // Do something Edit based on comment: Concrete ...
-3
votes
1answer
30 views

Are null matrices of different dimensions equal? [closed]

For example: I have a null matrix with 2*2 dimensionality and a null matrix with 2 * 3 dimensionality. Are they equal? If not why?
1
vote
1answer
60 views

Getters and math issue

I was attempting to experiment with getters in JavaScript, and tried to come up with the following to see just how getters would be useful in real world uses: Object.defineProperty(Number.prototype, ...
0
votes
0answers
32 views

Calculate percentage of a fragments depth position relative to a range

In my fragment/pixel shader I am trying to calculate a fragment's depth position in percent [0-1] in an given range. What I have is a bunch of shapes (there is no relative data given from them) but ...
0
votes
1answer
46 views

Graph Visualization Represented in a Circle: How To

Graph Visualization represented in a Circle: How To I am trying to represent a plotted graph line around a circle. Where the center is 0 Intervals of 45 degrees / 8 values. Greatest value = 1 / ...
0
votes
0answers
10 views

Horizon Based Ambient Occlusion Math [migrated]

I'm not very familiar with computer graphics. Currently I'm reading a paper "Image-Space Horizon-Based Ambient Occlusion - Louis Bavoil, Miguel Sainz, Rouslan Dimitrov" Here's the problem In the ...
-1
votes
1answer
45 views

Calculate euclidean distance between two vector (bag of words) in python

I use a a dictionary to represent word count in a article For example {"name" : 2 , "your": 10, "me", 20} to represent that "name" appears twice, "your" appears 10 times and "me" appears 20 times. ...
2
votes
2answers
55 views

How to round up a decimal?

How can I use round() to round a number to the superior number as soon as there is a decimal? For example: 1.00001 = 2 1.1 = 2 1.4785834975 = 2 1.00 = 1 1.99 = 2 3.01 ...
-1
votes
3answers
70 views

Mathematical expressions string parsing in JAVA

I am a bit stuck on how I would execute a statement such as "5 + 10 * 2 / 5". I'm new to JAVA and have not the slightest on how to go about it. any ideas? I need to write a method that takes the ...
2
votes
6answers
146 views

Shorter solution to if,else if,else if

I'm looking for a way to shorten this code up and avoid repeating code and if statements. What I'm doing is creating a calculator that searches strings for operators "* / + - " and executes them ...
0
votes
1answer
19 views

Check to see if box fits in another box

Given LxWxH of a box A, and LxWxH of a box B, how can I do a simple check to see if A fits in B (with 90 degrees rotations if necessary)? I'm trying to avoid checking all the possible permutations. ...
-4
votes
0answers
36 views

Perform mathematical expression evaluation [closed]

I want to evaluate expression of the type (A+B).(C+D+E).F to A.C.F + A.D.F + A.E.F + B.C.F + B.D.F + B.E.F I am using Eclipse for Java. Is there a library which can help me do this? It seems like a ...
-3
votes
1answer
25 views

RSA encryption theory - modulo theory [closed]

I'm a bit mathematically challenged and have been working on the RSA cipher (good start). I can find the public and private keys and know how to work do modulo operations on a calculator. The ...
-1
votes
0answers
23 views

How find a statistic model for a set of data? [closed]

Hi I have a set of data(message with different size) in excel like (over 5000 entries): message Name MessageSize message1 0.5M message2 10.2M ...
2
votes
1answer
46 views

Selection of Minimum items Out of N items, Such that there should be M items in K consecutive items

I want a hint on a efficient algorithm of solving the following: (Okay, The question was not that, I just made this for simplicity). Example: Out of N Advert boards there should be M advert of a ...
-2
votes
1answer
74 views

C++ modff error [closed]

I should to cut the value to int and float parts. Like '21' - want to get '2' and '1' as ints. float fp; // float part float fp1; // new "int-style" float part float ip; // int part fp = ...
8
votes
2answers
368 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
48 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
58 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
33 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
48 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
63 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
71 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
57 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
68 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
50 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
40 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
119 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 2 3 4 5 252