Menouar commited on
Commit
1e22fe8
1 Parent(s): b1d5b7e

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +16 -0
README.md CHANGED
@@ -71,6 +71,22 @@ outputs = pipe(equation,
71
 
72
  for seq in outputs:
73
  print(f"{seq['generated_text']}")
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
74
  ```
75
 
76
 
 
71
 
72
  for seq in outputs:
73
  print(f"{seq['generated_text']}")
74
+
75
+ """
76
+ Solve for y: 10 + 4y -9y +5 = 4 +8y - 2y + 8 .
77
+ The equation is in the form of ay + b = dy + c where:
78
+ a = 4 - 9 = -5
79
+ b = 10 + 5 = 15
80
+ d = 8 - 2 = 6
81
+ c = 4 + 8 = 12
82
+ The solution is y = (c - b)/(a - d) if a ≠ d
83
+ 12 - 15 = -3
84
+ -5 - 6 = -11
85
+ y = -3 / -11
86
+ The fraction -3 / -11 = 3 / 11.
87
+ The solution is y = 3 / 11.
88
+ """
89
+
90
  ```
91
 
92