Welcome to the Treehouse Community

Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.

Looking to learn something new?

Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.

Start your free trial

iOS Swift Functions and Optionals Optionals Exercise: isDivisible function

Jens Hagfeldt
Jens Hagfeldt
16,548 Points

How to work around error when trying to divide zero by zero?

The code works fine until I enter zero both for the dividend and the divisor. But if I do that I get the EXC_BAD_INSTRUCTION error when it should return "Divisible"... Any thoughts on how to work around this?

2 Answers

Michael Hulet
Michael Hulet
47,912 Points

I'm not sure what the video says, but 0/0 is actually not divisible. Instead, it is one of the only values in mathematics that is "indeterminate"

Jens Hagfeldt
Jens Hagfeldt
16,548 Points

Thanks for your answer Michael, seems it was too long ago I had mathematics in school :)

Michael Hulet
Michael Hulet
47,912 Points

It's no problem. To be honest, I only knew it because we covered it last Wednesday in my High School Honors Algebra II class

Since we are using a Remainder Operator and not an actual division, 0/4 for example, does not return an error. 4/0 does. It does not make any sense, of course.