Problem 56318. Predict Cricket Stridulation Rate from Air Temperature

Stridulation is the process that creates a cricket's “chirp” by rubbing their wings or legs. According to the Old Farmer's Almanac (https://www.almanac.com/predict-temperature-cricket-chirps), the sum of the number of chirps in 14 seconds and 40 is the air temperature in degrees Fahrenheit.
  • Crickets generally do not sing at temperatures below 55 F or above 100 F. (https://entomology.unl.edu/k12/crickets/temperature.htm)
  • Crickets go into hibernation phase when temperature drops below 32°F (https://www.cricketsmode.com/when-do-crickets-die/)
  • Crickets die when temperature drops below 18°F (-8°C) for 24 hours or longe
Use this formula to predit the number of chirps in 28 seconds for a given air temperature in Fahrenheit. Return a 0 if the cricket is not expected to chirp (<55 or >100).
Return a -1 if the cricket is most likely hibernating (18 < T <=55)
Return a -2 if the cricket is most likely dead (T<=18 or T>=120).

Solution Stats

20.64% Correct | 79.36% Incorrect
Last Solution submitted on Mar 27, 2024

Problem Comments

Solution Comments

Show comments

Problem Recent Solvers346

Suggested Problems

More from this Author10

Problem Tags

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!