Questions tagged [differentiation]

The process of finding a derivative.

In calculus, a branch of mathematics, the derivative is a measure of how a function changes as its input changes. Loosely speaking, a derivative can be thought of as how much one quantity is changing in response to changes in some other quantity.

The derivative of a function at a chosen input value describes the best linear approximation of the function near that input value. For a real-valued function of a single real variable, the derivative at a point equals the slope of the tangent line to the graph of the function at that point. In higher dimensions, the derivative of a function at a point is a linear transformation called the linearization.[1] A closely related notion is the differential of a function.

236 questions
-1
votes
1 answer

Simple Polynomial Differentiator without external libraries

I'm trying to make a polynomial Differentiator without the use of external libraries like sympy and numpy, these are the test cases: "3 + 1x + 2x^2" ==> "1 + 4x" "1 + 2x + -3x^2 + 17x^17 + -1x^107" ==> "2 + -6x + 289x^16 + -107x^106" "17x + 1x^2"…
user13392187
-1
votes
1 answer

Is the cloud a group of datacenters?

Im working in a speech of internet energetic impact for my school and i fell in a question through my researchs: Are the clouds simply a group of datacenters? Everyone just talks about the differences between each other, and get to the point to be…
-1
votes
2 answers

symbolic differentiation in Haskell

I'm new at Haskell-programming and have to do some excercises for my functional development lecture at the university. I got the task to create a datatype, called "term" which represents a rational function. The second task is to create a method…
MaMa
  • 31
  • 4
-1
votes
2 answers

Inputting a mathematical function and differentiating it in matlab

I am new to matlab and want to calculate something like f(x)/f'(x). I want the user to input the function f(x), the parameter x and a value of x (suppose 5,so that I can evaluate f(5)/f'(5)) .Please suggest what I should do.
-1
votes
1 answer

Recursive C program to differentiation a polynomial until it stops

#include #include #include void main() { int a[10],i,n,d[10],power; float in[10]; clrscr(); printf("Enter the order ofthe polynomial\n"); scanf("%d",&n); …
junior
  • 15
  • 1
  • 5
-1
votes
2 answers

Computation of differentiation of Bessel function in matlab

In Matlab, why do differentiation of Bessel function j1(x) for let us say x= 1:10 gives 9 values instead of 10? x=1:10 J = besselj(1,x) d_J = diff(J) x = 1 2 3 4 5 6 7 8 9 10 J = Columns 1 through 7 …
user3914003
  • 1
  • 1
  • 2
-1
votes
2 answers

How to calculate the differential coefficient in c

Thanks a lot people for your help so far but I made a big mistake I need the derivation of a function at a specific point! I have to calculate the first derivation of a function and I really have no clue how to get there. If I just had to calculate…
Akkyen
  • 83
  • 1
  • 6
-1
votes
2 answers

Input a value for a scanf(), but nothing happens

I'm writing some code as part of a few assignment exercises to learn C programming from absolute basics, and I've run into a problem, which is probably quite simple to solve, but I'm completely stuck! I'm writing a program to implement a basic…
alexheslop1
  • 135
  • 1
  • 11
-2
votes
1 answer

How can I differentiate a function of a function?

I am trying to differentiate z(x) w.r.t. x using the ad library, where I know y(x) and z(y). If I cannot analytically find z(x), how can I perform the differentiation? In other words, I am trying to avoid the chain rule calculation as shown…
-2
votes
1 answer

Highest value of equation "T(C-NT)"

Given equation T(C-NT). Here given value of C & N. I have to find the minimum value of T so that given equation value is maximazied. My approach: Let maximum value of equation is y. So, y = T(C-NT) y = T C - T^2 N If we differentiate this equation…
Abu Hanifa
  • 2,857
  • 2
  • 22
  • 38
-2
votes
1 answer

Is there any Good library for solving differentiation equations using differentiation operator?

Good library for solving differentiation equations (not only 1rst order) using differentiation operator?Better written in C/C++/PHP/C#/Actionscript/Javascript
Rella
  • 65,003
  • 109
  • 363
  • 636
1 2 3
15
16