Questions tagged [calculus]
5 questions
11
votes
8 answers
How can calculus and linear algebra be useful to a system programmer?
I found a website saying that calculus and linear algebra are necessary for System Programming.
System Programming, as far as I know, is about osdev, drivers, utilities and so on. I just can't figure out how calculus and linear algebra can be…

Victor
- 498
- 1
- 4
- 14
4
votes
1 answer
Computing integration with the Trapezoidal Rule
I am trying to implement the trapezoidal rule programmatically but am having trouble finding a good way to input the function of x and then have a loop which will iterate through for each sub-interval finding the area of the trapezium and adding the…

user80317
- 41
- 1
- 2
4
votes
11 answers
Where is the application of Calculus (of continuous quantities) in Computer Science or programming
I am a Software Engineer professional. I have studied calculus as a core course in my graduation studies. I want to ask question, that what/where is the implementation of calculus in computer science?

user48694
- 57
- 1
- 1
- 4
2
votes
1 answer
Big-O Notation and Calculus
I was wondering if there are any calculus relationships implicit in Big-O notation.
For example, an algorithm linear according to Big-O notation reduces the size of the problem by a constant amount at each step, and also involves looking at each…

user10478
- 129
- 1
1
vote
1 answer
Is it appropriate to pass in a derivative to calculate the error of a Neural Net?
I'm reading a guide for back-propagation of a neural net, and it gives the error function as:
Next work out the error for neuron B. The error is What you want – What you actually get, in other words: ErrorB = OutputB (1-OutputB)(TargetB –…

Carcigenicate
- 2,634
- 3
- 24
- 38