Ppoyaa commited on
Commit
e30f6ae
1 Parent(s): e7c0e4e

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +10 -9
README.md CHANGED
@@ -119,21 +119,22 @@ Lumina-3.5 is a Mixture of Experts (MoE) made with [LazyMergekit](https://colab.
119
  ``` Math
120
  Input: 25 - 4 * 2 + 3 = ?
121
  ------------------------------------
122
- Output: To solve this equation, follow the order of operations (PEMDAS/BODMAS): Parentheses, Exponents, Multiplication and Division (from left to right), and Addition and Subtraction (from left to right).
123
 
124
- 25 - 4 * 2 + 3
125
 
126
- First, perform the multiplication:
 
127
 
128
- 25 - 8 + 3
129
 
130
- Next, do the subtraction from left to right:
 
131
 
132
- 17 + 3
 
133
 
134
- Finally, complete the addition:
135
-
136
- 20
137
  ```
138
 
139
  ``` Reasoning
 
119
  ``` Math
120
  Input: 25 - 4 * 2 + 3 = ?
121
  ------------------------------------
122
+ Output: To solve this equation, we will follow the order of operations (PEMDAS/BODMAS). This means performing any multiplications and divisions first from left to right, and then additions and subtractions from left to right.
123
 
124
+ The given equation is: 25 - 4 * 2 + 3
125
 
126
+ First, let's perform the multiplication:
127
+ 4 * 2 = 8
128
 
129
+ Now, our equation looks like: 25 - 8 + 3
130
 
131
+ Next, perform the subtraction:
132
+ 25 - 8 = 17
133
 
134
+ Finally, do the addition:
135
+ 17 + 3 = 20
136
 
137
+ So, the result of the equation 25 - 4 * 2 + 3 is 20.
 
 
138
  ```
139
 
140
  ``` Reasoning