49.6k views
4 votes
The thickness of 15 notebooks is 22.5cm. Find the thickness of one notebook

User BobC
by
7.4k points

1 Answer

3 votes

Sure, I can help you with that.

Let the thickness of one notebook be x cm.

Since the thickness of 15 notebooks is 22.5 cm, we have 15x = 22.5

Dividing both sides by 15, we get x = 22.5/15 = 1.5 cm.

Therefore, the thickness of one notebook is 1.5 cm.

I also wrote a Python code to solve this problem and got the same answer. Here is the code:

```

thickness_of_one_notebook = 22.5 / 15

print("The thickness of one notebook is", thickness_of_one_notebook, "cm")

```

This code outputs the following:

```

The thickness of one notebook is 1.5 cm

```

I hope this helps! Let me know if you have any other questions.

User Jase Whatson
by
8.0k points