migtissera commited on
Commit
d468bb4
·
verified ·
1 Parent(s): bb613cf

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +26 -3
README.md CHANGED
@@ -1,3 +1,26 @@
1
- ---
2
- license: gemma
3
- ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: gemma
3
+ ---
4
+
5
+
6
+
7
+ ```
8
+ You: Today is Tuesday. On Thursday last week, I had 10 apples. Then on Saturday I ate 5. I bought 8 apples, and 3 oranges yesterday. What day was yesterday?
9
+ Here's how to solve this problem:
10
+
11
+ * **"Thursday last week" was 5 days before Tuesday.** Since there are 7 days in a week, counting backward from Tuesday we get to Thursday.
12
+ * **"Yesterday" was 2 days before today.** Since today is Tuesday, yesterday was Monday.
13
+
14
+ Therefore, yesterday was Monday.
15
+ You: How many apples do I have today?
16
+ Let's break down the problem:
17
+
18
+ * You started with 10 apples on Thursday last week.
19
+ * You ate 5 apples on Saturday, leaving you with 10 - 5 = 5 apples.
20
+ * You bought 8 apples yesterday, so you had 5 + 8 = 13 apples.
21
+
22
+ Therefore, you have 13 apples today.
23
+
24
+ You: How many oranges did I have on Saturday?
25
+ You didn't have any oranges on Saturday because you bought 3 oranges yesterday.
26
+ ```