vote up 5 vote down star
2

Possible Duplicates:
When does it make sense to use F# over C# or VB.NET?
What are the benefits of using C# vs F# or F# vs c#?

DUPLICATES

http://stackoverflow.com/questions/952318/what-are-the-benefits-of-using-c-vs-f-or-f-vs-c

http://stackoverflow.com/questions/1125367/when-does-it-make-sense-to-use-f-over-c-or-vb-net

Of course the biggest reason for someone to develop a new language is to be able to solve a problem easier or faster than before.

I'm learning F# now but I didn't yet find a problem that would be more easily solved with it.

flag

I believe F# being a functional language is more sorted to solve math problems like Fourier series etc – Chris Marisic Nov 5 at 21:48
2  
Refer to: stackoverflow.com/questions/1125367/… – TStamper Nov 5 at 21:54
Or more generally: "In what situations do functional programming languages excel?" – kersny Nov 5 at 22:09

closed as exact duplicate by TStamper, Judah Himango, Brian, Thomas Owens, Onorio Catenacci Nov 6 at 16:25

5 Answers

vote up 5 vote down

One of F#'s strengths is solving problems that are best expressed with mathematical notation.

Two other areas are concurrency and parsing. F#'s immutable data structures and asynchronous pattern capability makes writing certain kinds of concurrent applications very easy. For parsing, F# has very good pattern matching and even comes with its own lex and yacc tools.

link|flag
vote up 4 vote down

I haven't tried F# yet, but algorithms that are highly parallel in nature work well in functional programming. One of the benefits of a functional programming language is it tends not to depend on state. So if for example you have multiple threads all running at once then they can more easily do so without stepping on each other.

Wikipedia has a nice list of applications that lend themselves well to parallelism:

  • Dense linear algebra
  • Sparse linear algebra
  • Spectral methods (such as Cooley-Tukey Fast Fourier transform)
  • N-body problems (such as Barnes-Hut simulation)
  • Structured grid problems (such as Lattice Boltzmann methods),
  • Unstructured grid problems (such as found in finite element analysis)
  • Monte Carlo simulation
  • Combinational logic (such as brute-force cryptographic techniques)
  • Graph traversal (such as Sorting algorithms)
  • Dynamic programming
  • Branch and bound methods
  • Graphical models (such as detecting Hidden Markov models and constructing Bayesian networks)
  • Finite State Machine simulation

(You can add compression to that list, and a long list of graphical effects.)

http://en.wikipedia.org/wiki/Parallel%5Fcomputing

link|flag
vote up 2 vote down

Some problems are not easily defined as objects and doing it in a functional way would make more sense.

For example, if you are working on a game engine.

In your game loop you could call out to draw the world, react to user input, determine opponents response, play music, all in parallel, as the user did something and the world model has already been changed, now you just need to call out to have this change ripple out.

This can be easily modeled using FP, but you may want to use OOP for the world objects, for example.

This is the benefit of F# is that you don't have to pick one or the other. The parts that make more sense to model as functions use F#, and use C# for objects.

We have been forcing square pegs into round holes where we adapt our models to fit in the OOP universe when it may have made more sense to have been in a different paradigm.

link|flag
vote up 1 vote down

Give a shot to some parsing problem.. then compare the readability or if you wish succintness :)..

link|flag
vote up 0 vote down

I'd say that F# should be at least as suitable as C# for most problems not requiring tooling support. The most dramatic differences are likely to occur with math-heavy applications or applications requiring parallelism and concurrency, as others have pointed out. On the other hand, even for problems which are amenable to an OO approach I still find F# more concise than C#, and there are some features which are particularly nice (such as object expressions, which are similar to Java's anonymous classes).

Also, don't underestimate the productivity boost from F#'s interactive mode. Even on C# projects that I work on, if I have to debug issues I often fall back to F#. For instance, tracking down databinding issues in Windows Forms is a lot easier to do when you can interactively manipulate the components with F# than it would be to go through several revise/recompile/debug cycles in C#. In my opinion, the main drawback with F# right now is that the community of users is so much smaller than those of more mainstream languages.

link|flag

Not the answer you're looking for? Browse other questions tagged or ask your own question.