Update README.md
Browse files
README.md
CHANGED
@@ -16,21 +16,14 @@ Lumina-5-Instruct is a Mixture of Experts (MoE) made with [LazyMergekit](https:/
|
|
16 |
``` Math
|
17 |
Input: 25 - 4 * 2 + 3 = ?
|
18 |
------------------------------------
|
19 |
-
Output:
|
20 |
|
21 |
-
1.
|
22 |
-
2.
|
23 |
-
3.
|
24 |
-
4.
|
25 |
-
5. The given equation doesn't have any parentheses or exponents, so we can start with multiplication and division:
|
26 |
|
27 |
-
|
28 |
-
|
29 |
-
Now, perform the addition and subtraction from left to right:
|
30 |
-
|
31 |
-
17 + 3 = 20
|
32 |
-
|
33 |
-
So, the result is 20.
|
34 |
```
|
35 |
|
36 |
``` Reasoning
|
|
|
16 |
``` Math
|
17 |
Input: 25 - 4 * 2 + 3 = ?
|
18 |
------------------------------------
|
19 |
+
Output: Let's solve this step by step according to the order of operations (PEMDAS):
|
20 |
|
21 |
+
1. Perform the multiplication inside the parentheses first: 4 * 2 = 8
|
22 |
+
2. Now, we have 25 - 8 + 3
|
23 |
+
3. Subtract 8 from 25: 25 - 8 = 17
|
24 |
+
4. Finally, add 3 to the result: 17 + 3 = 20
|
|
|
25 |
|
26 |
+
The answer is 20.
|
|
|
|
|
|
|
|
|
|
|
|
|
27 |
```
|
28 |
|
29 |
``` Reasoning
|