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

Determine image offset

I've got a large circle with an image as a fill pattern. The circle is rotated. When I click inside the circle I wish to create a smaller circle which contains the same image and the same offset. ...
0
votes
0answers
23 views

how to apply qtransform to only clipped area of Qimage

My task is, Cut the triangular portion of Texture image and want to plot that clipped texture image to particular triangle. Condition is, my texture image that i had clipped size will be greater ...
-1
votes
1answer
40 views

ASP.NET - Calculate Math Expression from Textbox

I'm developing ASP.NET application and I need to calculate maths expressions like 16+25*(15.38-12.16) which is entered in a text box control and to get result in other text box or label or ...
1
vote
3answers
70 views

determine angle between two points on a circle with respect to center

I have a Ring(width 25px) as UIView. When User selects any where on the ring, I want to Calculate the Angle between the the Points Selected on a fixed point on the circle considering the Center of ...
1
vote
6answers
194 views

Use two random function to get a specific random funciton

There are two random functions f1(),f2(). f1() returns 1 with probability p1, and 0 with probability 1-p1. f2() returns 1 with probability p2, and 0 with probability 1-p2. I want to implement a ...
-1
votes
1answer
43 views

random walk N times and only Nth return to the orignal place, what's the number of permulation? [closed]

suppose a partical can move on x-coordinate, which means it can move 0 to 1 or 1 to 2 or N-1 to N .etc, now it starts with 0, it can move one step every time, left or right (e.g. when it reaches 5, it ...
6
votes
4answers
199 views

How to find the smallest number with just 0 and 1 which is divided by a given number?

Every positive integer divide some number whose representation (base 10) contains only zeroes and ones. One can prove that: Consider the numbers 1, 11, 111, 1111, etc. up to 111... 1, where the ...
0
votes
0answers
43 views

Invert a Covariance Matrix in VBA in order to solve a Matrix equation

I would like to solve an equation where I need to invert a Covariance matrix with VBA. The process of the study is as follow : I need to calculate the vector X X = M(inverted) * 1 / (1(transposed) ...
2
votes
2answers
69 views

MATLAB: How do I graph multiple functions on the same graph?

How can I graph multiple functions on the same graph/plot/Cartesian plane on MATLAB with domain and range restrictions? For example I made up the following functions below. How would I graph the ...
1
vote
1answer
43 views

Android - Display formulas in multple choice questions

I'm working on creating a small android app to display multiple choice questions. Few of the question/answer choices has complex mathematical formulas. I'm able to display formulas using WebView + ...
0
votes
2answers
127 views

Why a power function is often computed as a logarithm?

I am studying some x86 ASM code and what the code really does, it's my understanding that a power function (x^y) internally works as a logarithm function. By internally I mean the CPU registers. Why ...
0
votes
2answers
98 views

Get coordinates of a point in 3D space from angles its vector makes with axis and its length

I have a magnitude of the vector pointing somewhere in 3D space from the origin (0x, 0y, 0z). I also have an angle that projection of the vector in X and Z axis makes between itself and the Y axis. In ...
0
votes
1answer
76 views

MATLAB; Lagrange Polynomial, an Interesting Error

In my school homework I was given a problem, that required me to calculate Lagrange polynomial. The data set (x,y) involved x = 0,1,2....20, while y = x - 0.3*rand() + 1; Then we were asked to ...
0
votes
1answer
46 views

Calculate Distance Forumla while using a Scale

I am trying to calculate a distance based upon the scale my users draws in. My user can snap to other points in the game by drawing a line on a grid. The grid is a numerical value that they can ...
1
vote
1answer
38 views

Solving Differential equations in Matlab, ode45

I'm trying to solve a system with three differential equations with the function ode45 in Matlab. I do not really understand the errors i am getting and i could use some help understanding what im ...
-2
votes
0answers
30 views

Minimum degree of a polynomial passing through points [closed]

If P(x) is a polynomial such that P(a1)=b1, P(a2)=b2, ... , P(ak)=bk, how can I find the polynomial which has minimum degree and for whom the relations above are true?
5
votes
5answers
118 views

Writing a function that “solves” an equation

I want to write a function which will allow me to "solve" an equation in js. what I want (not in a programming language): function f(x) { 1 + x * x } var z = 2 var y = f(z) //y will be 5 as a ...
1
vote
1answer
63 views

How to move the position of a calculated circle?

The situation I currently have a working method that correctly calculates the circumference. each position within the circumference, is stored within an array of structs. My camera position moves ...
20
votes
3answers
670 views

ruby code far faster than equivalent c++ code

Recently I've been going through some easy project Euler problems and solving them in ruby and c++, but for the problem concerning the collatz conjecture my c++ code went on for about half an hour ...
0
votes
2answers
75 views

What does the O(1) in “ln ln n / ln 2 + O(1)” mean?

I have difficulty understand the O(1) notation in this formula, does it stand for a constant? Why would people use big-O notation like this? This formula comes from the paper "Balanced Allocations" ...
0
votes
2answers
89 views

Why does my JavaScript Prime Number-Generator not work?

The aim of this program is to list all the prime numbers from 1 up. I am a complete novice. I began writing this in C++ (unsuccessfully) and translated to this (JS) I am aware of some problems but ...
8
votes
4answers
164 views

How to generate a distribution of k shots on n enemies

I am developing a space combat game in Java as part of an ongoing effort to learn the language. In a battle, I have k ships firing their guns at a fleet of n of their nefarious enemies. Depending on ...
0
votes
2answers
43 views

Android Calculating values to pass to onClick method

I think I'm getting confused about the activity lifecycle here, I'm trying to perform a simple weights conversion, nothing spectacular. the user enters a value, selects whether they want it ...
2
votes
4answers
83 views

Strange behavior of floor()

I develop a c++ app (Windows 7, 64 Bit, VS 2008) where the following formula is used (all vars are of type double): mValue = floor(mValue/mStepping)*mStepping; The idea is to shorten a number to a ...
1
vote
2answers
75 views

When using a header only in C/C++?

is it usual to use for a class like "vec3" only a header? This is my actual code: #ifndef VECTOR3_H #define VECTOR3_H #include <math.h> class vec3 { public: double x, y, z; vec3(); ...
1
vote
1answer
44 views

Javascript Collision Detection between circle and polygon?

I'm unsure how to go about defining the area for a collision detection function when I have a polygon that looks like: ______ / _____| / / / / --- I draw the polygon using lineTo() a few ...
1
vote
3answers
31 views

How to measure the rate of events through a system

I need to measure that rate at which a software system is consuming messages from a message queue and report on that periodically. Specifically, messages arrive from a message queueing system and I ...
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 ...
0
votes
2answers
19 views

Linear Equations

I have a program in C# that asks the user for the 4 values. They are: MinIndex, MaxIndex, MinValue, MaxValue I want to be able to determine the value for any given index within the [MinIndex ...
0
votes
1answer
64 views

Please fix my date diff math

I am trying to help in another question where the asker wants to return the nearest time from an object I have all the trimmings but have a brain freeze on the simple math to decide what is nearest. ...
0
votes
1answer
52 views

I can't understand the mathematical equations of Easing function

I'm learning Easingfunction's application in XNA. But I can't understand the mathematical equations of it. For Example, the formula used for BackEase: f(t) = t^3 - a * t * sin (t * pi) SinEase: ...
3
votes
3answers
169 views

Age (+leap year) calculation in Javascript?

I've read this question but there were many comments which some said it was accurate and some said it wasn't accurate. Anyway I have this code which calc person's age in Javascript : function ...
-2
votes
1answer
42 views

How do you solve the recurrence T(n) = 3T(n / 3) + cn? [closed]

I need some help with this recurrence relation. I always get confused at the end with converting it to big O notation so that would be great if someone could explain it for me. Relation T(n) = ...
0
votes
1answer
35 views

How to calculate the result of the multiplication of two int64 numbers modulus another int64 number?

Let a, b, and c be long long (int64) numbers, how to calculate (a*b)%c? The problem here is that you can't multiply (a%c)*(b%c) because it won't fit on an int64 variable. So, what can it be done? ...
1
vote
2answers
43 views

Setting Assumptions on Variables in Sympy Relative to Other Variables

I know that sympy in python can set assumptions on variables, such as x is positive, negative, real, complex, etc. I was wondering if sympy can set assumptions on variables relative to other ...
-1
votes
0answers
43 views

Math function to approach min and max values [closed]

I hope this is possible... I'm looking for help with a function which would translate an input value to within a minimum and maximum range. But rather than stop at the min and max, I'd like the ...
4
votes
5answers
105 views

How can I round manually?

I'd like to round manually without the round()-Method. So I can tell my program that's my number, on this point i want you to round. Let me give you some examples: Input number: 144 Input rounding: 2 ...
0
votes
2answers
79 views

Android Java using a switch / case to calculate different percentages

I'm having a bit of a conundrum.. I have a variable called "results" which is the result of a previously calculated variable and then appended either +10%, +20%, 0%(the same as it is..) -10% and so ...
-2
votes
1answer
47 views

How can I find a normal vector of a 2D line?

I have a line with point a, (6, 12) and point b (45, 18). To describe this line using vectors, the equation is L = [6, 12] +t [39, 6] How would I go about finding the normal to this line?
3
votes
3answers
110 views

How do I make a permutation function that accepts one value at a time?

I am looking for a function that accepts 1 number from an interval 0,1....N and returns a permuted value from the same interval. An example for 0, 1, 2, 3, 4, 5 and f(x) would be: f(0)=5; f(1)=1; ...
-2
votes
2answers
62 views

(a^k(p-1)+ b) mod(p) here p is a prime number and a,b,k is an integer greater than 1 and a not divisble by p. Is this value same as (a^b)mod(p)? [closed]

According to Fermat's Little theorem a^(p-1) mod(p) is 1. So a^k(p-1) mod(p)will also be 1 by splitting into k parts and apply modulus independently we get '1'. Am I missing something?
0
votes
4answers
74 views

Rounding a number to a smaller or bigger size with the same ratio

I don't know how to describe it very well (so I can't look it up) but I need help. Lets say I have 100 out of 0 to 200, how do I ratio the number to 0 to 100 so it would be like 50? Simply ratio-ing ...
-2
votes
0answers
54 views

Using PYTHON to setup BVP [closed]

How to use python to solve the two-point Boundary value Problem ? y"=10*y^3+3*y+t^2, with 0<=t<=1 with boundary conditions y(0)=0, y(1)=1 ...
0
votes
4answers
56 views

Select characters separately

I need to select only day, month and year (separately) and then calculate days until due. Why is this not functioning correctly? Am I using the substr correctly? http://jsfiddle.net/infatti/XeqPT/15/ ...
0
votes
0answers
73 views

Finding the distance of a point from many triangles in 3D space

This article is very close to the answer I'm looking for: Fastest way to compute point to triangle distance in 3D? It has a lot of GREAT information on the concepts of what I'm trying to do. I have ...
-2
votes
1answer
62 views

Trouble with java arithmetic [closed]

I am making a side scrolling shooter in java and I am trying to figure out the arithmetic behind knowing where bullet would impact on a wall. So far i have decided that using the slope intercept form ...
3
votes
1answer
54 views

Sum or Product of Rationals with Spire (how to get a scala.Numeric)

I thought this should be straight forward: import spire.math.Rational val seq = Vector(Rational(1, 4), Rational(3, 4)) val sum = seq.sum // missing: scala.Numeric val prod = seq.product // ...
0
votes
1answer
26 views

Get New Points from Angle Android

I am trying to make a Re-sizable touch view which I made successfully. You can find code How to make view resizable on touch event. It has 4 corners. You can re-size that rectangle by dragging one ...
2
votes
6answers
128 views

Little endian or Big endian

#include <stdio.h> union Endian { int i; char c[sizeof(int)]; }; int main(int argc, char *argv[]) { union Endian e; e.i = 1; printf("%d \n",&e.i); ...
1
vote
1answer
89 views

Is there any way to make sure the floating point arithmetic result the same in both linux and windows

My programe runs both in linux and windows, I have to make sure the floating point arithmetic get the same result in different OS. Here is the code: for (int i = 0; i < 100000; ++i) { float ...

1 3 4 5 6 7 252