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)

3
votes
3answers
48 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 ...
1
vote
2answers
65 views

Algorithm for Ordered Combinations

I have the following task: there are 10M documents there are 100K unique labels each document has 100 labels For each label X I need to find 10 top Y labels, where X and Y are both present in ...
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 ...
1
vote
3answers
2k views

Finding the square root using Newton's method (errors!)

I'm working to finish a math problem that approximates the square root of a number using Newton's guess and check method in Python. The user is supposed to enter a number, an initial guess for the ...
18
votes
6answers
3k views

Big O complexity of the basic arithmetic operations

What is the Big-O complexity for widespread algorithms of the basic arithmetic operations like multiplication, square root, logarithm, scalar and matrix product? Are there exotic algorithms which are ...
-2
votes
0answers
23 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 ...
0
votes
1answer
58 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
43 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 ...
114
votes
19answers
20k views

Fastest way to list all primes below N in python

This is the best algorithm I could come up with after struggling with a couple of Project Euler's questions. def get_primes(n): numbers = set(range(n, 1, -1)) primes = [] while numbers: ...
4
votes
5answers
28k views

How to calculate mean, median, mode and range from a set of numbers

Are there any functions (as part of a math library) which will calculate mean, median, mode and range from a set of numbers.
0
votes
0answers
26 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 ...
4
votes
3answers
538 views

How to calc a cyclic arc through 3 points and parameterize it 0..1 in 3d

How can i calculate an arc through 3 points A, B, C in 3d. from A to C passing B (order is taken care of). Most robot arms have this kind of move command. I need to simulate it and apply different ...
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): ...
4
votes
3answers
142 views

pyEphem - Calculating Positions of non-Earthy Moons

I'm trying to get the Earth distance and the right ascension (relative to my observer point in Earth) of a satellite not orbiting the Earth, but pyEphem isn't returning the same properties as other ...
1
vote
2answers
73 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
1answer
39 views

Create waypoints on a polygon with JS

This is more a mathematical than a JS problem, but I hope you can help me. I'm trying to create waypoints around a polygon. It should be able to walk on a line. I need to observe the following cases ...
0
votes
2answers
105 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 ...
2
votes
1answer
35 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 ...
3
votes
2answers
68 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
2answers
58 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
vote
0answers
22 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 ...
0
votes
1answer
34 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 ...
-1
votes
2answers
38 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
20 views

Ray casting intersection with infinite plane with normal and offset

I have an Infinite Plane and I know its Normal and Offset. Now, I want to know if a Ray Casting ray is intersecting with this Infinite Plane. How can I know that?
1
vote
4answers
207 views

n! combinations, how to find best one without killing computer?

I'll get straight to it. I'm working on an web or phone app that is responsible for scheduling. I want students to input courses they took, and I give them possible combinations of courses they should ...
-3
votes
1answer
54 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 ...
0
votes
3answers
57 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 ...
1
vote
2answers
75 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 ...
0
votes
4answers
74 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
6answers
72 views

Numerical differential equation solver algorithm segfaults unexpectedly

I was trying to solve a differential equation in octave but it takes forever with the differential unit I have chosen, so I decided to code it in C. Here is the algorithm: #include <stdio.h> ...
17
votes
15answers
8k views

Fast factorial function in JavaScript

Looking for a really fast implementation of factorial function in JavaScript. Any suggests?
2
votes
4answers
50 views

How to round decimal values using Math.Round but keep trailing zeros

In my application certain fields contain decimal numbers. And it is possible to enter only 2 decimal points. After doing some calculations, the result is displayed, and the answer should also contain ...
0
votes
0answers
24 views

Difference Equation/Exponential Moving Average Filter on NVidia Fermi GPU

My question: What would be the most efficient way to do this calculation on the GPU? How do I fix my math problem? Background information: I am working on a GTX 570. I have been teaching myself ...
0
votes
2answers
1k views

Python math is wrong [duplicate]

Possible Duplicate: Python rounding error with float numbers Python 2.7.3 (v2.7.3:70274d53c1dd, Apr 9 2012, 20:52:43) [GCC 4.2.1 (Apple Inc. build 5666) (dot 3)] on darwin Type ...
0
votes
3answers
2k views

Math.random() explained

This is a pretty simple java (though probably applicable to all programming) question: Math.random() returns a number from 0.0 to 1.0. If I want to return an int from 0 to 100 I would do: (int) ...
0
votes
1answer
28 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 ...
2
votes
1answer
50 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 ...
24
votes
1answer
2k views

Is there a good math/stats library for Scala?

I'm looking for a good open source library for scala for math and statistics. Hopefully something like Apache Math or Colt, but implemented in Scala. Can anyone point me in the right direction?
0
votes
5answers
317 views

Exponential Formula for negative direction?

Ive got a bit stuck figuring it out for the negative direction? it must be really simple, but just cant seem to get it! x = current x position dir = direction of motion on x axis if (tween == ...
0
votes
0answers
22 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 ...
0
votes
1answer
91 views

Find a path in a graph from a given pair of source and destination vertices , and disjoint with a given path

We're given an unweighted undirected graph G. We're also given two vertices a, b and a path p. Is there a way to find a path which is edge-disjoint with path p? This problem is similar with finding ...
0
votes
1answer
56 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 ...
6
votes
2answers
77 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 ...
1
vote
1answer
41 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 ...
0
votes
1answer
44 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 ...
-2
votes
0answers
47 views

Python draw circles and find intersecting points [closed]

I have a geometrical problem needs to be solved. I need draw circles at python and find the intersection points of two circles in terms of x,y. DETAILS; I have a problem, similar to gsm triangulation ...
0
votes
1answer
81 views

map the point x,y in Cartesian coordinate into 2D Array elements

I would like to create a map of the enviroment, ie. my room. I want to have a 2D representation of my room using 2D Array. I am trying to map a room, which has coordinate start at (5,5), (10,5), ...
16
votes
5answers
1k views

What is so special about Monads?

A monad is a mathematical structure which is heavily used in (pure) functional programming, basically Haskell. However, there are many other mathematical structures available, like for example ...
5
votes
1answer
214 views

Where can I find math intense apps in Ruby & Ruby on Rails

I have found many rails apps mainly on the social networking kinda web apps.I see that Ruby/RoR are compared with some of the great OOPS languages like Java & C# but I am really finding it hard to ...
617
votes
26answers
83k views

Understanding “randomness”

I can't get my head around this, which is more random? rand() OR rand() * rand() I´m finding it a real brain teaser, could you help me out? EDIT: Intuitively I know that the mathematical ...

1 2 3 4 5 252