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
48 views

Unsupported operand types [closed]

I am working on a shopping cart function for a website and have stumbled across this error: Fatal error: Unsupported operand types in ... on line 77 I think this may be because I am performing some ...
0
votes
1answer
23 views

Finding common elements (intersections) between arithmetic progressions with different variables

This question could be posted as a math question, but since I want to implement this I thought this would be a better place. I have a problem I need solve and I'm trying to solve it the best way ...
4
votes
5answers
142 views

All possible permutations with a condition

I'm wondering if there is an elegant way in Ruby to come up with all permutations (with repetitions) of some integers with the requirements that 1) Integers introduced must be in ascending order from ...
0
votes
0answers
19 views

Xcode Add (Math) Label and Textfield

Hi I am trying to add (math not put letters together) a textfield's data, and a label's data together. I have preformed the same code you see below for multiplication but when I do the same (A little ...
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 ...
-4
votes
3answers
67 views

How to “invert” numbers in Java

Lets say I have a number 1-5, now if I have 2, I want 4 as an output, if I had 3 then have 3 as the output, if I have 1 then 4 as the output. Here is a chart of what I want: 1-10 Chart: Give 1 return ...
4
votes
1answer
63 views

How many ways can you insert a series of values into a BST to form a specific tree?

This earlier question asked how many ways there were to insert the values 1 - 7 into a binary search tree that would result in the following tree: 4 / \ 2 6 / \ / \ 1 3 ...
0
votes
2answers
46 views

Command Line Python Comma Separated User Input int Values

math.pow (base/exponent) requires comma separated values...working fine for pre-assigned values, but having trouble with user-submitted values (experimenting in command line). Help appreciated as I ...
1
vote
2answers
96 views

C# Make a sum with two random numbers but it must equal the users input

I was wondering if it is possible to make a sum from a user input int but the sum must be radom every time. This is the code that I made : public static string genSum(int askedNumber) { ...
1
vote
1answer
21 views

Up to a scale factor

I am reading up on homographies and i have seen some places that it says that the homography is defined "up to a scale factor" what does this mean? Is there an upper limit for scaling the homography ...
-3
votes
1answer
61 views

Python input=output loop [closed]

I am trying to make a python loop where the output is used as the input, until the output and input is equivalent, this is the statement that i am trying to solve: 1 ----- = x 1+x The result ...
6
votes
1answer
157 views

Why does branching occur in assembly code while comparing for a number to be in range?

I was reading this question and it's accepted answer. I read the comments but I couldn't figure out the reason for the optimization produced. Why does branching occur in assembly code when using the ...
0
votes
0answers
25 views

Sampling A Percentage Of Web Traffic

I have a question which I'm pretty sure I think I know the answer to, but I'm hoping to get some validation. Someone recently asked me how they could take a random sample of a certain percentage of ...
0
votes
2answers
67 views

Maths in a while loop causing random negative numbers

So I have done this in both python and bash, and the code I am about to post probably has a world of things wrong with it but it is generally very basic and I cannot see a reason that it would cause ...
-2
votes
1answer
24 views

Find minimum of linear expression subjected to given constraint [closed]

find minimum of expression a1*x1+a2*x2+....+an*xn subjected to b1*x1+b2*x2+....bn*xn = t x1,x2,....,xn>=1 Eg. find min of (3x + 2y + 7z) subject to 8x + 10y +20z = ...
1
vote
1answer
21 views

Rounding up to the multiple of float number in PHP

I want to round number to the specific number or to a multiple of them. For integer it is ok, but problem appears when I want round to the multile of float like this example: Number (or multiple) of ...
0
votes
1answer
42 views

how to calculate mortgage in javascript

I have formula for finding monthly payment with four fields Loan Amount Interest Rate Terms of loan Monthly Payment Formula: Monthly Payment =Loan amount * ((1 + Interest rate per annum/100) ^ ...
0
votes
2answers
36 views

Trying to find length of a bezier curve with 4 points

I've found about a 1000 answers to this question, but none of them I can use, because I'm using 4 control points with my curves. That said, I stumbled on this guy here: double ...
0
votes
3answers
156 views
+100

How can an object move in the forward direction with the ability to turn?

I have been attempting to move an object that I have control over in the forward direction, which I can do just fine, but as soon as I would like to implement having the ability to turn it seems as if ...
3
votes
4answers
85 views

How can I create a semi-random grid of numbers such that each number appears once, AND most importantly is not too close to its precedding number?

Lets say I have a grid (10x10) and I want to fill it with the number sequence 0 - 99. Here are some conditions: Each number in the sequence should appear only once in the grid. The placement of each ...
1
vote
2answers
55 views

how to get number of possible 4 digit numbers with constraints on possible digits and position of digits

I was trying to solve a programming problem and got stuck because I couldn't understand one of the examples which goes as follows, We guess a four digit number and the guess is "1234" . The hints ...
0
votes
0answers
74 views

Floating Point Divider Hardware Implementation Details

I am trying to implement a 32-bit floating point hardware divider in hardware and I am wondering if I can get any suggestions as to some tradeoffs between different algorithms? My floating point unit ...
-2
votes
0answers
37 views

From HTML5 impotent to mastering HTML5. What is the roadmap? [closed]

Some years ago I learned a bit of html, but I want to learn it all over again using the new html5/css3 standards. My goal is to transform this java/geogebra app: http://euclidthegame.com/ into some ...
5
votes
0answers
70 views

Under what circumstances does this procedure terminate? [migrated]

This earlier question (essentially) asked why the following loop will terminate. (This is Java code, so assume you're working with signed, 32-bit integers:) final int initial = 2; final int ...
142
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 ...
6
votes
2answers
94 views

Will a minimum spanning tree and shortest path tree always share at least one edge?

I'm studying graph theory and I have a question about the connection between minimum spanning trees and shortest path trees. Let G be an undirected, connected graph where all edges are weighted with ...
0
votes
1answer
44 views

Like/Dislikes in 5 star ratings [closed]

What is the formula for a 5 star rating if I only have likes/dislikes. If I have 3244 likes and 45 dislikes how much would that be from 0-5 stars in rating ? (4.9 something, how do I calculate it ...
-1
votes
0answers
20 views

SIR models and understanding them [closed]

We are doing research on a SIR model of an epidemic. and for one of the sub sections we are talking about Saturation content rate of a human. We just wanted to know if anyone had an understanding of ...
-1
votes
1answer
44 views

Points of intersection in R

This might be a stupid question... I've two vectors containing Y coords X is simply 1:8 I've added the lines to a plot area and would like to identify the point of intersection of the two lines. ...
0
votes
2answers
28 views

Calculate the max samples with ramp up

I got this math problem. I am trying to calculate the max amount of samples when the response time is zero. My test has 3 samples (HTTP Request). The total test wait time is 11 seconds. The test is ...
1
vote
0answers
29 views

How to calculate perspective transform for OpenCV from rotation angles?

I want to calculate perspective transform (a matrix for warpPerspective function) starting from angles of rotation and distance to the object. How to do that? I found the code somewhere on OE. ...
0
votes
1answer
20 views

Sine Function Accuracy on JavaScript for Angles PI rad and its Integer Multiples [duplicate]

Sine function on JavaScript, Math.sin(), works accurately on most angles I've tried so far except for PI rad (180 degrees) and its integer multiples like 2PI, 3PI, 4PI... (in radians). These angles ...
2
votes
1answer
55 views

Logical operators in if-else in R

I have the following table (5 columns and 3 rows) called mat : AC CA RES 1 0 2 2 1 3 0 0 0 1 The operation being performed is mat[1]/mat[1]+mat[2] I am testing for the following : ...
0
votes
2answers
47 views

how to find nearest latitude and longitude form current place?

I have a dictionary with a collection of n number of latitude, longitude and address. I want to calculate which (latitude and langitude)point is closest from current user location(latitude ...
0
votes
1answer
31 views

Adding a return variable to a Number in Javascript

I need to add the OptionPricing variable to the 2: 258 which is in the var AccompPricing, in this script. I want to write something like this 2: 258 + (var Price), but it doesn't work like that. The ...
1
vote
2answers
42 views

Android, remove gravity from the accelerometer using the compass

First of all, I suppose the device at rest at the first measure so the acceleration I have is the gravity one, second I won't use a low pass filter. Android gives me the linear acceleration and the ...
0
votes
1answer
107 views

what mathematical model can I use for this and how to implement it in c++/c#

I want to write a function that gets up to six parameter and an array of input values and map inputs value to output based on the following conditions: we know min and max of input values. The ...
0
votes
1answer
50 views

Implementing the Shih-Wu Euclidean distance transform: what is R(p) used for?

I'm attempting to implement the Shih-Wu distance transform algorithm, as described on page 5 of the pdf. It looks fairly simple but I'm hampered by my limited math (or possibly my reading ...
0
votes
0answers
90 views

JavaScript simple calculation

I'm pretty sure I'm being stupid but why isn't this working!? form.find( '.per_time' ).on( 'change', function() { var price = parseInt( form.find( '.section-price' ).attr('data-price'), ...
-4
votes
2answers
96 views

Recursion does not seem to stop in a complicated code [closed]

I wrote a program to generate all possible matrices with some conditions. It takes argument 'r' and 'n', where 'r' is the number of rows or columns in a matrix, and 'n' is the maximum number that the ...
0
votes
3answers
55 views

Polynomial fitting using L1-norm

I have n points (x0,y0),(x1,y1)...(xn,yn). n is small (10-20). I want to fit these points with a low order (3-4) polynomial: P(x)=a0+a1*x+a2*x^2+a3*x^3. I have accomplished this using least squares ...
0
votes
1answer
29 views

{LESS] multiple gradients with vendor prefixes

I want to create a background-image aka. gradient mixin with these features: unlimited amount (not finished yet, but kinda works) adapting vendor prefixes (partially works) I tried lesshat, but ...
1
vote
0answers
17 views

Clamping the dot product in a Slerp for Quaternion

I'm looking at two different source for the Slerp method of interpolation between two quaternions. They are pretty similar except for one notable difference: one clamps the dot product between 0 and ...
0
votes
4answers
59 views

Strange issue in converting Feet and Inches to Centimeter and Vice Versa

public static double convertFeetandInchesToCentimeter(String feet, String inches) { double heightInFeet = 0; double heightInInches = 0; try { if (feet != null && ...
0
votes
1answer
51 views

How to get a 3D point in my space with Yaw, Pitch and Roll and len

i need to calculate a 3d point in my world space when i have roll pitch , yaw , len. need a function like this return for me a 3dpoint : Get3DpointFrom_yaw_pitch_roll(yaw,pitch,roll,len) Thanks ! ...
-3
votes
0answers
43 views

3 ants and a triangle [closed]

Was at an interview today and the interviewer asked me a question to analyse my problem solving skills. He asked if there was a triangle with an ant placed at each angle of the triangle what is the ...
1
vote
3answers
36 views

scanning a float, getting seemingly random values

I was given an assignment to create a procedure that scans a float, called getfloat. for some reason, I am getting random values. If I enter "1" it prints 49.Why does this happen? And also, when i ...
1
vote
1answer
84 views

list of sums to new list

I have a list of items with a total value in each item.. Some are in a different layer.. As shown below **Name, Layer, Value** Item 1, Layer1, 100 Item 1, Layer1, 200 Item 1, Layer2, 700 Now I want ...
1
vote
1answer
78 views

What is the formula to divide a set of squares into powers of 2? (Javascript)(canvas)

Final Edit: SUCCESS! As previously stated in my comment below Michael's answer, I was not accounting for the fact I had multiplied the amount of rows by the width of my squares. The full correct ...
-4
votes
0answers
44 views

mathematic aspects of an analog clock [closed]

i want to make an analog clock and i have a problem right now. my main issue is about mathematics aspect of this project. for example rotation. i want to know how much i have to rotate second hand ...

1 2 3 4 5 257