Update README.md
Browse files
README.md
CHANGED
@@ -16,14 +16,21 @@ 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 |
-
|
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 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
27 |
```
|
28 |
|
29 |
``` Reasoning
|
|
|
16 |
``` Math
|
17 |
Input: 25 - 4 * 2 + 3 = ?
|
18 |
------------------------------------
|
19 |
+
Output: To solve this equation, follow the order of operations (PEMDAS/BODMAS): Parentheses, Exponents, Multiplication and Division (from left to right), then Addition and Subtraction (also from left to right).
|
20 |
|
21 |
+
The given equation is: 25 - 4 * 2 + 3
|
|
|
|
|
|
|
22 |
|
23 |
+
First, perform the multiplication:
|
24 |
+
4 * 2 = 8
|
25 |
+
|
26 |
+
Now, update the equation:
|
27 |
+
25 - 8 + 3
|
28 |
+
|
29 |
+
Next, perform the subtraction and addition in order from left to right:
|
30 |
+
25 - 8 = 17
|
31 |
+
17 + 3 = 20
|
32 |
+
|
33 |
+
So, the result is 20.
|
34 |
```
|
35 |
|
36 |
``` Reasoning
|