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
0answers
60 views

References for big O, big Omega and big Theta [closed]

I'm a mathematician, I currently working on the proving of all of the big O, big Omega and big Theta, but I need references (book or etc.) in mathematics. Does anyone know if there is any reference ...
1
vote
1answer
25 views

prolog: rule to check pythagorean triplet?

Prolog Keeps saying 'no' to me.... :( I am very new to prolog, I have a basic question: So I'm trying to produce a simple rule that checks if three numbers constitute the length of the sides of a ...
-4
votes
1answer
50 views

Dividing a range of values to equal parts

Is there any algorithm to split a number into equal n parts. My use case is i have a min and max value and i have to divide that max - min value into n equal parts. Here i have to handle even the ...
0
votes
1answer
123 views

Check if any values have changed a certain amount

Does anyone know any efficient ways to check if any set of integers contains an integer that has changed by a certain amount. For example I have: int1 = 10; int2 = 20; int3 = 30; And I want to ...
0
votes
1answer
24 views

matrix norm that is invariant through a change of basis

I am looking for matrix norms that would be invariant through a change of basis. I know only about the Frobenius norm, which satisfy this condition as it can be expressed as a function of the ...
3
votes
3answers
100 views

Fastest way to sort vectors by angle without actually computing that angle

Many algorithms (e.g. Graham scan) require points or vectors to be sorted by their angle (perhaps as seen from some other point, i.e. using difference vectors). This order is inherently cyclic, and ...
-2
votes
0answers
36 views

Gold ring calculation [closed]

I have problem with gold ring weight calculation I have below details to calculate gold ring calculation reference thickness - 1.45mm reference Width - 6mm reference Size - 10 (reference diameter ...
1
vote
1answer
23 views

How to weigh percentage versus quantity?

So I have a leader board I'm trying to develop and I've run into a bit of a problem... It's a roulette game and I want to show who was the best stats. Lets look at the following examples for scores: ...
0
votes
2answers
42 views

How is a table like a mathematical relation? [closed]

I have been recently been reviewing Codd's relational algebra and relational databases. I recall that a relation is a set of ordered tuples and that a function is a relation that satisfies the ...
-1
votes
2answers
40 views

Please help me, How to show number five in my bash script?

My Script #!/bin/bash clear echo -n "number 1 : " read bil1 echo -n "number 2 : " read bil2 krng=$(echo $bil1 - $bil2 |bc -l |sed -e 's/^\./0./' -e 's/^-\./-0./'); echo " Your result : $bil1 - $bil2 ...
0
votes
3answers
52 views

How to pick a line closest to the center on a grid?

I am drawing a simple grid, and I want the line closest to the center of the screen to be highlighted a different color. What is the formula to determine what line was drawn that closely resembles ...
1
vote
1answer
35 views

How to find the azimuth/elevation from a vehicle to a target?

I am trying to find out how to compute the azimuth and elevation angles from a moving air-vehicle simulation to some point on the ground. I have the vehicle's position vector P, and its orientation ...
-2
votes
0answers
27 views

Automatic generation of relevant mathematical exercises (similar to ones written by human) with the help of machine learning [closed]

I am doing research on automatic generation of relevant mathematical exercises (similar to ones written by human) with the help of machine learning. I have found several research papers on ...
0
votes
0answers
21 views

Split UIBezierPath

I'm having trouble figuring out how to implement the following requirement: Users are allowed to draw an arbitrary UIBezierPath made from a bunch of points (which I have available), which can look ...
-2
votes
0answers
29 views

how to calculate the real probability [closed]

Say I have a 50% probability of winning with person 1. And a 50% probability of winning with person 2. Then I will play with both persons one after another. Before the matches, what was the ...
2
votes
1answer
51 views

Significance of the number -947483647

I'm migrating some code from a compiler with 32-bit integers to 64-bit. I found some old code that assumes the highest possible integer is 2147483647 and the lowest possible is -947483647. I ...
0
votes
4answers
115 views

Simple calculation [closed]

In Excel I have a simple calculation: total = £103000 percent: 2.14% charges = £2,199.05 - Excel formula (total*percent)/100 In C# I can't get this to calculate correctly: double percent = ...
0
votes
0answers
52 views

Working out a point to spawn a bullet from a ship

I'm trying to work out where to spawn a bullet from my 40by40 pixel ship, at the moment the ship is facing north, the nose is 20 pixels away from the centre, so here is my code to try and work it out ...
-2
votes
0answers
35 views

Modulus of integer fraction using integer arithmetics [closed]

Having (a / b) mod p where a, b and p are integers and p is prime, how can (a / b) mod p be solved using only integer arithmetics. Please be specific about the details of the calculations if you ...
0
votes
1answer
33 views

Maximum smarty Math value

This is my code: <td class="bezcat bg{math equation="floor(x/8)+1" x=$dag.wp.0}">{$dag.wp.1}<br/><i>({$dag.wp.0})</i></td> What my code does, is calculate a value ...
0
votes
3answers
68 views

Calculate Lattitute and longitute more between Latitude/Longitude points?

Latitude: 22.744812, Longitude: 75.892578 The above would be considered my center point. And now I need to determine the latitude and longitude points from center point 1000 miter outward to each ...
0
votes
2answers
95 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 ...
1
vote
6answers
73 views

How to store three small numbers into one double?

I have int A, B, C. And A is in range 0-9999, B is 0-99, C is 0-99. Because the function must return only one double, I think of putting them all into one number. Otherwise I need to call function ...
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 ...
3
votes
6answers
94 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. ...
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 ...
-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 ...
0
votes
1answer
100 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, ...
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 ...
1
vote
3answers
76 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
0answers
43 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
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, ...
-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
-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 ...
-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
34 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
1answer
54 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 ...
2
votes
1answer
33 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 ...
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 ...
-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 ...
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) ...
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. ...
1
vote
1answer
70 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 ...
1
vote
1answer
66 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
0answers
38 views

Create interactive coordinate plane

I would like to create in browser interactive coordinate plane where user can plot numbers on the plane. Or have a number line where they can drag a point to understand the distance. While searching ...
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?
-2
votes
0answers
38 views

Get the x and y of the middle of the red line - trig

I'm trying to get the x and y of the middle of the red line, I'm doing something wrong. Hows your trig? The GUI is supposed to analyze triangles, I wanted the angle to float always at the middle of ...
1
vote
1answer
38 views

Finding 2's complement of negative no

We assume that 4bit 2's complement system is used to represent both positive and negative numbers Suppose we have to find 2's complement of no. 3 We can subtract this no. with 2^4 ...
0
votes
3answers
32 views

Math. Batch (misssing operand, or missing operator)

set /a var=2 ( set /a %var%=var * 2 set /a %var%=%var% * 2 set /a %var%*= 2 ) Why does it say its wrong? I got messages like Missing operand and Missing operator. Well, operator is there, though I ...
-1
votes
0answers
37 views

Calculate/Determine Price Per Hundred (CWT) For a Class and Weight Group (Base Rates) (LTL Freight) [closed]

How is this calculated or determined? According to http://www.smartfreightware.com/wp-content/uploads/2011/12/Demystifying-Deficit-Weight-Bumping-Dec2011.pdf this is "based on many factors." ...

1 2 3 4 5 251