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 ...

learn more… | top users | synonyms

1
vote
2answers
60 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
114 views

C++ Incomplete Code about dates, what is the better solution?

Im writing a code that, if you input your birthday date and any other date, it returns the total number of years, months and day that you are alive. Obs.:including (leap) bissextile years. Obs.2:for ...
1
vote
2answers
41 views

java result really different from the expected one

I'm trying to output a really simple value, but what I obtain is really weird: Log.d("try", "distanceWithMaxSpeed > " + ((90 * (1000 / 3600)) * ((3000 - 2000)/1000)) ); I get 0 instead of 25! ...
-2
votes
0answers
21 views

How to translate following query to DRC [closed]

I need to translate the following query to the DRC, help will be grately appreciated select p.pid,p.pname,p.address,p.phone from patient p join allocation a on a.pid=p.pid group by a.pid having ...
0
votes
1answer
15 views

Query retrieving vs. calculus - best performance?

I have a doubt, is best, in term of performance, retrieving from a large database (50k+ rows growing) on MySQL a "calculated" data or perform the calculus on the fly? The calculus are simply division ...
0
votes
1answer
42 views

Maximize Rectangle in an Area on the X, Y plane with a list of points representing the area

Okay, I need help maximizing the area of a rectangle in the sliver object that can be many different shapes. I've already done most of the work. I'm working in C# with a kinect and the depth pixels. ...
0
votes
1answer
44 views

Riemann Integrator Sum Issue

Here is my code for the Riemann Integrator: public class RiemannIntegrator { public static void main (String [] args) { double lower = Double.parseDouble(args[args.length -2]); ...
-3
votes
1answer
69 views

Can someone help me write this mathematical equation in common lisp or at least explain it to me [closed]

At this link http://www.ai-junkie.com/ann/evolved/nnt5.html is the equation - exactly half way down page. Its some thing like "Output = 1 over 1 + e to the negative a divided by p power"? am i ...
0
votes
0answers
25 views

Beta-Reduction of Lambda Calculus

I know this is probably really simple but I am having problems figuring out how to reduce this. The following is my equation. (λx λy . y x) z I just need an idea of where to start with this ...
0
votes
5answers
101 views

Calculate checksum in C#

numbers[i] = numbers[i] * 2; if (numbers[i] >= 10) { string t = numbers[i].ToString(); Console.WriteLine(t[0] + " plus " + t[1]+" = "+quersumme(t).ToString()); numbers[i] = ...
3
votes
4answers
161 views

How do I pass in a polynomial function in java?

For a programming project in Calculus we were instructed to code a program that models the Simpson's 1/3 and 3/8 rule. We are supposed to take in a polynomial(i.e. 5x^2+7x+10) but I am struggling ...
0
votes
2answers
118 views

C# aggregation function for a non-linear series

I'm given two arrays, one representing a price, the other representing a number of units: e.g. decimal[] price = new decimal[] {1.65, 1.6, 1.55, 1.4, 1.3}; long[] quantity = new long[] {5000, ...
0
votes
0answers
68 views

What is the integral of 1/[x] where [] is an integer function? [closed]

This is more of a math-question. I have the following equation: 1/([3*1.1^[y]*[x]]+1), where square brackets [] are the integer step-wise function (ie. floor). X represents a distance and Y ...
-1
votes
1answer
94 views

How to create a calculus derivative solver using Javascript? [closed]

I've been trying to create my own JavaScript program for solving problems in Calculus such as taking the derivative of an equation, but as of yet have not succeeded. I would be greatly appreciative ...
0
votes
0answers
10 views

predicate abstraction [closed]

Can anyone please suggest me books for Predicate Abstraction and Symbol Analysis in software verification and prove properties of infinite state systems. It would be great if you can even list the ...
1
vote
3answers
426 views

Taylor series for arcsin(x), incorrect output C language

I wrote a program that gets from the user a value x and an integer n, the program then prints arcsin(x) using the taylor serie for arcsin http://tedmuller.us/Math/img/Taylor-arcsin.gif but for some ...
0
votes
1answer
194 views

Numerical Integration Problems with Product Rule due to differnet resolution

I am facing some problem during calculation of Numerical Integration with two data set. For integration i am using simpsons 1/3 rule. function I = Simpsons(f,a,b,n) if numel(f)>1 % If ...
0
votes
2answers
102 views

Mathematica Index Equation (basic algebra)

I am currently working on a Mathematica project to calculate Riemann's sums and put them in a table. I am having trouble printing the row numbers (intervals). (The row numbers are also parameters to ...
0
votes
1answer
67 views

MATLAB Help. Plugging in matrix of variables into existing function

I have an existing function of two variables (x,y) called discriminant defined in the following way: discriminant = xSecondPart * ySecondPart - xySecondPart.^2; Where xSecondPart and ySecondPart ...
1
vote
1answer
117 views

Analysis of algorithm by Average-case

I'm trying to solve a very simple algorithm analysis (apparently isn't so simple to me). The algorithm is going like this: int findIndexOfN(int A[], int n) { // this algorithm looks for the value n ...
1
vote
2answers
51 views

I want to reduce two modules into one. The first is an equation; the second takes the integral of this equation [duplicate]

Possible Duplicate: Merging two modules into one. The first is an equation; the second takes the integral of this equation #include <stdio.h> #include <math.h> double f(double ...
1
vote
2answers
354 views

Secant method function in python

I understand that this has been solved in C/C++, but I am not comfortable enough with those languages to be able to convert it to python. I am trying to create this in python. The closest I was able ...
3
votes
3answers
186 views

Why does my derivative function produce strange results?

I am writing a small calculus library for personal use. In it are the standard calculus tools - taking the first derivative, nth derivative, Riemann sums, etc. One problem I have faced is that the nth ...
0
votes
1answer
133 views

complexity theory-sorting algorithm

I'am taking a course in complexity theory,and so it's need some mathematical background which i have a problem,. so while i'am trying to do some practicing i stuck in the bellow example 1) for (i = ...
-1
votes
3answers
102 views

Which program to solve integration = 0 for a variable? [closed]

i'd like to know how to solve a definite integral in Mathematica. I do know all variables except b, and need to solve for F(b)=0. How can i solve it in Mathematica? Here is my try: ...
0
votes
1answer
128 views

Calculate new position values in C#

I have a document which containing some elements. The document is an INDD document. I am trying to show it in a webview but in a smaller size than the original size. I am using ImageMapper (ASP.NET) ...
-1
votes
1answer
313 views

integration example with matlab

Can someonse show me how to calculate the following in matlab: where g = 9.91 As = 1000 z = 10 zv = 30 zD = 10 pz = 999 Az = 500
0
votes
2answers
70 views

ternary operators for calculus class

I was wondering about the use ternary operators outside of programming. For example, in those pesky calculus classes that are required for a CS degree. Could a person describe something like a ...
0
votes
1answer
88 views

Matrix derivative

How can I derive the equation where A is NxN dimensional , x is Nx1 , b is Nx1 It's something that I get from my machine learning objective function thanks.
1
vote
3answers
124 views

Differentiable approximation of the round() Matlab function

Could you possibly suggest a differentiable approximation for the round Matlab function? The round function looks like this: I would like a differentiable function which [closely] resembles the ...
1
vote
0answers
156 views

Calculating Pi with pre-assigned accuracy with using long arithmetic [closed]

The point is that: how to calculate Pi with accuracy, which was given by user? There are many different formulas to calculate Pi, but good performance to accuracy ratio is needed. Long arithmetic must ...
1
vote
2answers
153 views

A new coordinate 50metres away from another in C#, how?

I have a coordinate and a heading, how do I get a second coordinate say 50 metres away from the first one in a C# function? Example info: Lat: 56.33908260 Lon: 17.01194088 Radians: ...
10
votes
3answers
689 views

Tricky interview puzzle

You have this code in Javascript (even though language choice does not matter): var arr = new Array(101); for (skip = 1; skip <= 100; skip++) { for (i = 0; i <= 100; i+= skip) { ...
2
votes
4answers
120 views

Is my integration algorithm correct? Also can we improve this on parallel processing and efficiency? The code is in C#

How do i better calculate the definite integral? I am using a function to integrate and another to find the factorial recursively. I'l like to better the algorithm or the efficiency or even the ...
0
votes
1answer
93 views

Objc math decimal

I have an interesting situatin to solve, its more like a quiz :) I have to recreate a simple calculator and I have two buttons with up/down on it. The function of this two buttons are simpe, they ...
0
votes
0answers
57 views

I dont't understand a proof for the second-order condition for convexity [closed]

I find a proof here http://mathhelpforum.com/advanced-math-topics/129503-second-order-condition-convexity.html But I don't understand the second part. For example. What does For the converse, if ...
0
votes
2answers
325 views

Drawing Curves on Surfaces in WebGL

Well, the title pretty much states it. I want to be able to draw a curve on a surface in Web GL. So for example, I'd like to draw a parabola on the surface of a sphere. x = cos(theta)sin(phi); y = ...
0
votes
0answers
71 views

Drawing Curves on surfaces

I'd like to make a learning tool for my professor that shows students what curves on surfaces look like. The idea is I have some sphere, and I can draw a line on it's surface given some function. ...
3
votes
2answers
657 views

Derivative of sigmoid

Hi i'm making a neural network for a university assignment using the back propagation technique for learning. I understand we need to find the derivative of the activation function used. I'm using the ...
2
votes
1answer
552 views

Library for polynomial calculus in Java?

Are there any (preferably open source) library for Java that allows one to do calculus with polynomial e.g. addition, multiplying, dividing by constans etc. ? Also if it would be capable to ...
2
votes
2answers
397 views

Finding the optimal 3D box sizes for a group of 3D rectangular items

When I say box I am talking about shipping boxes. I have a number of random sized, small items that I need to pack into as few boxes as possible. I need to know what box sizes are optimal. All ...
3
votes
1answer
164 views

Algorithm to calculate a diminishing value, approaching a limit

I've been trying to find a Javascript version of a handy method I'd used (not written) a while ago in LPC, it was called dimval(), and it took this form: NAME dimval() - returns values with a ...
1
vote
1answer
237 views

Objective-C, C, or C++ Calculus Frameworks/Libraries?

I am an Electrical Engineering Student and have found a few ideas for some apps to make in my spare time, and they would need to be able to use integration and differentiation in order to do the ...
0
votes
1answer
112 views

harmonic series with x86-64 assembly

Trying to compute a harmonic series. Right now I'm entering the number I want the addition to go up to. When I enter a small number like 1.2, the program just stops, doesn't crash, it seems to be ...
2
votes
2answers
829 views

How to find the distance between a point and a parabola in code

I am trying to find the closest point on a parabola to an arbitrary point in 2d, for a DirectX pixel shader. A great amount of googling has revealed to me that this is a common pre-calculus homework ...
1
vote
2answers
186 views

“Merging” a straight line into a Gaussian curve

You can assume that the first image below is the original Gaussian curve. The second image is the desired output. I have these equations: Equation of each red line segment (let's call this the ...
0
votes
1answer
621 views

Calculating APR using Reg Z Appendix J

OK. I'm brand new to this site so "Hello All"! Well I've been wrestling with a difficult problem for the last week and I would appreciate any help you can give me. I know there are many formulas out ...
1
vote
1answer
80 views

Smooth of series data

i need to smooth better this kind of plot, I've already used a moving average (10 points) to get this plot but it's not yet perfect. I want to remove all these little peaks dued by noise, I need to ...
6
votes
0answers
193 views

Minimizing NExpectation for a custom distribution in Mathematica

This relates to an earlier question from back in June. Calculating expectation for a custom distribution in Mathematica I have a custom mixed distribution defined using a second custom distribution ...
3
votes
3answers
328 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, ...

1 2