Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 126393
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 11, 20262026-05-11T05:18:39+00:00 2026-05-11T05:18:39+00:00

I am a Haskell newbie, though had a previous Lisp/Scheme experience. Right now I

  • 0

I am a Haskell newbie, though had a previous Lisp/Scheme experience. Right now I am looking at the examples from SICP and trying to implement them in Haskell to get more hands-on experience. In the lecture 3b authors present a function for computing the derivatives symbolically. It contains, among others, the following lines:

(define (deriv exp var)     (cond ((constant? exp var) 0)           ((same-var? exp var) 1) ; ... 

Further in the lecture, some more functions are defined:

(define (constant? exp var)     (and (atom? exp)          (not (eq? exp var)))) 

Is there a way to do same thing in Haskell, i.e. check for atomicity and symbolic equivalence to some other function? Or more general, what are the means of ‘disassembling’ functions in Haskell?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. 2026-05-11T05:18:39+00:00Added an answer on May 11, 2026 at 5:18 am

    Your Scheme examples don’t actually examine Scheme functions. I recently did some symbolic differentiation in Haskell over values of the following type:

    data Exp a = Lit a            | Exp a :*: Exp a            | Exp a :+: Exp a            | Var String   deriving Eq 

    Instead of discriminating using atom? or eq? you use case (or other pattern matching) and ==.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Haskell-newbie reporting in. Question is as follows: In Haskell, we have fst and snd
I'm complete newbie on Haskell. My Haskell script with GHCi , Prelude> let a
I'm really an absolute newbie at Haskell, so I'm at a total loss as
i m a newbie to haskell, currently i need a function 'f' which, given
Haskell doesn't feature explicit memory management, and all objects are passed by value, so
Haskell's record syntax is considered by many to be a wart on an otherwise
In Haskell there are two functions that allow one to perform an operation on
With Haskell's type classes it almost seems that it enables ad hoc polymorphism, but
In Haskell, it is considered good practice to explicitly declare the type signature of
Why is it that I can't do z = x? but I can do

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.