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 7415609
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 29, 20262026-05-29T07:20:08+00:00 2026-05-29T07:20:08+00:00

Currently I’m messing around with Haskell. My knowledge about Haskell (and functional languages in

  • 0

Currently I’m messing around with Haskell. My knowledge about Haskell (and functional languages in general) is still low but I’m working on it.
What really bothers me is a (as I thought) simple task: folding nested lists with one fold per depth.

fcalc = foldr (\x y -> (foldr (**) 1 x) * (foldr (**) 1 y)) [1.0, 1.0] [[2.0, 3.0], [4.0, 5.0]]

What it should do: 2^3 * 4^5 where the ^ is done by the lambda’d inner folds. Sadly it does not work.

Occurs check: cannot construct the infinite type: t0 = [t0]
In the third argument of `foldr', namely `y'

I’ve read a bit about the given “infinite type” error mainly indicating that a variable is used as e.g. element while it was a list instead. This made me thinking about the second param of the outer foldr as the problem but without success.
I just don’t get it. :/

  • 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. Editorial Team
    Editorial Team
    2026-05-29T07:20:08+00:00Added an answer on May 29, 2026 at 7:20 am

    Your problem is that you’re trying to do the a^b calculation on your accumulator inside the fold, while also doing it on each element. What you really want is something like

    fcalc = foldr (\x y -> (foldr (**) 1 x) * y) 1 [[1.0, 1.0], [2.0, 3.0], [4.0, 5.0]]
    

    Remember, the output of each step of foldr is plugged in as the second argument of the next step (e.g. the y variable in this case). Since your foldr step is returning a number, the y variable is already a number, and therefore you can’t fold over it.

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

Sidebar

Related Questions

Currently, I don't really have a good method of debugging JavaScript in Internet Explorer and
Currently I know of only two ways to cache data (I use PHP but
currently I'm developing an app for WP7 but came across a little problem with
Currently It just opens up the xml, but i want to get a dialog
Currently, working with RC0 Denali, having some issues I am attempting to review data
Currently working on database part of android project. The main aim of the project
Currently, working with Denali RC0 and unable to add BI Time Intelligence to the
Currently i m working on a project where there are users with four roles
Currently, I know there are several official Android styles. @android:style/Theme.Black @android:style/Theme.Light @android:style/Theme.Translucent But I
Currently I am working on getting system information via a Silverlight Embedded Application tied

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.