GithubHelp home page GithubHelp logo

haskell-intro-2024's Introduction

Haskell Intro (for Neapolis University Pafos)

Final code for 02-newton.hs:

func a x = x^2 - a
func' x = 2 * x
eps = 0.000000000001

newton :: (Double -> Double) -> (Double -> Double) -> Double
newton f f' = go 1
  where
    goodEnough :: (Double -> Double) -> Double -> Bool
    goodEnough f x = abs (f x) < eps
    improve f f' x = x - f x / f' x
    go guess
      | goodEnough f guess = guess
      | otherwise = go (improve f f' guess)

sqrtN a = newton (func a) func'
cbrtN a = newton (\x -> x^3 - a) (\x -> 3*x^2)
rootN n a = newton (\x -> x^n - a) (\x -> fromInteger n*x^(n-1))

haskell-intro-2024's People

Stargazers

Igor Semenov avatar Evgeny Gazdovsky avatar

Watchers

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