File size: 2,306 Bytes
60a1426 464c03b 60a1426 9d47b34 c77ed23 9d47b34 c77ed23 9d47b34 2ffb119 9d47b34 dc47dd3 c77ed23 dc47dd3 464c03b |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 |
---
license: wtfpl
task_categories:
- conversational
language:
- ja
---
# Polynomial Expansion and Factoring Dataset
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.
## Dataset Structure
- `factorized_dataset.csv`: CSV file containing the dataset.
- `README.md`: This file that provides an overview and usage instructions for the dataset.
## Data Format
The CSV file of the dataset includes the following columns:
- `Instruction`: A description of the problem. It indicates the expression that should be expanded or factored.
- `Output`: The answer expression.
## Sample Data
| Instruction | Output |
|-----------------------------------|--------------------|
| 式を展開せよ: (x - 1000)**2 | x**2 - 2000*x + 1000000 |
...
## Dataset Information
- Number of samples: 2002 (due to the range of n from -1000 to 1000)
- Dataset format: CSV file
# 数式の展開と因数分解データセット
このデータセットは、数式の展開と因数分解の問題と解答のペアを含んでいます。各問題は、`sympy`ライブラリを使用して、`(x + n)^2`形式の数式を展開し、因数分解した結果です。
## データセットの構造
- `factorized_dataset.csv`: データセットが格納されたCSVファイルです。
- `README.md`: このファイルで、データセットの概要と使用方法を説明します。
## データのフォーマット
データセットのCSVファイルには、以下のカラムが含まれています:
- `Instruction`: 問題の説明文です。展開または因数分解を行うべき数式が記載されています。
- `Output`: 解答の数式が記載されています。
## データのサンプル
| Instruction | Output |
|-----------------------------------|--------------------|
| 式を展開せよ: (x - 1000)**2 | x**2 - 2000*x + 1000000 |
...
## データセットの情報
- データのサンプル数: 2002 (nの値を-1000から1000まで総当たりしたため)
- データセットのフォーマット: CSVファイル |