Git Product home page Git Product logo

dual-numbers's Introduction

dual-numbers

A small library of functions implemneting dual arithmetic. The dual numbers make it easy to compute derivatives of functions and do so accurately (up to machine precision). Derivatives are not approximated; they are computed exactly. The only limitation is the precision of the machine on which the code is being executed.

The supported functions are:

  • arithmetic operations Add, Sub, Mul, Div
  • Sin
  • Cos
  • Exp
  • Log
  • Power
  • Abs

Example

Say we wanted to compute the derivative of the function f(x) = (x + 1)*(x - 2)/(x + 3) at x = 3. We convert this function into code by using the primitives listed above:

DualNumber Func(double x) {
	DualNumber d = MakeVariable(x);
	return Div(Mul(Add(d, MakeConstant(1)), Sub(d, MakeConstant(2))),
		Add(d, MakeConstant(3)));
}

The above function operates on real numbers and returns a dual number. DualNumber has a real part and a dual part. The real part stores the value of the function at the given point and the dual part stores the value of the first order derivative of the function at the given point. A call to Func(3) returns a dual number whose real part is equal ot 0.666667 and whose dual part is equal to 0.722222.

We can compute the derivatives of complicated functions by using this technique. The functions are assumed to be differentiable at the input points.

dual-numbers's People

Contributors

saadtaame avatar

Stargazers

 avatar

Watchers

 avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.