0
votes
1answer
33 views

Developing Formula/Pattern To Determine Position

I'll try to ask as clearly as possible, but please comment if some part is not clear to you. I'm trying to develop a formula to determine the position of an element based on that element's value in a ...
0
votes
2answers
73 views

Pythagorean Triples Formula in Javascript - Project Euler Prob 9

I'm trying to solve the Project Euler Problem 9 : A Pythagorean triplet is a set of three natural numbers, a < b < c, for which, a2 + b2 = c2 For example, 32 + 42 = 9 + 16 = 25 = 52. ...
0
votes
0answers
24 views

Calculating NORM.DIST in JavaScript

I am trying to calculate the NORM.DIST in JavaScript. I am starting from this link: http://office.microsoft.com/en-us/excel-help/normdist-HP005209192.aspx. I already know how to calculate it when ...
0
votes
0answers
39 views

correct syntax for Amplitude function

Please see the grab of an Amplitude function. I wanted to know how to write this in javascript or C#? Its the litte dot between the a x that I'm not sure of. Possibly asin or dot product? Anyway, ...
1
vote
4answers
86 views

Javascript: mathematical formula?

I need some help how to make this math formula in javascript. i have tried searching but couldn't really find cause i dont even know what ^ is called in English. note: im really new to javascript ...
0
votes
1answer
104 views

Javascript mathematical library

I'm working on a project in which users define formulas that are to be executed against user inputs. On the UI side, a user would, for example, input the value for varA, and varB. The javascript code ...
0
votes
2answers
153 views

Convert number to fraction using symbols like ¼ ½ ¾ (in google spreadsheets)

I would like to convert a number to a fraction in Google spreadsheets (I'm on the latest Firefox, Windows 7). After some searching I managed to find this formula which works well for me (It converts ...
0
votes
0answers
50 views

Reuse calculation formula on client and server

There are 3 modules: Quotes, Orders and Invoices. Each module has line items attached to it with fields name, quantity, cost, list price, unit price, sum income Each module has Total Sum which is ...
0
votes
1answer
70 views

Formula for plotting points on a timeline

I have created an application in javascript where a user clicks a button to start a timer, presses a series of buttons and then clicks another button to stop the timer. The time each button is ...
0
votes
1answer
62 views

Making a JS formula from slider outputs

I'm sure this is possible with JavaScript, but I couldn't find exactly what I'm looking for by searching and my scripting skills are very poor. I have 3 sliders on a page, which output their value to ...
0
votes
2answers
81 views

Rounding elements of a formula up/down until the result is an integer

I want to round up or down a until the result is an integer. a = 1.2 b = 1.5 a*b*16 = 28.8 However, I have a criterion: a must be fixed to no more than 3 decimal places. So I need a calculation ...
0
votes
0answers
107 views

javascript “Property Tax” calculation formulas

I have an equation that calculates the Monthly Payment based on the Price, Down Payment, Term, and Interest Rate. Currently I am outputting a variable like so: P = ...
0
votes
1answer
163 views

how to draw sky chart?

How to draw star chart like this? I have: star database with coordinates ( right ascension, declination) observer coordinates (latitude, longitude) time of observation I need formula which ...
4
votes
5answers
846 views

All possible moves in a 5x5 grid?

s o o o o o o o o o o o o o o o o o o o o o o o e How can I calculate all possible paths, without using the same square twice, that a person could take to get from s to e? I've created a grid array ...
2
votes
2answers
223 views

writing a jquery function to reuse a formula

I have a function that does some stuff and one thing it does is calculates height/width and applies css top/left for centering. Instead of rewriting the formula more than once, I want to be able to ...
1
vote
1answer
159 views

Formula returns values slightly below “correct” answer?

Okay, I'm far from a math whiz. Heck, the fact that I remembered enough high school algebra to cobble together any working formula is a triumph for me. So if you notice an unecessarily long or ...
3
votes
2answers
2k views

How to define the intersection of three circles?

Given three circles with their center point and radius, how can you define the area of intersection? So far what I have is: var point1 = {x: -3, y: 0}; var point2 = {x: 3, y: 0}; var point3 = {x: 0, ...
0
votes
2answers
122 views

How do i parse out the row and column values from an excel formula string?

If I have a string in javascript like =sum(A1,B2) or an example variation like = sum( C1, ZX2) . The combinations of cells could be anything. I need a function to parse out the two parameters. In ...
0
votes
2answers
97 views

Counting rounds in a tournament

I've written a huge page in JavaScript for a tournament I'm hosting on a game. I've gotten everything I really need worked out into arrays, but I want to add rounds. The whole script adjusts to ...
1
vote
1answer
154 views

Can I express these conditionals with a single math formula?

Not sure of the best way to ask this question other than: I'm writing a function that will accept a variable called 'x'. function doIt(x){ var y = someformula; //this is just a placeholder for the ...
4
votes
5answers
214 views

How can I represent a formula in a way that is understood by both Javascript and PHP?

I'm writing a shopping cart in PHP, and part of its function is to calculate shipping for a given set of products. For users with Javascript enabled, I want to provide the smoothest experience ...
7
votes
6answers
6k views

Circle coordinates to array in Javascript

What's the best way to add the coordinates of a circle to an array in JavaScript? So far I've only been able to do a half circle, but I need a formula that returns the whole circle to two different ...