Ppoyaa commited on
Commit
e9aa4e9
1 Parent(s): bf1a96c

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +6 -13
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: To solve this equation, follow the order of operations (PEMDAS/BODMAS):
20
 
21
- 1. Parentheses/Brackets
22
- 2. Exponents
23
- 3. Multiplication and Division (from left to right)
24
- 4. Addition and Subtraction (from left to right)
25
- 5. The given equation doesn't have any parentheses or exponents, so we can start with multiplication and division:
26
 
27
- 25 - 8 = 17
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