OzoneAsai commited on
Commit
9d47b34
·
1 Parent(s): dc47dd3

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +36 -0
README.md CHANGED
@@ -1,6 +1,42 @@
1
  ---
2
  license: wtfpl
3
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
4
  # 数式の展開と因数分解データセット
5
 
6
  このデータセットは、数式の展開と因数分解の問題と解答のペアを含んでいます。各問題は、`sympy`ライブラリを使用して、`(x + n)^2`形式の数式を展開し、因数分解した結果です。
 
1
  ---
2
  license: wtfpl
3
  ---
4
+ # Polynomial Expansion and Factoring Dataset
5
+
6
+ This dataset contains problem and solution pairs for polynomial expansion and factoring. Each problem is a result of expanding and factoring the `(x + n)^2` form expression, where `n` takes values from -1000 to 1000.
7
+
8
+ ## Dataset Structure
9
+
10
+ - `factorized_dataset.csv`: CSV file containing the dataset.
11
+ - `README.md`: This file that provides an overview and usage instructions for the dataset.
12
+
13
+ ## Data Format
14
+
15
+ The CSV file of the dataset includes the following columns:
16
+
17
+ - `Instruction`: A description of the problem. It indicates the expression that should be expanded or factored.
18
+ - `Output`: The answer expression.
19
+
20
+ ## Sample Data
21
+
22
+ | Instruction | Output |
23
+ |-----------------------------------|--------------------|
24
+ | Expand the expression: (x + 3)**2 | x**2 + 6*x + 9 |
25
+ | Factorize the expression: x**2 + 6*x + 9 | (x + 3)**2 |
26
+ | Expand the expression: (x - 7)**2 | x**2 - 14*x + 49 |
27
+ | Factorize the expression: x**2 - 14*x + 49 | (x - 7)**2 |
28
+ ...
29
+
30
+ ## Dataset Information
31
+
32
+ - Number of samples: 2002 (due to the range of n from -1000 to 1000)
33
+ - Dataset format: CSV file
34
+ - Date of generation: [insert date of dataset generation]
35
+
36
+
37
+
38
+
39
+
40
  # 数式の展開と因数分解データセット
41
 
42
  このデータセットは、数式の展開と因数分解の問題と解答のペアを含んでいます。各問題は、`sympy`ライブラリを使用して、`(x + n)^2`形式の数式を展開し、因数分解した結果です。