Tagged Questions

7
votes
3answers
245 views

Calculus? Need help solving for a time-dependent variable given some other variables

Long story short, I'm making a platform game. I'm not old enough to have taken Calculus yet, so I know not of derivatives or integrals, but I know of them. The desired behavior is for my character to ...
4
votes
3answers
153 views

Space Physics for missiles, spaceships - Learning Calculus edition

Supposing we have Missile A, with a position vector and velocity magnitude (ignoring acceleration, as many games do) and Spaceship B, with position and velocity vectors. Now, this missile, being a ...
4
votes
5answers
1k views

Integration (math) in C++

I'm looking for a library to find the integral of a given set of random data (rather than a function) in C++ (or C, but preferably C++). There is another question asking about integration in C but ...
3
votes
3answers
119 views

Project Euler #368 (Math Formula) [closed]

In Project Euler, a problem asks me to write a program to find the convergence value of 20 terms from the Harmonic sequence: 1/111, 1/222, 1/333, 1/444, 1/555, 1/666, 1/777, 1/888, 1/999, 1/1000, ...
3
votes
3answers
52 views

javascript slider weighted values

I have a JavaScript slider that outputs a value between 0 and 1 depending on its position. I want to convert that value to a value on another scale between say 100 and 1000, but based on the ...
3
votes
5answers
479 views

Uniform distance between points

How could I, having a path defined by several points that are not in a uniform distance from each other, redefine along the same path the same number of points but with a uniform distance. I'm trying ...
2
votes
5answers
94 views

Need some math - Projecting Slope

I have a rectangle. Its height (RH) is 400. Its width (RW) is 500. I have circle. Its height (CH) is 10. Its width (CW) is 10. Its starting location (CX1, CY1) is 20, 20. The circle has moved. Its ...
2
votes
2answers
67 views

creating random numbers that favor smaller numbers

say i generated a set of random numbers and put them into an array, (pre-sorted for simplicity) i'll use javascript to show the math: var vals = new ...
2
votes
2answers
171 views

Propositional calculus in python

I'm looking for a propositional calculus module that works in python. My users need to input a formula in a text area, then I have to check whether it's correct or not. I cannot directly test if the ...
2
votes
1answer
451 views

Translating “neither…nor” into a mathematical logical expression

Having some difficulty doing translations for complicated neither...nor sentences. With these characters: ~ Negation V Disjunction & Conjunction I'm trying to translate and understand, for ...
2
votes
6answers
1k views

algorithm to find derivative

I'm writing program in Python and I need to find the derivative of a function (a function expressed as string). For example: x^2+3*x Its derivative is: 2*x+3 Are there any scripts available, or is ...
1
vote
0answers
40 views

Dirichlet task for the unit circle code

Is there available a good introductory tutorial with code for Dirichlet problem?
1
vote
1answer
50 views

Defining Taylor Series in Maple

I am attempting to define a function in Maple that defines the Taylor Series (without using the taylor() command). I am using the sigma notation definition as found here. Essentially, I need a ...
1
vote
1answer
124 views

Re: Space physics for missiles, spaceships

In this rather useful CodeProject article, an enterprising and very helpful person has done the math needed for a newtonian missile to hit a newtonian target (it also works for matching course and ...
1
vote
2answers
172 views

Finding area between two curves(each consists of an array of points)

I'm writing an android application that scans an image and creates a sort of histogram from said image, then allows the user to drag a baseline of a predefined number of points. I have these parts ...
1
vote
1answer
78 views

Is there a math function that increases when >0 and constant when <0 WITHOUT using piecewise functions [closed]

Is there a mathematical function that is constant at 0, but once it hits 0, it begins increasing. I dont care what kind of increasing function it is: e, parabola, etc. I am trying to avoid piecewise ...
1
vote
6answers
413 views

Java estimate a derivative at a point

I am currently writing a calculator application. I am trying to write a derivative estimator into it. The formula below is a simple way to do it. Normally on paper you would use the smallest h ...
1
vote
1answer
77 views

troubles witn integration on matlab

I'd like some help please I really need to solve this problem =P Well before anything thank you for your time... My problem is the next, I have a matrix (826x826 double) and I want to integrate this ...
1
vote
3answers
529 views

How does one calculate the rate of change (?derivatives?) in C#?

I have a stream of data that trends over time. How do I determine the rate of change using C#? It's been a long time since calculus class, but now is the first time I actually need it (in 15 ...
1
vote
6answers
404 views

Calculate Triangle From Area And Angles

I'm trying to calculate triangles base on the Area and the angles. If Angle-B is 90° then the formula works, but in my case, the angle can be from 0.1° to 179.8°. The formula assumes that the angle is ...
1
vote
1answer
322 views

Is there a Calculus library for JavaScript?

Does anyone know of a Calculus library for JavaScript? I've done some Googling and haven't come up with anything. I applied for the WolframAlpha API, but that's expensive unless they choose to give me ...
1
vote
4answers
900 views

Calculus, How can you find an equation from a series of numbers?

I'm analyzing financial data and would like to find the inflection points of a line. I know I can do this using derivatives, but first I need an equation. Is there are way to generate an equation ...
0
votes
1answer
51 views

implementation of the calculus functions i.e f(x), in programming

I want to write a program that calculates a given math function (by the user) with specific set of values. The user is asked to type a function, say he typed f(x)= (x^2)+3x+1 then through the program ...
0
votes
3answers
340 views

3d integral, python, integration set constrained

I wanted to compute the volume of the intersect of a sphere and infinite cylinder at some distance b, and i figured i would do it using a quick and dirty python script. My requirements are a <1s ...
0
votes
2answers
282 views

How do I show that there are scalars s and t so that sa+tb = <x, y, z> is true? [closed]

My textbook only has one similar example with vectors, and the same method did not yield the correct answer for me when I tried to apply it to the question I am working on. Let a = <-4, 2, -3> ...
0
votes
3answers
315 views

Differentiation or Indefinite Integration in PHP, Javascript, or C#?

I think/thought my question is rather simple, but I don't seem to be finding answers (yes I did pleny of Googleing). What I want t do is to be able to differentiate or integrate dynamically given an ...