# Implicit Runge Kutta and GNU Scientific Library

DevFeed: [Implicit Runge Kutta and GNU Scientific Library](<https://devfeed.tech/articles/implicit-runge-kutta-and-gnu-scientific-library-36138.md>)

Original publisher: [Read original article](<https://idontgetoutmuch.wordpress.com/2018/03/04/implicit-runge-kutta-and-gnu-scientific-library/>)

Author: Dominic Steinitz

Published: 2018-03-04T13:59:17Z

Content type: tutorial

Language: en

Sources: [Maths, Stats & Functional Programming](<https://devfeed.tech/sources/maths-stats-functional-programming.md>)

Topics: [Algorithm](<https://devfeed.tech/topics/algorithm.md>), [Haskell](<https://devfeed.tech/topics/haskell.md>), [Code](<https://devfeed.tech/topics/code.md>), [Library](<https://devfeed.tech/topics/library.md>)

Tags: [algorithm](<https://devfeed.tech/tags/algorithm.md>), [c](<https://devfeed.tech/tags/c.md>), [code](<https://devfeed.tech/tags/code.md>), [haskell](<https://devfeed.tech/tags/haskell.md>), [implementation](<https://devfeed.tech/tags/implementation.md>), [nix](<https://devfeed.tech/tags/nix.md>), [numerical-methods](<https://devfeed.tech/tags/numerical-methods.md>)

## AI overview

Technical notes on implicit Runge-Kutta methods, including IRK2 and IRK4, their Butcher tableaux, and an implementation using the GNU Scientific Library and Haskell.

## Source excerpt

Introduction These are some very hasty notes on Runge-Kutta methods and IRK2 in particular. I make no apologies for missing lots of details. I may try and put these in a more digestible form but not today. Some Uncomprehensive Theory In general, an implicit Runge-Kutta method is given by where and Traditionally this is written ... Continue reading Implicit Runge Kutta and GNU Scientific Library