Ppoyaa commited on
Commit
80614b1
1 Parent(s): e515d9d

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +13 -6
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: 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
 
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