Yes, We Do Eat More Soup When We’re Sick (Published 2016) (2024)

Follow Us:

Get the Upshot in your Inbox

The Upshot

|The Upshot

By MARGOT SANGER-KATZ

By MARGOT SANGER-KATZ

Grandma always told you that chicken soup would cure your cold. You listened.

Analysts for the online food delivery service Grubhub noticed that soup orders seemed to be spiking at odd intervals during the winter. Upon further examination, the soup surge couldn’t be explained just by cold weather.

Acting on a hunch, Grubhub turned to another rhymingly-named online ordering system, ZocDoc. ZocDoc allows people to book doctor’s visits online. When the two companies matched their data, they found that people ordered the most soup when the most people were sick.

Specifically, about 80 percent of the variation in soup ordering matched the variation in the percentage of doctor’s visits for cold and flu symptoms.

We can’t be sure that the synchronization of illness and soup orders means that the ill are ordering soup — you could say that soups somehow cause colds, or it could be pure coincidence. But we feel pretty confident that the relationship can be explained by people seeking a home remedy for their illness.

The soup-as-medicine myth has been around probably as long as there have been grandmothers and soup. But unlike a lot of prehistoric medical advice, it actually seems to hold up. There aren’t as many randomized controlled trials of soup and other remedies as medical experts might prefer, but there are a few studies that suggest that soup — particularly the homemade variety — does seem to reduce cold symptoms and boost the immune system more than cold water or hot water alone.

One 2000 study in the journal Chest even included a chicken soup recipe. My colleague Aaron Carroll and his co-author Rachel Vreeman have written two books about medical myths. The soup cure was one of the only ones that checked out, he said.

Even if soup doesn’t directly fight illness, doctors have some good reasons for recommending it. Steam can help relieve sinus inflammation and soothe the throat. Salty liquids can help with hydration.

10

8

6

4

2

Percent of takeout orders including soup

Percent of doctors’ visits for cold and flu

2015

2016

Shaded areas indicate flu season

Yes, We Do Eat More Soup When We’re Sick (Published 2016) (1)

10

8

6

4

2

Percent of takeout orders including soup

Percent of doctors’ visits for cold and flu

2014

2015

2016

Shaded areas indicate flu season

Yes, We Do Eat More Soup When We’re Sick (Published 2016) (2)

I spoke to a couple of self-identified foodie doctors. All of them started with the usual caveats that soup isn’t a proven medicine. But they quickly moved on to suggesting their favorite recipes. Michelle Hauser, a researcher and primary care doctor in California who is also a Cordon Bleu-trained chef, said sickness is a great excuse to eat something salty and delicious. She recommends spicy soup if you can stand it, the better to clear your sinuses. And if you’re feeling too weak to stand for long, she has a recipe for a garlic herb broth that even the ill can make themselves. “I like that kind of broth if you’re feeling really bad,” she said. “It’s really nourishing and soothing.”

Kathy Hughes, a surgeon in Massachusetts, loves the usual chicken noodle soup (she boils the leftover bones and skins from a rotisserie chicken for a roasted flavor) and strains her broth using sterile laparotomy cloths. Robert Smalley, a medical student, thinks the sick need the energy from easily digestible carbohydrates in noodles: He suggests takeout ramen or pho.

We asked the team at Grubhub to measure the correlations between doctor’s visits and individual types of soups. The biggest winners were the chicken varieties — chicken noodle, chicken rice, even chicken tortilla. People also order a lot of gumbo, wonton and lentil soups, but apparently not when they are sick.

If all this talk of soup and its virtues makes you crave some, our colleagues in Cooking are here to help. Takeout isn’t the only way to get yourself a hot bowl of soup when you’re under the weather. Here are a few of their suggested recipes if you’d like to soothe a sick friend or stock up for the next cold.

'; image.appendChild(overlay); node.appendChild(image); if (block.caption || block.credit) { var figcaption = document.createElement("figcaption"); if (block.caption) { figcaption.appendChild(createNode("span.oak-caption", block.caption)); img.setAttribute("data-mediaviewer-caption", block.caption); } if (block.credit) { img.setAttribute("data-mediaviewer-credit", block.credit); figcaption.appendChild(createNode("span.oak-credit", block.credit)); } node.appendChild(figcaption); } } function renderInteractiveContents(node, block) { if ((block.headline || block.leadin) && !block.displayForPromotionOnlyFlg) { var header = createNode("div.oak-interactive-header"); if (block.headline) header.appendChild(createNode("div.oak-interactive-headline", block.headline)); if (block.leadin) header.appendChild(createNode("div.oak-interactive-leadin", block.leadin)); // must prepend header, because the body already exists node.insertBefore(header, node.firstChild); } if (block.notes || block.source || block.credit) { var footer = createNode("div.oak-interactive-footer"); if (block.notes) footer.appendChild(createNode("div.oak-interactive-notes", block.notes)); if (block.source) footer.appendChild(createNode("div.oak-interactive-source", block.source)); if (block.credit) footer.appendChild(createNode("div.oak-interactive-credit", block.credit)); node.appendChild(footer); } } function renderSlideshowPromo(node, block) { if (!block.url || !block.blocks || !block.blocks[0] || !block.blocks[0].sources) return; var promo = createNode("div.media.slideshow.promo"); // html string because we just need to match NYT5's promo structure promo.innerHTML = 'Slide Show|' + block.headline + ''; if (block.blocks[0].credit) { promo.appendChild(createNode("span.oak-credit", block.blocks[0].credit)); } node.appendChild(promo); } function createNode(name, html) { var pieces = name.split(/\.(.+)/); var tag = pieces[0]; var className = (pieces[1] || "").replace(/\./g, " ") || ""; var node = document.createElement(tag); if (className) node.className = className; if (html) node.innerHTML = html; return node; } function getImageSource(sources) { var width = window.innerWidth * window.devicePixelRatio; if (width <= 1400) return sources.master1024 || sources.master600 || sources.master315 || sources.master180 || {}; else return sources.master2048 || sources.master1024 || sources.master600 || sources.master315 || sources.master180 || {}; } function getLargestImageSource(sources) { return sources.master2048 || sources.master1024 || sources.master600 || sources.master315 || sources.master180 || {}; } function addPublishDate() { var bylines = document.querySelectorAll(".oak-byline"); var date = getFormattedDate(); if (bylines.length === 1 & date) { var span = document.createElement("span"); bylines[0].appendChild(span); span.className = "oak-date"; span.textContent = date; } } function getFormattedDate() { var pdate = document.querySelector("meta[name=pdate]"); var nytMonths = ["Jan.", "Feb.", "March", "April", "May", "June", "July", "Aug.", "Sept.", "Oct.", "Nov.", "Dec."]; if (!pdate) return ""; if (pdate.content) { var year = pdate.content.substring(0,4); var month = pdate.content.substring(4,6); var date = pdate.content.substring(6,8); return nytMonths[+month-1] + " " + (+date) + ", " + year; } return ""; }})();require(['foundation/main'], function() { require(['vhs']);}); Sick Day Soups Oct. 12, 2017 The Real Jobless Rate Is 42 Percent? Donald Trump Has a Point, Sort Of Dec. 21, 2017 Hillary Clinton’s Challenge: Peddling Pragmatism Jan. 19, 2018 What the Science Says About Long-Term Damage From Lead Dec. 21, 2017 Before Donald Trump, There Was Jan Brewer Jan. 19, 2018 The Super Bowl Ad That Set Off Economic Alarm Bells Jan. 19, 2018 Advertisem*nt
Yes, We Do Eat More Soup When We’re Sick (Published 2016) (2024)
Top Articles
Latest Posts
Article information

Author: Terence Hammes MD

Last Updated:

Views: 5415

Rating: 4.9 / 5 (69 voted)

Reviews: 92% of readers found this page helpful

Author information

Name: Terence Hammes MD

Birthday: 1992-04-11

Address: Suite 408 9446 Mercy Mews, West Roxie, CT 04904

Phone: +50312511349175

Job: Product Consulting Liaison

Hobby: Jogging, Motor sports, Nordic skating, Jigsaw puzzles, Bird watching, Nordic skating, Sculpting

Introduction: My name is Terence Hammes MD, I am a inexpensive, energetic, jolly, faithful, cheerful, proud, rich person who loves writing and wants to share my knowledge and understanding with you.