WOLFRAM

Education & Academic

New Publications Using Wolfram Technologies

We're always on the lookout for new ideas and ways of using the Wolfram Language that our users produce and choose to write about in their books. In this quarter, we have applications that bridge the gap between art and geometry, and demonstrate intuitive data analysis. In addition to writing books, Wolfram welcomes authors to submit articles for publication in The Mathematica Journal, our very own in-house periodical.
Best of Blog

2 Pi or Not 2 Pi?

Three months ago the world (or at least the geek world) celebrated Pi Day of the Century (3/14/15...). Today (6/28) is another math day: 2π-day, or Tau Day (2π = 6.28319...). Some say that Tau Day is really the day to celebrate, and that τ(=2π) should be the most prominent constant, not π. It all started in 2001 with the famous opening line of a watershed essay by Bob Palais, a mathematician at the University of Utah: "I know it will be called blasphemy by some, but I believe that π is wrong." Which has given rise in some circles to the celebration of Tau Day—or, as many people say, the one day on which you are allowed to eat two pies. But is it true that τ is the better constant? In today's world, it's quite easy to test, and the Wolfram Language makes this task much simpler. (Indeed, Michael Trott's recent blog post on dates in pi—itself inspired by Stephen Wolfram's Pi Day of the Century post—made much use of the Wolfram Language.) I started by looking at 320,000 preprints from arXiv.org to see in practice how many formulas involve 2π rather than π alone, or other multiples of π. Here is a WordCloud of some formulas containing 2π:
Education & Academic

Dates Everywhere in Pi(e)! Some Statistical and Numerological Musings about the Occurrences of Dates in the Digits of Pi

In a recent blog post, Stephen Wolfram discussed the unique position of this year's Pi Day of the Century and gave various examples of the occurrences of dates in the (decimal) digits of pi. In this post, I'll look at the statistics of the distribution of all possible dates/birthdays from the last 100 years within the (first ten million decimal) digits of pi. We will find that 99.998% of all digits occur in a date, and that one finds millions of dates within the first ten million digits of pi. Here I will concentrate on dates than can be described with a maximum of six digits. This means I'll be able to uniquely encode all dates between Saturday, March 14, 2015, and Sunday, March 15, 1915—a time range of 36,525 days.
Leading Edge

Embrace the Maker Movement with the Raspberry Pi 2

"All of us are makers. We're born makers. We have this ability to make things, to grasp things with our hands. We use words like 'grasp' metaphorically to also think about understanding things. We don't just live, but we make. We create things." —Dale Dougherty I joined the maker movement last year, first by making simple things like a home alarm system, then by becoming a mentor in local hackathons and founding a Wolfram Meetup group in Barcelona. There is likely an open community of makers that you can join close to where you live; if not, the virtual community is open to everyone. So what are you waiting for? With the Raspberry Pi 2 combined with the Wolfram Language, you really have an amazing tool set you can use to make, tinker, and explore.
Products

Model and Simulate Cooling Circuits with the SmartCooling Library

Explore the contents of this article with a free Wolfram SystemModeler trial. The SystemModeler Library Store, launched with the release of Wolfram SystemModeler 4, is continually growing with free and purchasable libraries developed by both Wolfram and third parties. One of our commercial newcomers is SmartCooling, a Modelica library developed by the Austrian Institute of Technology (AIT) that is used for modeling and simulating cooling circuits. When I was asked to present this library on our blog, my first thought was, "Who better to demonstrate the ideas of SmartCooling than the people who actually developed it?" So I asked Thomas Bäuml, one of the creators of SmartCooling, to help answer some of my questions regarding the principles behind the library and its applications.
Education & Academic

Throwing the Hackathon Gauntlet with Some Friendly Team Coding

It's no secret that Wolfram loves hackathons, or that our technology is ideally suited to the fast-paced, high-pressure environment of these events. We've supported and/or participated in HackIllinois, MHacks, LAHacks, and many other hackathons. Given how much fun those have been (and just because we can), we decided to host a hackathon for Wolfram staff, pitting our talented and driven developers against one another to see what kind of out-of-the-box projects they could create with our technologies. In truth, the spirit of camaraderie and collaboration that is central to Wolfram could not be set aside, and the final projects were the result of shared ideas and teamwork.
Education & Academic

John F. Nash, Jr. , In Memoriam

This past week, on May 23, 2015, the much loved and respected John F. Nash Jr., along with his wife, Alicia Nash, passed away in a tragic car accident while returning home from his receipt of the 2015 Abel Prize for his work in partial differential equations. The Nobel winner and his wife were the subject of the 2001 Academy Award winning film A Beautiful Mind. Nash's most famous contribution to mathematics and economics was in the field of game theory, which has enabled others to build on that work and was the focus of the film. Nash's long career as a mathematician was marked by both brilliant achievements and terrible struggles with mental illness. Despite his battle with schizophrenia, Nash inspired generations of mathematicians and garnered a stunning array of awards, including the 1994 Nobel Prize in economic sciences, the American Mathematical Society's 1999 Leroy P. Steele Prize for Seminal Contribution to Research, and the 1978 John von Neumann Theory Prize. We were personally honored in 2003 when Nash presented his work with Mathematica at the International Mathematica Symposium in London.
Leading Edge

New in the Wolfram Language: AnglePath

A brilliant aspect of the Wolfram Language is that not only you can do virtually anything with it, you can also do whatever you want in many different ways. You can choose the method you prefer, or even better, try several methods to understand your problem from different perspectives. For example, when drawing a graphic, we usually specify the coordinates of its points or elements. But sometimes it's simpler to express the graphic as a collection of relative displacements: move a distance r in a direction forming an angle θ with respect to the direction of the segment constructed in the previous step. This is known as turtle graphics in computer graphics, and is basically what the new function AnglePath does. If all steps have the same length, use AnglePath[{θ1,θ2,...}] to specify the angles. If each step has a different length, use AnglePath[{{r1,θ1},{r2,θ2}, ...}] to give the pairs {length, angle}. That's it. Let's see some results.