Tagged Questions
Calculus is the study of change of one or more variables with respect to another variable. Calculus has two main operators: differentiation and integration. Differentiation can be used to study the change of one variable with respect to another. Integration can be used to find the area bounded by a function.
9
votes
4answers
666 views
Predictive “blood glucose” algorithm?
I'm writing an app that lets a diabetic user enter his/her "blood glucose" readings, and then charts them on a graph over time from left to right. Since the blood readings will be done only several ...
7
votes
3answers
244 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 ...
5
votes
2answers
766 views
4
votes
3answers
151 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
1answer
154 views
Books or Tutorials that explain Calculus from a programming perspective
K I'm a self taught programmer and been so for a couple of years. But in order to go beyond the programming scab work (entry lvl, Tester, Web Dev, Commercial App Dev; of which I am more than grateful ...
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
100 views
Project Euler #368 (Math Formula)
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
1answer
611 views
Find intersection of 2 curves & area under a curve to the right of the intersection w/ Mathematica
I have 2 curves illustrated with the following Mathematica code:
Show[Plot[PDF[NormalDistribution[0.044, 0.040], x], {x, 0, 0.5}, PlotStyle -> Red],
Plot[PDF[NormalDistribution[0.138, 0.097], x], ...
3
votes
5answers
477 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 ...
3
votes
2answers
1k views
Understanding OpenGL Matrices
I'm starting to learn about 3D rendering and I've been making good progress. I've picked up a lot regarding matrices and the general operations that can be performed on them.
One thing I'm still not ...
2
votes
5answers
88 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
169 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
3answers
379 views
Mathematica integral with many singularities
What's the best way of getting Mathematica 7 or 8 to do the integral
NIntegrate[Exp[-x]/Sin[Pi x], {x, 0, 50}]
There are poles at every integer - and we want the Cauchy principle value.
The idea is ...
2
votes
1answer
444 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
2answers
185 views
Numerical Integration of area defined by set of coordinates?
Suppose you have a general shape defined by a bunch of coordinate points that form something that looks like a circle, ellipse, or general closed curve - how do you find the area bounded by these ...
2
votes
4answers
1k views
1 + 1/2 + 1/3 + — + 1/n =? [closed]
Is there any formula for this series? I think it is a harmonic number in a form of sum(1/k) for k = 1 to n
2
votes
3answers
706 views
Need help programming with Mclauren series and Taylor series?
Ok so here's what i have so far:
#include <stdio.h>
#include <math.h>
//#define PI 3.14159
int factorial(int n){
if(n <= 1)
return(1);
else
return(n * factorial(n-1));
}
...
2
votes
1answer
842 views
MATLAB: How do I pass a parameter to a function?
I have the following function:
function ypdiff = ypdiff(t,y)
a = 0.01;
b = 0.1;
ypdiff(1) = -a*y(1)*y(2);
ypdiff(2) = b*y(1)*y(2)-b*y(2);
ypdiff(3) = b*y(2);
ypdiff = ...
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
39 views
Dirichlet task for the unit circle code
Is there available a good introductory tutorial with code for Dirichlet problem?
1
vote
1answer
47 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
0answers
73 views
DRC (Domain Relational Calculus) explanation..please
I've got this problem:
Consider a relation of scheme Book(Code, Author, Pages, Editor, Year).
DRC: return the books written by Clancy in the period 1991-2000.
In my opinion the solution is:
1) I ...
1
vote
1answer
122 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
168 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
2answers
90 views
seek a better design suggestion for a trial-and-error mechanism in python?
See below data matrix get from sensors, just INT numbers, nothing specical.
A B C D E F G H I J K
1 25 0 25 66 41 47 40 12 69 76 1
2 17 23 73 97 99 39 84 ...
1
vote
6answers
407 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
525 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
1answer
78 views
Is the function notation deprecated?
From WolframAlpha: http://mathworld.wolfram.com/Function.html
"While this notation is deprecated by professional mathematicians, it is the more familiar one for most nonprofessionals. Therefore, ...
1
vote
6answers
401 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
321 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
897 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 ...
1
vote
3answers
1k views
Matrix Multiplication To Rotate An Image In C#
I need to write a program that uses matrix multiplication to rotate an image (a simple square), based on the center of the square, a certain amount of degree based on what I need. Any help on this ...
0
votes
1answer
101 views
Compute Hessian matrix for functions that involve matrix in matlab
Is it possible to compute the numerical hessian matrix for this function with respect to W_i,C, epsilon_i easily Matlab? I have computed a hessian by manually take a derivative, but I want to verify ...
0
votes
3answers
102 views
About precision on C++ calculus
I have gotten a prototype function that make some calculus (integrals of gamma function) in C++ and I need to convert it to C language. The author used float variables with suffix f in every calculus. ...
0
votes
0answers
38 views
Question about TRC (Tuple Relational Calculus)..urgent please
Problem:
Consider a relation of scheme Building(Street, Number, No.Apartments, Color, Age).
TRC: find the oldest building in Downing Street.
The associated SQL statement would be:
SELECT ...
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
0answers
39 views
Applications of differential equations in programming
What are the application of differential equation in programming?
A little example in any language (java, c# or python preferibly) would be great.
Thanks
0
votes
0answers
91 views
VERY LARGE Map-Style Reference table in java
I want to create a map that will always contain common derivatives and integrals, which my program will then search for a given function. Any advice on how to do this?
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
278 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
1answer
752 views
Determining Android Cancel/Back Swipe (Swipe Left To Right) with jQuery
On the Android, without using a framework like Sencha or JQTouch or JQMobile, but using jQuery (regular jQuery), I want to detect a Cancel/Back Swipe (swiping left to right). I have something ...
0
votes
3answers
314 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 ...
0
votes
1answer
302 views
Determining the input of a function given an output (Calculus involved)
My Calculus teacher gave us a program on to calculate the definite integrals of a given interval using the trapezoidal rule. I know that programmed functions take an input and produce an output as ...
0
votes
2answers
663 views
What's the relationship between Calculus and programming syntaxes?
I'm starting Calculus this semester. I've used programming (or scripting) languages before, mostly PHP and C#. I haven't done much low-level work. The only relationships I've made between the ...
0
votes
4answers
587 views
Do calculus in java
I am trying to implement a neural network in java (small one) and I'm using back propogation for the learning algorithm. This requires to find general derivatives. How do I find general derivatives in ...
0
votes
1answer
764 views
How would I find the highest/largest of something with relation algebra, domain relational calculus and tuple relational calculus
This is part of a homework assignment. I've got several questions asking find the eid of the employee with the highest salary, or 2nd highest salary. Find the pilot that is certified for the most ...