How to resolve the algorithm First-class functions step by step in the Bracmat programming language

Published on 12 May 2024 09:40 PM

How to resolve the algorithm First-class functions step by step in the Bracmat programming language

Table of Contents

Problem Statement

A language has first-class functions if it can do each of the following without recursively invoking a compiler or interpreter or otherwise metaprogramming:

Write a program to create an ordered collection A of functions of a real number. At least one function should be built-in and at least one should be user-defined; try using the sine, cosine, and cubing functions. Fill another collection B with the inverse of each function in A. Implement function composition as in Functional Composition. Finally, demonstrate that the result of applying the composition of each function in A and its inverse in B to a value, is the original value. (Within the limits of computational accuracy). (A solution need not actually call the collections "A" and "B". These names are only used in the preceding paragraph for clarity.)

First-class Numbers

Let's start with the solution:

Step by Step solution about How to resolve the algorithm First-class functions step by step in the Bracmat programming language

Source code in the bracmat programming language

( (sqrt=.!arg^1/2)
& (log=.e\L!arg)
& (A=x2d (=.!arg^2) log (=.!arg*pi))
& ( B
  = d2x sqrt (=.e^!arg) (=.!arg*pi^-1)
  )
& ( compose
  =   f g
    .   !arg:(?f.?g)
      & '(.($f)$(($g)$!arg))
  )
&   whl
  ' ( !A:%?F ?A
    & !B:%?G ?B
    & out$((compose$(!F.!G))$3210)
    )
)

  

You may also check:How to resolve the algorithm Loops/For with a specified step step by step in the MiniScript programming language
You may also check:How to resolve the algorithm Queue/Usage step by step in the Groovy programming language
You may also check:How to resolve the algorithm Caesar cipher step by step in the Brainf*** programming language
You may also check:How to resolve the algorithm Greatest element of a list step by step in the PL/I programming language
You may also check:How to resolve the algorithm Binary strings step by step in the PureBasic programming language