diff --git a/.DS_Store b/.DS_Store new file mode 100644 index 0000000000000000000000000000000000000000..42cb5b8193ac208e4569737efa9709604d677c53 Binary files /dev/null and b/.DS_Store differ diff --git a/.gitattributes b/.gitattributes index a6344aac8c09253b3b630fb776ae94478aa0275b..07b1811a31baa0dddb4ff5073fc800b3ff7a4528 100644 --- a/.gitattributes +++ b/.gitattributes @@ -1,5 +1,6 @@ *.7z filter=lfs diff=lfs merge=lfs -text *.arrow filter=lfs diff=lfs merge=lfs -text +*.avro filter=lfs diff=lfs merge=lfs -text *.bin filter=lfs diff=lfs merge=lfs -text *.bz2 filter=lfs diff=lfs merge=lfs -text *.ckpt filter=lfs diff=lfs merge=lfs -text @@ -8,6 +9,8 @@ *.h5 filter=lfs diff=lfs merge=lfs -text *.joblib filter=lfs diff=lfs merge=lfs -text *.lfs.* filter=lfs diff=lfs merge=lfs -text +*.lz4 filter=lfs diff=lfs merge=lfs -text +*.mds filter=lfs diff=lfs merge=lfs -text *.mlmodel filter=lfs diff=lfs merge=lfs -text *.model filter=lfs diff=lfs merge=lfs -text *.msgpack filter=lfs diff=lfs merge=lfs -text @@ -33,3 +36,27 @@ saved_model/**/* filter=lfs diff=lfs merge=lfs -text *.zip filter=lfs diff=lfs merge=lfs -text *.zst filter=lfs diff=lfs merge=lfs -text *tfevents* filter=lfs diff=lfs merge=lfs -text +# Audio files - uncompressed +*.pcm filter=lfs diff=lfs merge=lfs -text +*.sam filter=lfs diff=lfs merge=lfs -text +*.raw filter=lfs diff=lfs merge=lfs -text +# Audio files - compressed +*.aac filter=lfs diff=lfs merge=lfs -text +*.flac filter=lfs diff=lfs merge=lfs -text +*.mp3 filter=lfs diff=lfs merge=lfs -text +*.ogg filter=lfs diff=lfs merge=lfs -text +*.wav filter=lfs diff=lfs merge=lfs -text +# Image files - uncompressed +*.bmp filter=lfs diff=lfs merge=lfs -text +*.gif filter=lfs diff=lfs merge=lfs -text +*.png filter=lfs diff=lfs merge=lfs -text +*.tiff filter=lfs diff=lfs merge=lfs -text +# Image files - compressed +*.jpg filter=lfs diff=lfs merge=lfs -text +*.jpeg filter=lfs diff=lfs merge=lfs -text +*.webp filter=lfs diff=lfs merge=lfs -text +# Video files - compressed +*.mp4 filter=lfs diff=lfs merge=lfs -text +*.webm filter=lfs diff=lfs merge=lfs -text +*.csv filter=lfs diff=lfs merge=lfs -text +Data/Math_Standards1.pdf filter=lfs diff=lfs merge=lfs -text diff --git a/Code/LICENSE b/Code/LICENSE new file mode 100644 index 0000000000000000000000000000000000000000..ac0d51a15ba6361a25fb5dc06c055ee0ee7d5e45 --- /dev/null +++ b/Code/LICENSE @@ -0,0 +1,40 @@ +Creative Commons Attribution-NonCommercial 4.0 International License (CC BY-NC 4.0) + +Copyright (c) 2024 FoundationalED Authors + +You are free to: + + Share — copy and redistribute the material in any medium or format + + Adapt — remix, transform, and build upon the material + +Under the following terms: + + Attribution — You must give appropriate credit, provide a link to the license, + and indicate if changes were made. You may do so in any reasonable manner, but + not in any way that suggests the licensor endorses you or your use. + + NonCommercial — You may not use the material for commercial purposes. + + No additional restrictions — You may not apply legal terms or technological + measures that legally restrict others from doing anything the license permits. + +Notices: + + You do not have to comply with the license for elements of the material in + the public domain or where your use is permitted by an applicable exception + or limitation. + + No warranties are given. The license may not give you all of the permissions + necessary for your intended use. For example, other rights such as publicity, + privacy, or moral rights may limit how you use the material. + +Full license text: https://creativecommons.org/licenses/by-nc/4.0/legalcode + +================================================================================ + +ADDITIONAL TERMS FOR FOUNDATIONALED DATASET + +By accessing or using the FoundationalED dataset, you additionally agree to the +Data Usage Agreement specified in the README.md file, which includes restrictions +on re-identification, ethical use requirements, and compliance obligations. diff --git a/Code/__pycache__/clean_utils.cpython-312.pyc b/Code/__pycache__/clean_utils.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..eff7defb3013cf491bb3ddb9055480a2a5076380 Binary files /dev/null and b/Code/__pycache__/clean_utils.cpython-312.pyc differ diff --git a/Code/__pycache__/process_to_single_file.cpython-312.pyc b/Code/__pycache__/process_to_single_file.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..7db181d9101f5c27b77cb1a86efdd1f9c352e50d Binary files /dev/null and b/Code/__pycache__/process_to_single_file.cpython-312.pyc differ diff --git a/Code/build_skill_set.py b/Code/build_skill_set.py new file mode 100644 index 0000000000000000000000000000000000000000..ed234994366fd34843527de28fadb39b153521ed --- /dev/null +++ b/Code/build_skill_set.py @@ -0,0 +1,157 @@ +#!/usr/bin/env python3 +"""Build Skill_List.csv from Skills.csv and CASE Common Core standards JSON. + +Output columns: +- index (1-based) +- skill_code +- full_description + +The output contains only skill codes that appear in both: +1) Skills.csv (column: node_code) +2) CASE JSON CFItems (field: humanCodingScheme) + +Rows are sorted by skill_code. +""" + +from __future__ import annotations + +import argparse +import csv +import html +import json +import re +from pathlib import Path +from typing import Dict, Set + +_TAG_RE = re.compile(r"<[^>]+>") +_WS_RE = re.compile(r"\s+") +_DOT_BEFORE_SUFFIX_RE = re.compile(r"(?<=\d)\.(?=[A-Za-z]$)") + + +def _clean_text(text: str) -> str: + """Normalize whitespace and strip simple HTML tags from a description.""" + text = html.unescape(text or "") + text = _TAG_RE.sub("", text) + text = _WS_RE.sub(" ", text).strip() + return text + + +def _normalize_skill_code(code: str) -> str: + """Normalize equivalent skill code formats to a common representation. + + Example: + - 3.MD.C.7a -> 3.MD.C.7a + - 3.MD.C.7.a -> 3.MD.C.7a + """ + normalized = (code or "").strip() + normalized = _DOT_BEFORE_SUFFIX_RE.sub("", normalized) + return normalized + + +def load_skill_codes(skills_csv_path: Path) -> Set[str]: + """Read unique skill codes from Skills.csv node_code column.""" + codes: Set[str] = set() + with skills_csv_path.open("r", encoding="utf-8", newline="") as f: + reader = csv.DictReader(f) + if "node_code" not in (reader.fieldnames or []): + raise ValueError( + f"Missing required column 'node_code' in {skills_csv_path}" + ) + for row in reader: + code = (row.get("node_code") or "").strip() + if code: + codes.add(code) + return codes + + +def load_case_mapping(case_json_path: Path) -> Dict[str, str]: + """Map skill code -> full standard statement from CASE JSON CFItems.""" + with case_json_path.open("r", encoding="utf-8") as f: + payload = json.load(f) + + mapping: Dict[str, str] = {} + for item in payload.get("CFItems", []): + raw_code = (item.get("humanCodingScheme") or "").strip() + code = _normalize_skill_code(raw_code) + if not code: + continue + + # Keep both Standards and Components. + # In CASE, codes like 3.MD.C.7.a are often CFItemType=Component. + if item.get("CFItemType") not in {"Standard", "Component"}: + continue + + statement = _clean_text(item.get("fullStatement") or "") + if not statement: + continue + + # Keep first non-empty definition if duplicates appear. + if code not in mapping: + mapping[code] = statement + + return mapping + + +def write_output(output_csv_path: Path, rows: list[tuple[str, str]]) -> None: + """Write final CSV with a 1-based index.""" + output_csv_path.parent.mkdir(parents=True, exist_ok=True) + with output_csv_path.open("w", encoding="utf-8", newline="") as f: + writer = csv.writer(f) + writer.writerow(["index", "skill_code", "full_description"]) + for idx, (code, desc) in enumerate(rows, start=1): + writer.writerow([idx, code, desc]) + + +def main() -> None: + parser = argparse.ArgumentParser( + description="Create Skill_List.csv from Skills.csv and CASE standards JSON." + ) + parser.add_argument( + "--skills-csv", + type=Path, + default=Path("../Data/Skills.csv"), + help="Path to Skills.csv", + ) + parser.add_argument( + "--case-json", + type=Path, + default=Path("../Data/CASE-Common Core State Standards for Math.json"), + help="Path to CASE JSON", + ) + parser.add_argument( + "--output-csv", + type=Path, + default=Path("../Data/Skill_Set.csv"), + help="Output path for Skill_Set.csv", + ) + + args = parser.parse_args() + + skills_csv = args.skills_csv.resolve() + case_json = args.case_json.resolve() + output_csv = args.output_csv.resolve() + + skill_codes = load_skill_codes(skills_csv) + case_map = load_case_mapping(case_json) + + matched_codes = sorted( + code for code in skill_codes if _normalize_skill_code(code) in case_map + ) + rows = [(code, case_map[_normalize_skill_code(code)]) for code in matched_codes] + + write_output(output_csv, rows) + + missing = sorted( + code for code in skill_codes if _normalize_skill_code(code) not in case_map + ) + print(f"Wrote {len(rows)} skills to {output_csv}") + print(f"Unique skill codes in Skills.csv: {len(skill_codes)}") + print(f"Missing codes not found in CASE: {len(missing)}") + if missing: + preview = ", ".join(missing[:20]) + suffix = " ..." if len(missing) > 20 else "" + print(f"Missing preview: {preview}{suffix}") + + +if __name__ == "__main__": + main() diff --git a/Code/clean_utils.py b/Code/clean_utils.py new file mode 100644 index 0000000000000000000000000000000000000000..48cd150b87444e8e452094f8a1307872cba19383 --- /dev/null +++ b/Code/clean_utils.py @@ -0,0 +1,148 @@ +""" +HTML cleaning utilities for problem text. + +Provides functions to clean HTML content while preserving: +- Inline MathML (fractions, superscripts, subscripts) +- Wiris math images (extracted from data-mathml attribute) +- Table structure (formatted with | separators) +- Image placeholders +""" + +import html +import pandas as pd +from bs4 import BeautifulSoup, NavigableString + + +def parse_mathml_element(elem): + """Recursively parse a MathML element to text.""" + if elem.name is None: + return str(elem).strip() + + if elem.name == "mfrac": + children = [c for c in elem.children if c.name] + if len(children) >= 2: + num = parse_mathml_element(children[0]) + denom = parse_mathml_element(children[1]) + return f"({num}/{denom})" + return elem.get_text(strip=True) + + elif elem.name == "msup": + children = [c for c in elem.children if c.name] + if len(children) >= 2: + base = parse_mathml_element(children[0]) + exp = parse_mathml_element(children[1]) + return f"{base}^{exp}" + return elem.get_text(strip=True) + + elif elem.name == "msub": + children = [c for c in elem.children if c.name] + if len(children) >= 2: + base = parse_mathml_element(children[0]) + sub = parse_mathml_element(children[1]) + return f"{base}_{sub}" + return elem.get_text(strip=True) + + elif elem.name == "msqrt": + content = parse_mathml_element_children(elem) + return f"√({content})" + + elif elem.name == "mo": + op = elem.get_text(strip=True) + if op in ["÷", "×", "·", "+", "-", "=", "<", ">", "≤", "≥", "≠"]: + return f" {op} " + return op + + elif elem.name in ["mn", "mi", "mtext"]: + return elem.get_text(strip=True) + + elif elem.name in ["mrow", "math", "mpadded", "mstyle"]: + return parse_mathml_element_children(elem) + + else: + return elem.get_text(strip=True) + + +def parse_mathml_element_children(elem): + """Parse all children of a MathML element.""" + parts = [] + for child in elem.children: + if isinstance(child, NavigableString): + text = str(child).strip() + if text: + parts.append(text) + elif child.name: + parts.append(parse_mathml_element(child)) + return "".join(parts) + + +def clean_problem_body(text): + """ + Clean HTML problem body with full MathML handling. + + Handles: + - Inline MathML (, , , etc.) → (4/3), x^2 + - Wiris math images (data-mathml attribute) → [15÷12] + - Tables → [Table: Col1 | Col2 ...] + - Regular images → [image] + - HTML entities → decoded properly + """ + if pd.isna(text) or text == "": + return "" + soup = BeautifulSoup(str(text), "html.parser") + + # 1. Handle inline MathML + for math in soup.find_all("math"): + parsed = parse_mathml_element(math) + math.replace_with(f" {parsed} ") + + # 2. Handle Wiris images + for img in soup.find_all("img"): + alt = img.get("alt", "") + src = img.get("src", "") + data_mathml = img.get("data-mathml", "") + + if "wiris" in src.lower() or "pluginwiris" in src: + if alt and alt.strip() and alt not in ["NO ALT", "NONE"]: + img.replace_with(f" [{alt.strip()}] ") + elif data_mathml: + math_str = ( + data_mathml.replace("«", "<").replace("»", ">").replace("¨", '"') + ) + msoup = BeautifulSoup(math_str, "html.parser") + math_elem = msoup.find("math") + if math_elem: + mtext = parse_mathml_element(math_elem) + else: + mtext = msoup.get_text(separator="") + mtext = mtext.replace("§#247;", "÷").replace("§#215;", "×") + mtext = ( + mtext.replace("§#8722;", "-") + .replace("§#160;", " ") + .replace("§#183;", "·") + ) + mtext = mtext.replace("§#", "&#") + mtext = html.unescape(mtext).strip() + img.replace_with(f" [{mtext}] " if mtext else " [math] ") + else: + img.replace_with(" [math] ") + elif alt and alt.strip(): + img.replace_with(f" [Image: {alt.strip()[:100]}] ") + else: + img.replace_with(" [image] ") + + # 3. Handle tables + for table in soup.find_all("table"): + rows = [] + for tr in table.find_all("tr"): + cells = [td.get_text(strip=True) for td in tr.find_all(["td", "th"])] + if any(cells): + rows.append(" | ".join(cells)) + if rows: + table.replace_with(f"\n[Table:\n{chr(10).join(rows)}]\n") + else: + table.decompose() + + text = soup.get_text(separator=" ") + text = html.unescape(text) + text = " ".join(text.split()) + return text.strip() diff --git a/Code/cleantext.py b/Code/cleantext.py new file mode 100644 index 0000000000000000000000000000000000000000..bc0f979e8b5ad70d6148af1a7123d3ccadba6fdd --- /dev/null +++ b/Code/cleantext.py @@ -0,0 +1,102 @@ +import pandas as pd + +def add_pi_if_missing(input_string): + # Check if "se 3.14 for" is in the input string + if "se 3.14 for" in input_string: + # Check if "pi" is not already present after "se 3.14 for" + if "pi" not in input_string[input_string.index("se 3.14 for") + len("se 3.14 for"):]: + return input_string[:input_string.index("se 3.14 for") + len("se 3.14 for")] + " pi" + input_string[input_string.index("se 3.14 for") + len("se 3.14 for"):] + return input_string + +def convert_mathml_to_fraction(mathml_content): + mathml_content = mathml_content.replace('', "___") + mathml_content = mathml_content.replace('', '(') + mathml_content = mathml_content.replace('', ')') + mathml_content = mathml_content.replace('', '/') + mathml_content = mathml_content.replace('', '') + mathml_content = mathml_content.replace('', '') + mathml_content = mathml_content.replace('', '') + mathml_content = mathml_content.replace('', '') + mathml_content = mathml_content.replace('', '') + mathml_content = mathml_content.replace('', '') + mathml_content = mathml_content.replace('', '') + mathml_content = mathml_content.replace('', '') + mathml_content = mathml_content.replace('', '') + mathml_content = mathml_content.replace('', '') + mathml_content = mathml_content.replace('§#960;', '') + mathml_content = mathml_content.replace(' ', ' ') + mathml_content = mathml_content.replace('§#160;', ' ') + mathml_content = mathml_content.replace('>', '>') + mathml_content = mathml_content.replace('<', '<') + mathml_content = mathml_content.replace('&', '&') + + mathml_content = mathml_content.replace('«/math', '') + + mathml_content = mathml_content.rstrip('/') + + return mathml_content + + +from bs4 import BeautifulSoup +def alt_text(html: str) -> str: + soup = BeautifulSoup(html, 'html.parser') + + # Replace each with its alt text if it exists + for img in soup.find_all('img'): + alt = img.get('alt') + if alt: + img.replace_with(alt) + + return str(soup) + +def mathml_to_text(html): + soup = BeautifulSoup(html, 'html.parser') + + # Convert MathML fractions + for math in soup.find_all('math'): + frac = math.find('mfrac') + if frac: + nums = frac.find_all('mn') + if len(nums) == 2: + numerator = nums[0].text + denominator = nums[1].text + frac_text = f"{numerator}/{denominator}" + math.replace_with(frac_text) + else: + math.replace_with(math.get_text()) # Fallback if not a valid mfrac + else: + math.replace_with(math.get_text()) # Handle non-fraction math + + # Return clean text + return soup.get_text(separator=" ", strip=True) + + +def clean_text(input_text): + if pd.isna(input_text) or input_text.strip() == "": + return "" + + # Replace   and decode HTML entities + input_text = input_text.replace(' ', ' ') + + # Replace tags with their alt text + input_text = mathml_to_text(input_text) + input_text = alt_text(input_text) + + # Convert MathML if it exists + soup = BeautifulSoup(input_text, 'html.parser') + for img in soup.find_all('img', class_='Wirisformula'): + mathml_formula = img.get('data-mathml') + if mathml_formula: + # Extract inner MathML content + start_index = mathml_formula.find('') + len('') + end_index = mathml_formula.find('') + mathml_formula_content = mathml_formula[start_index:end_index] + mathml_formula_content_cleaned = mathml_formula_content.replace( + 'xmlns=¨http://www.w3.org/1998/Math/MathML¨»', '') + fraction = convert_mathml_to_fraction(mathml_formula_content_cleaned) + img.replace_with(fraction) + + text = soup.get_text(separator=' ', strip=True) + text = convert_mathml_to_fraction(text) + text = add_pi_if_missing(text) + return text \ No newline at end of file diff --git a/Code/detect_similar_node_codes.py b/Code/detect_similar_node_codes.py new file mode 100644 index 0000000000000000000000000000000000000000..858fe565a9612771b7058739f386e8c6bd6ce236 --- /dev/null +++ b/Code/detect_similar_node_codes.py @@ -0,0 +1,285 @@ +#!/usr/bin/env python3 +"""Detect skills that have similar node_code values but different skill_id values. + +By default, the script detects conflicts after normalizing node_code values +(uppercasing and removing punctuation differences). It can also perform optional +fuzzy matching on normalized compact node codes. +""" + +from __future__ import annotations + +import argparse +import re +from difflib import SequenceMatcher +from itertools import combinations +from pathlib import Path + +import pandas as pd + + +DEFAULT_SKILLS_PATH = Path(__file__).resolve().parent.parent / "Data" / "Skills.csv" +DEFAULT_OUTPUT_PATH = ( + Path(__file__).resolve().parent.parent + / "Results" + / "similar_node_code_conflicts.csv" +) + + +def parse_args() -> argparse.Namespace: + parser = argparse.ArgumentParser( + description=( + "Detect skills whose node_code values are similar but map to " + "different skill_id values." + ) + ) + parser.add_argument( + "--skills-path", + type=Path, + default=DEFAULT_SKILLS_PATH, + help="Path to Skills.csv.", + ) + parser.add_argument( + "--output-path", + type=Path, + default=DEFAULT_OUTPUT_PATH, + help="Path to save the detected conflicts as CSV.", + ) + parser.add_argument( + "--include-fuzzy", + action="store_true", + help="Also run fuzzy matching across compact node_code values.", + ) + parser.add_argument( + "--similarity-threshold", + type=float, + default=0.9, + help="Minimum SequenceMatcher ratio for fuzzy matches (0.0 to 1.0).", + ) + parser.add_argument( + "--max-fuzzy-pairs", + type=int, + default=200, + help="Maximum number of fuzzy match pairs to keep after sorting.", + ) + parser.add_argument( + "--print-limit", + type=int, + default=20, + help="Maximum number of rows to print for each conflict section.", + ) + return parser.parse_args() + + +def normalize_node_code(node_code: str) -> str: + canonical = re.sub(r"[^A-Za-z0-9]+", ".", node_code.upper().strip()) + canonical = re.sub(r"\.+", ".", canonical).strip(".") + return canonical + + +def compact_node_code(canonical_node_code: str) -> str: + return canonical_node_code.replace(".", "") + + +def unique_sorted_strings(series: pd.Series) -> list[str]: + values: set[str] = set() + for value in series.dropna(): + text = str(value).strip() + if text: + values.add(text) + return sorted(values) + + +def unique_sorted_ints(series: pd.Series) -> list[int]: + values: set[int] = set() + for value in series.dropna(): + values.add(int(value)) + return sorted(values) + + +def join_pipe(values: list[str]) -> str: + return " | ".join(values) + + +def join_csv_ints(values: list[int]) -> str: + return ",".join(str(v) for v in values) + + +def load_skills(skills_path: Path) -> pd.DataFrame: + required_columns = ["problem_id", "skill_id", "node_code", "node_name"] + df = pd.read_csv(skills_path, usecols=required_columns, low_memory=False) + + df["problem_id"] = pd.to_numeric(df["problem_id"], errors="coerce") + df["skill_id"] = pd.to_numeric(df["skill_id"], errors="coerce") + + df = df.dropna(subset=["problem_id", "skill_id", "node_code"]).copy() + df["problem_id"] = df["problem_id"].astype(int) + df["skill_id"] = df["skill_id"].astype(int) + + df["node_code"] = df["node_code"].astype(str).str.strip() + df["node_name"] = df["node_name"].fillna("").astype(str).str.strip() + df = df[df["node_code"] != ""].copy() + + df["node_code_canonical"] = df["node_code"].apply(normalize_node_code) + df["node_code_compact"] = df["node_code_canonical"].apply(compact_node_code) + return df + + +def summarize_compact_codes(df: pd.DataFrame) -> pd.DataFrame: + summary = ( + df.groupby("node_code_compact", sort=True) + .agg( + canonical_node_codes=("node_code_canonical", unique_sorted_strings), + raw_node_codes=("node_code", unique_sorted_strings), + skill_ids=("skill_id", unique_sorted_ints), + node_names=("node_name", unique_sorted_strings), + problem_count=("problem_id", "nunique"), + mapping_count=("skill_id", "size"), + ) + .reset_index() + .rename(columns={"node_code_compact": "compact_node_code"}) + ) + + summary["n_skill_ids"] = summary["skill_ids"].apply(len) + return summary + + +def build_normalized_conflicts(summary: pd.DataFrame) -> pd.DataFrame: + conflicts = summary[summary["n_skill_ids"] > 1].copy() + if conflicts.empty: + return conflicts + + conflicts.insert(0, "conflict_type", "normalized_match") + conflicts["skill_ids"] = conflicts["skill_ids"].apply(join_csv_ints) + conflicts["canonical_node_codes"] = conflicts["canonical_node_codes"].apply( + join_pipe + ) + conflicts["raw_node_codes"] = conflicts["raw_node_codes"].apply(join_pipe) + conflicts["node_names"] = conflicts["node_names"].apply(join_pipe) + + return conflicts.sort_values( + ["n_skill_ids", "compact_node_code"], ascending=[False, True] + ) + + +def build_fuzzy_conflicts( + summary: pd.DataFrame, + threshold: float, + max_pairs: int, +) -> pd.DataFrame: + rows: list[dict[str, object]] = [] + + records = summary.to_dict(orient="records") + for left, right in combinations(records, 2): + left_code = str(left["compact_node_code"]) + right_code = str(right["compact_node_code"]) + + if left_code == right_code: + continue + + similarity = SequenceMatcher(None, left_code, right_code).ratio() + if similarity < threshold: + continue + + left_skills = set(left["skill_ids"]) + right_skills = set(right["skill_ids"]) + if left_skills == right_skills: + continue + + rows.append( + { + "conflict_type": "fuzzy_match", + "similarity": round(similarity, 4), + "left_compact_node_code": left_code, + "right_compact_node_code": right_code, + "left_canonical_node_codes": join_pipe(left["canonical_node_codes"]), + "right_canonical_node_codes": join_pipe(right["canonical_node_codes"]), + "left_skill_ids": join_csv_ints(left["skill_ids"]), + "right_skill_ids": join_csv_ints(right["skill_ids"]), + "overlap_skill_ids": join_csv_ints( + sorted(left_skills.intersection(right_skills)) + ), + } + ) + + fuzzy = pd.DataFrame(rows) + if fuzzy.empty: + return fuzzy + + fuzzy = fuzzy.sort_values( + ["similarity", "left_compact_node_code", "right_compact_node_code"], + ascending=[False, True, True], + ) + if max_pairs > 0: + fuzzy = fuzzy.head(max_pairs).copy() + return fuzzy + + +def print_section(title: str, df: pd.DataFrame, print_limit: int) -> None: + print(f"\n{title}") + if df.empty: + print(" None") + return + + to_show = df.head(print_limit) + print(to_show.to_string(index=False)) + if len(df) > len(to_show): + print(f" ... ({len(df) - len(to_show)} more rows)") + + +def main() -> int: + args = parse_args() + + if args.similarity_threshold < 0.0 or args.similarity_threshold > 1.0: + raise ValueError("--similarity-threshold must be in [0.0, 1.0].") + + if not args.skills_path.exists(): + raise FileNotFoundError(f"Skills file not found: {args.skills_path}") + + skills_df = load_skills(args.skills_path) + summary_df = summarize_compact_codes(skills_df) + + normalized_conflicts = build_normalized_conflicts(summary_df) + fuzzy_conflicts = pd.DataFrame() + if args.include_fuzzy: + fuzzy_conflicts = build_fuzzy_conflicts( + summary_df, + threshold=args.similarity_threshold, + max_pairs=args.max_fuzzy_pairs, + ) + + frames = [normalized_conflicts] + if args.include_fuzzy: + frames.append(fuzzy_conflicts) + combined_output = pd.concat(frames, ignore_index=True, sort=False) + + args.output_path.parent.mkdir(parents=True, exist_ok=True) + combined_output.to_csv(args.output_path, index=False) + + print("Loaded rows:", len(skills_df)) + print("Unique compact node codes:", len(summary_df)) + print("Normalized conflicts:", len(normalized_conflicts)) + if args.include_fuzzy: + print( + "Fuzzy conflicts (threshold " f"{args.similarity_threshold:.2f}):", + len(fuzzy_conflicts), + ) + + print_section( + "Normalized node_code conflicts (same compact code, different skill_id):", + normalized_conflicts, + args.print_limit, + ) + + if args.include_fuzzy: + print_section( + "Fuzzy node_code conflicts (near compact codes, different skill_id):", + fuzzy_conflicts, + args.print_limit, + ) + + print(f"\nSaved conflicts to: {args.output_path}") + return 0 + + +if __name__ == "__main__": + raise SystemExit(main()) diff --git a/Code/evaluate_kt.py b/Code/evaluate_kt.py new file mode 100644 index 0000000000000000000000000000000000000000..de9ad12db4b0008bad1fe4c4531741454bdf52e7 --- /dev/null +++ b/Code/evaluate_kt.py @@ -0,0 +1,205 @@ +#!/usr/bin/env python3 +""" +Evaluate LLM knowledge tracing predictions against FKT benchmark tasks. + +Tasks evaluated: + - Task 1 (FKT): Foundational Knowledge Tracing - predict if student answers correctly (question-level) + - Task 1 Variant 2: Cognitive Student Modeling - predict the actual student response + +Usage: + python evaluate_kt.py results.jsonl +""" + +import argparse +import json +import math +from sklearn.metrics import roc_auc_score + + +def normalize_mcq_answer(answer_str: str) -> str: + """ + Normalize MCQ answer format for consistent comparison. + + Handles variations like: + - 'C, A' -> 'A, C' (order normalization) + - 'A,C' -> 'A, C' (spacing normalization) + - 'a, c' -> 'A, C' (case normalization) + + Args: + answer_str: Answer string to normalize + + Returns: + Normalized answer string, or original if not MCQ format + """ + # Split by comma, strip whitespace, uppercase, sort, rejoin + parts = [p.strip().upper() for p in answer_str.split(',')] + # Filter out empty parts + parts = [p for p in parts if p] + # Only normalize if all parts are single letters (MCQ format) + if parts and all(len(p) == 1 and p.isalpha() for p in parts): + return ', '.join(sorted(set(parts))) + return answer_str + + +def numerical_match(answer1: str, answer2: str, atol: float = 0.01, rtol: float = 0.01) -> bool: + """ + Check if two answers are numerically close within tolerance. + + Uses math.isclose for robust comparison that handles both absolute + and relative tolerance. + + Args: + answer1: First answer string + answer2: Second answer string + atol: Absolute tolerance (default: 0.01) + rtol: Relative tolerance (default: 0.01) + + Returns: + True if answers are numerically close, False otherwise + """ + try: + a = float(answer1.strip()) + b = float(answer2.strip()) + return math.isclose(a, b, abs_tol=atol, rel_tol=rtol) + except (ValueError, AttributeError): + return False + + +def answers_match(pred, actual): + """Check if predicted answer matches actual answer.""" + if pred is None or actual is None: + return False + + pred_str = str(pred).strip() + actual_str = str(actual).strip() + + # Exact string match + if pred_str == actual_str: + return True + + # Normalize MCQ answers (handles case, order, spacing) + pred_normalized = normalize_mcq_answer(pred_str) + actual_normalized = normalize_mcq_answer(actual_str) + if pred_normalized == actual_normalized: + return True + + # Numeric match with tolerance + return numerical_match(pred_str, actual_str) + + +def load_results(jsonl_path): + """Load results from JSONL file.""" + results = [] + with open(jsonl_path, 'r') as f: + for line in f: + if line.strip(): + results.append(json.loads(line)) + return results + + +def evaluate(results): + """Compute evaluation metrics aligned with FKT benchmark tasks.""" + total = len(results) + + if total == 0: + print("No results to evaluate.") + return + + # Compute class distribution + n_correct = sum(1 for r in results if r.get('actual_score') == 1) + n_incorrect = total - n_correct + + # Task 1: FKT - Question-level accuracy + valid_q = [(r.get('actual_score'), r.get('predicted_question_level')) + for r in results + if r.get('actual_score') is not None and r.get('predicted_question_level') is not None] + + if valid_q: + y_true, y_pred = zip(*valid_q) + question_correct = sum(1 for t, p in valid_q if t == p) + question_acc = question_correct / len(valid_q) + # AUC-ROC (note: with binary predictions, this is limited) + try: + auc_roc = roc_auc_score(y_true, y_pred) + except ValueError: + auc_roc = None # Only one class present + else: + question_correct = 0 + question_acc = 0.0 + auc_roc = None + + # Task 1 Variant 2: Cognitive Modeling - Answer prediction accuracy + answer_correct = sum( + 1 for r in results + if answers_match(r.get('predicted_student_answer'), r.get('actual_answer')) + ) + + # Baselines + prior_baseline = 0.615 # True correctness rate from Interactions.csv + majority_baseline = max(n_correct, n_incorrect) / total + + # Print results + print(f"{'='*60}") + print(f"Evaluation Results ({total} predictions)") + print(f"{'='*60}") + print() + print(f"Class distribution: {n_correct} correct, {n_incorrect} incorrect") + print() + + # Task 1: Foundational Knowledge Tracing (FKT) - question-level prediction + print("Task 1: Foundational Knowledge Tracing (FKT) - Question-Level") + print(f" Accuracy: {question_correct}/{len(valid_q)} = {question_acc:.3f}") + if auc_roc is not None: + print(f" AUC-ROC: {auc_roc:.3f}") + else: + print(f" AUC-ROC: N/A (single class)") + print(f" Baselines: Prior={prior_baseline:.3f}, Majority={majority_baseline:.3f}") + print() + + # Task 1 Variant 2: Cognitive Student Modeling + print("Task 1 Variant 2: Cognitive Student Modeling") + print(f" Overall Accuracy: {answer_correct}/{total} = {answer_correct/total:.3f}") + + # Breakdown by problem type + problem_types = ['Multiple Choice (select 1)', 'Multiple Choice (select all)', 'Fill-in-the-blank(s)'] + has_problem_type = any(r.get('problem_type') for r in results) + if has_problem_type: + print(" By problem type:") + for ptype in problem_types: + subset = [r for r in results if r.get('problem_type') == ptype] + if subset: + n = len(subset) + a_acc = sum(1 for r in subset if answers_match(r.get('predicted_student_answer'), r.get('actual_answer'))) / n + label = ptype.replace('Multiple Choice ', 'MC ') + print(f" {label:20s}: n={n:4d}, acc={a_acc:.3f}") + # Breakdown by ground truth within problem type + for gt in ['correct', 'incorrect']: + gt_subset = [r for r in subset if r.get('prediction_type') == gt] + if gt_subset: + gt_n = len(gt_subset) + gt_acc = sum(1 for r in gt_subset if answers_match(r.get('predicted_student_answer'), r.get('actual_answer'))) / gt_n + print(f" {gt:18s}: n={gt_n:4d}, acc={gt_acc:.3f}") + print() + + # Breakdown by prediction type (correct/incorrect ground truth) + print("By ground truth (prediction_type):") + for ptype in ['correct', 'incorrect']: + subset = [r for r in results if r.get('prediction_type') == ptype] + if subset: + n = len(subset) + q_acc = sum(1 for r in subset if r.get('predicted_question_level') == r.get('actual_score')) / n + a_acc = sum(1 for r in subset if answers_match(r.get('predicted_student_answer'), r.get('actual_answer'))) / n + print(f" {ptype:10s}: n={n:4d}, FKT_acc={q_acc:.3f}, cognitive_acc={a_acc:.3f}") + + +def main(): + parser = argparse.ArgumentParser(description="Evaluate LLM knowledge tracing predictions") + parser.add_argument("jsonl_file", help="Path to JSONL results file") + args = parser.parse_args() + + results = load_results(args.jsonl_file) + evaluate(results) + + +if __name__ == "__main__": + main() diff --git a/Code/evaluate_kt_by_context.py b/Code/evaluate_kt_by_context.py new file mode 100644 index 0000000000000000000000000000000000000000..785a7f4c4e6ae4f6c9651f0ca65c29dc4c7781c9 --- /dev/null +++ b/Code/evaluate_kt_by_context.py @@ -0,0 +1,339 @@ +#!/usr/bin/env python3 +""" +Evaluate KT performance by context length (history size). + +Analyzes how KT accuracy changes as student history grows from 50 to 400 interactions. +Plots all models in a single figure for comparison. + +Usage: + python evaluate_kt_by_context.py +""" + +import argparse +import json +import math +import os +from glob import glob +from collections import defaultdict + +import matplotlib.pyplot as plt +import numpy as np +from sklearn.metrics import roc_auc_score + +# Set publication-quality font sizes +plt.rcParams.update({ + 'font.size': 14, + 'axes.titlesize': 16, + 'axes.labelsize': 14, + 'xtick.labelsize': 12, + 'ytick.labelsize': 12, + 'legend.fontsize': 12, +}) + +# Model name mapping for display +MODEL_NAMES = { + 'gptoss120b': 'GPT-OSS-120B', + 'llama33_70b_instruct': 'Llama-3.3-70B-Instruct', + 'qwen3next80binstruct': 'Qwen3-80B-Instruct', + 'qwen3next80bthinking': 'Qwen3-80B-Thinking', +} + +# Colors for each model +MODEL_COLORS = { + 'gptoss120b': '#1f77b4', # blue + 'llama33_70b_instruct': '#ff7f0e', # orange + 'qwen3next80binstruct': '#2ca02c', # green + 'qwen3next80bthinking': '#d62728', # red +} + + +def normalize_mcq_answer(answer_str: str) -> str: + """Normalize MCQ answer format for consistent comparison.""" + parts = [p.strip().upper() for p in answer_str.split(',')] + parts = [p for p in parts if p] + if parts and all(len(p) == 1 and p.isalpha() for p in parts): + return ', '.join(sorted(set(parts))) + return answer_str + + +def numerical_match(answer1: str, answer2: str, atol: float = 0.01, rtol: float = 0.01) -> bool: + """Check if two answers are numerically close within tolerance.""" + try: + a = float(answer1.strip()) + b = float(answer2.strip()) + return math.isclose(a, b, abs_tol=atol, rel_tol=rtol) + except (ValueError, AttributeError): + return False + + +def answers_match(pred, actual): + """Check if predicted answer matches actual answer.""" + if pred is None or actual is None: + return False + + pred_str = str(pred).strip() + actual_str = str(actual).strip() + + if pred_str == actual_str: + return True + + pred_normalized = normalize_mcq_answer(pred_str) + actual_normalized = normalize_mcq_answer(actual_str) + if pred_normalized == actual_normalized: + return True + + return numerical_match(pred_str, actual_str) + + +def parse_args(): + parser = argparse.ArgumentParser(description="Evaluate KT by context length") + parser.add_argument( + "--results-dir", "-r", + type=str, + default="inference_data_kt_results", + help="Directory containing JSONL results files" + ) + parser.add_argument( + "--output-dir", "-o", + type=str, + default="dataset_analysis/plots", + help="Directory to save output plots" + ) + parser.add_argument( + "--no-plots", + action="store_true", + help="Skip generating plots" + ) + return parser.parse_args() + + +def extract_model_name(filename): + """Extract model identifier from filename.""" + basename = os.path.basename(filename) + # Pattern: modelname_n500_bin10_hist50.jsonl + for model_key in MODEL_NAMES.keys(): + if basename.startswith(model_key): + return model_key + return basename.replace('.jsonl', '') + + +def load_results(jsonl_path): + """Load results from JSONL file.""" + results = [] + with open(jsonl_path, 'r') as f: + for line in f: + if line.strip(): + results.append(json.loads(line)) + return results + + +def compute_metrics_by_bin(results): + """Compute metrics grouped by history_size.""" + bins = defaultdict(list) + + for r in results: + history_size = r.get('history_size', 50) + bins[history_size].append(r) + + metrics = {} + for history_size in sorted(bins.keys()): + bin_results = bins[history_size] + n = len(bin_results) + + # FKT: Collect valid predictions for AUC-ROC + y_true = [] + y_pred = [] + for r in bin_results: + actual = r.get('actual_score') + pred = r.get('predicted_question_level') + if actual is not None and pred is not None: + y_true.append(int(actual)) + y_pred.append(int(pred)) + + # Compute AUC-ROC (requires both classes present) + fkt_auc = None + if len(set(y_true)) == 2 and len(y_true) > 0: + try: + fkt_auc = roc_auc_score(y_true, y_pred) + except ValueError: + pass + + # FKT accuracy (for reference) + fkt_correct = sum(1 for t, p in zip(y_true, y_pred) if t == p) + fkt_acc = fkt_correct / len(y_true) if y_true else 0.0 + + # Cognitive accuracy (answer match) + cognitive_correct = sum( + 1 for r in bin_results + if answers_match(r.get('predicted_student_answer'), r.get('actual_answer')) + ) + + metrics[history_size] = { + 'n': n, + 'fkt_auc': fkt_auc, + 'fkt_acc': fkt_acc, + 'fkt_valid': len(y_true), + 'cognitive_acc': cognitive_correct / n if n > 0 else 0.0, + } + + return metrics + + +def print_table(all_metrics): + """Print metrics table to console.""" + # Get all history sizes across all models + all_history_sizes = sorted(set( + hs for model_metrics in all_metrics.values() + for hs in model_metrics.keys() + )) + + # Header + print("\n" + "=" * 100) + print("KT Performance by Context Length (History Size)") + print("=" * 100) + + # Print FKT AUC-ROC table + print("\nFKT AUC-ROC (Question-Level):") + print("-" * 80) + header = f"{'History':>8}" + for model_key in all_metrics.keys(): + header += f" {MODEL_NAMES.get(model_key, model_key)[:20]:>20}" + print(header) + print("-" * 80) + + for hs in all_history_sizes: + row = f"{hs:>8}" + for model_key in all_metrics.keys(): + if hs in all_metrics[model_key]: + auc = all_metrics[model_key][hs]['fkt_auc'] + if auc is not None: + row += f" {auc:>20.3f}" + else: + row += f" {'N/A':>20}" + else: + row += f" {'N/A':>20}" + print(row) + + # Print Cognitive accuracy table + print("\nCognitive Accuracy (Answer Prediction):") + print("-" * 80) + print(header) + print("-" * 80) + + for hs in all_history_sizes: + row = f"{hs:>8}" + for model_key in all_metrics.keys(): + if hs in all_metrics[model_key]: + acc = all_metrics[model_key][hs]['cognitive_acc'] + row += f" {acc:>20.3f}" + else: + row += f" {'N/A':>20}" + print(row) + + +def plot_results(all_metrics, output_dir): + """Generate plot with all models.""" + os.makedirs(output_dir, exist_ok=True) + + fig, axes = plt.subplots(1, 2, figsize=(14, 5)) + + # Plot 1: FKT AUC-ROC + for model_key, metrics in all_metrics.items(): + history_sizes = sorted(metrics.keys()) + # Filter out None values + valid_hs = [hs for hs in history_sizes if metrics[hs]['fkt_auc'] is not None] + fkt_aucs = [metrics[hs]['fkt_auc'] for hs in valid_hs] + + if valid_hs: + axes[0].plot( + valid_hs, fkt_aucs, + marker='o', markersize=4, + color=MODEL_COLORS.get(model_key, 'gray'), + label=MODEL_NAMES.get(model_key, model_key), + linewidth=2 + ) + + axes[0].set_xlabel('History Size (# prior interactions)') + axes[0].set_ylabel('AUC-ROC') + axes[0].set_title('FKT AUC-ROC vs Context Length') + axes[0].legend(loc='best') + axes[0].grid(True, alpha=0.3) + axes[0].set_xlim(40, 410) + axes[0].axhline(y=0.5, color='gray', linestyle='--', alpha=0.5, label='Random') + + # Plot 2: Cognitive Accuracy + for model_key, metrics in all_metrics.items(): + history_sizes = sorted(metrics.keys()) + cognitive_accs = [metrics[hs]['cognitive_acc'] for hs in history_sizes] + + axes[1].plot( + history_sizes, cognitive_accs, + marker='o', markersize=4, + color=MODEL_COLORS.get(model_key, 'gray'), + label=MODEL_NAMES.get(model_key, model_key), + linewidth=2 + ) + + axes[1].set_xlabel('History Size (# prior interactions)') + axes[1].set_ylabel('Accuracy') + axes[1].set_title('Cognitive Modeling Accuracy vs Context Length') + axes[1].legend(loc='best') + axes[1].grid(True, alpha=0.3) + axes[1].set_xlim(40, 410) + + plt.tight_layout() + + plot_path = os.path.join(output_dir, 'kt_context_scaling.png') + plt.savefig(plot_path, dpi=150) + plt.close() + + print(f"\nSaved: {plot_path}") + + +def main(): + args = parse_args() + + # Find all JSONL files + jsonl_files = glob(os.path.join(args.results_dir, '*.jsonl')) + + if not jsonl_files: + print(f"No JSONL files found in {args.results_dir}") + return + + print(f"Found {len(jsonl_files)} result files:") + for f in jsonl_files: + print(f" - {os.path.basename(f)}") + + # Load and analyze each model + all_metrics = {} + + for jsonl_path in sorted(jsonl_files): + model_key = extract_model_name(jsonl_path) + print(f"\nProcessing {MODEL_NAMES.get(model_key, model_key)}...") + + results = load_results(jsonl_path) + print(f" Loaded {len(results):,} predictions") + + metrics = compute_metrics_by_bin(results) + all_metrics[model_key] = metrics + + # Print quick summary + history_sizes = sorted(metrics.keys()) + valid_aucs = [metrics[hs]['fkt_auc'] for hs in history_sizes if metrics[hs]['fkt_auc'] is not None] + avg_auc = np.mean(valid_aucs) if valid_aucs else 0.0 + avg_cognitive = np.mean([metrics[hs]['cognitive_acc'] for hs in history_sizes]) + print(f" Avg FKT AUC-ROC: {avg_auc:.3f}") + print(f" Avg Cognitive accuracy: {avg_cognitive:.3f}") + + # Print detailed table + print_table(all_metrics) + + # Generate plot + if not args.no_plots: + plot_results(all_metrics, args.output_dir) + + print("\nDone!") + + +if __name__ == "__main__": + main() diff --git a/Code/find_duplicate_problem_body.py b/Code/find_duplicate_problem_body.py new file mode 100644 index 0000000000000000000000000000000000000000..ace336e54447560cccc6fabca8cb55c1b39dfbca --- /dev/null +++ b/Code/find_duplicate_problem_body.py @@ -0,0 +1,152 @@ +#!/usr/bin/env python3 +"""Export rows that share the same Problem Body but have different problem_id. + +Default input: +- ../Data/Problems.csv + +Default output: +- ../Data/Problems_same_body_different_problem_id.csv + +The output includes all original columns plus: +- duplicate_group_id +- distinct_problem_id_count +- distinct_problem_ids +""" + +from __future__ import annotations + +import argparse +import csv +import html +import re +from collections import defaultdict +from pathlib import Path +from typing import Dict, List, Set + +_TAG_RE = re.compile(r"<[^>]+>") +_WS_RE = re.compile(r"\s+") + + +def normalize_body(text: str, strip_html: bool, collapse_whitespace: bool) -> str: + """Normalize Problem Body text for grouping.""" + value = html.unescape(text or "") + if strip_html: + value = _TAG_RE.sub("", value) + if collapse_whitespace: + value = _WS_RE.sub(" ", value).strip() + return value + + +def main() -> None: + parser = argparse.ArgumentParser( + description=( + "Find rows in Problems.csv where the same Problem Body is mapped " + "to different problem_id values." + ) + ) + parser.add_argument( + "--input-csv", + type=Path, + default=Path("../Data/Problems.csv"), + help="Path to Problems.csv", + ) + parser.add_argument( + "--output-csv", + type=Path, + default=Path("../Results/Problems_same_body_different_problem_id.csv"), + help="Output CSV path", + ) + parser.add_argument( + "--body-column", + type=str, + default="Problem Body", + help="Column name for problem statement text", + ) + parser.add_argument( + "--id-column", + type=str, + default="problem_id", + help="Column name for problem identifier", + ) + parser.add_argument( + "--strip-html", + action="store_true", + help="Strip HTML tags before grouping", + ) + parser.add_argument( + "--collapse-whitespace", + action="store_true", + help="Collapse runs of whitespace before grouping", + ) + + args = parser.parse_args() + + input_csv = args.input_csv.resolve() + output_csv = args.output_csv.resolve() + + with input_csv.open("r", encoding="utf-8", newline="") as f: + reader = csv.DictReader(f) + fieldnames = reader.fieldnames or [] + + if args.body_column not in fieldnames: + raise ValueError(f"Missing body column '{args.body_column}' in {input_csv}") + if args.id_column not in fieldnames: + raise ValueError(f"Missing id column '{args.id_column}' in {input_csv}") + + rows: List[dict] = list(reader) + + groups: Dict[str, List[int]] = defaultdict(list) + group_ids: Dict[str, Set[str]] = defaultdict(set) + + for idx, row in enumerate(rows): + body_raw = row.get(args.body_column, "") + body_key = normalize_body( + body_raw, + strip_html=args.strip_html, + collapse_whitespace=args.collapse_whitespace, + ) + if not body_key: + continue + + problem_id = str(row.get(args.id_column, "")).strip() + groups[body_key].append(idx) + if problem_id: + group_ids[body_key].add(problem_id) + + duplicate_keys = [k for k, ids in group_ids.items() if len(ids) > 1] + + # Preserve first-seen order of duplicate groups. + duplicate_keys.sort(key=lambda k: groups[k][0]) + + output_rows: List[dict] = [] + for group_num, key in enumerate(duplicate_keys, start=1): + ids_sorted = sorted(group_ids[key]) + ids_joined = ";".join(ids_sorted) + + for row_idx in groups[key]: + out_row = dict(rows[row_idx]) + out_row["duplicate_group_id"] = str(group_num) + out_row["distinct_problem_id_count"] = str(len(ids_sorted)) + out_row["distinct_problem_ids"] = ids_joined + output_rows.append(out_row) + + output_csv.parent.mkdir(parents=True, exist_ok=True) + output_fieldnames = fieldnames + [ + "duplicate_group_id", + "distinct_problem_id_count", + "distinct_problem_ids", + ] + + with output_csv.open("w", encoding="utf-8", newline="") as f: + writer = csv.DictWriter(f, fieldnames=output_fieldnames) + writer.writeheader() + writer.writerows(output_rows) + + print(f"Input rows: {len(rows)}") + print(f"Duplicate body groups (different problem_id): {len(duplicate_keys)}") + print(f"Output rows: {len(output_rows)}") + print(f"Wrote: {output_csv}") + + +if __name__ == "__main__": + main() diff --git a/Code/find_duplicate_problem_id.py b/Code/find_duplicate_problem_id.py new file mode 100644 index 0000000000000000000000000000000000000000..1fbd6d9ae3bce82cefd3b9af412b90d4ae05f0fa --- /dev/null +++ b/Code/find_duplicate_problem_id.py @@ -0,0 +1,148 @@ +#!/usr/bin/env python3 +"""Export rows that have duplicated problem_id values. + +Default input: +- ../Data/Problems.csv + +Default output: +- ../Results/Problems_duplicated_problem_id.csv + +The output includes all original columns plus: +- duplicate_group_id +- duplicate_problem_id_count +- distinct_problem_body_count +""" + +from __future__ import annotations + +import argparse +import csv +import html +import re +from collections import defaultdict +from pathlib import Path +from typing import Dict, List, Set + +_TAG_RE = re.compile(r"<[^>]+>") +_WS_RE = re.compile(r"\s+") + + +def normalize_body(text: str, strip_html: bool, collapse_whitespace: bool) -> str: + """Normalize Problem Body text for distinct-body counting.""" + value = html.unescape(text or "") + if strip_html: + value = _TAG_RE.sub("", value) + if collapse_whitespace: + value = _WS_RE.sub(" ", value).strip() + return value + + +def main() -> None: + parser = argparse.ArgumentParser( + description="Find rows in Problems.csv where problem_id is duplicated." + ) + parser.add_argument( + "--input-csv", + type=Path, + default=Path("../Data/Problems.csv"), + help="Path to Problems.csv", + ) + parser.add_argument( + "--output-csv", + type=Path, + default=Path("../Results/Problems_duplicated_problem_id.csv"), + help="Output CSV path", + ) + parser.add_argument( + "--id-column", + type=str, + default="problem_id", + help="Column name for problem identifier", + ) + parser.add_argument( + "--body-column", + type=str, + default="Problem Body", + help="Column name for problem statement text", + ) + parser.add_argument( + "--strip-html", + action="store_true", + help="Strip HTML tags before counting distinct problem bodies", + ) + parser.add_argument( + "--collapse-whitespace", + action="store_true", + help="Collapse runs of whitespace before counting distinct problem bodies", + ) + + args = parser.parse_args() + + input_csv = args.input_csv.resolve() + output_csv = args.output_csv.resolve() + + with input_csv.open("r", encoding="utf-8", newline="") as f: + reader = csv.DictReader(f) + fieldnames = reader.fieldnames or [] + + if args.id_column not in fieldnames: + raise ValueError(f"Missing id column '{args.id_column}' in {input_csv}") + if args.body_column not in fieldnames: + raise ValueError(f"Missing body column '{args.body_column}' in {input_csv}") + + rows: List[dict] = list(reader) + + groups: Dict[str, List[int]] = defaultdict(list) + for idx, row in enumerate(rows): + problem_id = str(row.get(args.id_column, "")).strip() + if not problem_id: + continue + groups[problem_id].append(idx) + + duplicate_ids = [pid for pid, row_idxs in groups.items() if len(row_idxs) > 1] + + # Preserve first-seen order of duplicate groups. + duplicate_ids.sort(key=lambda pid: groups[pid][0]) + + output_rows: List[dict] = [] + for group_num, pid in enumerate(duplicate_ids, start=1): + row_idxs = groups[pid] + + distinct_bodies: Set[str] = set() + for row_idx in row_idxs: + body_raw = rows[row_idx].get(args.body_column, "") + distinct_bodies.add( + normalize_body( + body_raw, + strip_html=args.strip_html, + collapse_whitespace=args.collapse_whitespace, + ) + ) + + for row_idx in row_idxs: + out_row = dict(rows[row_idx]) + out_row["duplicate_group_id"] = str(group_num) + out_row["duplicate_problem_id_count"] = str(len(row_idxs)) + out_row["distinct_problem_body_count"] = str(len(distinct_bodies)) + output_rows.append(out_row) + + output_csv.parent.mkdir(parents=True, exist_ok=True) + output_fieldnames = fieldnames + [ + "duplicate_group_id", + "duplicate_problem_id_count", + "distinct_problem_body_count", + ] + + with output_csv.open("w", encoding="utf-8", newline="") as f: + writer = csv.DictWriter(f, fieldnames=output_fieldnames) + writer.writeheader() + writer.writerows(output_rows) + + print(f"Input rows: {len(rows)}") + print(f"Duplicated {args.id_column} groups: {len(duplicate_ids)}") + print(f"Output rows: {len(output_rows)}") + print(f"Wrote: {output_csv}") + + +if __name__ == "__main__": + main() diff --git a/Code/gptoss120bvllmmcq.py b/Code/gptoss120bvllmmcq.py new file mode 100644 index 0000000000000000000000000000000000000000..b8040fb21905dba6ddad20aacdf4ee62633baf33 --- /dev/null +++ b/Code/gptoss120bvllmmcq.py @@ -0,0 +1,31 @@ +""" +Knowledge Tracing inference with GPT-OSS-120B model. + +Usage: + CUDA_VISIBLE_DEVICES=0,1,2,3 python gptoss120bvllmmcq.py \ + --data-dir foundationalktdataset/ \ + --num-gpus 4 \ + --batch-size 10 \ + --cache-dir /data1/ \ + --num-students 500 \ + --bin-size 50 \ + --min-history 50 +""" + +from kt_inference_base import run_inference + +MODEL_CONFIG = { + "model_id": "openai/gpt-oss-120b", + "gen_configs": { + "temperature": 0.7, + "top_p": 0.95, + "top_k": 20, + "max_tokens": 32768, + "repetition_penalty": 1.0, + }, + "output_prefix": "gptoss120b", + "system_prompt_prefix": "Reasoning: medium\n\n", +} + +if __name__ == "__main__": + run_inference(MODEL_CONFIG) diff --git a/Code/kt_inference_base.py b/Code/kt_inference_base.py new file mode 100644 index 0000000000000000000000000000000000000000..314e53575892f5443909411675ba539e52fdced5 --- /dev/null +++ b/Code/kt_inference_base.py @@ -0,0 +1,849 @@ +""" +Base module for Knowledge Tracing LLM inference. + +This module contains all shared logic for running KT inference with different models. +Each model script imports this and provides model-specific configuration. + +Usage in model scripts: + from kt_inference_base import run_inference + + MODEL_CONFIG = { + "model_id": "model/name", + "gen_configs": {...}, + "output_prefix": "prefix", + "system_prompt_prefix": "", # e.g., "Reasoning: medium\n\n" + } + + if __name__ == "__main__": + run_inference(MODEL_CONFIG) +""" + +import argparse +import contextlib +import os +from vllm import LLM, SamplingParams +import pandas as pd +import gc +import torch +from vllm.distributed.parallel_state import ( + destroy_model_parallel, + destroy_distributed_environment, +) +import json +import re +import numpy as np +from tqdm import tqdm +from multiprocessing import Pool, cpu_count +from clean_utils import clean_problem_body +from cleantext import clean_text as clean_text_legacy + + +class NumpyEncoder(json.JSONEncoder): + """Custom JSON encoder that handles numpy types.""" + def default(self, obj): + if isinstance(obj, np.integer): + return int(obj) + if isinstance(obj, np.floating): + return float(obj) + if isinstance(obj, np.ndarray): + return obj.tolist() + return super().default(obj) + + +# Batch processing config defaults +DEFAULT_BATCH_SIZE = 10000 +DEFAULT_NUM_STUDENTS = 500 +DEFAULT_BIN_SIZE = 50 +DEFAULT_MIN_HISTORY = 50 + +# Input file names +STUDENT_FILE = "Interactions.csv" +PROBLEMS_FILE = "Problems.csv" +SKILL_FILE = "Skills.csv" + +# Base system prompt (without any prefix like "Reasoning: medium") +BASE_SYSTEM_PROMPT = """You are a reasoning model trained to simulate a student's evolving knowledge and response behavior in mathematics. + +Your goal is to infer, from past problem–answer pairs, how this same student is likely to perform on a new problem — at multiple levels of granularity. + +You must reason about the student's learning progression, skill mastery, and recurring misconceptions, then produce structured predictions for the new item. + +--- + +Your Task: + +Generate three coordinated predictions for this student: + +1) **Skill-level knowledge tracing (0 or 1):** Whether the student has mastered the underlying skill involved in the new problem. +2) **Question-level knowledge tracing (0 or 1):** Whether the student will answer this specific problem correctly. +3) **Cognitive-level prediction (string):** The exact answer text or option the student would most likely produce, written in their own response style. + +--- + +Reasoning Guidelines: + +- Use the student's historical data (problems, answers, hints, timestamps) to infer learning and forgetting patterns. +- Consider recency and exposure: later timestamps often indicate updated knowledge. +- Treat `UsedHint=True` or `SawAnswer=True` as evidence that the student's recorded answer may not reflect true mastery — they might have seen or been helped toward the solution. +- Attend to how the student's accuracy, style, and misconceptions evolve over time. +- You may think step-by-step internally, but your final output must follow the format below. +--- + +Output Format: + +When you are done reasoning, **finish your response with** the JSON object in this exact structure: + +For Multiple Choice (select 1) problems: +{ +"skill_level": 0 or 1, +"question_level": 0 or 1, +"student_answer": "A" (single letter only) +} + +For Multiple Choice (select all) problems: +{ +"skill_level": 0 or 1, +"question_level": 0 or 1, +"student_answer": "A, C" (comma-separated letters if multiple selections) +} + +For Fill-in problems: +{ +"skill_level": 0 or 1, +"question_level": 0 or 1, +"student_answer": "" +} + +Predictions must be consistent. If you predict question_level to be 1, then student_answer must match the correct answer. If you predict question_level to be 0, student_answer must not match the correct answer.""" + + +def parse_args(default_output_jsonl): + """Parse command line arguments.""" + parser = argparse.ArgumentParser(description="Knowledge Tracing with LLM") + parser.add_argument( + "--batch-size", "-b", + type=int, + default=DEFAULT_BATCH_SIZE, + help=f"Batch size for LLM inference (default: {DEFAULT_BATCH_SIZE})" + ) + parser.add_argument( + "--output", "-o", + type=str, + default=None, + help="Output JSONL file path (overrides auto-generated name)" + ) + parser.add_argument( + "--output-dir", + type=str, + default=".", + help="Output directory for results (default: current directory)" + ) + parser.add_argument( + "--data-dir", "-d", + type=str, + default=".", + help="Directory containing input CSV files (default: current directory)" + ) + parser.add_argument( + "--cache-dir", "-c", + type=str, + default=None, + help="Directory for vLLM model cache (default: vLLM default)" + ) + parser.add_argument( + "--num-students", "-n", + type=int, + default=DEFAULT_NUM_STUDENTS, + help=f"Number of students to sample (default: {DEFAULT_NUM_STUDENTS}, use 0 or -1 for all students)" + ) + parser.add_argument( + "--bin-size", + type=int, + default=DEFAULT_BIN_SIZE, + help=f"Size of each prediction bin (default: {DEFAULT_BIN_SIZE})" + ) + parser.add_argument( + "--min-history", + type=int, + default=DEFAULT_MIN_HISTORY, + help=f"Minimum history size before making predictions (default: {DEFAULT_MIN_HISTORY})" + ) + parser.add_argument( + "--num-gpus", + type=int, + default=1, + help="Number of GPUs for tensor parallelism (default: 1)" + ) + parser.add_argument( + "--max-num-seqs", + type=int, + default=None, + help="Maximum number of sequences to process in a batch (vLLM, default: 256)" + ) + parser.add_argument( + "--reasoning-level", + type=str, + choices=["none", "low", "medium", "high"], + default=None, + help="Reasoning level for GPT-OSS models only. Default: uses model config (medium for GPT-OSS, none for Qwen)" + ) + parser.add_argument( + "--max-model-len", + type=int, + default=None, + help="Maximum sequence length in tokens (vLLM, default: model's context length)" + ) + parser.add_argument( + "--gpu-memory-utilization", + type=float, + default=0.9, + help="Fraction of GPU memory to use (vLLM, default: 0.9, range: 0.0-1.0)" + ) + parser.add_argument( + "--legacy-clean", + action="store_true", + default=False, + help="Use legacy text cleaner (cleantext.py) instead of clean_utils.py" + ) + return parser.parse_args() + + +def label_answer_options(answer_string): + """ + Convert pipe-delimited answers to lettered format. + Input: "Han is correct || Elena is correct || Both are correct" + Output: {"A": "Han is correct", "B": "Elena is correct", "C": "Both are correct"} + """ + if pd.isna(answer_string) or answer_string == '': + return None + + options = [opt.strip() for opt in answer_string.split('||')] + letters = ['A', 'B', 'C', 'D', 'E', 'F', 'G', 'H', 'I', 'J'] + return {letters[i]: opt for i, opt in enumerate(options) if i < len(letters)} + + +def clean_html_and_normalize(text): + """ + Remove HTML tags and normalize text for comparison. + """ + if pd.isna(text): + return "" + # Remove HTML tags + text = re.sub(r'<[^>]+>', '', str(text)) + # Normalize whitespace + text = ' '.join(text.split()) + # Remove extra spaces around colons + text = re.sub(r'\s*:\s*', ':', text) + return text.strip() + + +def match_student_answer_to_letters(student_answer_text, answer_options_dict): + """ + Match student's comma-delineated answers to letter options. + + Args: + student_answer_text: String like "Answer A text , Answer C text , Answer B text" + answer_options_dict: Dict like {"A": "Answer A text", "B": "Answer B text", ...} + + Returns: + String like "A, B, C" or original text if no match + """ + if pd.isna(student_answer_text) or not answer_options_dict: + return student_answer_text + + # Split by " , " (comma with spaces, which is the delimiter used in the actual_answer) + student_answers = [ans.strip() for ans in str(student_answer_text).split(' , ')] + + # Clean and normalize all options for comparison + normalized_options = { + letter: clean_html_and_normalize(text) + for letter, text in answer_options_dict.items() + } + + matched_letters = [] + for student_ans in student_answers: + normalized_student = clean_html_and_normalize(student_ans) + + # Try to find exact match first + for letter, normalized_option in normalized_options.items(): + if normalized_student == normalized_option: + matched_letters.append(letter) + break + else: + # If no exact match, try substring match (student answer contained in option or vice versa) + for letter, normalized_option in normalized_options.items(): + if (normalized_student in normalized_option or + normalized_option in normalized_student): + matched_letters.append(letter) + break + + # Return comma-separated letters if we found matches, otherwise return original + if matched_letters: + return ', '.join(sorted(set(matched_letters))) # Remove duplicates and sort + return student_answer_text + + +def get_correct_option_letters(answer_options, correct_answers): + """ + Determine which letter(s) correspond to correct answer(s). + + Args: + answer_options: Dict like {"A": "Han is correct", "B": "Elena is correct", ...} + correct_answers: String like "Both are correct" or "Han is correct || Elena is correct" + + Returns: + String like "C" or "A, B" depending on how many correct options + """ + if not answer_options or pd.isna(correct_answers): + return correct_answers + + # Split correct answers if multiple + correct_list = [ans.strip() for ans in correct_answers.split('||')] + + # Find matching letters + correct_letters = [] + for letter, text in answer_options.items(): + if text in correct_list: + correct_letters.append(letter) + + return ', '.join(sorted(correct_letters)) if correct_letters else correct_answers + + +def format_answer_options_for_prompt(answer_options): + """ + Format answer options dictionary for display in prompt. + Input: {"A": "Han is correct", "B": "Elena is correct", ...} + Output: "A) Han is correct\nB) Elena is correct\n..." + """ + if not answer_options: + return None + + return '\n'.join([f"{letter}) {text}" for letter, text in answer_options.items()]) + + +def create_user_prompt(student_history, new_problem, problem_df): + """ + Creates a user prompt with student history and new problem. + + Args: + student_history: List of dicts with keys: problem_id, timestamp, problem_text, + correct_answer, student_answer, used_hint, saw_answer + new_problem: Dict with keys: problem_text, correct_answer, used_hint, saw_answer, + answer_options (optional) + """ + prompt = "Task Description:\n\n" + prompt += "Your task is to model a single student's learning process and predict how they will respond to a new mathematics problem based on their prior work.\n\n" + + prompt += """You will produce three coordinated predictions: + + 1) **Skill-level knowledge tracing (0 or 1):** Predict whether this student has mastered the underlying skill involved in the new problem. + 2) **Question-level knowledge tracing (0 or 1):** Predict whether this student will answer this specific problem correctly. + 3) **Cognitive-level prediction (string):** Generate the exact answer the student would most likely produce. + - For Multiple Choice (select 1): Predict a single letter (e.g., "A" or "B") + - For Multiple Choice (select all): Predict comma-separated letters (e.g., "A, C" or "B, D") + - For Fill-in problems: Predict the exact text the student would write + """ + + prompt += """--- + + Provided Data: + + You will receive: + - ProblemID: + - Timestamp: + - Problem: + - Problem Type: Multiple Choice (select 1) / Multiple Choice (select all) / Fill-in Problem + - Options: Answer choices in format "A) ...\nB) ...\nC) ..." + - Correct Answer(s): The letter(s) or text of correct answer(s) + - Student's First Answer: Letter(s) or fill-in text + - UsedHint: + - SawAnswer: + - Skill: + - A new problem (with optional answer choices), skill metadata, and context flags (`UsedHint`, `SawAnswer`). + + # About the context flags: + - **UsedHint = True** → The student viewed or used a hint while solving this problem. + - **SawAnswer = True** → The student saw the correct answer before or during the attempt. + When either of these flags is True, treat the corresponding response as *less reliable evidence of mastery* — it indicates that the student has not fully learned the concept and required help solving the problem. +""" + + prompt += "**Student's Previous Problems:**\n\n" + for item in student_history: + prompt += f"Timestamp: {item['timestamp']}\n" + prompt += f"Problem: {item['problem_text']}\n" + prompt += f"Problem Type: {item['problem_type']}\n" + if item.get('answer_options_formatted'): + prompt += f"Options:\n{item['answer_options_formatted']}\n" + prompt += f"Correct Answer: {item['correct_answer']}\n" + prompt += f"Student's First Answer: {item['student_answer']}\n" + prompt += f"UsedHint: {item['used_hint']}\n" + prompt += f"SawAnswer: {item['saw_answer']}\n" + if item.get('node_name'): + prompt += f"Skill: {item['node_name']}\n" + else: + prompt += f"Skill: Undefined\n" + prompt += "---\n\n" + + prompt += "**New Problem to Predict:**\n\n" + prompt += f"Timestamp: {new_problem['timestamp']}\n" + prompt += f"Problem: {new_problem['problem_text']}\n" + prompt += f"Problem Type: {new_problem['problem_type']}\n" + if new_problem.get('answer_options_formatted'): + prompt += f"Answer Options:\n{new_problem['answer_options_formatted']}\n" + prompt += f"Correct Answer: {new_problem['correct_answer']}\n" + if new_problem.get('node_name'): + prompt += f"Skill: {new_problem['node_name']}\n" + else: + prompt += f"Skill: Undefined\n" + + return prompt + + +def extract_json_prediction(response_text): + """Extract the final JSON prediction from the model's response.""" + # Find all JSON objects in the response + json_matches = re.findall(r'\{[\s\S]*?\}', response_text) + + if json_matches: + # Take the last JSON object + json_str = json_matches[-1] + try: + # Decode escape sequences (like \n) before parsing + json_str = json_str.encode().decode('unicode_escape') + json_str = json_str.strip() + return json.loads(json_str) + except json.JSONDecodeError as e: + print(f"JSON decode error: {e}") + print(f"Attempted to parse:\n{json_str}") + except Exception as e: + print(f"Error processing JSON: {e}") + return None + + +def get_prediction_id(meta): + """Generate unique ID for a prediction""" + return f"{meta['user_id']}_{meta['bin_number']}_{meta['prediction_type']}" + + +def load_completed_predictions(output_jsonl): + """Load already-completed prediction IDs from JSONL file""" + completed = set() + if os.path.exists(output_jsonl): + with open(output_jsonl, 'r') as f: + for line in f: + if line.strip(): + result = json.loads(line) + completed.add(result['prediction_id']) + print(f"Loaded {len(completed)} completed predictions from {output_jsonl}") + return completed + + +def make_process_single_user(system_prompt): + """Create a process_single_user function with the given system prompt.""" + def process_single_user(args): + """Process a single user's data and return prompts and metadata.""" + user_id, user_records, min_history, bin_size = args + + prompts = [] + metadata = [] + + # Check if user has at least min_history + 1 rows + if len(user_records) < min_history + 1: + return prompts, metadata + + num_bins = (len(user_records) - min_history) // bin_size + + # Build initial history + student_history = [] + for hist_idx in range(min_history): + row = user_records[hist_idx] + student_history.append({ + 'problem_id': row['problem_id'], + 'timestamp': row['end_time'], + 'problem_text': row['cleaned body'], + 'correct_answer': row['Fill-in Answers'], + 'answer_options': row['answer_options'] if pd.notna(row['answer_options']) else None, + 'answer_options_formatted': row['answer_options_formatted'] if pd.notna(row.get('answer_options_formatted')) else None, + 'student_answer': row['answer_text'], + 'used_hint': row['hint_count'] > 0, + 'saw_answer': row['saw_answer'], + 'problem_type': row['Problem Type'], + 'node_name': row.get('node_name') + }) + + for bin_idx in range(num_bins): + # Extend history with previous bin's items + if bin_idx > 0: + prev_bin_start = min_history + ((bin_idx - 1) * bin_size) + prev_bin_end = min_history + (bin_idx * bin_size) + for hist_idx in range(prev_bin_start, prev_bin_end): + row = user_records[hist_idx] + student_history.append({ + 'problem_id': row['problem_id'], + 'timestamp': row['end_time'], + 'problem_text': row['cleaned body'], + 'correct_answer': row['Fill-in Answers'], + 'answer_options': row['answer_options'] if pd.notna(row['answer_options']) else None, + 'answer_options_formatted': row['answer_options_formatted'] if pd.notna(row.get('answer_options_formatted')) else None, + 'student_answer': row['answer_text'], + 'used_hint': row['hint_count'] > 0, + 'saw_answer': row['saw_answer'], + 'problem_type': row['Problem Type'], + 'node_name': row.get('node_name') + }) + + history_end = min_history + (bin_idx * bin_size) + bin_start = history_end + bin_end = bin_start + bin_size + current_bin = user_records[bin_start:bin_end] + + # Find first correct and first incorrect in this bin + first_correct_idx = None + first_incorrect_idx = None + + for idx, row in enumerate(current_bin): + actual_idx = bin_start + idx + score = row['discrete_score'] + + if score == 1 and first_correct_idx is None: + first_correct_idx = actual_idx + if score == 0 and first_incorrect_idx is None: + first_incorrect_idx = actual_idx + + if first_correct_idx is not None and first_incorrect_idx is not None: + break + + # Create predictions for found cases + for target_idx, prediction_type in [ + (first_correct_idx, 'correct'), + (first_incorrect_idx, 'incorrect') + ]: + if target_idx is None: + continue + + target_row = user_records[target_idx] + new_problem = { + 'problem_text': target_row['cleaned body'], + 'correct_answer': target_row['Fill-in Answers'], + 'answer_options': target_row['answer_options'] if pd.notna(target_row['answer_options']) else None, + 'answer_options_formatted': target_row['answer_options_formatted'] if pd.notna(target_row.get('answer_options_formatted')) else None, + 'problem_type': target_row['Problem Type'], + 'timestamp': target_row['end_time'], + 'node_name': target_row.get('node_name') + } + + user_prompt = create_user_prompt(student_history, new_problem, None) + full_prompt = system_prompt + "\n\n" + user_prompt + + prompts.append(full_prompt) + metadata.append({ + 'prediction_id': f"{user_id}_{bin_idx}_{prediction_type}", + 'row_index': target_idx, + 'user_id': user_id, + 'history_size': len(student_history), + 'bin_number': bin_idx, + 'prediction_type': prediction_type, + 'id': target_row.get('id_x', None), + 'problem_id': target_row.get('problem_id', None), + 'problem_type': target_row['Problem Type'], + 'actual_answer': target_row['answer_text'], + 'correct_answer': target_row['Fill-in Answers'], + 'actual_score': target_row['discrete_score'], + 'prompt': full_prompt + }) + + return prompts, metadata + + return process_single_user + + +def append_results_jsonl(results, output_jsonl): + """Append batch results to JSONL file""" + with open(output_jsonl, 'a') as f: + for result in results: + f.write(json.dumps(result, cls=NumpyEncoder) + '\n') + + +def process_batch(batch_metadata, batch_response_texts): + """Process a batch of responses and return results.""" + batch_results = [] + + for metadata, response_text in zip(batch_metadata, batch_response_texts): + # Extract prediction + prediction = extract_json_prediction(response_text) + + if prediction: + batch_results.append({ + **metadata, + 'predicted_skill_level': prediction.get('skill_level'), + 'predicted_question_level': prediction.get('question_level'), + 'predicted_student_answer': prediction.get('student_answer'), + 'full_response': response_text + }) + else: + batch_results.append({ + **metadata, + 'predicted_skill_level': None, + 'predicted_question_level': None, + 'predicted_student_answer': None, + 'full_response': response_text + }) + + return batch_results + + +# Global variable to hold process_single_user function for multiprocessing +_process_single_user_func = None + + +def _process_single_user_wrapper(args): + """Wrapper for multiprocessing that uses the global function.""" + return _process_single_user_func(args) + + +def run_inference(config): + """ + Main inference function that runs KT prediction with the given model config. + + Args: + config: Dict with keys: + - model_id: HuggingFace model ID + - gen_configs: Dict of generation parameters + - output_prefix: Prefix for output filename + - system_prompt_prefix: Optional prefix for system prompt (e.g., "Reasoning: medium\n\n") + """ + global _process_single_user_func + + model_id = config["model_id"] + gen_configs = config["gen_configs"] + output_prefix = config["output_prefix"] + + # Parse arguments first (needed for reasoning level) + default_output_jsonl = f"{output_prefix}.jsonl" + args = parse_args(default_output_jsonl) + + # Determine system prompt prefix + # CLI --reasoning-level overrides model config if provided + if args.reasoning_level is not None: + if args.reasoning_level == "none": + system_prompt_prefix = "" + else: + system_prompt_prefix = f"Reasoning: {args.reasoning_level}\n\n" + else: + system_prompt_prefix = config.get("system_prompt_prefix", "") + + # Build full system prompt + system_prompt = system_prompt_prefix + BASE_SYSTEM_PROMPT + + # Create the process_single_user function with this system prompt + _process_single_user_func = make_process_single_user(system_prompt) + + batch_size = args.batch_size + data_dir = args.data_dir + cache_dir = args.cache_dir + num_students = args.num_students + bin_size = args.bin_size + min_history = args.min_history + + # Generate output filename with params + n_str = "all" if num_students <= 0 else str(num_students) + params_suffix = f"_n{n_str}_bin{bin_size}_hist{min_history}" + + if args.output: + # Use explicit output path + output_jsonl = args.output + else: + # Auto-generate filename in output directory + filename = f"{output_prefix}{params_suffix}.jsonl" + output_jsonl = os.path.join(args.output_dir, filename) + + # Build input file paths + student_csv = os.path.join(data_dir, STUDENT_FILE) + problems_csv = os.path.join(data_dir, PROBLEMS_FILE) + skill_csv = os.path.join(data_dir, SKILL_FILE) + + print(f"Model: {model_id}") + print(f"Data directory: {data_dir}") + print(f"Batch size: {batch_size}") + print(f"Output JSONL: {output_jsonl}") + print(f"Num students: {num_students if num_students > 0 else 'all'}") + print(f"Bin size: {bin_size}") + print(f"Min history: {min_history}") + if cache_dir: + print(f"Model cache: {cache_dir}") + print(f"Text cleaner: {'legacy (cleantext.py)' if args.legacy_clean else 'default (clean_utils.py)'}") + + # Load the data + print("\nLoading data...") + student_df = pd.read_csv(student_csv) + student_df = student_df.sort_values(['user_id', 'id']).reset_index(drop=True) + problems_df = pd.read_csv(problems_csv) + clean_func = clean_text_legacy if args.legacy_clean else clean_problem_body + problems_df['cleaned body'] = problems_df['Problem Body'].apply(clean_func) + + # Label answer options for multiple-choice items + problems_df['answer_options'] = problems_df['Multiple Choice Options'].apply(label_answer_options) + + # Get correct answer letters for multiple-choice, keep original for fill-in + problems_df['correct_answers'] = problems_df.apply( + lambda row: get_correct_option_letters(row['answer_options'], row['Multiple Choice Answers']) + if row['Problem Type'] in ['Multiple Choice (select 1)', 'Multiple Choice (select all)'] + else row['Fill-in Answers'], + axis=1 + ) + + skill_df = pd.read_csv(skill_csv) + problems_df = pd.merge(problems_df, skill_df, on='problem_id', how='left') + + # Pre-compute formatted answer options once per problem + problems_df['answer_options_formatted'] = problems_df['answer_options'].apply( + lambda x: format_answer_options_for_prompt(x) if pd.notna(x) else None + ) + + # Sort student data by id (chronological order) + student_df = student_df.sort_values('id').reset_index(drop=True) + + # Merge with problems data + merged_df = student_df.merge(problems_df, on='problem_id', how='inner') + + # Convert student answers to letter format for multiple-choice problems + merged_df['answer_text'] = merged_df.apply( + lambda row: match_student_answer_to_letters(row['answer_text'], row['answer_options']) + if row['Problem Type'] in ['Multiple Choice (select 1)', 'Multiple Choice (select all)'] and pd.notna(row['answer_options']) + else row['answer_text'], + axis=1 + ) + + # Select users (all or random sample) + all_users = merged_df['user_id'].unique() + if num_students <= 0: + # Use all students + selected_users = all_users + print(f"\nUsing all {len(all_users)} users") + else: + # Random sample + np.random.seed(42) # For reproducibility + selected_users = np.random.choice(all_users, size=min(num_students, len(all_users)), replace=False) + merged_df = merged_df[merged_df['user_id'].isin(selected_users)] + print(f"\nSelected {len(selected_users)} random users from {len(all_users)} total users") + print(f"Filtered data: {len(merged_df)} rows") + + # Prepare data for batch processing + print("\nPreparing prompts in parallel...") + + # Prepare user groups for parallel processing + print("Grouping user data...") + user_groups = [ + (user_id, user_df.to_dict('records'), min_history, bin_size) + for user_id, user_df in merged_df.groupby('user_id') + ] + print(f"Processing {len(user_groups)} users with {cpu_count()} CPU cores...") + + # Process users in parallel + all_prompts = [] + all_metadata = [] + + with Pool(processes=cpu_count()) as pool: + results = list(tqdm( + pool.imap(_process_single_user_wrapper, user_groups), + total=len(user_groups), + desc="Preparing prompts" + )) + + # Merge results + for prompts, metadata in results: + all_prompts.extend(prompts) + all_metadata.extend(metadata) + + print(f"\nTotal predictions to make: {len(all_prompts)}") + + # Filter out already-completed predictions (resume support) + completed_ids = load_completed_predictions(output_jsonl) + remaining = [(p, m) for p, m in zip(all_prompts, all_metadata) + if m['prediction_id'] not in completed_ids] + + if not remaining: + print("All predictions already completed!") + return + + all_prompts, all_metadata = zip(*remaining) + all_prompts = list(all_prompts) + all_metadata = list(all_metadata) + + print(f"Already completed: {len(completed_ids)}") + print(f"Remaining to process: {len(all_prompts)}") + print(f"Processing in batches of {batch_size}") + + # Initialize vLLM engine + print("\nInitializing vLLM engine...") + sampling_params = SamplingParams(**gen_configs) + llm_kwargs = { + "model": model_id, + "tensor_parallel_size": args.num_gpus, + "trust_remote_code": True, + "gpu_memory_utilization": args.gpu_memory_utilization, + "enable_prefix_caching": True, + } + if args.max_num_seqs is not None: + llm_kwargs["max_num_seqs"] = args.max_num_seqs + if args.max_model_len is not None: + llm_kwargs["max_model_len"] = args.max_model_len + if cache_dir: + llm_kwargs["download_dir"] = cache_dir + llm = LLM(**llm_kwargs) + + # Process in batches + results = [] + num_batches = (len(all_prompts) + batch_size - 1) // batch_size + + for batch_idx in range(num_batches): + batch_start = batch_idx * batch_size + batch_end = min(batch_start + batch_size, len(all_prompts)) + + batch_prompts = all_prompts[batch_start:batch_end] + batch_metadata = all_metadata[batch_start:batch_end] + + print(f"\n{'='*80}") + print(f"Processing batch {batch_idx + 1}/{num_batches}") + print(f"Items: {batch_start} to {batch_end} ({len(batch_prompts)} prompts)") + print(f"{'='*80}") + + # Generate predictions for this batch + try: + outputs = llm.generate(batch_prompts, sampling_params) + response_texts = [o.outputs[0].text.strip() for o in outputs] + + # Process results for this batch + batch_results = process_batch(batch_metadata, response_texts) + results.extend(batch_results) + + print(f"Successfully processed batch {batch_idx + 1}") + print(f"Total results so far: {len(results)}") + + # Append results immediately after each batch + append_results_jsonl(batch_results, output_jsonl) + print(f"Saved {len(batch_results)} results to {output_jsonl}") + + except Exception as e: + print(f"\nERROR processing batch {batch_idx + 1}: {str(e)}") + print(f"Progress saved in {output_jsonl} - restart to resume") + raise + + print(f"\n{'='*80}") + print("All batches processed successfully!") + print(f"{'='*80}") + print(f"\nAll results saved to {output_jsonl}") + print(f"Total predictions processed: {len(results)}") + + # Cleanup + print("\nCleaning up...") + destroy_model_parallel() + destroy_distributed_environment() + del llm + with contextlib.suppress(AssertionError): + torch.distributed.destroy_process_group() + gc.collect() + torch.cuda.empty_cache() + + print("\nDone!") + exit(0) diff --git a/Code/llama33_70b_instruct_vllm.py b/Code/llama33_70b_instruct_vllm.py new file mode 100644 index 0000000000000000000000000000000000000000..d836df08da3c90b1cd9e553e65821001b3797d0b --- /dev/null +++ b/Code/llama33_70b_instruct_vllm.py @@ -0,0 +1,30 @@ +""" +Knowledge Tracing inference with Llama-3.3-70B-Instruct model. + +Usage: + CUDA_VISIBLE_DEVICES=0,1,2,3 python llama33_70b_instruct_vllm.py \ + --data-dir foundationalktdataset/ \ + --num-gpus 4 \ + --batch-size 10 \ + --cache-dir /data1/ \ + --num-students 500 \ + --bin-size 50 \ + --min-history 50 +""" + +from kt_inference_base import run_inference + +MODEL_CONFIG = { + "model_id": "meta-llama/Llama-3.3-70B-Instruct", + "gen_configs": { + "temperature": 0.7, + "top_p": 0.9, + "max_tokens": 32768, + "repetition_penalty": 1.0, + }, + "output_prefix": "llama33_70b_instruct", + "system_prompt_prefix": "", # No prefix - standard instruct model +} + +if __name__ == "__main__": + run_inference(MODEL_CONFIG) diff --git a/Code/plot_student_attempt_distribution.py b/Code/plot_student_attempt_distribution.py new file mode 100644 index 0000000000000000000000000000000000000000..6c86374ea8f851f859845b404ca888d6c6b87b09 --- /dev/null +++ b/Code/plot_student_attempt_distribution.py @@ -0,0 +1,357 @@ +#!/usr/bin/env python3 +"""Plot distribution of student attempts over elapsed time. + +This script reads FoundationalASSIST `Interactions.csv`, computes elapsed time +for each attempt from the student's first attempt, groups attempts into fixed +time bins, and plots the resulting column distribution. +""" + +from __future__ import annotations + +import argparse +import math +from pathlib import Path + +import matplotlib.pyplot as plt +import pandas as pd +from matplotlib.ticker import FuncFormatter, MaxNLocator + + +DEFAULT_INTERACTIONS_PATH = ( + Path(__file__).resolve().parent.parent / "Data" / "Interactions.csv" +) +DEFAULT_OUTPUT_PLOT = ( + Path(__file__).resolve().parent.parent + / "Results" + / "student_attempt_distribution.png" +) +DEFAULT_OUTPUT_COUNTS = ( + Path(__file__).resolve().parent.parent + / "Results" + / "student_attempt_distribution_counts.csv" +) + + +def parse_args() -> argparse.Namespace: + parser = argparse.ArgumentParser( + description=( + "Compute distribution of attempts over elapsed time from " + "Interactions.csv and plot binned columns." + ) + ) + parser.add_argument( + "--interactions-path", + type=Path, + default=DEFAULT_INTERACTIONS_PATH, + help="Path to Interactions.csv.", + ) + parser.add_argument( + "--output-plot", + type=Path, + default=DEFAULT_OUTPUT_PLOT, + help="Path to save the output figure.", + ) + parser.add_argument( + "--output-counts", + type=Path, + default=DEFAULT_OUTPUT_COUNTS, + help="Path to save binned attempt counts as CSV.", + ) + parser.add_argument( + "--max-rows", + type=int, + default=None, + help="Optional cap on rows after sorting (for quick debugging).", + ) + parser.add_argument( + "--bin-time", + type=float, + default=10.0, + help=( + "Fixed bin width in minutes. " + "For example, --bin-time 10 creates bins [0,10), [10,20), ..." + ), + ) + parser.add_argument( + "--plot-upper-limit-minutes", + type=float, + default=None, + help=( + "Optional upper limit for x-axis in minutes. " + "If omitted, uses the full range implied by bins." + ), + ) + parser.add_argument( + "--student-idx", + type=int, + default=None, + help=( + "Optional 0-based index of student to plot. Index is based on " + "sorted unique user_id values in the loaded interactions." + ), + ) + parser.add_argument( + "--log-y", + action="store_true", + help="Use log scale on y-axis.", + ) + return parser.parse_args() + + +def load_interactions(path: Path, max_rows: int | None = None) -> pd.DataFrame: + """Load fields required for student attempt timing analysis.""" + usecols = ["id", "user_id", "end_time"] + df = pd.read_csv(path, usecols=usecols, low_memory=False) + + df["id"] = pd.to_numeric(df["id"], errors="coerce") + df["id"] = df["id"].fillna(-1).astype(int) + df["user_id"] = df["user_id"].astype("string") + df["end_time"] = pd.to_datetime(df["end_time"], errors="coerce", utc=True) + + df = df.dropna(subset=["user_id", "end_time"]).copy() + df = df.sort_values(["user_id", "end_time", "id"], kind="mergesort") + + if max_rows is not None: + if max_rows <= 0: + raise ValueError("--max-rows must be a positive integer.") + df = df.head(max_rows).copy() + + return df + + +def select_student_by_index( + df: pd.DataFrame, + student_idx: int, +) -> tuple[pd.DataFrame, str, int]: + """Select one student's interactions by 0-based index over unique IDs.""" + student_ids = df["user_id"].drop_duplicates().tolist() + total_students = len(student_ids) + + if total_students == 0: + raise ValueError("No students found in loaded interactions.") + if student_idx < 0 or student_idx >= total_students: + raise ValueError( + f"--student-idx must be in [0, {total_students - 1}], got {student_idx}." + ) + + selected_student_id = str(student_ids[student_idx]) + selected_df = df[df["user_id"] == selected_student_id].copy() + return selected_df, selected_student_id, total_students + + +def append_student_id_to_output_path(path: Path, student_id: str) -> Path: + """Append a safe student-id suffix to output filename.""" + safe_id = "".join( + ch if ch.isalnum() or ch in ("-", "_") else "_" for ch in student_id + ) + return path.with_name(f"{path.stem}_{safe_id}{path.suffix}") + + +def compute_attempt_elapsed_minutes(df: pd.DataFrame) -> pd.Series: + """Compute elapsed minutes of each attempt from student's first attempt.""" + first_times = df.groupby("user_id", sort=False)["end_time"].transform("min") + elapsed_minutes = (df["end_time"] - first_times).dt.total_seconds() / 60.0 + elapsed_minutes.name = "elapsed_minutes" + return elapsed_minutes + + +def build_fixed_width_bin_edges_minutes( + valid_elapsed_minutes: pd.Series, + bin_time_minutes: float, +) -> list[float]: + """Build fixed-width bin edges from min/max elapsed minutes.""" + min_elapsed = float(valid_elapsed_minutes.min()) + max_elapsed = float(valid_elapsed_minutes.max()) + + start = bin_time_minutes * math.floor(min_elapsed / bin_time_minutes) + end = bin_time_minutes * math.ceil(max_elapsed / bin_time_minutes) + + if math.isclose(start, 0.0, abs_tol=1e-12): + start = 0.0 + if math.isclose(end, start, abs_tol=1e-12): + end = start + bin_time_minutes + + n_bins = int(round((end - start) / bin_time_minutes)) + edges = [start + i * bin_time_minutes for i in range(n_bins + 1)] + if edges[-1] <= max_elapsed: + edges.append(edges[-1] + bin_time_minutes) + + return edges + + +def format_minutes_tick(value: float, _pos: float) -> str: + if value < 60: + return f"{value:.0f}m" + if value < 1440: + return f"{value / 60:.0f}h" + return f"{value / 1440:.0f}d" + + +def summarize_attempt_distribution( + elapsed_minutes: pd.Series, + bin_time_minutes: float, +) -> pd.DataFrame: + valid = elapsed_minutes.dropna().copy() + if valid.empty: + raise ValueError("No valid elapsed attempt times found.") + + edges = build_fixed_width_bin_edges_minutes(valid, bin_time_minutes) + binned = pd.cut(valid, bins=edges, right=False, include_lowest=True) + counts = binned.value_counts(sort=False) + total_attempts = int(counts.sum()) + probabilities = (counts / total_attempts).astype(float) + + bin_left = pd.Series(edges[:-1], dtype=float) + bin_right = pd.Series(edges[1:], dtype=float) + bin_width = bin_right - bin_left + + summary = pd.DataFrame( + { + "bin_left_min": bin_left.to_numpy(), + "bin_right_min": bin_right.to_numpy(), + "bin_width_min": bin_width.to_numpy(), + "attempt_count": counts.to_numpy(), + "probability": probabilities.to_numpy(dtype=float), + "percentage": probabilities.to_numpy(dtype=float) * 100.0, + } + ) + return summary + + +def plot_distribution( + summary_df: pd.DataFrame, + output_path: Path, + log_y: bool = False, + plot_upper_limit_minutes: float | None = None, + student_idx: int | None = None, +) -> None: + """Create and save student-attempt distribution columns.""" + output_path.parent.mkdir(parents=True, exist_ok=True) + + plt.style.use("seaborn-v0_8-whitegrid") + if student_idx is not None: + fig, ax = plt.subplots(figsize=(10, 5)) + else: + fig, ax = plt.subplots(figsize=(20, 5)) + + left = summary_df["bin_left_min"].to_numpy(dtype=float) + width = summary_df["bin_width_min"].to_numpy(dtype=float) + counts = summary_df["attempt_count"].to_numpy(dtype=float) + + bars = ax.bar( + left, + counts, + width=width, + align="edge", + color="#4C78A8", + # edgecolor="white", + # linewidth=1.0, + ) + + title = "Distribution of Student Attempts Over Elapsed Time" + if student_idx is not None: + title = f"{title} (student_idx={student_idx})" + ax.set_title(title) + ax.set_xlabel("Elapsed Time Since Student's First Attempt") + ax.set_ylabel("Number of Attempts") + + x_min = float(left.min()) + x_max = float((left + width).max()) + if plot_upper_limit_minutes is not None: + x_max = min(x_max, float(plot_upper_limit_minutes)) + ax.set_xlim(x_min, x_max) + + ax.xaxis.set_major_locator(MaxNLocator(nbins=9)) + ax.xaxis.set_major_formatter(FuncFormatter(format_minutes_tick)) + ax.grid(axis="y", alpha=0.25, linewidth=0.8) + ax.spines["top"].set_visible(False) + ax.spines["right"].set_visible(False) + + if log_y: + ax.set_yscale("log") + + annotate_bars = len(summary_df) <= 40 + if annotate_bars: + for bar, pct in zip(bars, summary_df["percentage"]): + if pct < 1.0: + continue + h = bar.get_height() + if h <= 0: + continue + ax.annotate( + f"{pct:.1f}%", + xy=(bar.get_x() + bar.get_width() / 2.0, h), + xytext=(0, 3), + textcoords="offset points", + ha="center", + va="bottom", + fontsize=8, + ) + + plt.tight_layout() + fig.savefig(output_path, dpi=400, bbox_inches="tight") + plt.close(fig) + + +def main() -> None: + args = parse_args() + + if not args.interactions_path.exists(): + raise FileNotFoundError( + f"Interactions file not found: {args.interactions_path}" + ) + if args.bin_time <= 0: + raise ValueError("--bin-time must be a positive number.") + if args.plot_upper_limit_minutes is not None and args.plot_upper_limit_minutes <= 0: + raise ValueError("--plot-upper-limit-minutes must be a positive number.") + + df = load_interactions(args.interactions_path, max_rows=args.max_rows) + + selected_student_id: str | None = None + total_students = int(df["user_id"].nunique()) + if args.student_idx is not None: + df, selected_student_id, total_students = select_student_by_index( + df, + args.student_idx, + ) + + output_plot_path = args.output_plot + output_counts_path = args.output_counts + if selected_student_id is not None: + output_plot_path = append_student_id_to_output_path( + output_plot_path, + selected_student_id, + ) + output_counts_path = append_student_id_to_output_path( + output_counts_path, + selected_student_id, + ) + + elapsed_minutes = compute_attempt_elapsed_minutes(df) + summary = summarize_attempt_distribution(elapsed_minutes, args.bin_time) + output_counts_path.parent.mkdir(parents=True, exist_ok=True) + summary.to_csv(output_counts_path, index=False) + + plot_distribution( + summary, + output_plot_path, + log_y=args.log_y, + plot_upper_limit_minutes=args.plot_upper_limit_minutes, + student_idx=args.student_idx, + ) + + total_attempts = int(summary["attempt_count"].sum()) + print("Done.") + print(f"Interactions loaded: {len(df):,}") + print(f"Students in loaded data: {total_students:,}") + if selected_student_id is not None: + print(f"Selected student idx: {args.student_idx}") + print(f"Selected student id: {selected_student_id}") + print(f"Attempts used: {total_attempts:,}") + print(f"Bin width (min): {args.bin_time}") + print(f"Saved plot: {output_plot_path}") + print(f"Saved bin counts: {output_counts_path}") + + +if __name__ == "__main__": + main() diff --git a/Code/plot_timegap_distribution.py b/Code/plot_timegap_distribution.py new file mode 100644 index 0000000000000000000000000000000000000000..a116d21a0df920ad1c1c6aab53129fdf980bd224 --- /dev/null +++ b/Code/plot_timegap_distribution.py @@ -0,0 +1,484 @@ +#!/usr/bin/env python3 +"""Plot the distribution of time gaps between consecutive student attempts. + +This script reads FoundationalASSIST `Interactions.csv`, groups interactions by +student (`user_id`), computes the time difference between each pair of +consecutive attempts (`end_time`), discretizes these differences into bins, and +plots the resulting distribution. +""" + +from __future__ import annotations + +import argparse +import math +from pathlib import Path + +import matplotlib.pyplot as plt +import pandas as pd +from matplotlib.ticker import FuncFormatter, MaxNLocator + + +DEFAULT_INTERACTIONS_PATH = ( + Path(__file__).resolve().parent.parent / "Data" / "Interactions.csv" +) +DEFAULT_OUTPUT_PLOT = ( + Path(__file__).resolve().parent.parent / "Results" / "time_gap_distribution.png" +) +DEFAULT_OUTPUT_COUNTS = ( + Path(__file__).resolve().parent.parent + / "Results" + / "time_gap_distribution_counts.csv" +) +CDF_MARKER_MINUTES = 60.0 + + +def parse_args() -> argparse.Namespace: + parser = argparse.ArgumentParser( + description=( + "Compute per-student consecutive-attempt time gaps from " + "Interactions.csv and plot their binned distribution." + ) + ) + parser.add_argument( + "--interactions-path", + type=Path, + default=DEFAULT_INTERACTIONS_PATH, + help="Path to Interactions.csv.", + ) + parser.add_argument( + "--output-plot", + type=Path, + default=DEFAULT_OUTPUT_PLOT, + help="Path to save the output figure.", + ) + parser.add_argument( + "--output-counts", + type=Path, + default=DEFAULT_OUTPUT_COUNTS, + help="Path to save bin counts as CSV.", + ) + parser.add_argument( + "--max-rows", + type=int, + default=None, + help="Optional cap on rows after sorting (for quick debugging).", + ) + parser.add_argument( + "--keep-nonpositive-gaps", + action="store_true", + help=( + "Keep zero/negative gaps. By default, only strictly positive " + "gaps are used." + ), + ) + parser.add_argument( + "--log-y", + action="store_true", + help="Use log scale on y-axis.", + ) + parser.add_argument( + "--plot-upper-limit-minutes", + type=float, + default=None, + help=( + "Optional upper limit for x-axis in minutes. " + "If omitted, uses the full range implied by bins." + ), + ) + parser.add_argument( + "--bin-time", + type=float, + default=None, + help=( + "Optional fixed bin width in minutes. " + "For example, --bin-time 10 creates bins [0,10), [10,20), ..." + ), + ) + parser.add_argument( + "--student-idx", + type=int, + default=None, + help=( + "Optional 0-based index of student to plot. Index is based on " + "sorted unique user_id values in the loaded interactions." + ), + ) + return parser.parse_args() + + +def load_interactions(path: Path, max_rows: int | None = None) -> pd.DataFrame: + """Load the minimum columns required for time-gap analysis.""" + usecols = ["id", "user_id", "end_time"] + df = pd.read_csv(path, usecols=usecols, low_memory=False) + + df["id"] = pd.to_numeric(df["id"], errors="coerce") + df["id"] = df["id"].fillna(-1).astype(int) + df["user_id"] = df["user_id"].astype("string") + df["end_time"] = pd.to_datetime(df["end_time"], errors="coerce", utc=True) + + df = df.dropna(subset=["user_id", "end_time"]).copy() + df = df.sort_values(["user_id", "end_time", "id"], kind="mergesort") + + if max_rows is not None: + if max_rows <= 0: + raise ValueError("--max-rows must be a positive integer.") + df = df.head(max_rows).copy() + + return df + + +def compute_time_gaps_minutes(df: pd.DataFrame) -> pd.Series: + """Compute consecutive attempt gaps per student in minutes.""" + gaps_seconds = ( + df.groupby("user_id", sort=False)["end_time"].diff().dt.total_seconds() + ) + return gaps_seconds / 60.0 + + +def default_bin_edges_minutes() -> list[float]: + """Base minute-scale edges (final open tail may be added from data max).""" + return [ + 0.0, + 1.0, + 5.0, + 10.0, + 30.0, + 60.0, + 180.0, + 720.0, + 1440.0, + 4320.0, + 10080.0, + ] + + +def build_bin_edges_minutes(valid: pd.Series) -> list[float]: + """Build finite plotting edges so bar widths are proportional on x-axis.""" + edges = default_bin_edges_minutes() + base_tail_start = edges[-1] + max_gap = float(valid.max()) + + if max_gap > base_tail_start: + # Add a finite terminal edge that fully contains the data tail. + tail_edge = max(base_tail_start + 60.0, max_gap * 1.05) + edges.append(tail_edge) + + return edges + + +def build_fixed_width_bin_edges_minutes( + valid: pd.Series, bin_time_minutes: float +) -> list[float]: + """Build fixed-width edges from min/max observed gaps.""" + min_gap = float(valid.min()) + max_gap = float(valid.max()) + + start = bin_time_minutes * math.floor(min_gap / bin_time_minutes) + end = bin_time_minutes * math.ceil(max_gap / bin_time_minutes) + + if math.isclose(start, 0.0, abs_tol=1e-12): + start = 0.0 + if math.isclose(end, start, abs_tol=1e-12): + end = start + bin_time_minutes + + n_bins = int(round((end - start) / bin_time_minutes)) + edges = [start + i * bin_time_minutes for i in range(n_bins + 1)] + if edges[-1] <= max_gap: + edges.append(edges[-1] + bin_time_minutes) + + return edges + + +def format_bin_bound(minutes: float) -> str: + if math.isclose(minutes, round(minutes), abs_tol=1e-9): + return str(int(round(minutes))) + return f"{minutes:.2f}".rstrip("0").rstrip(".") + + +def make_bin_labels( + edges: list[float], open_tail_from: float | None = None +) -> list[str]: + labels: list[str] = [] + last_idx = len(edges) - 2 + for idx, (left, right) in enumerate(zip(edges[:-1], edges[1:])): + if open_tail_from is not None and idx == last_idx and left >= open_tail_from: + labels.append(f">= {format_bin_bound(left)} min") + else: + labels.append(f"[{format_bin_bound(left)}, {format_bin_bound(right)}) min") + return labels + + +def format_minutes_tick(value: float, _pos: float) -> str: + if value < 60: + return f"{int(round(value))}m" + + if value < 1440: + hours = value / 60.0 + if math.isclose(hours, round(hours), abs_tol=1e-9): + return f"{int(round(hours))}h" + return f"{hours:.1f}h" + + days = value / 1440.0 + if math.isclose(days, round(days), abs_tol=1e-9): + return f"{int(round(days))}d" + return f"{days:.1f}d" + + +def summarize_binned_distribution( + gaps_minutes: pd.Series, + keep_nonpositive: bool, + bin_time_minutes: float | None = None, +) -> pd.DataFrame: + valid = filter_valid_gaps(gaps_minutes, keep_nonpositive) + + if valid.empty: + raise ValueError("No valid time gaps found after filtering.") + + if bin_time_minutes is not None: + edges = build_fixed_width_bin_edges_minutes(valid, bin_time_minutes) + open_tail_from = None + else: + base_edges = default_bin_edges_minutes() + edges = build_bin_edges_minutes(valid) + open_tail_from = base_edges[-1] if len(edges) > len(base_edges) else None + + labels = make_bin_labels(edges, open_tail_from=open_tail_from) + binned = pd.cut(valid, bins=edges, labels=labels, right=False, include_lowest=True) + + counts = binned.value_counts(sort=False) + probabilities = (counts / counts.sum()).astype(float) + + bin_left = pd.Series(edges[:-1], dtype=float) + bin_right = pd.Series(edges[1:], dtype=float) + bin_width = bin_right - bin_left + probabilities_np = probabilities.to_numpy(dtype=float) + density_per_min = probabilities_np / bin_width.to_numpy(dtype=float) + + summary = pd.DataFrame( + { + "bin": counts.index.astype(str), + "bin_left_min": bin_left.to_numpy(), + "bin_right_min": bin_right.to_numpy(), + "bin_width_min": bin_width.to_numpy(), + "count": counts.values, + "probability": probabilities_np, + "percentage": probabilities_np * 100.0, + "density_per_min": density_per_min, + } + ) + return summary + + +def filter_valid_gaps(gaps_minutes: pd.Series, keep_nonpositive: bool) -> pd.Series: + valid = gaps_minutes.dropna().copy() + if not keep_nonpositive: + valid = valid[valid > 0] + return valid + + +def cumulative_probability_at_minutes( + gaps_minutes: pd.Series, + threshold_minutes: float, + keep_nonpositive: bool, +) -> float: + valid = filter_valid_gaps(gaps_minutes, keep_nonpositive) + if valid.empty: + raise ValueError("No valid time gaps found after filtering.") + return float((valid <= threshold_minutes).mean()) + + +def select_student_by_index( + df: pd.DataFrame, + student_idx: int, +) -> tuple[pd.DataFrame, str, int]: + """Select one student's interactions by 0-based index over unique IDs.""" + student_ids = df["user_id"].drop_duplicates().tolist() + total_students = len(student_ids) + + if total_students == 0: + raise ValueError("No students found in loaded interactions.") + if student_idx < 0 or student_idx >= total_students: + raise ValueError( + f"--student-idx must be in [0, {total_students - 1}], got {student_idx}." + ) + + selected_student_id = str(student_ids[student_idx]) + selected_df = df[df["user_id"] == selected_student_id].copy() + return selected_df, selected_student_id, total_students + + +def append_student_id_to_output_path(path: Path, student_id: str) -> Path: + """Append a safe student-id suffix to output filename.""" + safe_id = "".join( + ch if ch.isalnum() or ch in ("-", "_") else "_" for ch in student_id + ) + return path.with_name(f"{path.stem}_{safe_id}{path.suffix}") + + +def plot_distribution( + summary_df: pd.DataFrame, + output_path: Path, + log_y: bool = False, + plot_upper_limit_minutes: float | None = None, + cdf_marker_minutes: float = CDF_MARKER_MINUTES, + cdf_at_marker: float | None = None, + student_idx: int | None = None, +) -> None: + """Create and save a publication-ready distribution histogram.""" + output_path.parent.mkdir(parents=True, exist_ok=True) + + plt.style.use("seaborn-v0_8-whitegrid") + + if student_idx is not None: + fig, ax = plt.subplots(figsize=(10, 5)) + else: + fig, ax = plt.subplots(figsize=(20, 5)) + + left = summary_df["bin_left_min"].to_numpy(dtype=float) + width = summary_df["bin_width_min"].to_numpy(dtype=float) + height = summary_df["density_per_min"].to_numpy(dtype=float) + + bars = ax.bar( + left, + height, + width=width, + align="edge", + color="#4C78A8", + # edgecolor="white", + # linewidth=1.0, + ) + + title = "Distribution of Time Gaps Between Consecutive Attempts" + if student_idx is not None: + title = f"{title} (student_idx={student_idx})" + ax.set_title(title) + ax.set_xlabel("Time Gap") + ax.set_ylabel("Probability Density (1/min)") + x_min = float(left.min()) + x_max = float((left + width).max()) + if plot_upper_limit_minutes is not None: + x_max = min(x_max, float(plot_upper_limit_minutes)) + ax.set_xlim(x_min, x_max) + ax.xaxis.set_major_locator(MaxNLocator(nbins=9)) + ax.xaxis.set_major_formatter(FuncFormatter(format_minutes_tick)) + ax.grid(axis="y", alpha=0.25, linewidth=0.8) + ax.spines["top"].set_visible(False) + ax.spines["right"].set_visible(False) + + if log_y: + ax.set_yscale("log") + + marker_label = f"CDF <= {int(cdf_marker_minutes)} min" + if cdf_at_marker is not None: + marker_label = f"{marker_label}: {cdf_at_marker * 100:.1f}%" + ax.axvline( + cdf_marker_minutes, + color="#E45756", + linestyle="--", + linewidth=1.6, + label=marker_label, + ) + ax.legend(loc="upper right", frameon=False, fontsize=9) + + # Label non-trivial bins for readability in papers. + for bar, pct in zip(bars, summary_df["percentage"]): + if pct < 1.0: + continue + height = bar.get_height() + if height <= 0: + continue + ax.annotate( + f"{pct:.1f}%", + xy=(bar.get_x() + bar.get_width() / 2.0, height), + xytext=(0, 3), + textcoords="offset points", + ha="center", + va="bottom", + fontsize=8, + ) + + plt.tight_layout() + fig.savefig(output_path, dpi=400, bbox_inches="tight") + plt.close(fig) + + +def main() -> None: + args = parse_args() + + if not args.interactions_path.exists(): + raise FileNotFoundError( + f"Interactions file not found: {args.interactions_path}" + ) + + df = load_interactions(args.interactions_path, max_rows=args.max_rows) + selected_student_id: str | None = None + total_students = int(df["user_id"].nunique()) + if args.student_idx is not None: + df, selected_student_id, total_students = select_student_by_index( + df, + args.student_idx, + ) + + output_plot_path = args.output_plot + output_counts_path = args.output_counts + if selected_student_id is not None: + output_plot_path = append_student_id_to_output_path( + output_plot_path, + selected_student_id, + ) + output_counts_path = append_student_id_to_output_path( + output_counts_path, + selected_student_id, + ) + + gaps_minutes = compute_time_gaps_minutes(df) + + if args.plot_upper_limit_minutes is not None and args.plot_upper_limit_minutes <= 0: + raise ValueError("--plot-upper-limit-minutes must be a positive number.") + if args.bin_time is not None and args.bin_time <= 0: + raise ValueError("--bin-time must be a positive number.") + + summary = summarize_binned_distribution( + gaps_minutes, + keep_nonpositive=args.keep_nonpositive_gaps, + bin_time_minutes=args.bin_time, + ) + output_counts_path.parent.mkdir(parents=True, exist_ok=True) + summary.to_csv(output_counts_path, index=False) + + cdf_at_marker = cumulative_probability_at_minutes( + gaps_minutes=gaps_minutes, + threshold_minutes=CDF_MARKER_MINUTES, + keep_nonpositive=args.keep_nonpositive_gaps, + ) + + plot_distribution( + summary, + output_plot_path, + log_y=args.log_y, + plot_upper_limit_minutes=args.plot_upper_limit_minutes, + cdf_marker_minutes=CDF_MARKER_MINUTES, + cdf_at_marker=cdf_at_marker, + student_idx=args.student_idx, + ) + + total_pairs = int(summary["count"].sum()) + print("Done.") + print(f"Interactions loaded: {len(df):,}") + print(f"Students in loaded data: {total_students:,}") + if selected_student_id is not None: + print(f"Selected student idx: {args.student_idx}") + print(f"Selected student id: {selected_student_id}") + print(f"Consecutive attempt pairs used: {total_pairs:,}") + if args.bin_time is not None: + print(f"Bin width (min): {args.bin_time}") + print( + f"Cumulative P(gap <= {int(CDF_MARKER_MINUTES)} min): " + f"{cdf_at_marker * 100:.2f}%" + ) + print(f"Saved plot: {output_plot_path}") + print(f"Saved bin counts: {output_counts_path}") + + +if __name__ == "__main__": + main() diff --git a/Code/plot_totaltime_distribution.py b/Code/plot_totaltime_distribution.py new file mode 100644 index 0000000000000000000000000000000000000000..f2de0f0e7c37ca4c50a1bd180925887844f968e2 --- /dev/null +++ b/Code/plot_totaltime_distribution.py @@ -0,0 +1,433 @@ +#!/usr/bin/env python3 +"""Plot distribution of per-student total time from first to last attempt. + +This script reads FoundationalASSIST `Interactions.csv`, groups interactions by +student (`user_id`), computes each student's total time span from first to last +recorded attempt (`end_time`), discretizes these totals into bins, and plots +the resulting distribution. +""" + +from __future__ import annotations + +import argparse +import math +from pathlib import Path + +import matplotlib.pyplot as plt +import pandas as pd +from matplotlib.ticker import FuncFormatter, MaxNLocator + + +DEFAULT_INTERACTIONS_PATH = ( + Path(__file__).resolve().parent.parent / "Data" / "Interactions.csv" +) +DEFAULT_OUTPUT_PLOT = ( + Path(__file__).resolve().parent.parent / "Results" / "total_time_distribution.png" +) +DEFAULT_OUTPUT_COUNTS = ( + Path(__file__).resolve().parent.parent + / "Results" + / "total_time_distribution_counts.csv" +) +DEFAULT_CDF_MARKER_MINUTES = 1051200.0 + + +def parse_args() -> argparse.Namespace: + parser = argparse.ArgumentParser( + description=( + "Compute per-student total time (first to last attempt) from " + "Interactions.csv and plot the binned distribution." + ) + ) + parser.add_argument( + "--interactions-path", + type=Path, + default=DEFAULT_INTERACTIONS_PATH, + help="Path to Interactions.csv.", + ) + parser.add_argument( + "--output-plot", + type=Path, + default=DEFAULT_OUTPUT_PLOT, + help="Path to save the output figure.", + ) + parser.add_argument( + "--output-counts", + type=Path, + default=DEFAULT_OUTPUT_COUNTS, + help="Path to save bin counts as CSV.", + ) + parser.add_argument( + "--max-rows", + type=int, + default=None, + help="Optional cap on rows after sorting (for quick debugging).", + ) + parser.add_argument( + "--keep-nonpositive-total-times", + action="store_true", + help=( + "Keep zero/negative total times. By default, only strictly " + "positive total times are used." + ), + ) + parser.add_argument( + "--log-y", + action="store_true", + help="Use log scale on y-axis.", + ) + parser.add_argument( + "--plot-upper-limit-minutes", + type=float, + default=None, + help=( + "Optional upper limit for x-axis in minutes. " + "If omitted, uses the full range implied by bins." + ), + ) + parser.add_argument( + "--bin-time", + type=float, + default=None, + help=( + "Optional fixed bin width in minutes. " + "For example, --bin-time 60 creates hourly bins." + ), + ) + parser.add_argument( + "--cdf-marker-minutes", + type=float, + default=DEFAULT_CDF_MARKER_MINUTES, + help="Threshold (in minutes) for plotting cumulative probability marker.", + ) + return parser.parse_args() + + +def load_interactions(path: Path, max_rows: int | None = None) -> pd.DataFrame: + """Load minimum interaction fields required for timing analysis.""" + usecols = ["id", "user_id", "end_time"] + df = pd.read_csv(path, usecols=usecols, low_memory=False) + + df["id"] = pd.to_numeric(df["id"], errors="coerce") + df["id"] = df["id"].fillna(-1).astype(int) + df["user_id"] = df["user_id"].astype("string") + df["end_time"] = pd.to_datetime(df["end_time"], errors="coerce", utc=True) + + df = df.dropna(subset=["user_id", "end_time"]).copy() + df = df.sort_values(["user_id", "end_time", "id"], kind="mergesort") + + if max_rows is not None: + if max_rows <= 0: + raise ValueError("--max-rows must be a positive integer.") + df = df.head(max_rows).copy() + + return df + + +def compute_student_total_times_minutes(df: pd.DataFrame) -> pd.Series: + """Compute per-student total time span from first to last attempt.""" + grouped = df.groupby("user_id", sort=False)["end_time"] + first_times = grouped.min() + last_times = grouped.max() + total_minutes = (last_times - first_times).dt.total_seconds() / 60.0 + total_minutes.name = "total_time_minutes" + return total_minutes + + +def default_bin_edges_minutes() -> list[float]: + """Base edges for total-time distribution in minutes.""" + return [ + 0.0, + 10.0, + 30.0, + 60.0, + 180.0, + 360.0, + 720.0, + 1440.0, + 2880.0, + 4320.0, + 10080.0, + 20160.0, + 43200.0, + 100800.0, + ] + + +def build_bin_edges_minutes(valid: pd.Series) -> list[float]: + """Build finite plotting edges for proportional-width histogram bars.""" + edges = default_bin_edges_minutes() + base_tail_start = edges[-1] + max_total = float(valid.max()) + + if max_total > base_tail_start: + tail_edge = max(base_tail_start + 60.0, max_total * 1.05) + edges.append(tail_edge) + + return edges + + +def build_fixed_width_bin_edges_minutes( + valid: pd.Series, bin_time_minutes: float +) -> list[float]: + """Build fixed-width edges from min/max observed total times.""" + min_total = float(valid.min()) + max_total = float(valid.max()) + + start = bin_time_minutes * math.floor(min_total / bin_time_minutes) + end = bin_time_minutes * math.ceil(max_total / bin_time_minutes) + + if math.isclose(start, 0.0, abs_tol=1e-12): + start = 0.0 + if math.isclose(end, start, abs_tol=1e-12): + end = start + bin_time_minutes + + n_bins = int(round((end - start) / bin_time_minutes)) + edges = [start + i * bin_time_minutes for i in range(n_bins + 1)] + if edges[-1] <= max_total: + edges.append(edges[-1] + bin_time_minutes) + + return edges + + +def format_bin_bound(minutes: float) -> str: + if math.isclose(minutes, round(minutes), abs_tol=1e-9): + return str(int(round(minutes))) + return f"{minutes:.2f}".rstrip("0").rstrip(".") + + +def make_bin_labels( + edges: list[float], open_tail_from: float | None = None +) -> list[str]: + labels: list[str] = [] + last_idx = len(edges) - 2 + for idx, (left, right) in enumerate(zip(edges[:-1], edges[1:])): + if open_tail_from is not None and idx == last_idx and left >= open_tail_from: + labels.append(f">= {format_bin_bound(left)} min") + else: + labels.append(f"[{format_bin_bound(left)}, {format_bin_bound(right)}) min") + return labels + + +def format_minutes_tick(value: float, _pos: float) -> str: + if value < 60: + return f"{value:.0f}m" + if value < 1440: + return f"{value / 60:.0f}h" + return f"{value / 1440:.0f}d" + + +def filter_valid_total_times( + total_times_minutes: pd.Series, keep_nonpositive: bool +) -> pd.Series: + valid = total_times_minutes.dropna().copy() + if not keep_nonpositive: + valid = valid[valid > 0] + return valid + + +def summarize_binned_distribution( + total_times_minutes: pd.Series, + keep_nonpositive: bool, + bin_time_minutes: float | None = None, +) -> pd.DataFrame: + valid = filter_valid_total_times(total_times_minutes, keep_nonpositive) + + if valid.empty: + raise ValueError("No valid total times found after filtering.") + + if bin_time_minutes is not None: + edges = build_fixed_width_bin_edges_minutes(valid, bin_time_minutes) + open_tail_from = None + else: + base_edges = default_bin_edges_minutes() + edges = build_bin_edges_minutes(valid) + open_tail_from = base_edges[-1] if len(edges) > len(base_edges) else None + + labels = make_bin_labels(edges, open_tail_from=open_tail_from) + binned = pd.cut(valid, bins=edges, labels=labels, right=False, include_lowest=True) + + counts = binned.value_counts(sort=False) + probabilities = (counts / counts.sum()).astype(float) + + bin_left = pd.Series(edges[:-1], dtype=float) + bin_right = pd.Series(edges[1:], dtype=float) + bin_width = bin_right - bin_left + probabilities_np = probabilities.to_numpy(dtype=float) + density_per_min = probabilities_np / bin_width.to_numpy(dtype=float) + + summary = pd.DataFrame( + { + "bin": counts.index.astype(str), + "bin_left_min": bin_left.to_numpy(), + "bin_right_min": bin_right.to_numpy(), + "bin_width_min": bin_width.to_numpy(), + "count": counts.values, + "probability": probabilities_np, + "percentage": probabilities_np * 100.0, + "density_per_min": density_per_min, + } + ) + return summary + + +def cumulative_probability_at_minutes( + total_times_minutes: pd.Series, + threshold_minutes: float, + keep_nonpositive: bool, +) -> float: + valid = filter_valid_total_times(total_times_minutes, keep_nonpositive) + if valid.empty: + raise ValueError("No valid total times found after filtering.") + return float((valid <= threshold_minutes).mean()) + + +def plot_distribution( + summary_df: pd.DataFrame, + output_path: Path, + log_y: bool = False, + plot_upper_limit_minutes: float | None = None, + cdf_marker_minutes: float = DEFAULT_CDF_MARKER_MINUTES, + cdf_at_marker: float | None = None, +) -> None: + """Create and save a publication-ready total-time distribution histogram.""" + output_path.parent.mkdir(parents=True, exist_ok=True) + + plt.style.use("seaborn-v0_8-whitegrid") + + fig, ax = plt.subplots(figsize=(20, 5)) + + left = summary_df["bin_left_min"].to_numpy(dtype=float) + width = summary_df["bin_width_min"].to_numpy(dtype=float) + height = summary_df["density_per_min"].to_numpy(dtype=float) + + bars = ax.bar( + left, + height, + width=width, + align="edge", + color="#4C78A8", + # edgecolor="white", + # linewidth=1.0, + ) + + ax.set_title("Distribution of Student Total Time (First to Last Attempt)") + ax.set_xlabel("Total Time Per Student") + ax.set_ylabel("Probability Density (1/min)") + + x_min = float(left.min()) + x_max = float((left + width).max()) + if plot_upper_limit_minutes is not None: + x_max = min(x_max, float(plot_upper_limit_minutes)) + ax.set_xlim(x_min, x_max) + + ax.xaxis.set_major_locator(MaxNLocator(nbins=9)) + ax.xaxis.set_major_formatter(FuncFormatter(format_minutes_tick)) + ax.grid(axis="y", alpha=0.25, linewidth=0.8) + ax.spines["top"].set_visible(False) + ax.spines["right"].set_visible(False) + + if log_y: + ax.set_yscale("log") + + marker_label = f"CDF <= {format_bin_bound(cdf_marker_minutes)} min" + if cdf_at_marker is not None: + marker_label = f"{marker_label}: {cdf_at_marker * 100:.1f}%" + ax.axvline( + cdf_marker_minutes, + color="#E45756", + linestyle="--", + linewidth=1.6, + label=marker_label, + ) + ax.legend(loc="upper right", frameon=False, fontsize=9) + + # Skip dense labeling when there are many bins to keep figure readable. + annotate_bars = len(summary_df) <= 40 + if annotate_bars: + for bar, pct in zip(bars, summary_df["percentage"]): + if pct < 1.0: + continue + h = bar.get_height() + if h <= 0: + continue + ax.annotate( + f"{pct:.1f}%", + xy=(bar.get_x() + bar.get_width() / 2.0, h), + xytext=(0, 3), + textcoords="offset points", + ha="center", + va="bottom", + fontsize=8, + ) + + plt.tight_layout() + fig.savefig(output_path, dpi=400, bbox_inches="tight") + plt.close(fig) + + +def main() -> None: + args = parse_args() + + if not args.interactions_path.exists(): + raise FileNotFoundError( + f"Interactions file not found: {args.interactions_path}" + ) + + if args.plot_upper_limit_minutes is not None and args.plot_upper_limit_minutes <= 0: + raise ValueError("--plot-upper-limit-minutes must be a positive number.") + if args.bin_time is not None and args.bin_time <= 0: + raise ValueError("--bin-time must be a positive number.") + if args.cdf_marker_minutes <= 0: + raise ValueError("--cdf-marker-minutes must be a positive number.") + + df = load_interactions(args.interactions_path, max_rows=args.max_rows) + total_times_minutes = compute_student_total_times_minutes(df) + + summary = summarize_binned_distribution( + total_times_minutes, + keep_nonpositive=args.keep_nonpositive_total_times, + bin_time_minutes=args.bin_time, + ) + summary.to_csv(args.output_counts, index=False) + + cdf_at_marker = cumulative_probability_at_minutes( + total_times_minutes=total_times_minutes, + threshold_minutes=args.cdf_marker_minutes, + keep_nonpositive=args.keep_nonpositive_total_times, + ) + + plot_distribution( + summary, + args.output_plot, + log_y=args.log_y, + plot_upper_limit_minutes=args.plot_upper_limit_minutes, + cdf_marker_minutes=args.cdf_marker_minutes, + cdf_at_marker=cdf_at_marker, + ) + + total_students = int(df["user_id"].nunique()) + students_used = int( + len( + filter_valid_total_times( + total_times_minutes, + keep_nonpositive=args.keep_nonpositive_total_times, + ) + ) + ) + print("Done.") + print(f"Interactions loaded: {len(df):,}") + print(f"Students observed: {total_students:,}") + print(f"Students used in distribution: {students_used:,}") + if args.bin_time is not None: + print(f"Bin width (min): {args.bin_time}") + print( + f"Cumulative P(total_time <= {format_bin_bound(args.cdf_marker_minutes)} min): " + f"{cdf_at_marker * 100:.2f}%" + ) + print(f"Saved plot: {args.output_plot}") + print(f"Saved bin counts: {args.output_counts}") + + +if __name__ == "__main__": + main() diff --git a/Code/process_to_single_file.py b/Code/process_to_single_file.py new file mode 100644 index 0000000000000000000000000000000000000000..fe283cc9876412514a71d3fdcf40bb4da6e411d8 --- /dev/null +++ b/Code/process_to_single_file.py @@ -0,0 +1,820 @@ +#!/usr/bin/env python3 +""" +Convert FoundationalASSIST CSV files to the CSEDM/OEKT JSON format. + +Inputs (under Data/ by default): + - Interactions.csv + - Problems.csv + - Skill_Set.csv + - Skills.csv + +Outputs (under src/data/FoundationalASSIST/ by default): + - dataset.json + - qmatrix.json + - trainset.json + - validset.json + - testset.json + +The produced dataset JSON follows the same schema used by src/data/CSEDM. +""" + +from __future__ import annotations + +import argparse +import json +import random +import re +from pathlib import Path +from typing import Literal, cast + +import pandas as pd +from tqdm import tqdm +from clean_utils import clean_problem_body + +PROJECT_ROOT = Path(__file__).resolve().parents[3] +DEFAULT_DATA_DIR = Path(__file__).resolve().parent.parent / "Data" +DEFAULT_OUTPUT_DIR = PROJECT_ROOT / "src" / "data" / "FoundationalASSIST" +GroupingMode = Literal["none", "1h", "halfday", "day", "week", "month", "year"] + + +def parse_grouping_mode(value: str) -> GroupingMode: + """Normalize grouping mode aliases used by --grouping-time.""" + normalized = value.strip().lower() + aliases: dict[str, GroupingMode] = { + "0": "none", + "0.0": "none", + "none": "none", + "off": "none", + "no": "none", + "1h": "1h", + "hour": "1h", + "halfday": "halfday", + "half-day": "halfday", + "day": "day", + "week": "week", + "month": "month", + "year": "year", + } + mode = aliases.get(normalized) + if mode is None: + valid_values = "1h, halfday, day, week, month, year, none" + raise argparse.ArgumentTypeError( + f"Invalid grouping mode '{value}'. Valid values: {valid_values}." + ) + return mode + + +def parse_args() -> argparse.Namespace: + parser = argparse.ArgumentParser( + description="Convert FoundationalASSIST to CSEDM/OEKT JSON format." + ) + parser.add_argument( + "--data-dir", + type=Path, + default=DEFAULT_DATA_DIR, + help="Directory containing Interactions.csv, Problems.csv, Skills.csv.", + ) + parser.add_argument( + "--output-dir", + type=Path, + default=DEFAULT_OUTPUT_DIR, + help="Directory to write dataset.json/qmatrix.json/split files.", + ) + parser.add_argument( + "--seed", + type=int, + default=42, + help="Random seed used for train/valid/test student split.", + ) + parser.add_argument( + "--train-ratio", + type=float, + default=0.8, + help="Fraction of students in train split.", + ) + parser.add_argument( + "--valid-ratio", + type=float, + default=0.1, + help="Fraction of students in valid split.", + ) + parser.add_argument( + "--test-ratio", + type=float, + default=0.1, + help="Fraction of students in test split.", + ) + parser.add_argument( + "--max-interactions", + type=int, + default=None, + help=( + "Optional cap on number of interaction rows after sorting. " + "Useful for quick smoke tests." + ), + ) + parser.add_argument( + "--grouping-time", + type=parse_grouping_mode, + default="none", + help=( + "Calendar grouping mode per student: 1h, halfday, day, week, " + "month, year, or none." + ), + ) + return parser.parse_args() + + +def _text(v: object) -> str: + if v is None: + return "" + if v is pd.NA: + return "" + if isinstance(v, float) and pd.isna(v): + return "" + return str(v) + + +def _as_int(v: object) -> int: + return int(float(_text(v))) + + +def _as_float(v: object) -> float: + return float(_text(v)) + + +def label_answer_options(answer_string: object) -> dict[str, str] | None: + """Convert pipe-delimited answers to lettered format.""" + answer_text = _text(answer_string).strip() + if not answer_text: + return None + + options = [opt.strip() for opt in answer_text.split("||")] + letters = ["A", "B", "C", "D", "E", "F", "G", "H", "I", "J"] + return {letters[i]: opt for i, opt in enumerate(options) if i < len(letters)} + + +def clean_html_and_normalize(text: object) -> str: + """Remove HTML tags and normalize text for reliable comparisons.""" + normalized = _text(text) + if not normalized: + return "" + + normalized = re.sub(r"<[^>]+>", "", normalized) + normalized = " ".join(normalized.split()) + normalized = re.sub(r"\s*:\s*", ":", normalized) + return normalized.strip() + + +def match_student_answer_to_letters( + student_answer_text: object, + answer_options_dict: dict[str, str] | None, +) -> str: + """Map student multiple-choice answer text(s) to letter labels.""" + answer_text = _text(student_answer_text) + if not answer_text or not answer_options_dict: + return answer_text + + student_answers = [ans.strip() for ans in answer_text.split(" , ")] + normalized_options = { + letter: clean_html_and_normalize(text) + for letter, text in answer_options_dict.items() + } + + matched_letters: list[str] = [] + for student_ans in student_answers: + normalized_student = clean_html_and_normalize(student_ans) + + for letter, normalized_option in normalized_options.items(): + if normalized_student == normalized_option: + matched_letters.append(letter) + break + else: + for letter, normalized_option in normalized_options.items(): + if ( + normalized_student in normalized_option + or normalized_option in normalized_student + ): + matched_letters.append(letter) + break + + if matched_letters: + return ", ".join(sorted(set(matched_letters))) + return answer_text + + +def get_correct_option_letters( + answer_options: dict[str, str] | None, + correct_answers: object, +) -> str: + """Resolve the correct answer text(s) to option letters for MC items.""" + correct_answer_text = _text(correct_answers).strip() + if not answer_options or not correct_answer_text: + return correct_answer_text + + correct_list = [ans.strip() for ans in correct_answer_text.split("||")] + correct_letters = [ + letter for letter, text in answer_options.items() if text in correct_list + ] + return ( + ", ".join(sorted(correct_letters)) if correct_letters else correct_answer_text + ) + + +def format_answer_options_for_prompt(answer_options: dict[str, str] | None) -> str: + """Format answer options dictionary for human-readable prompt text.""" + if not answer_options: + return "" + return "\n".join([f"{letter}) {text}" for letter, text in answer_options.items()]) + + +def load_and_preprocess_problems(problems_path: Path) -> pd.DataFrame: + """Load and preprocess problems with the same answer handling as KT inference.""" + problems_df = pd.read_csv(problems_path, low_memory=False) + problems_df["problem_id"] = pd.to_numeric( + problems_df["problem_id"], errors="coerce" + ) + problems_df = problems_df.dropna(subset=["problem_id"]).copy() + problems_df["problem_id"] = problems_df["problem_id"].astype(int) + + problems_df = problems_df.sort_values(["problem_id"]).drop_duplicates( + subset=["problem_id"], keep="first" + ) + + problems_df["cleaned body"] = problems_df["Problem Body"].apply(clean_problem_body) + problems_df["answer_options"] = problems_df["Multiple Choice Options"].apply( + label_answer_options + ) + + mc_types = {"Multiple Choice (select 1)", "Multiple Choice (select all)"} + problems_df["correct_answers"] = problems_df.apply( + lambda row: ( + get_correct_option_letters( + row["answer_options"], + row["Multiple Choice Answers"], + ) + if _text(row["Problem Type"]).strip() in mc_types + else _text(row.get("Fill-in Answers", "")) + ), + axis=1, + ) + problems_df["answer_options_formatted"] = problems_df["answer_options"].apply( + format_answer_options_for_prompt + ) + return problems_df + + +def load_skill_tables( + skills_path: Path, + skill_set_path: Path, +) -> tuple[list[dict], dict[int, list[int]], int]: + """Load skills and build a problem_id -> skill_ids mapping. + + Returns: + skills: OEKT skill list. + problem_to_skills: Mapping from original problem_id to contiguous skill IDs. + fallback_skill_id: Skill ID for untagged problems. + """ + usecols = ["problem_id", "node_code", "node_name"] + skills_df = pd.read_csv(skills_path, usecols=usecols, low_memory=False) + + skills_df["problem_id"] = pd.to_numeric(skills_df["problem_id"], errors="coerce") + skills_df = skills_df.dropna(subset=["problem_id"]).copy() + skills_df["problem_id"] = skills_df["problem_id"].astype(int) + skills_df["node_code"] = skills_df["node_code"].apply(lambda v: _text(v).strip()) + skills_df["node_name"] = skills_df["node_name"].apply(lambda v: _text(v).strip()) + skills_df = skills_df[skills_df["node_code"] != ""].copy() + + skill_set_df = pd.read_csv( + skill_set_path, + usecols=["index", "skill_code", "full_description"], + low_memory=False, + ) + skill_set_df["index"] = pd.to_numeric(skill_set_df["index"], errors="coerce") + skill_set_df = skill_set_df.dropna(subset=["index"]).copy() + skill_set_df["index"] = skill_set_df["index"].astype(int) + skill_set_df["skill_code"] = skill_set_df["skill_code"].apply( + lambda v: _text(v).strip() + ) + skill_set_df["full_description"] = skill_set_df["full_description"].apply( + lambda v: _text(v).strip() + ) + skill_set_df = skill_set_df[skill_set_df["skill_code"] != ""].copy() + skill_set_df = ( + skill_set_df.sort_values(["index", "skill_code"]) + .drop_duplicates(subset=["skill_code"], keep="first") + .copy() + ) + + node_name_by_code = ( + skills_df.sort_values(["node_code", "node_name"]) + .drop_duplicates(subset=["node_code"], keep="first") + .set_index("node_code")["node_name"] + .to_dict() + ) + + skill_rows: list[tuple[str, int, str, str]] = [] + skill_id_map: dict[str, int] = {} + for row in skill_set_df.itertuples(index=False): + node_code = _text(row.skill_code).strip() + skill_id = _as_int(row.index) - 1 + skill_id_map[node_code] = skill_id + + node_name = _text(node_name_by_code.get(node_code, "")).strip() + name = node_name if node_name else node_code + description = _text(row.full_description).strip() + if not description: + print( + f"Warning: Missing description for skill '{node_code}' in Skill_Set.csv. " + f"Using default description." + ) + + description = ( + f"Common Core State StandardS for Mathematics: Skill {node_code}" + ) + + skill_rows.append((node_code, skill_id, name, description)) + + # max_skill_id = max(skill_id_map.values(), default=-1) + missing_node_codes = sorted( + set(skills_df["node_code"].tolist()) - set(skill_id_map) + ) + # for node_code in missing_node_codes: + # max_skill_id += 1 + # skill_id_map[node_code] = max_skill_id + + # node_name = _text(node_name_by_code.get(node_code, "")).strip() + # name = node_name if node_name else node_code + # description = ( + # node_name + # if node_name + # else f"Common Core State StandardS for Mathematics: Skill {node_code}" + # ) + + # skill_rows.append((node_code, max_skill_id, name, description)) + + if missing_node_codes: + raise ValueError( + f"Error: Found {len(missing_node_codes)} node_code(s) in Skills.csv that are missing from Skill_Set.csv. " + f"Please ensure all node_code values in Skills.csv have a corresponding skill_code in Skill_Set.csv. " + f"Missing node_codes: {missing_node_codes}" + ) + + skills: list[dict] = [] + for _, skill_id, name, description in sorted(skill_rows, key=lambda r: r[0]): + skills.append( + { + "id": skill_id, + "name": name, + "description": description, + "prerequisites": [], + } + ) + + fallback_skill_id = max([s["id"] for s in skills], default=-1) + 1 + skills.append( + { + "id": fallback_skill_id, + "name": "UnmappedSkill", + "description": "Fallback skill for questions without explicit skill tags.", + "prerequisites": [], + } + ) + + problem_to_skills: dict[int, list[int]] = {} + pairs = skills_df[["problem_id", "node_code"]].drop_duplicates() + for row in pairs.itertuples(index=False): + pid = _as_int(row.problem_id) + sid = skill_id_map[_text(row.node_code).strip()] + problem_to_skills.setdefault(pid, []).append(sid) + + for pid, sids in problem_to_skills.items(): + if len(sids) == 0: + print(f"Warning: Problem {pid} has no valid skill mappings.") + problem_to_skills[pid] = sorted(set(sids)) + + return skills, problem_to_skills, fallback_skill_id + + +def build_question_content(problem_row: pd.Series) -> tuple[str, str]: + """Create question content and canonical correct answer from preprocessed fields.""" + body = _text(problem_row.get("cleaned body", "")).strip() + problem_type = _text(problem_row.get("Problem Type", "")).strip() + answer_options_formatted = _text( + problem_row.get("answer_options_formatted", "") + ).strip() + correct_answer = _text(problem_row.get("correct_answers", "")).strip() + + body_parts: list[str] = [] + if body: + body_parts.append(body) + if problem_type: + body_parts.append(f"Problem Type: {problem_type}") + if answer_options_formatted: + body_parts.append(f"Answer Options:\n{answer_options_formatted}") + + if not body_parts: + problem_id = problem_row.get("problem_id", "unknown") + return f"Problem {problem_id}", correct_answer + + return "\n\n".join(body_parts), correct_answer + + +def load_questions( + problems_df: pd.DataFrame, + problem_to_skills: dict[int, list[int]], + fallback_skill_id: int, +) -> tuple[list[dict], dict[int, str], int]: + """Build OEKT question objects from preprocessed Problems data.""" + + questions: list[dict] = [] + problem_to_qid: dict[int, str] = {} + unmapped_questions = 0 + + for row in problems_df.to_dict(orient="records"): + pid = _as_int(row["problem_id"]) + qid = f"q_{pid}" + skill_ids = problem_to_skills.get(pid, []) + if not skill_ids: + skill_ids = [fallback_skill_id] + unmapped_questions += 1 + content, correct_answer = build_question_content(pd.Series(row)) + question = { + "id": qid, + "content": content, + "skill_ids": skill_ids, + "rubrics": [ + { + "id": f"r_{pid}_0", + "description": (f"Match the correct answer: {correct_answer}"), + "skill_ids": skill_ids, + } + ], + } + + questions.append(question) + problem_to_qid[pid] = qid + + return questions, problem_to_qid, unmapped_questions + + +def load_interactions( + interactions_path: Path, + problem_meta_df: pd.DataFrame, + max_interactions: int | None = None, +) -> pd.DataFrame: + """Load and normalize interaction logs used to build student trajectories.""" + usecols = [ + "id", + "problem_id", + "answer_text", + "discrete_score", + "end_time", + "user_id", + ] + df = pd.read_csv(interactions_path, usecols=usecols, low_memory=False) + + df["problem_id"] = pd.to_numeric(df["problem_id"], errors="coerce") + df["discrete_score"] = pd.to_numeric(df["discrete_score"], errors="coerce") + df["id"] = pd.to_numeric(df["id"], errors="coerce") + df["end_time"] = pd.to_datetime(df["end_time"], errors="coerce", utc=True) + + df = df.dropna(subset=["user_id", "problem_id", "discrete_score"]).copy() + df["user_id"] = df["user_id"].astype(str) + df["problem_id"] = df["problem_id"].astype(int) + df["id"] = df["id"].fillna(-1).astype(int) + + answer_meta = problem_meta_df[ + ["problem_id", "Problem Type", "answer_options"] + ].copy() + df = df.merge(answer_meta, on="problem_id", how="left") + + mc_types = {"Multiple Choice (select 1)", "Multiple Choice (select all)"} + df["answer_text"] = df.apply( + lambda row: ( + match_student_answer_to_letters(row["answer_text"], row["answer_options"]) + if _text(row.get("Problem Type", "")).strip() in mc_types + and isinstance(row.get("answer_options"), dict) + else _text(row["answer_text"]) + ), + axis=1, + ) + + df = df.drop(columns=["Problem Type", "answer_options"]) + + df = df.sort_values(["user_id", "end_time", "id"], kind="mergesort") + if max_interactions is not None: + if max_interactions <= 0: + raise ValueError("--max-interactions must be a positive integer.") + df = df.head(max_interactions).copy() + return df + + +def build_qmatrix(questions: list[dict], num_skills: int) -> list[list[float]]: + """Build a rubric x skill matrix consistent with question/rubric ordering.""" + qmatrix: list[list[float]] = [] + for question in questions: + for rubric in question["rubrics"]: + row = [0.0] * num_skills + for sid in rubric["skill_ids"]: + row[int(sid)] = 1.0 + qmatrix.append(row) + return qmatrix + + +def split_student_ids( + student_ids: list[str], + train_ratio: float, + valid_ratio: float, + test_ratio: float, + seed: int, +) -> tuple[list[str], list[str], list[str]]: + """Create deterministic train/valid/test split lists at the student level.""" + if train_ratio < 0 or valid_ratio < 0 or test_ratio < 0: + raise ValueError("Split ratios must be non-negative.") + + total = train_ratio + valid_ratio + test_ratio + if total <= 0: + raise ValueError("At least one split ratio must be > 0.") + + ids = list(student_ids) + ids.sort() + rng = random.Random(seed) + rng.shuffle(ids) + + train_count = int(len(ids) * (train_ratio / total)) + valid_count = int(len(ids) * (valid_ratio / total)) + + train_ids = ids[:train_count] + valid_ids = ids[train_count : train_count + valid_count] + test_ids = ids[train_count + valid_count :] + return train_ids, valid_ids, test_ids + + +def get_calendar_group_key( + end_time: pd.Timestamp | None, + grouping_mode: GroupingMode, + missing_idx: int, +) -> tuple[object, ...]: + """Return a stable calendar bucket key for an interaction timestamp.""" + if end_time is None: + return ("missing", missing_idx) + + ts = end_time + if ts.tzinfo is None: + ts = ts.tz_localize("UTC") + else: + ts = ts.tz_convert("UTC") + + if grouping_mode == "1h": + return ("1h", ts.year, ts.month, ts.day, ts.hour) + if grouping_mode == "halfday": + return ("halfday", ts.year, ts.month, ts.day, 0 if ts.hour < 12 else 1) + if grouping_mode == "day": + return ("day", ts.year, ts.month, ts.day) + if grouping_mode == "week": + iso = ts.isocalendar() + return ("week", int(iso.year), int(iso.week)) + if grouping_mode == "month": + return ("month", ts.year, ts.month) + if grouping_mode == "year": + return ("year", ts.year) + + raise ValueError(f"Unsupported grouping mode: {grouping_mode}") + + +def write_dataset_json( + dataset_path: Path, + skills: list[dict], + questions: list[dict], + interactions_df: pd.DataFrame, + problem_to_qid: dict[int, str], + grouping_mode: GroupingMode = "none", + save_unmapped_skills: bool = False, +) -> tuple[list[str], int, int, int, int]: + """Stream-write dataset.json while optionally grouping by calendar buckets.""" + dataset_path.parent.mkdir(parents=True, exist_ok=True) + + student_ids: list[str] = [] + num_students = 0 + num_time_steps = 0 + num_questions = 0 + skipped_interactions = 0 + + with open(dataset_path, "w", encoding="utf-8") as f: + f.write("{") + f.write('"skills":') + if not save_unmapped_skills: + saving_skills = ( + skills[:-1] + if skills and skills[-1]["name"] == "UnmappedSkill" + else skills + ) + else: + saving_skills = skills + json.dump(saving_skills, f, ensure_ascii=False) + f.write(',"questions":') + json.dump(questions, f, ensure_ascii=False) + f.write(',"students":[') + + first_student = True + for user_id, student_df in tqdm(interactions_df.groupby("user_id", sort=False)): + time_steps: list[dict] = [] + current_group_key: tuple[object, ...] | None = None + + for row_idx, row in enumerate(student_df.itertuples(index=False)): + pid = _as_int(row.problem_id) + qid = problem_to_qid.get(pid) + if qid is None: + skipped_interactions += 1 + continue + + score = 1 if _as_float(row.discrete_score) >= 1.0 else 0 + answer_text = _text(row.answer_text) + response = { + "question_id": qid, + "answer_text": answer_text, + "rubric_scores": [score], + } + num_questions += 1 + + if grouping_mode == "none": + time_steps.append( + { + "t": len(time_steps), + "responses": [response], + } + ) + continue + + row_end_time_raw = row.end_time + row_end_time: pd.Timestamp | None = ( + None + if pd.isna(row_end_time_raw) + else cast(pd.Timestamp, row_end_time_raw) + ) + + group_key = get_calendar_group_key( + end_time=row_end_time, + grouping_mode=grouping_mode, + missing_idx=row_idx, + ) + if time_steps and current_group_key == group_key: + time_steps[-1]["responses"].append(response) + continue + + time_steps.append( + { + "t": len(time_steps), + "responses": [response], + } + ) + current_group_key = group_key + + if not time_steps: + continue + + student_obj = { + "student_id": user_id, + "time_steps": time_steps, + } + + if not first_student: + f.write(",") + json.dump(student_obj, f, ensure_ascii=False) + first_student = False + + student_ids.append(str(user_id)) + num_students += 1 + num_time_steps += len(time_steps) + + f.write("]}") + + return ( + student_ids, + num_students, + num_time_steps, + num_questions, + skipped_interactions, + ) + + +def save_json(path: Path, obj: object) -> None: + path.parent.mkdir(parents=True, exist_ok=True) + with open(path, "w", encoding="utf-8") as f: + json.dump(obj, f, indent=2, ensure_ascii=False) + + +def main() -> None: + args = parse_args() + + data_dir = args.data_dir + output_dir = args.output_dir + + interactions_path = data_dir / "Interactions.csv" + problems_path = data_dir / "Problems.csv" + skill_set_path = data_dir / "Skill_Set.csv" + skills_path = data_dir / "Skills.csv" + + for p in [interactions_path, problems_path, skill_set_path, skills_path]: + if not p.exists(): + raise FileNotFoundError(f"Required input file not found: {p}") + + print("Loading skills...") + skills, problem_to_skills, fallback_skill_id = load_skill_tables( + skills_path=skills_path, + skill_set_path=skill_set_path, + ) + + print("Loading and preprocessing problems...") + problems_df = load_and_preprocess_problems(problems_path) + + print("Loading questions...") + questions, problem_to_qid, unmapped_questions = load_questions( + problems_df=problems_df, + problem_to_skills=problem_to_skills, + fallback_skill_id=fallback_skill_id, + ) + + print("Loading interactions...") + interactions_df = load_interactions( + interactions_path, + problem_meta_df=problems_df, + max_interactions=args.max_interactions, + ) + + print("Writing dataset.json...") + dataset_path = output_dir / "dataset.json" + ( + student_ids, + num_students, + num_time_steps, + num_questions, + skipped_interactions, + ) = write_dataset_json( + dataset_path=dataset_path, + skills=skills, + questions=questions, + interactions_df=interactions_df, + problem_to_qid=problem_to_qid, + grouping_mode=args.grouping_time, + save_unmapped_skills=(unmapped_questions > 0), + ) + + print("Building qmatrix.json...") + num_skills = len(skills) - int(unmapped_questions == 0) + qmatrix = build_qmatrix(questions, num_skills=num_skills) + save_json(output_dir / "qmatrix.json", qmatrix) + + print("Building train/valid/test split files...") + train_ids, valid_ids, test_ids = split_student_ids( + student_ids=student_ids, + train_ratio=args.train_ratio, + valid_ratio=args.valid_ratio, + test_ratio=args.test_ratio, + seed=args.seed, + ) + save_json(output_dir / "trainset.json", train_ids) + save_json(output_dir / "validset.json", valid_ids) + save_json(output_dir / "testset.json", test_ids) + + total_rubrics = sum(len(q["rubrics"]) for q in questions) + question_skill_counts = [len(q.get("skill_ids", [])) for q in questions] + rubric_skill_counts = [ + len(r.get("skill_ids", [])) for q in questions for r in q.get("rubrics", []) + ] + avg_skills_per_question = ( + sum(question_skill_counts) / len(question_skill_counts) + if question_skill_counts + else 0.0 + ) + avg_skills_per_rubric = ( + sum(rubric_skill_counts) / len(rubric_skill_counts) + if rubric_skill_counts + else 0.0 + ) + avg_time_steps_per_student = ( + num_time_steps / num_students if num_students > 0 else 0.0 + ) + avg_questions_per_timestep = ( + num_questions / num_time_steps if num_time_steps > 0 else 0.0 + ) + + print("\n=== Conversion Summary ===") + print(f"Skills: {num_skills}") + print(f"Questions: {len(questions)}") + print(f"Rubrics: {total_rubrics}") + print(f"Avg skills/question: {avg_skills_per_question:.3f}") + print(f"Avg skills/rubric: {avg_skills_per_rubric:.3f}") + print(f"Students: {num_students}") + print(f"Time steps: {num_time_steps}") + print(f"Avg timesteps/student: {avg_time_steps_per_student:.3f}") + print(f"Avg questions/timestep: {avg_questions_per_timestep:.3f}") + print(f"Grouping mode: {args.grouping_time}") + print(f"Unmapped questions: {unmapped_questions}") + print(f"Skipped interactions:{skipped_interactions}") + print(f"Output directory: {output_dir}") + + +if __name__ == "__main__": + main() diff --git a/Code/qwen3next80bvllm_instruct.py b/Code/qwen3next80bvllm_instruct.py new file mode 100644 index 0000000000000000000000000000000000000000..b33a8729249955c2f9b0bd4d282ccdc3cf9bb9c0 --- /dev/null +++ b/Code/qwen3next80bvllm_instruct.py @@ -0,0 +1,35 @@ +""" +Knowledge Tracing inference with Qwen3-Next-80B-A3B-Instruct model. + +This is the standard instruction-following model (no thinking blocks). +Recommended sampling: temperature=0.7, top_p=0.8, top_k=20, min_p=0 + +Usage: + CUDA_VISIBLE_DEVICES=0,1,2,3 python qwen3next80bvllm_instruct.py \ + --data-dir foundationalktdataset/ \ + --num-gpus 4 \ + --batch-size 10 \ + --cache-dir /data1/ \ + --num-students 500 \ + --bin-size 50 \ + --min-history 50 +""" + +from kt_inference_base import run_inference + +MODEL_CONFIG = { + "model_id": "Qwen/Qwen3-Next-80B-A3B-Instruct", + "gen_configs": { + "temperature": 0.7, + "top_p": 0.8, + "top_k": 20, + "min_p": 0.0, + "max_tokens": 32768, + "repetition_penalty": 1.0, + }, + "output_prefix": "qwen3next80binstruct", + "system_prompt_prefix": "", # No prefix - standard instruct model +} + +if __name__ == "__main__": + run_inference(MODEL_CONFIG) diff --git a/Code/qwen3next80bvllm_thinking.py b/Code/qwen3next80bvllm_thinking.py new file mode 100644 index 0000000000000000000000000000000000000000..2cae5e6c48cc88f290388663c8b98d3fc5719d40 --- /dev/null +++ b/Code/qwen3next80bvllm_thinking.py @@ -0,0 +1,35 @@ +""" +Knowledge Tracing inference with Qwen3-Next-80B-A3B-Thinking model. + +This model has native thinking mode - it automatically generates ... blocks. +Recommended sampling: temperature=0.6, top_p=0.95, top_k=20, min_p=0 + +Usage: + CUDA_VISIBLE_DEVICES=0,1,2,3 python qwen3next80bvllm_thinking.py \ + --data-dir foundationalktdataset/ \ + --num-gpus 4 \ + --batch-size 10 \ + --cache-dir /data1/ \ + --num-students 500 \ + --bin-size 50 \ + --min-history 50 +""" + +from kt_inference_base import run_inference + +MODEL_CONFIG = { + "model_id": "Qwen/Qwen3-Next-80B-A3B-Thinking", + "gen_configs": { + "temperature": 0.6, + "top_p": 0.95, + "top_k": 20, + "min_p": 0.0, + "max_tokens": 32768, + "repetition_penalty": 1.0, + }, + "output_prefix": "qwen3next80bthinking", + "system_prompt_prefix": "", # No prefix - model has native thinking +} + +if __name__ == "__main__": + run_inference(MODEL_CONFIG) diff --git a/Code/scripts.sh b/Code/scripts.sh new file mode 100644 index 0000000000000000000000000000000000000000..898f2bb528ddd9dc5b864880fb03f46cb6418822 --- /dev/null +++ b/Code/scripts.sh @@ -0,0 +1,24 @@ +# !/bin/bash + +# Student Time Gap Distribution +python plot_timegap_distribution.py \ + --bin-time 5 \ + --plot-upper-limit-minutes 240 + +# Student Attempt Distribution +python plot_student_attempt_distribution.py \ + --bin-time 1440 + +python plot_student_attempt_distribution.py \ + --bin-time 10800 + +python plot_student_attempt_distribution.py \ + --bin-time 43200 + +# Total Time Distribution +python plot_totaltime_distribution.py \ + --bin-time 10800 + +# Preprocess +python process_to_single_file.py \ + --grouping-time 10800 \ No newline at end of file diff --git a/Data/CASE-Common Core State Standards for Math.json b/Data/CASE-Common Core State Standards for Math.json new file mode 100644 index 0000000000000000000000000000000000000000..1c2e5c078b66bd0be8a00cc24bd54e1e12c580db --- /dev/null +++ b/Data/CASE-Common Core State Standards for Math.json @@ -0,0 +1,32812 @@ +{ + "CFDocument": { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFDocuments/c6496676-d7cb-11e8-824f-0242ac160002", + "identifier": "c6496676-d7cb-11e8-824f-0242ac160002", + "lastChangeDateTime": "2024-02-09T18:52:24+00:00", + "subjectURI": [ + { + "title": "Math", + "identifier": "eb8ae273-6667-52ec-a73f-3d8a631bde9f", + "uri": "https://case.georgiastandards.org/uri/eb8ae273-6667-52ec-a73f-3d8a631bde9f" + } + ], + "licenseURI": { + "title": "IMS Global License", + "identifier": "9b516ff5-1cd2-41aa-8618-f20eee60b06d", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFLicenses/9b516ff5-1cd2-41aa-8618-f20eee60b06d" + }, + "officialSourceURL": "http://www.corestandards.org/assets/CCSSI_Math%20Standards.pdf", + "creator": "Common Core (CCSSO)", + "title": "Common Core State Standards for Math", + "language": "en", + "adoptionStatus": "Draft", + "notes": "These Standards define what students should understand and be able to do in their study of mathematics. Asking a student to understand something means asking a teacher to assess whether the student has understood it. But what does mathematical understanding look like? One hallmark of mathematical understanding is the ability to justify, in a way appropriate to the student's mathematical maturity, why a particular mathematical statement is true or where a mathematical rule comes from. There is a world of difference between a student who can summon a mnemonic device to expand a product such as (a + b)(x + y) and a student who can explain where the mnemonic comes from. The student who can explain the rule understands the mathematics, and may have a better chance to succeed at a less familiar task such as expanding (a + b + c)(x + y). Mathematical understanding and procedural skill are equally important, and both are assessable using mathematical tasks of sufficient richness.\n\n**Suggested Citation:** National Governors Association Center for Best Practices & Council of Chief State School Officers. (2010). *Common Core State Standards for mathematics.*\n\n**Source for Associations with WIDA framework:** Shafer Willner, L. (2022). *Correspondences [Associations] between the Common Core State Standards for Mathematics and the WIDA English Language Development Standards Framework, 2020 Edition: Kindergarten-grade 12.* Board of Regents of the University of Wisconsin System. \n", + "caseVersion": "1.1" + }, + "CFItems": [ + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9a3274-d7cc-11e8-824f-0242ac160002", + "identifier": "6b9a3274-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Domain", + "CFItemTypeURI": { + "title": "Domain", + "identifier": "89d67580-f024-5f77-abd7-acfaef39b204", + "uri": "https://case.georgiastandards.org/uri/89d67580-f024-5f77-abd7-acfaef39b204" + }, + "educationLevel": [ + "09", + "10", + "11", + "12" + ], + "fullStatement": "The Real Number System", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9a351a-d7cc-11e8-824f-0242ac160002", + "identifier": "6b9a351a-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Domain", + "CFItemTypeURI": { + "title": "Domain", + "identifier": "89d67580-f024-5f77-abd7-acfaef39b204", + "uri": "https://case.georgiastandards.org/uri/89d67580-f024-5f77-abd7-acfaef39b204" + }, + "educationLevel": [ + "09", + "10", + "11", + "12" + ], + "fullStatement": "Quantities", + "notes": "Modeling is best interpreted not as a collection of isolated topics but in relation to other standards. Making mathematical models is a Standard for Mathematical Practice, and specific modeling standards appear throughout the high school standards indicated by a star symbol (★). The star symbol sometimes appears on the heading for a group of standards; in that case, it should be understood to apply to all standards in that group.", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9a3926-d7cc-11e8-824f-0242ac160002", + "identifier": "6b9a3926-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Domain", + "CFItemTypeURI": { + "title": "Domain", + "identifier": "89d67580-f024-5f77-abd7-acfaef39b204", + "uri": "https://case.georgiastandards.org/uri/89d67580-f024-5f77-abd7-acfaef39b204" + }, + "educationLevel": [ + "09", + "10", + "11", + "12" + ], + "fullStatement": "The Complex Number System", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9a3b91-d7cc-11e8-824f-0242ac160002", + "identifier": "6b9a3b91-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Domain", + "CFItemTypeURI": { + "title": "Domain", + "identifier": "89d67580-f024-5f77-abd7-acfaef39b204", + "uri": "https://case.georgiastandards.org/uri/89d67580-f024-5f77-abd7-acfaef39b204" + }, + "educationLevel": [ + "09", + "10", + "11", + "12" + ], + "fullStatement": "Vector & Matrix Quantities", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9a3dea-d7cc-11e8-824f-0242ac160002", + "identifier": "6b9a3dea-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Domain", + "CFItemTypeURI": { + "title": "Domain", + "identifier": "89d67580-f024-5f77-abd7-acfaef39b204", + "uri": "https://case.georgiastandards.org/uri/89d67580-f024-5f77-abd7-acfaef39b204" + }, + "educationLevel": [ + "09", + "10", + "11", + "12" + ], + "fullStatement": "Seeing Structure in Expressions", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9a4043-d7cc-11e8-824f-0242ac160002", + "identifier": "6b9a4043-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Domain", + "CFItemTypeURI": { + "title": "Domain", + "identifier": "89d67580-f024-5f77-abd7-acfaef39b204", + "uri": "https://case.georgiastandards.org/uri/89d67580-f024-5f77-abd7-acfaef39b204" + }, + "educationLevel": [ + "09", + "10", + "11", + "12" + ], + "fullStatement": "Arithmetic with Polynomials & Rational Expressions", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9a429b-d7cc-11e8-824f-0242ac160002", + "identifier": "6b9a429b-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Domain", + "CFItemTypeURI": { + "title": "Domain", + "identifier": "89d67580-f024-5f77-abd7-acfaef39b204", + "uri": "https://case.georgiastandards.org/uri/89d67580-f024-5f77-abd7-acfaef39b204" + }, + "educationLevel": [ + "09", + "10", + "11", + "12" + ], + "fullStatement": "Creating Equations", + "notes": "Modeling is best interpreted not as a collection of isolated topics but in relation to other standards. Making mathematical models is a Standard for Mathematical Practice, and specific modeling standards appear throughout the high school standards indicated by a star symbol (★). The star symbol sometimes appears on the heading for a group of standards; in that case, it should be understood to apply to all standards in that group.", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9a44f8-d7cc-11e8-824f-0242ac160002", + "identifier": "6b9a44f8-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Domain", + "CFItemTypeURI": { + "title": "Domain", + "identifier": "89d67580-f024-5f77-abd7-acfaef39b204", + "uri": "https://case.georgiastandards.org/uri/89d67580-f024-5f77-abd7-acfaef39b204" + }, + "educationLevel": [ + "09", + "10", + "11", + "12" + ], + "fullStatement": "Reasoning with Equations & Inequalities", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9a4744-d7cc-11e8-824f-0242ac160002", + "identifier": "6b9a4744-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Domain", + "CFItemTypeURI": { + "title": "Domain", + "identifier": "89d67580-f024-5f77-abd7-acfaef39b204", + "uri": "https://case.georgiastandards.org/uri/89d67580-f024-5f77-abd7-acfaef39b204" + }, + "educationLevel": [ + "09", + "10", + "11", + "12" + ], + "fullStatement": "Interpreting Functions", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9a4990-d7cc-11e8-824f-0242ac160002", + "identifier": "6b9a4990-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Domain", + "CFItemTypeURI": { + "title": "Domain", + "identifier": "89d67580-f024-5f77-abd7-acfaef39b204", + "uri": "https://case.georgiastandards.org/uri/89d67580-f024-5f77-abd7-acfaef39b204" + }, + "educationLevel": [ + "09", + "10", + "11", + "12" + ], + "fullStatement": "Building Functions", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9a4bdf-d7cc-11e8-824f-0242ac160002", + "identifier": "6b9a4bdf-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Domain", + "CFItemTypeURI": { + "title": "Domain", + "identifier": "89d67580-f024-5f77-abd7-acfaef39b204", + "uri": "https://case.georgiastandards.org/uri/89d67580-f024-5f77-abd7-acfaef39b204" + }, + "educationLevel": [ + "09", + "10", + "11", + "12" + ], + "fullStatement": "Linear, Quadratic, & Exponential Models", + "notes": "Modeling is best interpreted not as a collection of isolated topics but in relation to other standards. Making mathematical models is a Standard for Mathematical Practice, and specific modeling standards appear throughout the high school standards indicated by a star symbol (★). The star symbol sometimes appears on the heading for a group of standards; in that case, it should be understood to apply to all standards in that group.", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9a4e42-d7cc-11e8-824f-0242ac160002", + "identifier": "6b9a4e42-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Domain", + "CFItemTypeURI": { + "title": "Domain", + "identifier": "89d67580-f024-5f77-abd7-acfaef39b204", + "uri": "https://case.georgiastandards.org/uri/89d67580-f024-5f77-abd7-acfaef39b204" + }, + "educationLevel": [ + "09", + "10", + "11", + "12" + ], + "fullStatement": "Trigonometric Functions", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9a508f-d7cc-11e8-824f-0242ac160002", + "identifier": "6b9a508f-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Domain", + "CFItemTypeURI": { + "title": "Domain", + "identifier": "89d67580-f024-5f77-abd7-acfaef39b204", + "uri": "https://case.georgiastandards.org/uri/89d67580-f024-5f77-abd7-acfaef39b204" + }, + "educationLevel": [ + "09", + "10", + "11", + "12" + ], + "fullStatement": "Congruence", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9a52db-d7cc-11e8-824f-0242ac160002", + "identifier": "6b9a52db-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Domain", + "CFItemTypeURI": { + "title": "Domain", + "identifier": "89d67580-f024-5f77-abd7-acfaef39b204", + "uri": "https://case.georgiastandards.org/uri/89d67580-f024-5f77-abd7-acfaef39b204" + }, + "educationLevel": [ + "09", + "10", + "11", + "12" + ], + "fullStatement": "Similarity, Right Triangles, & Trigonometry", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9a556b-d7cc-11e8-824f-0242ac160002", + "identifier": "6b9a556b-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Domain", + "CFItemTypeURI": { + "title": "Domain", + "identifier": "89d67580-f024-5f77-abd7-acfaef39b204", + "uri": "https://case.georgiastandards.org/uri/89d67580-f024-5f77-abd7-acfaef39b204" + }, + "educationLevel": [ + "09", + "10", + "11", + "12" + ], + "fullStatement": "Circles", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9a57c1-d7cc-11e8-824f-0242ac160002", + "identifier": "6b9a57c1-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Domain", + "CFItemTypeURI": { + "title": "Domain", + "identifier": "89d67580-f024-5f77-abd7-acfaef39b204", + "uri": "https://case.georgiastandards.org/uri/89d67580-f024-5f77-abd7-acfaef39b204" + }, + "educationLevel": [ + "09", + "10", + "11", + "12" + ], + "fullStatement": "Expressing Geometric Properties with Equations", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9a5a10-d7cc-11e8-824f-0242ac160002", + "identifier": "6b9a5a10-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Domain", + "CFItemTypeURI": { + "title": "Domain", + "identifier": "89d67580-f024-5f77-abd7-acfaef39b204", + "uri": "https://case.georgiastandards.org/uri/89d67580-f024-5f77-abd7-acfaef39b204" + }, + "educationLevel": [ + "09", + "10", + "11", + "12" + ], + "fullStatement": "Geometric Measurement & Dimension", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9a5c68-d7cc-11e8-824f-0242ac160002", + "identifier": "6b9a5c68-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Domain", + "CFItemTypeURI": { + "title": "Domain", + "identifier": "89d67580-f024-5f77-abd7-acfaef39b204", + "uri": "https://case.georgiastandards.org/uri/89d67580-f024-5f77-abd7-acfaef39b204" + }, + "educationLevel": [ + "09", + "10", + "11", + "12" + ], + "fullStatement": "Modeling with Geometry", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9a5ecd-d7cc-11e8-824f-0242ac160002", + "identifier": "6b9a5ecd-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Domain", + "CFItemTypeURI": { + "title": "Domain", + "identifier": "89d67580-f024-5f77-abd7-acfaef39b204", + "uri": "https://case.georgiastandards.org/uri/89d67580-f024-5f77-abd7-acfaef39b204" + }, + "educationLevel": [ + "09", + "10", + "11", + "12" + ], + "fullStatement": "Interpreting Categorical & Quantitative Data", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9a612d-d7cc-11e8-824f-0242ac160002", + "identifier": "6b9a612d-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Domain", + "CFItemTypeURI": { + "title": "Domain", + "identifier": "89d67580-f024-5f77-abd7-acfaef39b204", + "uri": "https://case.georgiastandards.org/uri/89d67580-f024-5f77-abd7-acfaef39b204" + }, + "educationLevel": [ + "09", + "10", + "11", + "12" + ], + "fullStatement": "Making Inferences & Justifying Conclusions", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9a638d-d7cc-11e8-824f-0242ac160002", + "identifier": "6b9a638d-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Domain", + "CFItemTypeURI": { + "title": "Domain", + "identifier": "89d67580-f024-5f77-abd7-acfaef39b204", + "uri": "https://case.georgiastandards.org/uri/89d67580-f024-5f77-abd7-acfaef39b204" + }, + "educationLevel": [ + "09", + "10", + "11", + "12" + ], + "fullStatement": "Conditional Probability & the Rules of Probability", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9a65f4-d7cc-11e8-824f-0242ac160002", + "identifier": "6b9a65f4-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Domain", + "CFItemTypeURI": { + "title": "Domain", + "identifier": "89d67580-f024-5f77-abd7-acfaef39b204", + "uri": "https://case.georgiastandards.org/uri/89d67580-f024-5f77-abd7-acfaef39b204" + }, + "educationLevel": [ + "09", + "10", + "11", + "12" + ], + "fullStatement": "Using Probability to Make Decisions", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9a686d-d7cc-11e8-824f-0242ac160002", + "identifier": "6b9a686d-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Cluster", + "CFItemTypeURI": { + "title": "Cluster", + "identifier": "d77602ec-0098-5b60-b0c0-531cc61709e3", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/d77602ec-0098-5b60-b0c0-531cc61709e3" + }, + "educationLevel": [ + "09", + "10", + "11", + "12" + ], + "humanCodingScheme": "HSA-APR.A", + "fullStatement": "Perform arithmetic operations on polynomials", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9a6ad4-d7cc-11e8-824f-0242ac160002", + "identifier": "6b9a6ad4-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Cluster", + "CFItemTypeURI": { + "title": "Cluster", + "identifier": "d77602ec-0098-5b60-b0c0-531cc61709e3", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/d77602ec-0098-5b60-b0c0-531cc61709e3" + }, + "educationLevel": [ + "09", + "10", + "11", + "12" + ], + "humanCodingScheme": "HSA-APR.B", + "fullStatement": "Understand the relationship between zeros and factors of polynomials", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9a6d28-d7cc-11e8-824f-0242ac160002", + "identifier": "6b9a6d28-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Cluster", + "CFItemTypeURI": { + "title": "Cluster", + "identifier": "d77602ec-0098-5b60-b0c0-531cc61709e3", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/d77602ec-0098-5b60-b0c0-531cc61709e3" + }, + "educationLevel": [ + "09", + "10", + "11", + "12" + ], + "humanCodingScheme": "HSA-APR.C", + "fullStatement": "Use polynomial identities to solve problems", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9a6f7c-d7cc-11e8-824f-0242ac160002", + "identifier": "6b9a6f7c-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Cluster", + "CFItemTypeURI": { + "title": "Cluster", + "identifier": "d77602ec-0098-5b60-b0c0-531cc61709e3", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/d77602ec-0098-5b60-b0c0-531cc61709e3" + }, + "educationLevel": [ + "09", + "10", + "11", + "12" + ], + "humanCodingScheme": "HSA-APR.D", + "fullStatement": "Rewrite rational expressions", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9a724e-d7cc-11e8-824f-0242ac160002", + "identifier": "6b9a724e-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Cluster", + "CFItemTypeURI": { + "title": "Cluster", + "identifier": "d77602ec-0098-5b60-b0c0-531cc61709e3", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/d77602ec-0098-5b60-b0c0-531cc61709e3" + }, + "educationLevel": [ + "09", + "10", + "11", + "12" + ], + "humanCodingScheme": "HSA-CED.A", + "fullStatement": "Create equations that describe numbers or relationships", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9a74ad-d7cc-11e8-824f-0242ac160002", + "identifier": "6b9a74ad-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Cluster", + "CFItemTypeURI": { + "title": "Cluster", + "identifier": "d77602ec-0098-5b60-b0c0-531cc61709e3", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/d77602ec-0098-5b60-b0c0-531cc61709e3" + }, + "educationLevel": [ + "09", + "10", + "11", + "12" + ], + "humanCodingScheme": "HSA-REI.A", + "fullStatement": "Understand solving equations as a process of reasoning and explain the reasoning", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9a7708-d7cc-11e8-824f-0242ac160002", + "identifier": "6b9a7708-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Cluster", + "CFItemTypeURI": { + "title": "Cluster", + "identifier": "d77602ec-0098-5b60-b0c0-531cc61709e3", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/d77602ec-0098-5b60-b0c0-531cc61709e3" + }, + "educationLevel": [ + "09", + "10", + "11", + "12" + ], + "humanCodingScheme": "HSA-REI.B", + "fullStatement": "Solve equations and inequalities in one variable", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9a796b-d7cc-11e8-824f-0242ac160002", + "identifier": "6b9a796b-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Cluster", + "CFItemTypeURI": { + "title": "Cluster", + "identifier": "d77602ec-0098-5b60-b0c0-531cc61709e3", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/d77602ec-0098-5b60-b0c0-531cc61709e3" + }, + "educationLevel": [ + "09", + "10", + "11", + "12" + ], + "humanCodingScheme": "HSA-REI.C", + "fullStatement": "Solve systems of equations", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9a7c08-d7cc-11e8-824f-0242ac160002", + "identifier": "6b9a7c08-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Cluster", + "CFItemTypeURI": { + "title": "Cluster", + "identifier": "d77602ec-0098-5b60-b0c0-531cc61709e3", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/d77602ec-0098-5b60-b0c0-531cc61709e3" + }, + "educationLevel": [ + "09", + "10", + "11", + "12" + ], + "humanCodingScheme": "HSA-REI.D", + "fullStatement": "Represent and solve equations and inequalities graphically", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9a7e73-d7cc-11e8-824f-0242ac160002", + "identifier": "6b9a7e73-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Cluster", + "CFItemTypeURI": { + "title": "Cluster", + "identifier": "d77602ec-0098-5b60-b0c0-531cc61709e3", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/d77602ec-0098-5b60-b0c0-531cc61709e3" + }, + "educationLevel": [ + "09", + "10", + "11", + "12" + ], + "humanCodingScheme": "HSA-SSE.A", + "fullStatement": "Interpret the structure of expressions", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9a80dc-d7cc-11e8-824f-0242ac160002", + "identifier": "6b9a80dc-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Cluster", + "CFItemTypeURI": { + "title": "Cluster", + "identifier": "d77602ec-0098-5b60-b0c0-531cc61709e3", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/d77602ec-0098-5b60-b0c0-531cc61709e3" + }, + "educationLevel": [ + "09", + "10", + "11", + "12" + ], + "humanCodingScheme": "HSA-SSE.B", + "fullStatement": "Write expressions in equivalent forms to solve problems", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9a8346-d7cc-11e8-824f-0242ac160002", + "identifier": "6b9a8346-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Cluster", + "CFItemTypeURI": { + "title": "Cluster", + "identifier": "d77602ec-0098-5b60-b0c0-531cc61709e3", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/d77602ec-0098-5b60-b0c0-531cc61709e3" + }, + "educationLevel": [ + "09", + "10", + "11", + "12" + ], + "humanCodingScheme": "HSF-BF.A", + "fullStatement": "Build a function that models a relationship between two quantities", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9a85c7-d7cc-11e8-824f-0242ac160002", + "identifier": "6b9a85c7-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Cluster", + "CFItemTypeURI": { + "title": "Cluster", + "identifier": "d77602ec-0098-5b60-b0c0-531cc61709e3", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/d77602ec-0098-5b60-b0c0-531cc61709e3" + }, + "educationLevel": [ + "09", + "10", + "11", + "12" + ], + "humanCodingScheme": "HSF-BF.B", + "fullStatement": "Build new functions from existing functions", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9a888f-d7cc-11e8-824f-0242ac160002", + "identifier": "6b9a888f-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Cluster", + "CFItemTypeURI": { + "title": "Cluster", + "identifier": "d77602ec-0098-5b60-b0c0-531cc61709e3", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/d77602ec-0098-5b60-b0c0-531cc61709e3" + }, + "educationLevel": [ + "09", + "10", + "11", + "12" + ], + "humanCodingScheme": "HSF-IF.A", + "fullStatement": "Understand the concept of a function and use function notation", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9a8b23-d7cc-11e8-824f-0242ac160002", + "identifier": "6b9a8b23-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Cluster", + "CFItemTypeURI": { + "title": "Cluster", + "identifier": "d77602ec-0098-5b60-b0c0-531cc61709e3", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/d77602ec-0098-5b60-b0c0-531cc61709e3" + }, + "educationLevel": [ + "09", + "10", + "11", + "12" + ], + "humanCodingScheme": "HSF-IF.B", + "fullStatement": "Interpret functions that arise in applications in terms of the context", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9a8eff-d7cc-11e8-824f-0242ac160002", + "identifier": "6b9a8eff-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Cluster", + "CFItemTypeURI": { + "title": "Cluster", + "identifier": "d77602ec-0098-5b60-b0c0-531cc61709e3", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/d77602ec-0098-5b60-b0c0-531cc61709e3" + }, + "educationLevel": [ + "09", + "10", + "11", + "12" + ], + "humanCodingScheme": "HSF-IF.C", + "fullStatement": "Analyze functions using different representations", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9a929f-d7cc-11e8-824f-0242ac160002", + "identifier": "6b9a929f-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Cluster", + "CFItemTypeURI": { + "title": "Cluster", + "identifier": "d77602ec-0098-5b60-b0c0-531cc61709e3", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/d77602ec-0098-5b60-b0c0-531cc61709e3" + }, + "educationLevel": [ + "09", + "10", + "11", + "12" + ], + "humanCodingScheme": "HSF-LE.A", + "fullStatement": "Construct and compare linear, quadratic, and exponential models and solve problems", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9a951f-d7cc-11e8-824f-0242ac160002", + "identifier": "6b9a951f-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Cluster", + "CFItemTypeURI": { + "title": "Cluster", + "identifier": "d77602ec-0098-5b60-b0c0-531cc61709e3", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/d77602ec-0098-5b60-b0c0-531cc61709e3" + }, + "educationLevel": [ + "09", + "10", + "11", + "12" + ], + "humanCodingScheme": "HSF-LE.B", + "fullStatement": "Interpret expressions for functions in terms of the situation they model", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9a9793-d7cc-11e8-824f-0242ac160002", + "identifier": "6b9a9793-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Cluster", + "CFItemTypeURI": { + "title": "Cluster", + "identifier": "d77602ec-0098-5b60-b0c0-531cc61709e3", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/d77602ec-0098-5b60-b0c0-531cc61709e3" + }, + "educationLevel": [ + "09", + "10", + "11", + "12" + ], + "humanCodingScheme": "HSF-TF.A", + "fullStatement": "Extend the domain of trigonometric functions using the unit circle", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9a9a01-d7cc-11e8-824f-0242ac160002", + "identifier": "6b9a9a01-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Cluster", + "CFItemTypeURI": { + "title": "Cluster", + "identifier": "d77602ec-0098-5b60-b0c0-531cc61709e3", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/d77602ec-0098-5b60-b0c0-531cc61709e3" + }, + "educationLevel": [ + "09", + "10", + "11", + "12" + ], + "humanCodingScheme": "HSF-TF.B", + "fullStatement": "Model periodic phenomena with trigonometric functions", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9a9c95-d7cc-11e8-824f-0242ac160002", + "identifier": "6b9a9c95-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Cluster", + "CFItemTypeURI": { + "title": "Cluster", + "identifier": "d77602ec-0098-5b60-b0c0-531cc61709e3", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/d77602ec-0098-5b60-b0c0-531cc61709e3" + }, + "educationLevel": [ + "09", + "10", + "11", + "12" + ], + "humanCodingScheme": "HSF-TF.C", + "fullStatement": "Prove and apply trigonometric identities", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9a9f0b-d7cc-11e8-824f-0242ac160002", + "identifier": "6b9a9f0b-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Cluster", + "CFItemTypeURI": { + "title": "Cluster", + "identifier": "d77602ec-0098-5b60-b0c0-531cc61709e3", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/d77602ec-0098-5b60-b0c0-531cc61709e3" + }, + "educationLevel": [ + "09", + "10", + "11", + "12" + ], + "humanCodingScheme": "HSG-C.A", + "fullStatement": "Understand and apply theorems about circles", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9aa2f7-d7cc-11e8-824f-0242ac160002", + "identifier": "6b9aa2f7-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Cluster", + "CFItemTypeURI": { + "title": "Cluster", + "identifier": "d77602ec-0098-5b60-b0c0-531cc61709e3", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/d77602ec-0098-5b60-b0c0-531cc61709e3" + }, + "educationLevel": [ + "09", + "10", + "11", + "12" + ], + "humanCodingScheme": "HSG-C.B", + "fullStatement": "Find arc lengths and areas of sectors of circles", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9aa5d8-d7cc-11e8-824f-0242ac160002", + "identifier": "6b9aa5d8-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Cluster", + "CFItemTypeURI": { + "title": "Cluster", + "identifier": "d77602ec-0098-5b60-b0c0-531cc61709e3", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/d77602ec-0098-5b60-b0c0-531cc61709e3" + }, + "educationLevel": [ + "09", + "10", + "11", + "12" + ], + "humanCodingScheme": "HSG-CO.A", + "fullStatement": "Experiment with transformations in the plane", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9aa882-d7cc-11e8-824f-0242ac160002", + "identifier": "6b9aa882-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Cluster", + "CFItemTypeURI": { + "title": "Cluster", + "identifier": "d77602ec-0098-5b60-b0c0-531cc61709e3", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/d77602ec-0098-5b60-b0c0-531cc61709e3" + }, + "educationLevel": [ + "09", + "10", + "11", + "12" + ], + "humanCodingScheme": "HSG-CO.B", + "fullStatement": "Understand congruence in terms of rigid motions", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9aab84-d7cc-11e8-824f-0242ac160002", + "identifier": "6b9aab84-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Cluster", + "CFItemTypeURI": { + "title": "Cluster", + "identifier": "d77602ec-0098-5b60-b0c0-531cc61709e3", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/d77602ec-0098-5b60-b0c0-531cc61709e3" + }, + "educationLevel": [ + "09", + "10", + "11", + "12" + ], + "humanCodingScheme": "HSG-CO.C", + "fullStatement": "Prove geometric theorems", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9ab04f-d7cc-11e8-824f-0242ac160002", + "identifier": "6b9ab04f-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Cluster", + "CFItemTypeURI": { + "title": "Cluster", + "identifier": "d77602ec-0098-5b60-b0c0-531cc61709e3", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/d77602ec-0098-5b60-b0c0-531cc61709e3" + }, + "educationLevel": [ + "09", + "10", + "11", + "12" + ], + "humanCodingScheme": "HSG-CO.D", + "fullStatement": "Make geometric constructions", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9ab469-d7cc-11e8-824f-0242ac160002", + "identifier": "6b9ab469-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Cluster", + "CFItemTypeURI": { + "title": "Cluster", + "identifier": "d77602ec-0098-5b60-b0c0-531cc61709e3", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/d77602ec-0098-5b60-b0c0-531cc61709e3" + }, + "educationLevel": [ + "09", + "10", + "11", + "12" + ], + "humanCodingScheme": "HSG-GMD.A", + "fullStatement": "Explain volume formulas and use them to solve problems", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9ab722-d7cc-11e8-824f-0242ac160002", + "identifier": "6b9ab722-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Cluster", + "CFItemTypeURI": { + "title": "Cluster", + "identifier": "d77602ec-0098-5b60-b0c0-531cc61709e3", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/d77602ec-0098-5b60-b0c0-531cc61709e3" + }, + "educationLevel": [ + "09", + "10", + "11", + "12" + ], + "humanCodingScheme": "HSG-GMD.B", + "fullStatement": "Visualize relationships between two-dimensional and three-dimensional objects", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9ab9d5-d7cc-11e8-824f-0242ac160002", + "identifier": "6b9ab9d5-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Cluster", + "CFItemTypeURI": { + "title": "Cluster", + "identifier": "d77602ec-0098-5b60-b0c0-531cc61709e3", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/d77602ec-0098-5b60-b0c0-531cc61709e3" + }, + "educationLevel": [ + "09", + "10", + "11", + "12" + ], + "humanCodingScheme": "HSG-GPE.A", + "fullStatement": "Translate between the geometric description and the equation for a conic section", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9abd29-d7cc-11e8-824f-0242ac160002", + "identifier": "6b9abd29-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Cluster", + "CFItemTypeURI": { + "title": "Cluster", + "identifier": "d77602ec-0098-5b60-b0c0-531cc61709e3", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/d77602ec-0098-5b60-b0c0-531cc61709e3" + }, + "educationLevel": [ + "09", + "10", + "11", + "12" + ], + "humanCodingScheme": "HSG-GPE.B", + "fullStatement": "Use coordinates to prove simple geometric theorems algebraically", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9ac020-d7cc-11e8-824f-0242ac160002", + "identifier": "6b9ac020-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Cluster", + "CFItemTypeURI": { + "title": "Cluster", + "identifier": "d77602ec-0098-5b60-b0c0-531cc61709e3", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/d77602ec-0098-5b60-b0c0-531cc61709e3" + }, + "educationLevel": [ + "09", + "10", + "11", + "12" + ], + "humanCodingScheme": "HSG-MG.A", + "fullStatement": "Apply geometric concepts in modeling situations", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9ac2b8-d7cc-11e8-824f-0242ac160002", + "identifier": "6b9ac2b8-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Cluster", + "CFItemTypeURI": { + "title": "Cluster", + "identifier": "d77602ec-0098-5b60-b0c0-531cc61709e3", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/d77602ec-0098-5b60-b0c0-531cc61709e3" + }, + "educationLevel": [ + "09", + "10", + "11", + "12" + ], + "humanCodingScheme": "HSG-SRT.A", + "fullStatement": "Understand similarity in terms of similarity transformations", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9ac54d-d7cc-11e8-824f-0242ac160002", + "identifier": "6b9ac54d-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Cluster", + "CFItemTypeURI": { + "title": "Cluster", + "identifier": "d77602ec-0098-5b60-b0c0-531cc61709e3", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/d77602ec-0098-5b60-b0c0-531cc61709e3" + }, + "educationLevel": [ + "09", + "10", + "11", + "12" + ], + "humanCodingScheme": "HSG-SRT.B", + "fullStatement": "Prove theorems involving similarity", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9ac7e2-d7cc-11e8-824f-0242ac160002", + "identifier": "6b9ac7e2-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Cluster", + "CFItemTypeURI": { + "title": "Cluster", + "identifier": "d77602ec-0098-5b60-b0c0-531cc61709e3", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/d77602ec-0098-5b60-b0c0-531cc61709e3" + }, + "educationLevel": [ + "09", + "10", + "11", + "12" + ], + "humanCodingScheme": "HSG-SRT.C", + "fullStatement": "Define trigonometric ratios and solve problems involving right triangles", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9acbca-d7cc-11e8-824f-0242ac160002", + "identifier": "6b9acbca-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Cluster", + "CFItemTypeURI": { + "title": "Cluster", + "identifier": "d77602ec-0098-5b60-b0c0-531cc61709e3", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/d77602ec-0098-5b60-b0c0-531cc61709e3" + }, + "educationLevel": [ + "09", + "10", + "11", + "12" + ], + "humanCodingScheme": "HSG-SRT.D", + "fullStatement": "Apply trigonometry to general triangles", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9ace60-d7cc-11e8-824f-0242ac160002", + "identifier": "6b9ace60-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Cluster", + "CFItemTypeURI": { + "title": "Cluster", + "identifier": "d77602ec-0098-5b60-b0c0-531cc61709e3", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/d77602ec-0098-5b60-b0c0-531cc61709e3" + }, + "educationLevel": [ + "09", + "10", + "11", + "12" + ], + "humanCodingScheme": "HSN-CN.A", + "fullStatement": "Perform arithmetic operations with complex numbers.", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9ad0fc-d7cc-11e8-824f-0242ac160002", + "identifier": "6b9ad0fc-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Cluster", + "CFItemTypeURI": { + "title": "Cluster", + "identifier": "d77602ec-0098-5b60-b0c0-531cc61709e3", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/d77602ec-0098-5b60-b0c0-531cc61709e3" + }, + "educationLevel": [ + "09", + "10", + "11", + "12" + ], + "humanCodingScheme": "HSN-CN.B", + "fullStatement": "Represent complex numbers and their operations on the complex plane.", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9ad38b-d7cc-11e8-824f-0242ac160002", + "identifier": "6b9ad38b-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Cluster", + "CFItemTypeURI": { + "title": "Cluster", + "identifier": "d77602ec-0098-5b60-b0c0-531cc61709e3", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/d77602ec-0098-5b60-b0c0-531cc61709e3" + }, + "educationLevel": [ + "09", + "10", + "11", + "12" + ], + "humanCodingScheme": "HSN-CN.C", + "fullStatement": "Use complex numbers in polynomial identities and equations.", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9ad623-d7cc-11e8-824f-0242ac160002", + "identifier": "6b9ad623-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Cluster", + "CFItemTypeURI": { + "title": "Cluster", + "identifier": "d77602ec-0098-5b60-b0c0-531cc61709e3", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/d77602ec-0098-5b60-b0c0-531cc61709e3" + }, + "educationLevel": [ + "09", + "10", + "11", + "12" + ], + "humanCodingScheme": "HSN-Q.A", + "fullStatement": "Reason quantitatively and use units to solve problems.", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9ad8be-d7cc-11e8-824f-0242ac160002", + "identifier": "6b9ad8be-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Cluster", + "CFItemTypeURI": { + "title": "Cluster", + "identifier": "d77602ec-0098-5b60-b0c0-531cc61709e3", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/d77602ec-0098-5b60-b0c0-531cc61709e3" + }, + "educationLevel": [ + "09", + "10", + "11", + "12" + ], + "humanCodingScheme": "HSN-RN.A", + "fullStatement": "Extend the properties of exponents to rational exponents.", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9adb5b-d7cc-11e8-824f-0242ac160002", + "identifier": "6b9adb5b-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Cluster", + "CFItemTypeURI": { + "title": "Cluster", + "identifier": "d77602ec-0098-5b60-b0c0-531cc61709e3", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/d77602ec-0098-5b60-b0c0-531cc61709e3" + }, + "educationLevel": [ + "09", + "10", + "11", + "12" + ], + "humanCodingScheme": "HSN-RN.B", + "fullStatement": "Use properties of rational and irrational numbers.", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9ade5b-d7cc-11e8-824f-0242ac160002", + "identifier": "6b9ade5b-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Cluster", + "CFItemTypeURI": { + "title": "Cluster", + "identifier": "d77602ec-0098-5b60-b0c0-531cc61709e3", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/d77602ec-0098-5b60-b0c0-531cc61709e3" + }, + "educationLevel": [ + "09", + "10", + "11", + "12" + ], + "humanCodingScheme": "HSN-VM.A", + "fullStatement": "Represent and model with vector quantities.", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9ae113-d7cc-11e8-824f-0242ac160002", + "identifier": "6b9ae113-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Cluster", + "CFItemTypeURI": { + "title": "Cluster", + "identifier": "d77602ec-0098-5b60-b0c0-531cc61709e3", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/d77602ec-0098-5b60-b0c0-531cc61709e3" + }, + "educationLevel": [ + "09", + "10", + "11", + "12" + ], + "humanCodingScheme": "HSN-VM.B", + "fullStatement": "Perform operations on vectors.", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9ae3d2-d7cc-11e8-824f-0242ac160002", + "identifier": "6b9ae3d2-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Cluster", + "CFItemTypeURI": { + "title": "Cluster", + "identifier": "d77602ec-0098-5b60-b0c0-531cc61709e3", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/d77602ec-0098-5b60-b0c0-531cc61709e3" + }, + "educationLevel": [ + "09", + "10", + "11", + "12" + ], + "humanCodingScheme": "HSN-VM.C", + "fullStatement": "Perform operations on matrices and use matrices in applications.", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9ae68a-d7cc-11e8-824f-0242ac160002", + "identifier": "6b9ae68a-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Cluster", + "CFItemTypeURI": { + "title": "Cluster", + "identifier": "d77602ec-0098-5b60-b0c0-531cc61709e3", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/d77602ec-0098-5b60-b0c0-531cc61709e3" + }, + "educationLevel": [ + "09", + "10", + "11", + "12" + ], + "humanCodingScheme": "HSS-CP.A", + "fullStatement": "Understand independence and conditional probability and use them to interpret data", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9ae946-d7cc-11e8-824f-0242ac160002", + "identifier": "6b9ae946-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Cluster", + "CFItemTypeURI": { + "title": "Cluster", + "identifier": "d77602ec-0098-5b60-b0c0-531cc61709e3", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/d77602ec-0098-5b60-b0c0-531cc61709e3" + }, + "educationLevel": [ + "09", + "10", + "11", + "12" + ], + "humanCodingScheme": "HSS-CP.B", + "fullStatement": "Use the rules of probability to compute probabilities of compound events in a uniform probability model", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9aec0a-d7cc-11e8-824f-0242ac160002", + "identifier": "6b9aec0a-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Cluster", + "CFItemTypeURI": { + "title": "Cluster", + "identifier": "d77602ec-0098-5b60-b0c0-531cc61709e3", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/d77602ec-0098-5b60-b0c0-531cc61709e3" + }, + "educationLevel": [ + "09", + "10", + "11", + "12" + ], + "humanCodingScheme": "HSS-IC.A", + "fullStatement": "Understand and evaluate random processes underlying statistical experiments", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9aeecb-d7cc-11e8-824f-0242ac160002", + "identifier": "6b9aeecb-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Cluster", + "CFItemTypeURI": { + "title": "Cluster", + "identifier": "d77602ec-0098-5b60-b0c0-531cc61709e3", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/d77602ec-0098-5b60-b0c0-531cc61709e3" + }, + "educationLevel": [ + "09", + "10", + "11", + "12" + ], + "humanCodingScheme": "HSS-IC.B", + "fullStatement": "Make inferences and justify conclusions from sample surveys, experiments, and observational studies", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9af1d2-d7cc-11e8-824f-0242ac160002", + "identifier": "6b9af1d2-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Cluster", + "CFItemTypeURI": { + "title": "Cluster", + "identifier": "d77602ec-0098-5b60-b0c0-531cc61709e3", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/d77602ec-0098-5b60-b0c0-531cc61709e3" + }, + "educationLevel": [ + "09", + "10", + "11", + "12" + ], + "humanCodingScheme": "HSS-ID.A", + "fullStatement": "Summarize, represent, and interpret data on a single count or measurement variable", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9af499-d7cc-11e8-824f-0242ac160002", + "identifier": "6b9af499-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Cluster", + "CFItemTypeURI": { + "title": "Cluster", + "identifier": "d77602ec-0098-5b60-b0c0-531cc61709e3", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/d77602ec-0098-5b60-b0c0-531cc61709e3" + }, + "educationLevel": [ + "09", + "10", + "11", + "12" + ], + "humanCodingScheme": "HSS-ID.B", + "fullStatement": "Summarize, represent, and interpret data on two categorical and quantitative variables", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9af773-d7cc-11e8-824f-0242ac160002", + "identifier": "6b9af773-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Cluster", + "CFItemTypeURI": { + "title": "Cluster", + "identifier": "d77602ec-0098-5b60-b0c0-531cc61709e3", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/d77602ec-0098-5b60-b0c0-531cc61709e3" + }, + "educationLevel": [ + "09", + "10", + "11", + "12" + ], + "humanCodingScheme": "HSS-ID.C", + "fullStatement": "Interpret linear models", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9afa4b-d7cc-11e8-824f-0242ac160002", + "identifier": "6b9afa4b-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Cluster", + "CFItemTypeURI": { + "title": "Cluster", + "identifier": "d77602ec-0098-5b60-b0c0-531cc61709e3", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/d77602ec-0098-5b60-b0c0-531cc61709e3" + }, + "educationLevel": [ + "09", + "10", + "11", + "12" + ], + "humanCodingScheme": "HSS-MD.A", + "fullStatement": "Calculate expected values and use them to solve problems", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9afd38-d7cc-11e8-824f-0242ac160002", + "identifier": "6b9afd38-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Cluster", + "CFItemTypeURI": { + "title": "Cluster", + "identifier": "d77602ec-0098-5b60-b0c0-531cc61709e3", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/d77602ec-0098-5b60-b0c0-531cc61709e3" + }, + "educationLevel": [ + "09", + "10", + "11", + "12" + ], + "humanCodingScheme": "HSS-MD.B", + "fullStatement": "Use probability to evaluate outcomes of decisions", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9b0011-d7cc-11e8-824f-0242ac160002", + "identifier": "6b9b0011-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Cluster", + "CFItemTypeURI": { + "title": "Cluster", + "identifier": "d77602ec-0098-5b60-b0c0-531cc61709e3", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/d77602ec-0098-5b60-b0c0-531cc61709e3" + }, + "educationLevel": [ + "KG" + ], + "humanCodingScheme": "K.CC.A", + "fullStatement": "Know number names and the count sequence.", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9b02df-d7cc-11e8-824f-0242ac160002", + "identifier": "6b9b02df-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Cluster", + "CFItemTypeURI": { + "title": "Cluster", + "identifier": "d77602ec-0098-5b60-b0c0-531cc61709e3", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/d77602ec-0098-5b60-b0c0-531cc61709e3" + }, + "educationLevel": [ + "KG" + ], + "humanCodingScheme": "K.CC.B", + "fullStatement": "Count to tell the number of objects.", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9b05a0-d7cc-11e8-824f-0242ac160002", + "identifier": "6b9b05a0-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Cluster", + "CFItemTypeURI": { + "title": "Cluster", + "identifier": "d77602ec-0098-5b60-b0c0-531cc61709e3", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/d77602ec-0098-5b60-b0c0-531cc61709e3" + }, + "educationLevel": [ + "KG" + ], + "humanCodingScheme": "K.CC.C", + "fullStatement": "Compare numbers.", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9b08e6-d7cc-11e8-824f-0242ac160002", + "identifier": "6b9b08e6-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2020-06-19T17:36:29+00:00", + "educationLevel": [ + "KG", + "01", + "02", + "03", + "04", + "05", + "06", + "07", + "08", + "09", + "10", + "11", + "12" + ], + "listEnumeration": "1", + "fullStatement": "Standards for Mathematical Practice", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9b0bbe-d7cc-11e8-824f-0242ac160002", + "identifier": "6b9b0bbe-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Domain", + "CFItemTypeURI": { + "title": "Domain", + "identifier": "89d67580-f024-5f77-abd7-acfaef39b204", + "uri": "https://case.georgiastandards.org/uri/89d67580-f024-5f77-abd7-acfaef39b204" + }, + "educationLevel": [ + "KG" + ], + "listEnumeration": "1", + "fullStatement": "Counting & Cardinality", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9b0e8f-d7cc-11e8-824f-0242ac160002", + "identifier": "6b9b0e8f-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Conceptual Category", + "CFItemTypeURI": { + "title": "Conceptual Category", + "identifier": "bb2b7874-ca3b-4a28-bdf9-4ab9b6bdaa3f", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/bb2b7874-ca3b-4a28-bdf9-4ab9b6bdaa3f" + }, + "educationLevel": [ + "09", + "10", + "11", + "12" + ], + "listEnumeration": "1", + "fullStatement": "Number and Quantity", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9b1161-d7cc-11e8-824f-0242ac160002", + "identifier": "6b9b1161-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Grade Level", + "CFItemTypeURI": { + "title": "Grade Level", + "identifier": "8047d85d-6c8e-5231-bd6d-050731684413", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/8047d85d-6c8e-5231-bd6d-050731684413" + }, + "educationLevel": [ + "KG" + ], + "listEnumeration": "1", + "fullStatement": "Kindergarten", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9b1433-d7cc-11e8-824f-0242ac160002", + "identifier": "6b9b1433-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Domain", + "CFItemTypeURI": { + "title": "Domain", + "identifier": "89d67580-f024-5f77-abd7-acfaef39b204", + "uri": "https://case.georgiastandards.org/uri/89d67580-f024-5f77-abd7-acfaef39b204" + }, + "educationLevel": [ + "01" + ], + "listEnumeration": "1", + "fullStatement": "Operations & Algebraic Thinking", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9b1704-d7cc-11e8-824f-0242ac160002", + "identifier": "6b9b1704-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Domain", + "CFItemTypeURI": { + "title": "Domain", + "identifier": "89d67580-f024-5f77-abd7-acfaef39b204", + "uri": "https://case.georgiastandards.org/uri/89d67580-f024-5f77-abd7-acfaef39b204" + }, + "educationLevel": [ + "02" + ], + "listEnumeration": "1", + "fullStatement": "Operations & Algebraic Thinking", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9b1a1b-d7cc-11e8-824f-0242ac160002", + "identifier": "6b9b1a1b-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Domain", + "CFItemTypeURI": { + "title": "Domain", + "identifier": "89d67580-f024-5f77-abd7-acfaef39b204", + "uri": "https://case.georgiastandards.org/uri/89d67580-f024-5f77-abd7-acfaef39b204" + }, + "educationLevel": [ + "03" + ], + "listEnumeration": "1", + "fullStatement": "Operations & Algebraic Thinking", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9b1d09-d7cc-11e8-824f-0242ac160002", + "identifier": "6b9b1d09-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Domain", + "CFItemTypeURI": { + "title": "Domain", + "identifier": "89d67580-f024-5f77-abd7-acfaef39b204", + "uri": "https://case.georgiastandards.org/uri/89d67580-f024-5f77-abd7-acfaef39b204" + }, + "educationLevel": [ + "04" + ], + "listEnumeration": "1", + "fullStatement": "Operations & Algebraic Thinking", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9b1ff2-d7cc-11e8-824f-0242ac160002", + "identifier": "6b9b1ff2-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Domain", + "CFItemTypeURI": { + "title": "Domain", + "identifier": "89d67580-f024-5f77-abd7-acfaef39b204", + "uri": "https://case.georgiastandards.org/uri/89d67580-f024-5f77-abd7-acfaef39b204" + }, + "educationLevel": [ + "05" + ], + "listEnumeration": "1", + "fullStatement": "Operations & Algebraic Thinking", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9b22d9-d7cc-11e8-824f-0242ac160002", + "identifier": "6b9b22d9-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Domain", + "CFItemTypeURI": { + "title": "Domain", + "identifier": "89d67580-f024-5f77-abd7-acfaef39b204", + "uri": "https://case.georgiastandards.org/uri/89d67580-f024-5f77-abd7-acfaef39b204" + }, + "educationLevel": [ + "06" + ], + "listEnumeration": "1", + "fullStatement": "Ratios & Proportional Relationships", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9b25c5-d7cc-11e8-824f-0242ac160002", + "identifier": "6b9b25c5-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Domain", + "CFItemTypeURI": { + "title": "Domain", + "identifier": "89d67580-f024-5f77-abd7-acfaef39b204", + "uri": "https://case.georgiastandards.org/uri/89d67580-f024-5f77-abd7-acfaef39b204" + }, + "educationLevel": [ + "07" + ], + "listEnumeration": "1", + "fullStatement": "Ratios & Proportional Relationships", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9b28b4-d7cc-11e8-824f-0242ac160002", + "identifier": "6b9b28b4-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Domain", + "CFItemTypeURI": { + "title": "Domain", + "identifier": "89d67580-f024-5f77-abd7-acfaef39b204", + "uri": "https://case.georgiastandards.org/uri/89d67580-f024-5f77-abd7-acfaef39b204" + }, + "educationLevel": [ + "08" + ], + "listEnumeration": "1", + "fullStatement": "The Number System", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9b2b94-d7cc-11e8-824f-0242ac160002", + "identifier": "6b9b2b94-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Cluster", + "CFItemTypeURI": { + "title": "Cluster", + "identifier": "d77602ec-0098-5b60-b0c0-531cc61709e3", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/d77602ec-0098-5b60-b0c0-531cc61709e3" + }, + "educationLevel": [ + "01" + ], + "humanCodingScheme": "1.G.A", + "listEnumeration": "1", + "fullStatement": "Reason with shapes and their attributes.", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9b2e79-d7cc-11e8-824f-0242ac160002", + "identifier": "6b9b2e79-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Cluster", + "CFItemTypeURI": { + "title": "Cluster", + "identifier": "d77602ec-0098-5b60-b0c0-531cc61709e3", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/d77602ec-0098-5b60-b0c0-531cc61709e3" + }, + "educationLevel": [ + "01" + ], + "humanCodingScheme": "1.MD.A", + "listEnumeration": "1", + "fullStatement": "Measure lengths indirectly and by iterating length units.", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9b3160-d7cc-11e8-824f-0242ac160002", + "identifier": "6b9b3160-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Cluster", + "CFItemTypeURI": { + "title": "Cluster", + "identifier": "d77602ec-0098-5b60-b0c0-531cc61709e3", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/d77602ec-0098-5b60-b0c0-531cc61709e3" + }, + "educationLevel": [ + "01" + ], + "humanCodingScheme": "1.NBT.A", + "listEnumeration": "1", + "fullStatement": "Extend the counting sequence.", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9b3443-d7cc-11e8-824f-0242ac160002", + "identifier": "6b9b3443-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Cluster", + "CFItemTypeURI": { + "title": "Cluster", + "identifier": "d77602ec-0098-5b60-b0c0-531cc61709e3", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/d77602ec-0098-5b60-b0c0-531cc61709e3" + }, + "educationLevel": [ + "01" + ], + "humanCodingScheme": "1.NBT.C", + "listEnumeration": "3", + "fullStatement": "Use place value understanding and properties of operations to add and subtract.", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9b3728-d7cc-11e8-824f-0242ac160002", + "identifier": "6b9b3728-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Cluster", + "CFItemTypeURI": { + "title": "Cluster", + "identifier": "d77602ec-0098-5b60-b0c0-531cc61709e3", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/d77602ec-0098-5b60-b0c0-531cc61709e3" + }, + "educationLevel": [ + "01" + ], + "humanCodingScheme": "1.OA.A", + "listEnumeration": "1", + "fullStatement": "Represent and solve problems involving addition and subtraction.", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9b3a0d-d7cc-11e8-824f-0242ac160002", + "identifier": "6b9b3a0d-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Cluster", + "CFItemTypeURI": { + "title": "Cluster", + "identifier": "d77602ec-0098-5b60-b0c0-531cc61709e3", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/d77602ec-0098-5b60-b0c0-531cc61709e3" + }, + "educationLevel": [ + "02" + ], + "humanCodingScheme": "2.G.A", + "listEnumeration": "1", + "fullStatement": "Reason with shapes and their attributes.", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9b3cf6-d7cc-11e8-824f-0242ac160002", + "identifier": "6b9b3cf6-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Cluster", + "CFItemTypeURI": { + "title": "Cluster", + "identifier": "d77602ec-0098-5b60-b0c0-531cc61709e3", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/d77602ec-0098-5b60-b0c0-531cc61709e3" + }, + "educationLevel": [ + "02" + ], + "humanCodingScheme": "2.MD.A", + "listEnumeration": "1", + "fullStatement": "Measure and estimate lengths in standard units.", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9b4024-d7cc-11e8-824f-0242ac160002", + "identifier": "6b9b4024-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Cluster", + "CFItemTypeURI": { + "title": "Cluster", + "identifier": "d77602ec-0098-5b60-b0c0-531cc61709e3", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/d77602ec-0098-5b60-b0c0-531cc61709e3" + }, + "educationLevel": [ + "02" + ], + "humanCodingScheme": "2.NBT.A", + "listEnumeration": "1", + "fullStatement": "Understand place value.", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9b4323-d7cc-11e8-824f-0242ac160002", + "identifier": "6b9b4323-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Cluster", + "CFItemTypeURI": { + "title": "Cluster", + "identifier": "d77602ec-0098-5b60-b0c0-531cc61709e3", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/d77602ec-0098-5b60-b0c0-531cc61709e3" + }, + "educationLevel": [ + "02" + ], + "humanCodingScheme": "2.NBT.B", + "listEnumeration": "1", + "fullStatement": "Use place value understanding and properties of operations to add and subtract.", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9b461d-d7cc-11e8-824f-0242ac160002", + "identifier": "6b9b461d-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Cluster", + "CFItemTypeURI": { + "title": "Cluster", + "identifier": "d77602ec-0098-5b60-b0c0-531cc61709e3", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/d77602ec-0098-5b60-b0c0-531cc61709e3" + }, + "educationLevel": [ + "02" + ], + "humanCodingScheme": "2.OA.A", + "listEnumeration": "1", + "fullStatement": "Represent and solve problems involving addition and subtraction.", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9b491b-d7cc-11e8-824f-0242ac160002", + "identifier": "6b9b491b-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Cluster", + "CFItemTypeURI": { + "title": "Cluster", + "identifier": "d77602ec-0098-5b60-b0c0-531cc61709e3", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/d77602ec-0098-5b60-b0c0-531cc61709e3" + }, + "educationLevel": [ + "03" + ], + "humanCodingScheme": "3.G.A", + "listEnumeration": "1", + "fullStatement": "Reason with shapes and their attributes.", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9b4c1c-d7cc-11e8-824f-0242ac160002", + "identifier": "6b9b4c1c-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Cluster", + "CFItemTypeURI": { + "title": "Cluster", + "identifier": "d77602ec-0098-5b60-b0c0-531cc61709e3", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/d77602ec-0098-5b60-b0c0-531cc61709e3" + }, + "educationLevel": [ + "03" + ], + "humanCodingScheme": "3.MD.A", + "listEnumeration": "1", + "fullStatement": "Solve problems involving measurement and estimation of intervals of time, liquid volumes, and masses of objects.", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9b4f1e-d7cc-11e8-824f-0242ac160002", + "identifier": "6b9b4f1e-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Cluster", + "CFItemTypeURI": { + "title": "Cluster", + "identifier": "d77602ec-0098-5b60-b0c0-531cc61709e3", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/d77602ec-0098-5b60-b0c0-531cc61709e3" + }, + "educationLevel": [ + "03" + ], + "humanCodingScheme": "3.MD.D", + "listEnumeration": "4", + "fullStatement": "Geometric measurement: recognize perimeter as an attribute of plane figures and distinguish between linear and area measures.", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9b537e-d7cc-11e8-824f-0242ac160002", + "identifier": "6b9b537e-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Cluster", + "CFItemTypeURI": { + "title": "Cluster", + "identifier": "d77602ec-0098-5b60-b0c0-531cc61709e3", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/d77602ec-0098-5b60-b0c0-531cc61709e3" + }, + "educationLevel": [ + "03" + ], + "humanCodingScheme": "3.NBT.A", + "listEnumeration": "1", + "fullStatement": "Use place value understanding and properties of operations to perform multi-digit arithmetic.", + "notes": "A range of algorithms may be used.", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9b568c-d7cc-11e8-824f-0242ac160002", + "identifier": "6b9b568c-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Cluster", + "CFItemTypeURI": { + "title": "Cluster", + "identifier": "d77602ec-0098-5b60-b0c0-531cc61709e3", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/d77602ec-0098-5b60-b0c0-531cc61709e3" + }, + "educationLevel": [ + "03" + ], + "humanCodingScheme": "3.NF.A", + "listEnumeration": "1", + "fullStatement": "Develop understanding of fractions as numbers.", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9b59eb-d7cc-11e8-824f-0242ac160002", + "identifier": "6b9b59eb-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Cluster", + "CFItemTypeURI": { + "title": "Cluster", + "identifier": "d77602ec-0098-5b60-b0c0-531cc61709e3", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/d77602ec-0098-5b60-b0c0-531cc61709e3" + }, + "educationLevel": [ + "03" + ], + "humanCodingScheme": "3.OA.A", + "listEnumeration": "1", + "fullStatement": "Represent and solve problems involving multiplication and division.", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9b5d24-d7cc-11e8-824f-0242ac160002", + "identifier": "6b9b5d24-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Cluster", + "CFItemTypeURI": { + "title": "Cluster", + "identifier": "d77602ec-0098-5b60-b0c0-531cc61709e3", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/d77602ec-0098-5b60-b0c0-531cc61709e3" + }, + "educationLevel": [ + "03" + ], + "humanCodingScheme": "3.OA.D", + "listEnumeration": "4", + "fullStatement": "Solve problems involving the four operations, and identify and explain patterns in arithmetic.", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9b602d-d7cc-11e8-824f-0242ac160002", + "identifier": "6b9b602d-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Cluster", + "CFItemTypeURI": { + "title": "Cluster", + "identifier": "d77602ec-0098-5b60-b0c0-531cc61709e3", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/d77602ec-0098-5b60-b0c0-531cc61709e3" + }, + "educationLevel": [ + "04" + ], + "humanCodingScheme": "4.G.A", + "listEnumeration": "1", + "fullStatement": "Draw and identify lines and angles, and classify shapes by properties of their lines and angles.", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9b632e-d7cc-11e8-824f-0242ac160002", + "identifier": "6b9b632e-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Cluster", + "CFItemTypeURI": { + "title": "Cluster", + "identifier": "d77602ec-0098-5b60-b0c0-531cc61709e3", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/d77602ec-0098-5b60-b0c0-531cc61709e3" + }, + "educationLevel": [ + "04" + ], + "humanCodingScheme": "4.MD.A", + "listEnumeration": "1", + "fullStatement": "Solve problems involving measurement and conversion of measurements from a larger unit to a smaller unit.", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9b6712-d7cc-11e8-824f-0242ac160002", + "identifier": "6b9b6712-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Cluster", + "CFItemTypeURI": { + "title": "Cluster", + "identifier": "d77602ec-0098-5b60-b0c0-531cc61709e3", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/d77602ec-0098-5b60-b0c0-531cc61709e3" + }, + "educationLevel": [ + "04" + ], + "humanCodingScheme": "4.MD.C", + "listEnumeration": "3", + "fullStatement": "Geometric measurement: understand concepts of angle and measure angles.", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9b6b4d-d7cc-11e8-824f-0242ac160002", + "identifier": "6b9b6b4d-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Cluster", + "CFItemTypeURI": { + "title": "Cluster", + "identifier": "d77602ec-0098-5b60-b0c0-531cc61709e3", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/d77602ec-0098-5b60-b0c0-531cc61709e3" + }, + "educationLevel": [ + "04" + ], + "humanCodingScheme": "4.NBT.A", + "listEnumeration": "1", + "fullStatement": "Generalize place value understanding for multi-digit whole numbers.", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9b6e53-d7cc-11e8-824f-0242ac160002", + "identifier": "6b9b6e53-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Cluster", + "CFItemTypeURI": { + "title": "Cluster", + "identifier": "d77602ec-0098-5b60-b0c0-531cc61709e3", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/d77602ec-0098-5b60-b0c0-531cc61709e3" + }, + "educationLevel": [ + "04" + ], + "humanCodingScheme": "4.NBT.B", + "listEnumeration": "1", + "fullStatement": "Use place value understanding and properties of operations to perform multi-digit arithmetic.", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9b714a-d7cc-11e8-824f-0242ac160002", + "identifier": "6b9b714a-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Cluster", + "CFItemTypeURI": { + "title": "Cluster", + "identifier": "d77602ec-0098-5b60-b0c0-531cc61709e3", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/d77602ec-0098-5b60-b0c0-531cc61709e3" + }, + "educationLevel": [ + "04" + ], + "humanCodingScheme": "4.NF.A", + "listEnumeration": "1", + "fullStatement": "Extend understanding of fraction equivalence and ordering.", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9b7443-d7cc-11e8-824f-0242ac160002", + "identifier": "6b9b7443-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Cluster", + "CFItemTypeURI": { + "title": "Cluster", + "identifier": "d77602ec-0098-5b60-b0c0-531cc61709e3", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/d77602ec-0098-5b60-b0c0-531cc61709e3" + }, + "educationLevel": [ + "04" + ], + "humanCodingScheme": "4.OA.A", + "listEnumeration": "1", + "fullStatement": "Use the four operations with whole numbers to solve problems.", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9b7738-d7cc-11e8-824f-0242ac160002", + "identifier": "6b9b7738-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Cluster", + "CFItemTypeURI": { + "title": "Cluster", + "identifier": "d77602ec-0098-5b60-b0c0-531cc61709e3", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/d77602ec-0098-5b60-b0c0-531cc61709e3" + }, + "educationLevel": [ + "05" + ], + "humanCodingScheme": "5.G.A", + "listEnumeration": "1", + "fullStatement": "Graph points on the coordinate plane to solve real-world and mathematical problems.", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9b7a7b-d7cc-11e8-824f-0242ac160002", + "identifier": "6b9b7a7b-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Cluster", + "CFItemTypeURI": { + "title": "Cluster", + "identifier": "d77602ec-0098-5b60-b0c0-531cc61709e3", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/d77602ec-0098-5b60-b0c0-531cc61709e3" + }, + "educationLevel": [ + "05" + ], + "humanCodingScheme": "5.MD.A", + "listEnumeration": "1", + "fullStatement": "Convert like measurement units within a given measurement system.", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9b7d79-d7cc-11e8-824f-0242ac160002", + "identifier": "6b9b7d79-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Cluster", + "CFItemTypeURI": { + "title": "Cluster", + "identifier": "d77602ec-0098-5b60-b0c0-531cc61709e3", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/d77602ec-0098-5b60-b0c0-531cc61709e3" + }, + "educationLevel": [ + "05" + ], + "humanCodingScheme": "5.MD.C", + "listEnumeration": "3", + "fullStatement": "Geometric measurement: understand concepts of volume and relate volume to multiplication and to addition.", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9b8077-d7cc-11e8-824f-0242ac160002", + "identifier": "6b9b8077-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Cluster", + "CFItemTypeURI": { + "title": "Cluster", + "identifier": "d77602ec-0098-5b60-b0c0-531cc61709e3", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/d77602ec-0098-5b60-b0c0-531cc61709e3" + }, + "educationLevel": [ + "05" + ], + "humanCodingScheme": "5.NBT.A", + "listEnumeration": "1", + "fullStatement": "Understand the place value system.", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9b84de-d7cc-11e8-824f-0242ac160002", + "identifier": "6b9b84de-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Cluster", + "CFItemTypeURI": { + "title": "Cluster", + "identifier": "d77602ec-0098-5b60-b0c0-531cc61709e3", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/d77602ec-0098-5b60-b0c0-531cc61709e3" + }, + "educationLevel": [ + "05" + ], + "humanCodingScheme": "5.NBT.B", + "listEnumeration": "1", + "fullStatement": "Perform operations with multi-digit whole numbers and with decimals to hundredths.", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9b87e9-d7cc-11e8-824f-0242ac160002", + "identifier": "6b9b87e9-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Cluster", + "CFItemTypeURI": { + "title": "Cluster", + "identifier": "d77602ec-0098-5b60-b0c0-531cc61709e3", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/d77602ec-0098-5b60-b0c0-531cc61709e3" + }, + "educationLevel": [ + "05" + ], + "humanCodingScheme": "5.NF.A", + "listEnumeration": "1", + "fullStatement": "Use equivalent fractions as a strategy to add and subtract fractions.", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9b8aec-d7cc-11e8-824f-0242ac160002", + "identifier": "6b9b8aec-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Cluster", + "CFItemTypeURI": { + "title": "Cluster", + "identifier": "d77602ec-0098-5b60-b0c0-531cc61709e3", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/d77602ec-0098-5b60-b0c0-531cc61709e3" + }, + "educationLevel": [ + "05" + ], + "humanCodingScheme": "5.OA.A", + "listEnumeration": "1", + "fullStatement": "Write and interpret numerical expressions.", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9b8e2f-d7cc-11e8-824f-0242ac160002", + "identifier": "6b9b8e2f-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Cluster", + "CFItemTypeURI": { + "title": "Cluster", + "identifier": "d77602ec-0098-5b60-b0c0-531cc61709e3", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/d77602ec-0098-5b60-b0c0-531cc61709e3" + }, + "educationLevel": [ + "06" + ], + "humanCodingScheme": "6.EE.A", + "listEnumeration": "1", + "fullStatement": "Apply and extend previous understandings of arithmetic to algebraic expressions.", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9b914e-d7cc-11e8-824f-0242ac160002", + "identifier": "6b9b914e-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Cluster", + "CFItemTypeURI": { + "title": "Cluster", + "identifier": "d77602ec-0098-5b60-b0c0-531cc61709e3", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/d77602ec-0098-5b60-b0c0-531cc61709e3" + }, + "educationLevel": [ + "06" + ], + "humanCodingScheme": "6.EE.B", + "listEnumeration": "1", + "fullStatement": "Reason about and solve one-variable equations and inequalities.", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9b9457-d7cc-11e8-824f-0242ac160002", + "identifier": "6b9b9457-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Cluster", + "CFItemTypeURI": { + "title": "Cluster", + "identifier": "d77602ec-0098-5b60-b0c0-531cc61709e3", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/d77602ec-0098-5b60-b0c0-531cc61709e3" + }, + "educationLevel": [ + "06" + ], + "humanCodingScheme": "6.G.A", + "listEnumeration": "1", + "fullStatement": "Solve real-world and mathematical problems involving area, surface area, and volume.", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9b9763-d7cc-11e8-824f-0242ac160002", + "identifier": "6b9b9763-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Cluster", + "CFItemTypeURI": { + "title": "Cluster", + "identifier": "d77602ec-0098-5b60-b0c0-531cc61709e3", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/d77602ec-0098-5b60-b0c0-531cc61709e3" + }, + "educationLevel": [ + "06" + ], + "humanCodingScheme": "6.NS.A", + "listEnumeration": "1", + "fullStatement": "Apply and extend previous understandings of multiplication and division to divide fractions by fractions.", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9b9a72-d7cc-11e8-824f-0242ac160002", + "identifier": "6b9b9a72-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Cluster", + "CFItemTypeURI": { + "title": "Cluster", + "identifier": "d77602ec-0098-5b60-b0c0-531cc61709e3", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/d77602ec-0098-5b60-b0c0-531cc61709e3" + }, + "educationLevel": [ + "06" + ], + "humanCodingScheme": "6.RP.A", + "listEnumeration": "1", + "fullStatement": "Understand ratio concepts and use ratio reasoning to solve problems.", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9b9d82-d7cc-11e8-824f-0242ac160002", + "identifier": "6b9b9d82-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Cluster", + "CFItemTypeURI": { + "title": "Cluster", + "identifier": "d77602ec-0098-5b60-b0c0-531cc61709e3", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/d77602ec-0098-5b60-b0c0-531cc61709e3" + }, + "educationLevel": [ + "06" + ], + "humanCodingScheme": "6.SP.A", + "listEnumeration": "1", + "fullStatement": "Develop understanding of statistical variability.", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9ba07e-d7cc-11e8-824f-0242ac160002", + "identifier": "6b9ba07e-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Cluster", + "CFItemTypeURI": { + "title": "Cluster", + "identifier": "d77602ec-0098-5b60-b0c0-531cc61709e3", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/d77602ec-0098-5b60-b0c0-531cc61709e3" + }, + "educationLevel": [ + "06" + ], + "humanCodingScheme": "6.SP.B", + "listEnumeration": "1", + "fullStatement": "Summarize and describe distributions.", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9ba381-d7cc-11e8-824f-0242ac160002", + "identifier": "6b9ba381-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Cluster", + "CFItemTypeURI": { + "title": "Cluster", + "identifier": "d77602ec-0098-5b60-b0c0-531cc61709e3", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/d77602ec-0098-5b60-b0c0-531cc61709e3" + }, + "educationLevel": [ + "07" + ], + "humanCodingScheme": "7.EE.A", + "listEnumeration": "1", + "fullStatement": "Use properties of operations to generate equivalent expressions.", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9ba698-d7cc-11e8-824f-0242ac160002", + "identifier": "6b9ba698-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Cluster", + "CFItemTypeURI": { + "title": "Cluster", + "identifier": "d77602ec-0098-5b60-b0c0-531cc61709e3", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/d77602ec-0098-5b60-b0c0-531cc61709e3" + }, + "educationLevel": [ + "07" + ], + "humanCodingScheme": "7.G.A", + "listEnumeration": "1", + "fullStatement": "Draw, construct, and describe geometrical figures and describe the relationships between them.", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9ba9a3-d7cc-11e8-824f-0242ac160002", + "identifier": "6b9ba9a3-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Cluster", + "CFItemTypeURI": { + "title": "Cluster", + "identifier": "d77602ec-0098-5b60-b0c0-531cc61709e3", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/d77602ec-0098-5b60-b0c0-531cc61709e3" + }, + "educationLevel": [ + "07" + ], + "humanCodingScheme": "7.NS.A", + "listEnumeration": "1", + "fullStatement": "Apply and extend previous understandings of operations with fractions to add, subtract, multiply, and divide rational numbers.", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9baca3-d7cc-11e8-824f-0242ac160002", + "identifier": "6b9baca3-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Cluster", + "CFItemTypeURI": { + "title": "Cluster", + "identifier": "d77602ec-0098-5b60-b0c0-531cc61709e3", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/d77602ec-0098-5b60-b0c0-531cc61709e3" + }, + "educationLevel": [ + "07" + ], + "humanCodingScheme": "7.RP.A", + "listEnumeration": "1", + "fullStatement": "Analyze proportional relationships and use them to solve real-world and mathematical problems.", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9bb00d-d7cc-11e8-824f-0242ac160002", + "identifier": "6b9bb00d-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Cluster", + "CFItemTypeURI": { + "title": "Cluster", + "identifier": "d77602ec-0098-5b60-b0c0-531cc61709e3", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/d77602ec-0098-5b60-b0c0-531cc61709e3" + }, + "educationLevel": [ + "07" + ], + "humanCodingScheme": "7.SP.A", + "listEnumeration": "1", + "fullStatement": "Use random sampling to draw inferences about a population.", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9bb323-d7cc-11e8-824f-0242ac160002", + "identifier": "6b9bb323-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Cluster", + "CFItemTypeURI": { + "title": "Cluster", + "identifier": "d77602ec-0098-5b60-b0c0-531cc61709e3", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/d77602ec-0098-5b60-b0c0-531cc61709e3" + }, + "educationLevel": [ + "08" + ], + "humanCodingScheme": "8.EE.A", + "listEnumeration": "1", + "fullStatement": "Work with radicals and integer exponents.", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9bb669-d7cc-11e8-824f-0242ac160002", + "identifier": "6b9bb669-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Cluster", + "CFItemTypeURI": { + "title": "Cluster", + "identifier": "d77602ec-0098-5b60-b0c0-531cc61709e3", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/d77602ec-0098-5b60-b0c0-531cc61709e3" + }, + "educationLevel": [ + "08" + ], + "humanCodingScheme": "8.F.A", + "listEnumeration": "1", + "fullStatement": "Define, evaluate, and compare functions.", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9bb97b-d7cc-11e8-824f-0242ac160002", + "identifier": "6b9bb97b-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Cluster", + "CFItemTypeURI": { + "title": "Cluster", + "identifier": "d77602ec-0098-5b60-b0c0-531cc61709e3", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/d77602ec-0098-5b60-b0c0-531cc61709e3" + }, + "educationLevel": [ + "08" + ], + "humanCodingScheme": "8.G.A", + "listEnumeration": "1", + "fullStatement": "Understand congruence and similarity using physical models, transparencies, or geometry software.", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9bbc94-d7cc-11e8-824f-0242ac160002", + "identifier": "6b9bbc94-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Cluster", + "CFItemTypeURI": { + "title": "Cluster", + "identifier": "d77602ec-0098-5b60-b0c0-531cc61709e3", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/d77602ec-0098-5b60-b0c0-531cc61709e3" + }, + "educationLevel": [ + "08" + ], + "humanCodingScheme": "8.NS.A", + "listEnumeration": "1", + "fullStatement": "Know that there are numbers that are not rational, and approximate them by rational numbers.", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9bbfac-d7cc-11e8-824f-0242ac160002", + "identifier": "6b9bbfac-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Cluster", + "CFItemTypeURI": { + "title": "Cluster", + "identifier": "d77602ec-0098-5b60-b0c0-531cc61709e3", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/d77602ec-0098-5b60-b0c0-531cc61709e3" + }, + "educationLevel": [ + "08" + ], + "humanCodingScheme": "8.SP.A", + "listEnumeration": "1", + "fullStatement": "Investigate patterns of association in bivariate data.", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9bc2c7-d7cc-11e8-824f-0242ac160002", + "identifier": "6b9bc2c7-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Cluster", + "CFItemTypeURI": { + "title": "Cluster", + "identifier": "d77602ec-0098-5b60-b0c0-531cc61709e3", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/d77602ec-0098-5b60-b0c0-531cc61709e3" + }, + "educationLevel": [ + "KG" + ], + "humanCodingScheme": "K.G.A", + "listEnumeration": "1", + "fullStatement": "Identify and describe shapes (squares, circles, triangles, rectangles, hexagons, cubes, cones, cylinders, and spheres).", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9bc5d7-d7cc-11e8-824f-0242ac160002", + "identifier": "6b9bc5d7-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Cluster", + "CFItemTypeURI": { + "title": "Cluster", + "identifier": "d77602ec-0098-5b60-b0c0-531cc61709e3", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/d77602ec-0098-5b60-b0c0-531cc61709e3" + }, + "educationLevel": [ + "KG" + ], + "humanCodingScheme": "K.G.B", + "listEnumeration": "1", + "fullStatement": "Analyze, compare, create, and compose shapes.", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9bc8e9-d7cc-11e8-824f-0242ac160002", + "identifier": "6b9bc8e9-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Cluster", + "CFItemTypeURI": { + "title": "Cluster", + "identifier": "d77602ec-0098-5b60-b0c0-531cc61709e3", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/d77602ec-0098-5b60-b0c0-531cc61709e3" + }, + "educationLevel": [ + "KG" + ], + "humanCodingScheme": "K.MD.A", + "listEnumeration": "1", + "fullStatement": "Describe and compare measurable attributes.", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9bcbfc-d7cc-11e8-824f-0242ac160002", + "identifier": "6b9bcbfc-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Cluster", + "CFItemTypeURI": { + "title": "Cluster", + "identifier": "d77602ec-0098-5b60-b0c0-531cc61709e3", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/d77602ec-0098-5b60-b0c0-531cc61709e3" + }, + "educationLevel": [ + "KG" + ], + "humanCodingScheme": "K.MD.B", + "listEnumeration": "1", + "fullStatement": "Classify objects and count the number of objects in each category.", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9bcf0f-d7cc-11e8-824f-0242ac160002", + "identifier": "6b9bcf0f-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Cluster", + "CFItemTypeURI": { + "title": "Cluster", + "identifier": "d77602ec-0098-5b60-b0c0-531cc61709e3", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/d77602ec-0098-5b60-b0c0-531cc61709e3" + }, + "educationLevel": [ + "KG" + ], + "humanCodingScheme": "K.NBT.A", + "listEnumeration": "1", + "fullStatement": "Work with numbers 11—19 to gain foundations for place value.", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9bd21e-d7cc-11e8-824f-0242ac160002", + "identifier": "6b9bd21e-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Cluster", + "CFItemTypeURI": { + "title": "Cluster", + "identifier": "d77602ec-0098-5b60-b0c0-531cc61709e3", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/d77602ec-0098-5b60-b0c0-531cc61709e3" + }, + "educationLevel": [ + "KG" + ], + "humanCodingScheme": "K.OA.A", + "listEnumeration": "1", + "fullStatement": "Understand addition as putting together and adding to, and understand subtraction as taking apart and taking from.", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9bd535-d7cc-11e8-824f-0242ac160002", + "identifier": "6b9bd535-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Standard", + "CFItemTypeURI": { + "title": "Standard", + "identifier": "88e14be5-f7f3-4e67-b4a2-d621eaa49d48", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/88e14be5-f7f3-4e67-b4a2-d621eaa49d48" + }, + "educationLevel": [ + "01" + ], + "humanCodingScheme": "1.G.A.1", + "listEnumeration": "1.", + "fullStatement": "Distinguish between defining attributes (e.g., triangles are closed and three-sided) versus non-defining attributes (e.g., color, orientation, overall size); build and draw shapes to possess defining attributes.", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9bd85b-d7cc-11e8-824f-0242ac160002", + "identifier": "6b9bd85b-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Standard", + "CFItemTypeURI": { + "title": "Standard", + "identifier": "88e14be5-f7f3-4e67-b4a2-d621eaa49d48", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/88e14be5-f7f3-4e67-b4a2-d621eaa49d48" + }, + "educationLevel": [ + "01" + ], + "humanCodingScheme": "1.MD.A.1", + "listEnumeration": "1.", + "fullStatement": "Order three objects by length; compare the lengths of two objects indirectly by using a third object.", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9bdbaf-d7cc-11e8-824f-0242ac160002", + "identifier": "6b9bdbaf-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Standard", + "CFItemTypeURI": { + "title": "Standard", + "identifier": "88e14be5-f7f3-4e67-b4a2-d621eaa49d48", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/88e14be5-f7f3-4e67-b4a2-d621eaa49d48" + }, + "educationLevel": [ + "01" + ], + "humanCodingScheme": "1.NBT.A.1", + "listEnumeration": "1.", + "fullStatement": "Count to 120, starting at any number less than 120. In this range, read and write numerals and represent a number of objects with a written numeral.", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9bdee1-d7cc-11e8-824f-0242ac160002", + "identifier": "6b9bdee1-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Standard", + "CFItemTypeURI": { + "title": "Standard", + "identifier": "88e14be5-f7f3-4e67-b4a2-d621eaa49d48", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/88e14be5-f7f3-4e67-b4a2-d621eaa49d48" + }, + "educationLevel": [ + "01" + ], + "humanCodingScheme": "1.OA.A.1", + "listEnumeration": "1.", + "fullStatement": "Use addition and subtraction within 20 to solve word problems involving situations of adding to, taking from, putting together, taking apart, and comparing, with unknowns in all positions, e.g., by using objects, drawings, and equations with a symbol for the unknown number to represent the problem.", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9be213-d7cc-11e8-824f-0242ac160002", + "identifier": "6b9be213-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Standard", + "CFItemTypeURI": { + "title": "Standard", + "identifier": "88e14be5-f7f3-4e67-b4a2-d621eaa49d48", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/88e14be5-f7f3-4e67-b4a2-d621eaa49d48" + }, + "educationLevel": [ + "02" + ], + "humanCodingScheme": "2.G.A.1", + "listEnumeration": "1.", + "fullStatement": "Recognize and draw shapes having specified attributes, such as a given number of angles or a given number of equal faces. Identify triangles, quadrilaterals, pentagons, hexagons, and cubes.", + "notes": "Sizes are compared directly or visually, not compared by measuring.", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9be543-d7cc-11e8-824f-0242ac160002", + "identifier": "6b9be543-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Standard", + "CFItemTypeURI": { + "title": "Standard", + "identifier": "88e14be5-f7f3-4e67-b4a2-d621eaa49d48", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/88e14be5-f7f3-4e67-b4a2-d621eaa49d48" + }, + "educationLevel": [ + "02" + ], + "humanCodingScheme": "2.MD.A.1", + "listEnumeration": "1.", + "fullStatement": "Measure the length of an object by selecting and using appropriate tools such as rulers, yardsticks, meter sticks, and measuring tapes.", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9be86e-d7cc-11e8-824f-0242ac160002", + "identifier": "6b9be86e-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Standard", + "CFItemTypeURI": { + "title": "Standard", + "identifier": "88e14be5-f7f3-4e67-b4a2-d621eaa49d48", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/88e14be5-f7f3-4e67-b4a2-d621eaa49d48" + }, + "educationLevel": [ + "02" + ], + "humanCodingScheme": "2.NBT.A.1", + "listEnumeration": "1.", + "fullStatement": "Understand that the three digits of a three-digit number represent amounts of hundreds, tens, and ones; e.g., 706 equals 7 hundreds, 0 tens, and 6 ones. Understand the following as special cases:", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9beba4-d7cc-11e8-824f-0242ac160002", + "identifier": "6b9beba4-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Standard", + "CFItemTypeURI": { + "title": "Standard", + "identifier": "88e14be5-f7f3-4e67-b4a2-d621eaa49d48", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/88e14be5-f7f3-4e67-b4a2-d621eaa49d48" + }, + "educationLevel": [ + "02" + ], + "humanCodingScheme": "2.OA.A.1", + "listEnumeration": "1.", + "fullStatement": "Use addition and subtraction within 100 to solve one- and two-step word problems involving situations of adding to, taking from, putting together, taking apart, and comparing, with unknowns in all positions, e.g., by using drawings and equations with a symbol for the unknown number to represent the problem.", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9beecd-d7cc-11e8-824f-0242ac160002", + "identifier": "6b9beecd-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Standard", + "CFItemTypeURI": { + "title": "Standard", + "identifier": "88e14be5-f7f3-4e67-b4a2-d621eaa49d48", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/88e14be5-f7f3-4e67-b4a2-d621eaa49d48" + }, + "educationLevel": [ + "03" + ], + "humanCodingScheme": "3.G.A.1", + "listEnumeration": "1.", + "fullStatement": "Understand that shapes in different categories (e.g., rhombuses, rectangles, and others) may share attributes (e.g., having four sides), and that the shared attributes can define a larger category (e.g., quadrilaterals). Recognize rhombuses, rectangles, and squares as examples of quadrilaterals, and draw examples of quadrilaterals that do not belong to any of these subcategories.", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9bf1fd-d7cc-11e8-824f-0242ac160002", + "identifier": "6b9bf1fd-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Standard", + "CFItemTypeURI": { + "title": "Standard", + "identifier": "88e14be5-f7f3-4e67-b4a2-d621eaa49d48", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/88e14be5-f7f3-4e67-b4a2-d621eaa49d48" + }, + "educationLevel": [ + "03" + ], + "humanCodingScheme": "3.MD.A.1", + "listEnumeration": "1.", + "fullStatement": "Tell and write time to the nearest minute and measure time intervals in minutes. Solve word problems involving addition and subtraction of time intervals in minutes, e.g., by representing the problem on a number line diagram.", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9bf525-d7cc-11e8-824f-0242ac160002", + "identifier": "6b9bf525-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Standard", + "CFItemTypeURI": { + "title": "Standard", + "identifier": "88e14be5-f7f3-4e67-b4a2-d621eaa49d48", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/88e14be5-f7f3-4e67-b4a2-d621eaa49d48" + }, + "educationLevel": [ + "03" + ], + "humanCodingScheme": "3.NBT.A.1", + "listEnumeration": "1.", + "fullStatement": "Use place value understanding to round whole numbers to the nearest 10 or 100.", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9bf846-d7cc-11e8-824f-0242ac160002", + "identifier": "6b9bf846-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Standard", + "CFItemTypeURI": { + "title": "Standard", + "identifier": "88e14be5-f7f3-4e67-b4a2-d621eaa49d48", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/88e14be5-f7f3-4e67-b4a2-d621eaa49d48" + }, + "educationLevel": [ + "03" + ], + "humanCodingScheme": "3.NF.A.1", + "listEnumeration": "1.", + "fullStatement": "Understand a fraction 1/b as the quantity formed by 1 part when a whole is partitioned into b equal parts; understand a fraction a/b as the quantity formed by a parts of size 1/b.", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9bfb73-d7cc-11e8-824f-0242ac160002", + "identifier": "6b9bfb73-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Standard", + "CFItemTypeURI": { + "title": "Standard", + "identifier": "88e14be5-f7f3-4e67-b4a2-d621eaa49d48", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/88e14be5-f7f3-4e67-b4a2-d621eaa49d48" + }, + "educationLevel": [ + "03" + ], + "humanCodingScheme": "3.OA.A.1", + "listEnumeration": "1.", + "fullStatement": "Interpret products of whole numbers, e.g., interpret 5 × 7 as the total number of objects in 5 groups of 7 objects each. For example, describe a context in which a total number of objects can be expressed as 5 × 7.", + "notes": "", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9bfea2-d7cc-11e8-824f-0242ac160002", + "identifier": "6b9bfea2-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Standard", + "CFItemTypeURI": { + "title": "Standard", + "identifier": "88e14be5-f7f3-4e67-b4a2-d621eaa49d48", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/88e14be5-f7f3-4e67-b4a2-d621eaa49d48" + }, + "educationLevel": [ + "04" + ], + "humanCodingScheme": "4.G.A.1", + "listEnumeration": "1.", + "fullStatement": "Draw points, lines, line segments, rays, angles (right, acute, obtuse), and perpendicular and parallel lines. Identify these in two-dimensional figures.", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9c02b9-d7cc-11e8-824f-0242ac160002", + "identifier": "6b9c02b9-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Standard", + "CFItemTypeURI": { + "title": "Standard", + "identifier": "88e14be5-f7f3-4e67-b4a2-d621eaa49d48", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/88e14be5-f7f3-4e67-b4a2-d621eaa49d48" + }, + "educationLevel": [ + "04" + ], + "humanCodingScheme": "4.MD.A.1", + "listEnumeration": "1.", + "fullStatement": "Know relative sizes of measurement units within one system of units including km, m, cm; kg, g; lb, oz.; l, ml; hr, min, sec. Within a single system of measurement, express measurements in a larger unit in terms of a smaller unit. Record measurement equivalents in a two column table. For example, know that 1 ft is 12 times as long as 1 in. Express the length of a 4 ft snake as 48 in. Generate a conversion table for feet and inches listing the number pairs (1, 12), (2, 24), (3, 36), …", + "notes": "", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9c0660-d7cc-11e8-824f-0242ac160002", + "identifier": "6b9c0660-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Standard", + "CFItemTypeURI": { + "title": "Standard", + "identifier": "88e14be5-f7f3-4e67-b4a2-d621eaa49d48", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/88e14be5-f7f3-4e67-b4a2-d621eaa49d48" + }, + "educationLevel": [ + "04" + ], + "humanCodingScheme": "4.NBT.A.1", + "listEnumeration": "1.", + "fullStatement": "Recognize that in a multi-digit whole number, a digit in one place represents ten times what it represents in the place to its right. For example, recognize that 700 ÷ 70 = 10 by applying concepts of place value and division.", + "notes": "", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9c09e2-d7cc-11e8-824f-0242ac160002", + "identifier": "6b9c09e2-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Standard", + "CFItemTypeURI": { + "title": "Standard", + "identifier": "88e14be5-f7f3-4e67-b4a2-d621eaa49d48", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/88e14be5-f7f3-4e67-b4a2-d621eaa49d48" + }, + "educationLevel": [ + "04" + ], + "humanCodingScheme": "4.NF.A.1", + "listEnumeration": "1.", + "fullStatement": "Explain why a fraction a/b is equivalent to a fraction (n × a)/(n × b) by using visual fraction models, with attention to how the number and size of the parts differ even though the two fractions themselves are the same size. Use this principle to recognize and generate equivalent fractions.", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9c0d77-d7cc-11e8-824f-0242ac160002", + "identifier": "6b9c0d77-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Standard", + "CFItemTypeURI": { + "title": "Standard", + "identifier": "88e14be5-f7f3-4e67-b4a2-d621eaa49d48", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/88e14be5-f7f3-4e67-b4a2-d621eaa49d48" + }, + "educationLevel": [ + "04" + ], + "humanCodingScheme": "4.OA.A.1", + "listEnumeration": "1.", + "fullStatement": "Interpret a multiplication equation as a comparison, e.g., interpret 35 = 5 × 7 as a statement that 35 is 5 times as many as 7 and 7 times as many as 5. Represent verbal statements of multiplicative comparisons as multiplication equations.", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9c10a6-d7cc-11e8-824f-0242ac160002", + "identifier": "6b9c10a6-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Standard", + "CFItemTypeURI": { + "title": "Standard", + "identifier": "88e14be5-f7f3-4e67-b4a2-d621eaa49d48", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/88e14be5-f7f3-4e67-b4a2-d621eaa49d48" + }, + "educationLevel": [ + "05" + ], + "humanCodingScheme": "5.G.A.1", + "listEnumeration": "1.", + "fullStatement": "Use a pair of perpendicular number lines, called axes, to define a coordinate system, with the intersection of the lines (the origin) arranged to coincide with the 0 on each line and a given point in the plane located by using an ordered pair of numbers, called its coordinates. Understand that the first number indicates how far to travel from the origin in the direction of one axis, and the second number indicates how far to travel in the direction of the second axis, with the convention that the names of the two axes and the coordinates correspond (e.g., x-axis and x-coordinate, y-axis and y-coordinate).", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9c13e2-d7cc-11e8-824f-0242ac160002", + "identifier": "6b9c13e2-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Standard", + "CFItemTypeURI": { + "title": "Standard", + "identifier": "88e14be5-f7f3-4e67-b4a2-d621eaa49d48", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/88e14be5-f7f3-4e67-b4a2-d621eaa49d48" + }, + "educationLevel": [ + "05" + ], + "humanCodingScheme": "5.MD.A.1", + "listEnumeration": "1.", + "fullStatement": "Convert among different-sized standard measurement units within a given measurement system (e.g., convert 5 cm to 0.05 m), and use these conversions in solving multi-step, real world problems.", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9c1708-d7cc-11e8-824f-0242ac160002", + "identifier": "6b9c1708-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Standard", + "CFItemTypeURI": { + "title": "Standard", + "identifier": "88e14be5-f7f3-4e67-b4a2-d621eaa49d48", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/88e14be5-f7f3-4e67-b4a2-d621eaa49d48" + }, + "educationLevel": [ + "05" + ], + "humanCodingScheme": "5.NBT.A.1", + "listEnumeration": "1.", + "fullStatement": "Recognize that in a multi-digit number, a digit in one place represents 10 times as much as it represents in the place to its right and 1/10 of what it represents in the place to its left.", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9c1a30-d7cc-11e8-824f-0242ac160002", + "identifier": "6b9c1a30-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Standard", + "CFItemTypeURI": { + "title": "Standard", + "identifier": "88e14be5-f7f3-4e67-b4a2-d621eaa49d48", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/88e14be5-f7f3-4e67-b4a2-d621eaa49d48" + }, + "educationLevel": [ + "05" + ], + "humanCodingScheme": "5.NF.A.1", + "listEnumeration": "1.", + "fullStatement": "Add and subtract fractions with unlike denominators (including mixed numbers) by replacing given fractions with equivalent fractions in such a way as to produce an equivalent sum or difference of fractions with like denominators. For example, 2/3 + 5/4 = 8/12 + 15/12 = 23/12. (In general, a/b + c/d = (ad + bc)/bd.)", + "notes": "", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9c1d5d-d7cc-11e8-824f-0242ac160002", + "identifier": "6b9c1d5d-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Standard", + "CFItemTypeURI": { + "title": "Standard", + "identifier": "88e14be5-f7f3-4e67-b4a2-d621eaa49d48", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/88e14be5-f7f3-4e67-b4a2-d621eaa49d48" + }, + "educationLevel": [ + "05" + ], + "humanCodingScheme": "5.OA.A.1", + "listEnumeration": "1.", + "fullStatement": "Use parentheses, brackets, or braces in numerical expressions, and evaluate expressions with these symbols.", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9c2095-d7cc-11e8-824f-0242ac160002", + "identifier": "6b9c2095-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Standard", + "CFItemTypeURI": { + "title": "Standard", + "identifier": "88e14be5-f7f3-4e67-b4a2-d621eaa49d48", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/88e14be5-f7f3-4e67-b4a2-d621eaa49d48" + }, + "educationLevel": [ + "06" + ], + "humanCodingScheme": "6.EE.A.1", + "listEnumeration": "1.", + "fullStatement": "Write and evaluate numerical expressions involving whole-number exponents.", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9c2393-d7cc-11e8-824f-0242ac160002", + "identifier": "6b9c2393-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Standard", + "CFItemTypeURI": { + "title": "Standard", + "identifier": "88e14be5-f7f3-4e67-b4a2-d621eaa49d48", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/88e14be5-f7f3-4e67-b4a2-d621eaa49d48" + }, + "educationLevel": [ + "06" + ], + "humanCodingScheme": "6.G.A.1", + "listEnumeration": "1.", + "fullStatement": "Find the area of right triangles, other triangles, special quadrilaterals, and polygons by composing into rectangles or decomposing into triangles and other shapes; apply these techniques in the context of solving real-world and mathematical problems.", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9c26ca-d7cc-11e8-824f-0242ac160002", + "identifier": "6b9c26ca-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Standard", + "CFItemTypeURI": { + "title": "Standard", + "identifier": "88e14be5-f7f3-4e67-b4a2-d621eaa49d48", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/88e14be5-f7f3-4e67-b4a2-d621eaa49d48" + }, + "educationLevel": [ + "06" + ], + "humanCodingScheme": "6.NS.A.1", + "listEnumeration": "1.", + "fullStatement": "Interpret and compute quotients of fractions, and solve word problems involving division of fractions by fractions, e.g., by using visual fraction models and equations to represent the problem. For example, create a story context for (2/3) ÷ (3/4) and use a visual fraction model to show the quotient; use the relationship between multiplication and division to explain that (2/3) ÷ (3/4) = 8/9 because 3/4 of 8/9 is 2/3. (In general, (a/b) ÷ (c/d) = ad/bc.) How much chocolate will each person get if 3 people share 1/2 lb of chocolate equally? How many 3/4-cup servings are in 2/3 of a cup of yogurt? How wide is a rectangular strip of land with length 3/4 mi and area 1/2 square mi?", + "notes": "", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9c2b26-d7cc-11e8-824f-0242ac160002", + "identifier": "6b9c2b26-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Standard", + "CFItemTypeURI": { + "title": "Standard", + "identifier": "88e14be5-f7f3-4e67-b4a2-d621eaa49d48", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/88e14be5-f7f3-4e67-b4a2-d621eaa49d48" + }, + "educationLevel": [ + "06" + ], + "humanCodingScheme": "6.RP.A.1", + "listEnumeration": "1.", + "fullStatement": "Understand the concept of a ratio and use ratio language to describe a ratio relationship between two quantities. For example, \"The ratio of wings to beaks in the bird house at the zoo was 2:1, because for every 2 wings there was 1 beak.\" \"For every vote candidate A received, candidate C received nearly three votes.\"", + "notes": "", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9c2e34-d7cc-11e8-824f-0242ac160002", + "identifier": "6b9c2e34-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Standard", + "CFItemTypeURI": { + "title": "Standard", + "identifier": "88e14be5-f7f3-4e67-b4a2-d621eaa49d48", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/88e14be5-f7f3-4e67-b4a2-d621eaa49d48" + }, + "educationLevel": [ + "06" + ], + "humanCodingScheme": "6.SP.A.1", + "listEnumeration": "1.", + "fullStatement": "Recognize a statistical question as one that anticipates variability in the data related to the question and accounts for it in the answers. For example, \"How old am I?\" is not a statistical question, but \"How old are the students in my school?\" is a statistical question because one anticipates variability in students' ages.", + "notes": "", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9c313b-d7cc-11e8-824f-0242ac160002", + "identifier": "6b9c313b-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Standard", + "CFItemTypeURI": { + "title": "Standard", + "identifier": "88e14be5-f7f3-4e67-b4a2-d621eaa49d48", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/88e14be5-f7f3-4e67-b4a2-d621eaa49d48" + }, + "educationLevel": [ + "07" + ], + "humanCodingScheme": "7.EE.A.1", + "listEnumeration": "1.", + "fullStatement": "Apply properties of operations as strategies to add, subtract, factor, and expand linear expressions with rational coefficients.", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9c342f-d7cc-11e8-824f-0242ac160002", + "identifier": "6b9c342f-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Standard", + "CFItemTypeURI": { + "title": "Standard", + "identifier": "88e14be5-f7f3-4e67-b4a2-d621eaa49d48", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/88e14be5-f7f3-4e67-b4a2-d621eaa49d48" + }, + "educationLevel": [ + "07" + ], + "humanCodingScheme": "7.G.A.1", + "listEnumeration": "1.", + "fullStatement": "Solve problems involving scale drawings of geometric figures, including computing actual lengths and areas from a scale drawing and reproducing a scale drawing at a different scale.", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9c3725-d7cc-11e8-824f-0242ac160002", + "identifier": "6b9c3725-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Standard", + "CFItemTypeURI": { + "title": "Standard", + "identifier": "88e14be5-f7f3-4e67-b4a2-d621eaa49d48", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/88e14be5-f7f3-4e67-b4a2-d621eaa49d48" + }, + "educationLevel": [ + "07" + ], + "humanCodingScheme": "7.NS.A.1", + "listEnumeration": "1.", + "fullStatement": "Apply and extend previous understandings of addition and subtraction to add and subtract rational numbers; represent addition and subtraction on a horizontal or vertical number line diagram.", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9c3a21-d7cc-11e8-824f-0242ac160002", + "identifier": "6b9c3a21-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Standard", + "CFItemTypeURI": { + "title": "Standard", + "identifier": "88e14be5-f7f3-4e67-b4a2-d621eaa49d48", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/88e14be5-f7f3-4e67-b4a2-d621eaa49d48" + }, + "educationLevel": [ + "07" + ], + "humanCodingScheme": "7.RP.A.1", + "listEnumeration": "1.", + "fullStatement": "Compute unit rates associated with ratios of fractions, including ratios of lengths, areas and other quantities measured in like or different units. For example, if a person walks 1/2 mile in each 1/4 hour, compute the unit rate as the complex fraction 1/2/1/4 miles per hour, equivalently 2 miles per hour.", + "notes": "", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9c3d7d-d7cc-11e8-824f-0242ac160002", + "identifier": "6b9c3d7d-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Standard", + "CFItemTypeURI": { + "title": "Standard", + "identifier": "88e14be5-f7f3-4e67-b4a2-d621eaa49d48", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/88e14be5-f7f3-4e67-b4a2-d621eaa49d48" + }, + "educationLevel": [ + "07" + ], + "humanCodingScheme": "7.SP.A.1", + "listEnumeration": "1.", + "fullStatement": "Understand that statistics can be used to gain information about a population by examining a sample of the population; generalizations about a population from a sample are valid only if the sample is representative of that population. Understand that random sampling tends to produce representative samples and support valid inferences.", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9c4078-d7cc-11e8-824f-0242ac160002", + "identifier": "6b9c4078-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Standard", + "CFItemTypeURI": { + "title": "Standard", + "identifier": "88e14be5-f7f3-4e67-b4a2-d621eaa49d48", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/88e14be5-f7f3-4e67-b4a2-d621eaa49d48" + }, + "educationLevel": [ + "08" + ], + "humanCodingScheme": "8.EE.A.1", + "listEnumeration": "1.", + "fullStatement": "Know and apply the properties of integer exponents to generate equivalent numerical expressions. For example, 3² × 3-5 = 3-3 = 1/3³ = 1/27.", + "notes": "", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9c4367-d7cc-11e8-824f-0242ac160002", + "identifier": "6b9c4367-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Standard", + "CFItemTypeURI": { + "title": "Standard", + "identifier": "88e14be5-f7f3-4e67-b4a2-d621eaa49d48", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/88e14be5-f7f3-4e67-b4a2-d621eaa49d48" + }, + "educationLevel": [ + "08" + ], + "humanCodingScheme": "8.F.A.1", + "listEnumeration": "1.", + "fullStatement": "Understand that a function is a rule that assigns to each input exactly one output. The graph of a function is the set of ordered pairs consisting of an input and the corresponding output.", + "notes": "Function notation is not required in Grade 8.", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9c465b-d7cc-11e8-824f-0242ac160002", + "identifier": "6b9c465b-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Standard", + "CFItemTypeURI": { + "title": "Standard", + "identifier": "88e14be5-f7f3-4e67-b4a2-d621eaa49d48", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/88e14be5-f7f3-4e67-b4a2-d621eaa49d48" + }, + "educationLevel": [ + "08" + ], + "humanCodingScheme": "8.G.A.1", + "listEnumeration": "1.", + "fullStatement": "Verify experimentally the properties of rotations, reflections, and translations:", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9c4a58-d7cc-11e8-824f-0242ac160002", + "identifier": "6b9c4a58-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Standard", + "CFItemTypeURI": { + "title": "Standard", + "identifier": "88e14be5-f7f3-4e67-b4a2-d621eaa49d48", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/88e14be5-f7f3-4e67-b4a2-d621eaa49d48" + }, + "educationLevel": [ + "08" + ], + "humanCodingScheme": "8.NS.A.1", + "listEnumeration": "1.", + "fullStatement": "Know that numbers that are not rational are called irrational. Understand informally that every number has a decimal expansion; for rational numbers show that the decimal expansion repeats eventually, and convert a decimal expansion which repeats eventually into a rational number.", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9c4d6c-d7cc-11e8-824f-0242ac160002", + "identifier": "6b9c4d6c-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Standard", + "CFItemTypeURI": { + "title": "Standard", + "identifier": "88e14be5-f7f3-4e67-b4a2-d621eaa49d48", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/88e14be5-f7f3-4e67-b4a2-d621eaa49d48" + }, + "educationLevel": [ + "08" + ], + "humanCodingScheme": "8.SP.A.1", + "listEnumeration": "1.", + "fullStatement": "Construct and interpret scatter plots for bivariate measurement data to investigate patterns of association between two quantities. Describe patterns such as clustering, outliers, positive or negative association, linear association, and nonlinear association.", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9c5182-d7cc-11e8-824f-0242ac160002", + "identifier": "6b9c5182-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Standard", + "CFItemTypeURI": { + "title": "Standard", + "identifier": "88e14be5-f7f3-4e67-b4a2-d621eaa49d48", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/88e14be5-f7f3-4e67-b4a2-d621eaa49d48" + }, + "educationLevel": [ + "09", + "10", + "11", + "12" + ], + "humanCodingScheme": "HSA-APR.A.1", + "listEnumeration": "1.", + "fullStatement": "Understand that polynomials form a system analogous to the integers, namely, they are closed under the operations of addition, subtraction, and multiplication; add, subtract, and multiply polynomials.", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9c54a3-d7cc-11e8-824f-0242ac160002", + "identifier": "6b9c54a3-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Standard", + "CFItemTypeURI": { + "title": "Standard", + "identifier": "88e14be5-f7f3-4e67-b4a2-d621eaa49d48", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/88e14be5-f7f3-4e67-b4a2-d621eaa49d48" + }, + "educationLevel": [ + "09", + "10", + "11", + "12" + ], + "humanCodingScheme": "HSA-CED.A.1", + "listEnumeration": "1.", + "fullStatement": "Create equations and inequalities in one variable and use them to solve problems. Include equations arising from linear and quadratic functions, and simple rational and exponential functions.", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9c57c7-d7cc-11e8-824f-0242ac160002", + "identifier": "6b9c57c7-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Standard", + "CFItemTypeURI": { + "title": "Standard", + "identifier": "88e14be5-f7f3-4e67-b4a2-d621eaa49d48", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/88e14be5-f7f3-4e67-b4a2-d621eaa49d48" + }, + "educationLevel": [ + "09", + "10", + "11", + "12" + ], + "humanCodingScheme": "HSA-REI.A.1", + "listEnumeration": "1.", + "fullStatement": "Explain each step in solving a simple equation as following from the equality of numbers asserted at the previous step, starting from the assumption that the original equation has a solution. Construct a viable argument to justify a solution method.", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9c5ae5-d7cc-11e8-824f-0242ac160002", + "identifier": "6b9c5ae5-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Standard", + "CFItemTypeURI": { + "title": "Standard", + "identifier": "88e14be5-f7f3-4e67-b4a2-d621eaa49d48", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/88e14be5-f7f3-4e67-b4a2-d621eaa49d48" + }, + "educationLevel": [ + "09", + "10", + "11", + "12" + ], + "humanCodingScheme": "HSA-SSE.A.1", + "listEnumeration": "1.", + "fullStatement": "Interpret expressions that represent a quantity in terms of its context", + "notes": "Modeling is best interpreted not as a collection of isolated topics but in relation to other standards. Making mathematical models is a Standard for Mathematical Practice, and specific modeling standards appear throughout the high school standards indicated by a star symbol (★). The star symbol sometimes appears on the heading for a group of standards; in that case, it should be understood to apply to all standards in that group.", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9c5e16-d7cc-11e8-824f-0242ac160002", + "identifier": "6b9c5e16-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Standard", + "CFItemTypeURI": { + "title": "Standard", + "identifier": "88e14be5-f7f3-4e67-b4a2-d621eaa49d48", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/88e14be5-f7f3-4e67-b4a2-d621eaa49d48" + }, + "educationLevel": [ + "09", + "10", + "11", + "12" + ], + "humanCodingScheme": "HSF-BF.A.1", + "listEnumeration": "1.", + "fullStatement": "Write a function that describes a relationship between two quantities", + "notes": "Modeling is best interpreted not as a collection of isolated topics but in relation to other standards. Making mathematical models is a Standard for Mathematical Practice, and specific modeling standards appear throughout the high school standards indicated by a star symbol (★). The star symbol sometimes appears on the heading for a group of standards; in that case, it should be understood to apply to all standards in that group.", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9c6130-d7cc-11e8-824f-0242ac160002", + "identifier": "6b9c6130-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Standard", + "CFItemTypeURI": { + "title": "Standard", + "identifier": "88e14be5-f7f3-4e67-b4a2-d621eaa49d48", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/88e14be5-f7f3-4e67-b4a2-d621eaa49d48" + }, + "educationLevel": [ + "09", + "10", + "11", + "12" + ], + "humanCodingScheme": "HSF-IF.A.1", + "listEnumeration": "1.", + "fullStatement": "Understand that a function from one set (called the domain) to another set (called the range) assigns to each element of the domain exactly one element of the range. If f is a function and x is an element of its domain, then f(x) denotes the output of f corresponding to the input x. The graph of f is the graph of the equation y = f(x).", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9c644f-d7cc-11e8-824f-0242ac160002", + "identifier": "6b9c644f-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Standard", + "CFItemTypeURI": { + "title": "Standard", + "identifier": "88e14be5-f7f3-4e67-b4a2-d621eaa49d48", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/88e14be5-f7f3-4e67-b4a2-d621eaa49d48" + }, + "educationLevel": [ + "09", + "10", + "11", + "12" + ], + "humanCodingScheme": "HSF-LE.A.1", + "listEnumeration": "1.", + "fullStatement": "Distinguish between situations that can be modeled with linear functions and with exponential functions.", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9c675d-d7cc-11e8-824f-0242ac160002", + "identifier": "6b9c675d-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Standard", + "CFItemTypeURI": { + "title": "Standard", + "identifier": "88e14be5-f7f3-4e67-b4a2-d621eaa49d48", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/88e14be5-f7f3-4e67-b4a2-d621eaa49d48" + }, + "educationLevel": [ + "09", + "10", + "11", + "12" + ], + "humanCodingScheme": "HSF-TF.A.1", + "listEnumeration": "1.", + "fullStatement": "Understand radian measure of an angle as the length of the arc on the unit circle subtended by the angle.", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9c6a73-d7cc-11e8-824f-0242ac160002", + "identifier": "6b9c6a73-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Standard", + "CFItemTypeURI": { + "title": "Standard", + "identifier": "88e14be5-f7f3-4e67-b4a2-d621eaa49d48", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/88e14be5-f7f3-4e67-b4a2-d621eaa49d48" + }, + "educationLevel": [ + "09", + "10", + "11", + "12" + ], + "humanCodingScheme": "HSG-C.A.1", + "listEnumeration": "1.", + "fullStatement": "Prove that all circles are similar.", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9c6d88-d7cc-11e8-824f-0242ac160002", + "identifier": "6b9c6d88-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Standard", + "CFItemTypeURI": { + "title": "Standard", + "identifier": "88e14be5-f7f3-4e67-b4a2-d621eaa49d48", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/88e14be5-f7f3-4e67-b4a2-d621eaa49d48" + }, + "educationLevel": [ + "09", + "10", + "11", + "12" + ], + "humanCodingScheme": "HSG-CO.A.1", + "listEnumeration": "1.", + "fullStatement": "Know precise definitions of angle, circle, perpendicular line, parallel line, and line segment, based on the undefined notions of point, line, distance along a line, and distance around a circular arc.", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9c70b3-d7cc-11e8-824f-0242ac160002", + "identifier": "6b9c70b3-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Standard", + "CFItemTypeURI": { + "title": "Standard", + "identifier": "88e14be5-f7f3-4e67-b4a2-d621eaa49d48", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/88e14be5-f7f3-4e67-b4a2-d621eaa49d48" + }, + "educationLevel": [ + "09", + "10", + "11", + "12" + ], + "humanCodingScheme": "HSG-GMD.A.1", + "listEnumeration": "1.", + "fullStatement": "Give an informal argument for the formulas for the circumference of a circle, area of a circle, volume of a cylinder, pyramid, and cone.", + "notes": "Use dissection arguments, Cavalieri's principle, and informal limit arguments.", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9c73d2-d7cc-11e8-824f-0242ac160002", + "identifier": "6b9c73d2-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Standard", + "CFItemTypeURI": { + "title": "Standard", + "identifier": "88e14be5-f7f3-4e67-b4a2-d621eaa49d48", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/88e14be5-f7f3-4e67-b4a2-d621eaa49d48" + }, + "educationLevel": [ + "09", + "10", + "11", + "12" + ], + "humanCodingScheme": "HSG-GPE.A.1", + "listEnumeration": "1.", + "fullStatement": "Derive the equation of a circle of given center and radius using the Pythagorean Theorem; complete the square to find the center and radius of a circle given by an equation.", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9c77f2-d7cc-11e8-824f-0242ac160002", + "identifier": "6b9c77f2-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Standard", + "CFItemTypeURI": { + "title": "Standard", + "identifier": "88e14be5-f7f3-4e67-b4a2-d621eaa49d48", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/88e14be5-f7f3-4e67-b4a2-d621eaa49d48" + }, + "educationLevel": [ + "09", + "10", + "11", + "12" + ], + "humanCodingScheme": "HSG-MG.A.1", + "listEnumeration": "1.", + "fullStatement": "Use geometric shapes, their measures, and their properties to describe objects (e.g., modeling a tree trunk or a human torso as a cylinder).", + "notes": "Modeling is best interpreted not as a collection of isolated topics but in relation to other standards. Making mathematical models is a Standard for Mathematical Practice, and specific modeling standards appear throughout the high school standards indicated by a star symbol (★). The star symbol sometimes appears on the heading for a group of standards; in that case, it should be understood to apply to all standards in that group.", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9c7b3d-d7cc-11e8-824f-0242ac160002", + "identifier": "6b9c7b3d-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Standard", + "CFItemTypeURI": { + "title": "Standard", + "identifier": "88e14be5-f7f3-4e67-b4a2-d621eaa49d48", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/88e14be5-f7f3-4e67-b4a2-d621eaa49d48" + }, + "educationLevel": [ + "09", + "10", + "11", + "12" + ], + "humanCodingScheme": "HSG-SRT.A.1", + "listEnumeration": "1.", + "fullStatement": "Verify experimentally the properties of dilations given by a center and a scale factor:", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9c7e76-d7cc-11e8-824f-0242ac160002", + "identifier": "6b9c7e76-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Standard", + "CFItemTypeURI": { + "title": "Standard", + "identifier": "88e14be5-f7f3-4e67-b4a2-d621eaa49d48", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/88e14be5-f7f3-4e67-b4a2-d621eaa49d48" + }, + "educationLevel": [ + "09", + "10", + "11", + "12" + ], + "humanCodingScheme": "HSN-CN.A.1", + "listEnumeration": "1.", + "fullStatement": "Know there is a complex number i such that i² = -1, and every complex number has the form a + bi with a and b real.", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9c8254-d7cc-11e8-824f-0242ac160002", + "identifier": "6b9c8254-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Standard", + "CFItemTypeURI": { + "title": "Standard", + "identifier": "88e14be5-f7f3-4e67-b4a2-d621eaa49d48", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/88e14be5-f7f3-4e67-b4a2-d621eaa49d48" + }, + "educationLevel": [ + "09", + "10", + "11", + "12" + ], + "humanCodingScheme": "HSN-Q.A.1", + "listEnumeration": "1.", + "fullStatement": "Use units as a way to understand problems and to guide the solution of multi-step problems; choose and interpret units consistently in formulas; choose and interpret the scale and the origin in graphs and data displays.", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9c859b-d7cc-11e8-824f-0242ac160002", + "identifier": "6b9c859b-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Standard", + "CFItemTypeURI": { + "title": "Standard", + "identifier": "88e14be5-f7f3-4e67-b4a2-d621eaa49d48", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/88e14be5-f7f3-4e67-b4a2-d621eaa49d48" + }, + "educationLevel": [ + "09", + "10", + "11", + "12" + ], + "humanCodingScheme": "HSN-RN.A.1", + "listEnumeration": "1.", + "fullStatement": "Explain how the definition of the meaning of rational exponents follows from extending the properties of integer exponents to those values, allowing for a notation for radicals in terms of rational exponents. For example, we define 51/3 to be the cube root of 5 because we want (51/3)³ = 5(1/3)³ to hold, so (51/3)³ must equal 5.", + "notes": "", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9c8813-d7cc-11e8-824f-0242ac160002", + "identifier": "6b9c8813-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Standard", + "CFItemTypeURI": { + "title": "Standard", + "identifier": "88e14be5-f7f3-4e67-b4a2-d621eaa49d48", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/88e14be5-f7f3-4e67-b4a2-d621eaa49d48" + }, + "educationLevel": [ + "09", + "10", + "11", + "12" + ], + "humanCodingScheme": "HSN-VM.A.1", + "listEnumeration": "1.", + "fullStatement": "(+) Recognize vector quantities as having both magnitude and direction. Represent vector quantities by directed line segments, and use appropriate symbols for vectors and their magnitudes (e.g., v, |v|, ||v||, v).", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9c8a61-d7cc-11e8-824f-0242ac160002", + "identifier": "6b9c8a61-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Standard", + "CFItemTypeURI": { + "title": "Standard", + "identifier": "88e14be5-f7f3-4e67-b4a2-d621eaa49d48", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/88e14be5-f7f3-4e67-b4a2-d621eaa49d48" + }, + "educationLevel": [ + "09", + "10", + "11", + "12" + ], + "humanCodingScheme": "HSS-CP.A.1", + "listEnumeration": "1.", + "fullStatement": "Describe events as subsets of a sample space (the set of outcomes) using characteristics (or categories) of the outcomes, or as unions, intersections, or complements of other events (\"or,\" \"and,\" \"not\").", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9c8d00-d7cc-11e8-824f-0242ac160002", + "identifier": "6b9c8d00-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Standard", + "CFItemTypeURI": { + "title": "Standard", + "identifier": "88e14be5-f7f3-4e67-b4a2-d621eaa49d48", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/88e14be5-f7f3-4e67-b4a2-d621eaa49d48" + }, + "educationLevel": [ + "09", + "10", + "11", + "12" + ], + "humanCodingScheme": "HSS-IC.A.1", + "listEnumeration": "1.", + "fullStatement": "Understand statistics as a process for making inferences about population parameters based on a random sample from that population.", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9c8faf-d7cc-11e8-824f-0242ac160002", + "identifier": "6b9c8faf-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Standard", + "CFItemTypeURI": { + "title": "Standard", + "identifier": "88e14be5-f7f3-4e67-b4a2-d621eaa49d48", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/88e14be5-f7f3-4e67-b4a2-d621eaa49d48" + }, + "educationLevel": [ + "09", + "10", + "11", + "12" + ], + "humanCodingScheme": "HSS-ID.A.1", + "listEnumeration": "1.", + "fullStatement": "Represent data with plots on the real number line (dot plots, histograms, and box plots).", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9c93ca-d7cc-11e8-824f-0242ac160002", + "identifier": "6b9c93ca-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Standard", + "CFItemTypeURI": { + "title": "Standard", + "identifier": "88e14be5-f7f3-4e67-b4a2-d621eaa49d48", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/88e14be5-f7f3-4e67-b4a2-d621eaa49d48" + }, + "educationLevel": [ + "09", + "10", + "11", + "12" + ], + "humanCodingScheme": "HSS-MD.A.1", + "listEnumeration": "1.", + "fullStatement": "(+) Define a random variable for a quantity of interest by assigning a numerical value to each event in a sample space; graph the corresponding probability distribution using the same graphical displays as for data distributions.", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9c9637-d7cc-11e8-824f-0242ac160002", + "identifier": "6b9c9637-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Standard", + "CFItemTypeURI": { + "title": "Standard", + "identifier": "88e14be5-f7f3-4e67-b4a2-d621eaa49d48", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/88e14be5-f7f3-4e67-b4a2-d621eaa49d48" + }, + "educationLevel": [ + "KG" + ], + "humanCodingScheme": "K.CC.A.1", + "listEnumeration": "1.", + "fullStatement": "Count to 100 by ones and by tens.", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9c9896-d7cc-11e8-824f-0242ac160002", + "identifier": "6b9c9896-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Standard", + "CFItemTypeURI": { + "title": "Standard", + "identifier": "88e14be5-f7f3-4e67-b4a2-d621eaa49d48", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/88e14be5-f7f3-4e67-b4a2-d621eaa49d48" + }, + "educationLevel": [ + "KG" + ], + "humanCodingScheme": "K.G.A.1", + "listEnumeration": "1.", + "fullStatement": "Describe objects in the environment using names of shapes, and describe the relative positions of these objects using terms such as above, below, beside, in front of, behind, and next to.", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9c9af3-d7cc-11e8-824f-0242ac160002", + "identifier": "6b9c9af3-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Standard", + "CFItemTypeURI": { + "title": "Standard", + "identifier": "88e14be5-f7f3-4e67-b4a2-d621eaa49d48", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/88e14be5-f7f3-4e67-b4a2-d621eaa49d48" + }, + "educationLevel": [ + "KG" + ], + "humanCodingScheme": "K.MD.A.1", + "listEnumeration": "1.", + "fullStatement": "Describe measurable attributes of objects, such as length or weight. Describe several measurable attributes of a single object.", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9c9da7-d7cc-11e8-824f-0242ac160002", + "identifier": "6b9c9da7-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Standard", + "CFItemTypeURI": { + "title": "Standard", + "identifier": "88e14be5-f7f3-4e67-b4a2-d621eaa49d48", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/88e14be5-f7f3-4e67-b4a2-d621eaa49d48" + }, + "educationLevel": [ + "KG" + ], + "humanCodingScheme": "K.NBT.A.1", + "listEnumeration": "1.", + "fullStatement": "Compose and decompose numbers from 11 to 19 into ten ones and some further ones, e.g., by using objects or drawings, and record each composition or decomposition by a drawing or equation (e.g., 18 = 10 + 8); understand that these numbers are composed of ten ones and one, two, three, four, five, six, seven, eight, or nine ones.", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9ca104-d7cc-11e8-824f-0242ac160002", + "identifier": "6b9ca104-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Standard", + "CFItemTypeURI": { + "title": "Standard", + "identifier": "88e14be5-f7f3-4e67-b4a2-d621eaa49d48", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/88e14be5-f7f3-4e67-b4a2-d621eaa49d48" + }, + "educationLevel": [ + "KG" + ], + "humanCodingScheme": "K.OA.A.1", + "listEnumeration": "1.", + "fullStatement": "Represent addition and subtraction with objects, fingers, mental images, drawings, sounds (e.g., claps), acting out situations, verbal explanations, expressions, or equations.", + "notes": "Drawings need not show details, but should show the mathematics in the problem (This applies wherever drawings are mentioned in the Standards.)", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9ca36a-d7cc-11e8-824f-0242ac160002", + "identifier": "6b9ca36a-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2020-06-20T13:27:27+00:00", + "CFItemType": "Standard", + "CFItemTypeURI": { + "title": "Standard", + "identifier": "88e14be5-f7f3-4e67-b4a2-d621eaa49d48", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/88e14be5-f7f3-4e67-b4a2-d621eaa49d48" + }, + "educationLevel": [ + "KG", + "01", + "02", + "03", + "04", + "05", + "06", + "07", + "08", + "09", + "10", + "11", + "12" + ], + "humanCodingScheme": "MP1", + "listEnumeration": "1.", + "fullStatement": "Make sense of problems and persevere in solving them.", + "notes": "Mathematically proficient students start by explaining to themselves the meaning of a problem and looking for entry points to its solution. They analyze givens, constraints, relationships, and goals. They make conjectures about the form and meaning of the solution and plan a solution pathway rather than simply jumping into a solution attempt. They consider analogous problems, and try special cases and simpler forms of the original problem in order to gain insight into its solution. They monitor and evaluate their progress and change course if necessary. Older students might, depending on the context of the problem, transform algebraic expressions or change the viewing window on their graphing calculator to get the information they need. Mathematically proficient students can explain correspondences between equations, verbal descriptions, tables, and graphs or draw diagrams of important features and relationships, graph data, and search for regularity or trends. Younger students might rely on using concrete objects or pictures to help conceptualize and solve a problem. Mathematically proficient students check their answers to problems using a different method, and they continually ask themselves, \"Does this make sense?\" They can understand the approaches of others to solving complex problems and identify correspondences between different approaches.", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9ca5d9-d7cc-11e8-824f-0242ac160002", + "identifier": "6b9ca5d9-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Standard", + "CFItemTypeURI": { + "title": "Standard", + "identifier": "88e14be5-f7f3-4e67-b4a2-d621eaa49d48", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/88e14be5-f7f3-4e67-b4a2-d621eaa49d48" + }, + "educationLevel": [ + "02" + ], + "humanCodingScheme": "2.MD.D.10", + "listEnumeration": "10.", + "fullStatement": "Draw a picture graph and a bar graph (with single-unit scale) to represent a data set with up to four categories. Solve simple put-together, take-apart, and compare problems using information presented in a bar graph.", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9ca838-d7cc-11e8-824f-0242ac160002", + "identifier": "6b9ca838-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Standard", + "CFItemTypeURI": { + "title": "Standard", + "identifier": "88e14be5-f7f3-4e67-b4a2-d621eaa49d48", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/88e14be5-f7f3-4e67-b4a2-d621eaa49d48" + }, + "educationLevel": [ + "09", + "10", + "11", + "12" + ], + "humanCodingScheme": "HSA-REI.D.10", + "listEnumeration": "10.", + "fullStatement": "Understand that the graph of an equation in two variables is the set of all its solutions plotted in the coordinate plane, often forming a curve (which could be a line).", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9caa8d-d7cc-11e8-824f-0242ac160002", + "identifier": "6b9caa8d-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Standard", + "CFItemTypeURI": { + "title": "Standard", + "identifier": "88e14be5-f7f3-4e67-b4a2-d621eaa49d48", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/88e14be5-f7f3-4e67-b4a2-d621eaa49d48" + }, + "educationLevel": [ + "09", + "10", + "11", + "12" + ], + "humanCodingScheme": "HSG-CO.C.10", + "listEnumeration": "10.", + "fullStatement": "Prove theorems about triangles.", + "notes": "Theorems include: measures of interior angles of a triangle sum to 180°; base angles of isosceles triangles are congruent; the segment joining midpoints of two sides of a triangle is parallel to the third side and half the length; the medians of a triangle meet at a point.", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9cacdd-d7cc-11e8-824f-0242ac160002", + "identifier": "6b9cacdd-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Standard", + "CFItemTypeURI": { + "title": "Standard", + "identifier": "88e14be5-f7f3-4e67-b4a2-d621eaa49d48", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/88e14be5-f7f3-4e67-b4a2-d621eaa49d48" + }, + "educationLevel": [ + "09", + "10", + "11", + "12" + ], + "humanCodingScheme": "HSG-SRT.D.10", + "listEnumeration": "10.", + "fullStatement": "(+) Prove the Laws of Sines and Cosines and use them to solve problems.", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9caf2d-d7cc-11e8-824f-0242ac160002", + "identifier": "6b9caf2d-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Standard", + "CFItemTypeURI": { + "title": "Standard", + "identifier": "88e14be5-f7f3-4e67-b4a2-d621eaa49d48", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/88e14be5-f7f3-4e67-b4a2-d621eaa49d48" + }, + "educationLevel": [ + "09", + "10", + "11", + "12" + ], + "humanCodingScheme": "HSN-VM.C.10", + "listEnumeration": "10.", + "fullStatement": "(+) Understand that the zero and identity matrices play a role in matrix addition and multiplication similar to the role of 0 and 1 in the real numbers. The determinant of a square matrix is nonzero if and only if the matrix has a multiplicative inverse.", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9cb182-d7cc-11e8-824f-0242ac160002", + "identifier": "6b9cb182-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Standard", + "CFItemTypeURI": { + "title": "Standard", + "identifier": "88e14be5-f7f3-4e67-b4a2-d621eaa49d48", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/88e14be5-f7f3-4e67-b4a2-d621eaa49d48" + }, + "educationLevel": [ + "09", + "10", + "11", + "12" + ], + "humanCodingScheme": "HSA-REI.D.11", + "listEnumeration": "11.", + "fullStatement": "Explain why the x-coordinates of the points where the graphs of the equations y = f(x) and y = g(x) intersect are the solutions of the equation f(x) = g(x); find the solutions approximately, e.g., using technology to graph the functions, make tables of values, or find successive approximations. Include cases where f(x) and/or g(x) are linear, polynomial, rational, absolute value, exponential, and logarithmic functions.", + "notes": "Modeling is best interpreted not as a collection of isolated topics but in relation to other standards. Making mathematical models is a Standard for Mathematical Practice, and specific modeling standards appear throughout the high school standards indicated by a star symbol (★). The star symbol sometimes appears on the heading for a group of standards; in that case, it should be understood to apply to all standards in that group.", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9cb3ef-d7cc-11e8-824f-0242ac160002", + "identifier": "6b9cb3ef-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Standard", + "CFItemTypeURI": { + "title": "Standard", + "identifier": "88e14be5-f7f3-4e67-b4a2-d621eaa49d48", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/88e14be5-f7f3-4e67-b4a2-d621eaa49d48" + }, + "educationLevel": [ + "09", + "10", + "11", + "12" + ], + "humanCodingScheme": "HSG-CO.C.11", + "listEnumeration": "11.", + "fullStatement": "Prove theorems about parallelograms.", + "notes": "Theorems include: opposite sides are congruent, opposite angles are congruent, the diagonals of a parallelogram bisect each other, and conversely, rectangles are parallelograms with congruent diagonals.", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9cb64c-d7cc-11e8-824f-0242ac160002", + "identifier": "6b9cb64c-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Standard", + "CFItemTypeURI": { + "title": "Standard", + "identifier": "88e14be5-f7f3-4e67-b4a2-d621eaa49d48", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/88e14be5-f7f3-4e67-b4a2-d621eaa49d48" + }, + "educationLevel": [ + "09", + "10", + "11", + "12" + ], + "humanCodingScheme": "HSG-SRT.D.11", + "listEnumeration": "11.", + "fullStatement": "(+) Understand and apply the Law of Sines and the Law of Cosines to find unknown measurements in right and non-right triangles (e.g., surveying problems, resultant forces).", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9cb89d-d7cc-11e8-824f-0242ac160002", + "identifier": "6b9cb89d-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Standard", + "CFItemTypeURI": { + "title": "Standard", + "identifier": "88e14be5-f7f3-4e67-b4a2-d621eaa49d48", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/88e14be5-f7f3-4e67-b4a2-d621eaa49d48" + }, + "educationLevel": [ + "09", + "10", + "11", + "12" + ], + "humanCodingScheme": "HSN-VM.C.11", + "listEnumeration": "11.", + "fullStatement": "(+) Multiply a vector (regarded as a matrix with one column) by a matrix of suitable dimensions to produce another vector. Work with matrices as transformations of vectors.", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9cbaef-d7cc-11e8-824f-0242ac160002", + "identifier": "6b9cbaef-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "educationLevel": [ + "KG", + "01", + "02", + "03", + "04", + "05", + "06", + "07", + "08" + ], + "listEnumeration": "12", + "fullStatement": "Standards for Math Content", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9cbd4d-d7cc-11e8-824f-0242ac160002", + "identifier": "6b9cbd4d-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Standard", + "CFItemTypeURI": { + "title": "Standard", + "identifier": "88e14be5-f7f3-4e67-b4a2-d621eaa49d48", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/88e14be5-f7f3-4e67-b4a2-d621eaa49d48" + }, + "educationLevel": [ + "09", + "10", + "11", + "12" + ], + "humanCodingScheme": "HSA-REI.D.12", + "listEnumeration": "12.", + "fullStatement": "Graph the solutions to a linear inequality in two variables as a half-plane (excluding the boundary in the case of a strict inequality), and graph the solution set to a system of linear inequalities in two variables as the intersection of the corresponding half-planes.", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9cbfa5-d7cc-11e8-824f-0242ac160002", + "identifier": "6b9cbfa5-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Standard", + "CFItemTypeURI": { + "title": "Standard", + "identifier": "88e14be5-f7f3-4e67-b4a2-d621eaa49d48", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/88e14be5-f7f3-4e67-b4a2-d621eaa49d48" + }, + "educationLevel": [ + "09", + "10", + "11", + "12" + ], + "humanCodingScheme": "HSG-CO.D.12", + "listEnumeration": "12.", + "fullStatement": "Make formal geometric constructions with a variety of tools and methods (compass and straightedge, string, reflective devices, paper folding, dynamic geometric software, etc.). Copying a segment; copying an angle; bisecting a segment; bisecting an angle; constructing perpendicular lines, including the perpendicular bisector of a line segment; and constructing a line parallel to a given line through a point not on the line.", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9cc214-d7cc-11e8-824f-0242ac160002", + "identifier": "6b9cc214-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Standard", + "CFItemTypeURI": { + "title": "Standard", + "identifier": "88e14be5-f7f3-4e67-b4a2-d621eaa49d48", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/88e14be5-f7f3-4e67-b4a2-d621eaa49d48" + }, + "educationLevel": [ + "09", + "10", + "11", + "12" + ], + "humanCodingScheme": "HSN-VM.C.12", + "listEnumeration": "12.", + "fullStatement": "(+) Work with 2 × 2 matrices as transformations of the plane, and interpret the absolute value of the determinant in terms of area.", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9cc50c-d7cc-11e8-824f-0242ac160002", + "identifier": "6b9cc50c-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "educationLevel": [ + "09", + "10", + "11", + "12" + ], + "listEnumeration": "13", + "fullStatement": "Standards for HS Math Content", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9cc7dc-d7cc-11e8-824f-0242ac160002", + "identifier": "6b9cc7dc-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Standard", + "CFItemTypeURI": { + "title": "Standard", + "identifier": "88e14be5-f7f3-4e67-b4a2-d621eaa49d48", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/88e14be5-f7f3-4e67-b4a2-d621eaa49d48" + }, + "educationLevel": [ + "09", + "10", + "11", + "12" + ], + "humanCodingScheme": "HSG-CO.D.13", + "listEnumeration": "13.", + "fullStatement": "Construct an equilateral triangle, a square, and a regular hexagon inscribed in a circle.", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9cca4c-d7cc-11e8-824f-0242ac160002", + "identifier": "6b9cca4c-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Conceptual Category", + "CFItemTypeURI": { + "title": "Conceptual Category", + "identifier": "bb2b7874-ca3b-4a28-bdf9-4ab9b6bdaa3f", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/bb2b7874-ca3b-4a28-bdf9-4ab9b6bdaa3f" + }, + "educationLevel": [ + "09", + "10", + "11", + "12" + ], + "listEnumeration": "2", + "fullStatement": "Algebra", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9cccb8-d7cc-11e8-824f-0242ac160002", + "identifier": "6b9cccb8-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Domain", + "CFItemTypeURI": { + "title": "Domain", + "identifier": "89d67580-f024-5f77-abd7-acfaef39b204", + "uri": "https://case.georgiastandards.org/uri/89d67580-f024-5f77-abd7-acfaef39b204" + }, + "educationLevel": [ + "KG" + ], + "listEnumeration": "2", + "fullStatement": "Operations & Algebraic Thinking", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9ccf1c-d7cc-11e8-824f-0242ac160002", + "identifier": "6b9ccf1c-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Grade Level", + "CFItemTypeURI": { + "title": "Grade Level", + "identifier": "8047d85d-6c8e-5231-bd6d-050731684413", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/8047d85d-6c8e-5231-bd6d-050731684413" + }, + "educationLevel": [ + "01" + ], + "listEnumeration": "2", + "fullStatement": "Grade 1", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9cd178-d7cc-11e8-824f-0242ac160002", + "identifier": "6b9cd178-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Domain", + "CFItemTypeURI": { + "title": "Domain", + "identifier": "89d67580-f024-5f77-abd7-acfaef39b204", + "uri": "https://case.georgiastandards.org/uri/89d67580-f024-5f77-abd7-acfaef39b204" + }, + "educationLevel": [ + "01" + ], + "listEnumeration": "2", + "fullStatement": "Number & Operations in Base Ten", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9cd3d1-d7cc-11e8-824f-0242ac160002", + "identifier": "6b9cd3d1-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Domain", + "CFItemTypeURI": { + "title": "Domain", + "identifier": "89d67580-f024-5f77-abd7-acfaef39b204", + "uri": "https://case.georgiastandards.org/uri/89d67580-f024-5f77-abd7-acfaef39b204" + }, + "educationLevel": [ + "02" + ], + "listEnumeration": "2", + "fullStatement": "Number & Operations in Base Ten", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9cd62f-d7cc-11e8-824f-0242ac160002", + "identifier": "6b9cd62f-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Domain", + "CFItemTypeURI": { + "title": "Domain", + "identifier": "89d67580-f024-5f77-abd7-acfaef39b204", + "uri": "https://case.georgiastandards.org/uri/89d67580-f024-5f77-abd7-acfaef39b204" + }, + "educationLevel": [ + "03" + ], + "listEnumeration": "2", + "fullStatement": "Number & Operations in Base Ten", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9cd88b-d7cc-11e8-824f-0242ac160002", + "identifier": "6b9cd88b-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Domain", + "CFItemTypeURI": { + "title": "Domain", + "identifier": "89d67580-f024-5f77-abd7-acfaef39b204", + "uri": "https://case.georgiastandards.org/uri/89d67580-f024-5f77-abd7-acfaef39b204" + }, + "educationLevel": [ + "04" + ], + "listEnumeration": "2", + "fullStatement": "Number & Operations in Base Ten", + "notes": "Grade 4 expectations in this domain are limited to whole numbers less than or equal to 1,000,000.", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9cdb04-d7cc-11e8-824f-0242ac160002", + "identifier": "6b9cdb04-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Domain", + "CFItemTypeURI": { + "title": "Domain", + "identifier": "89d67580-f024-5f77-abd7-acfaef39b204", + "uri": "https://case.georgiastandards.org/uri/89d67580-f024-5f77-abd7-acfaef39b204" + }, + "educationLevel": [ + "05" + ], + "listEnumeration": "2", + "fullStatement": "Number & Operations in Base Ten", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9cdd6d-d7cc-11e8-824f-0242ac160002", + "identifier": "6b9cdd6d-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Domain", + "CFItemTypeURI": { + "title": "Domain", + "identifier": "89d67580-f024-5f77-abd7-acfaef39b204", + "uri": "https://case.georgiastandards.org/uri/89d67580-f024-5f77-abd7-acfaef39b204" + }, + "educationLevel": [ + "06" + ], + "listEnumeration": "2", + "fullStatement": "The Number System", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9cdfc8-d7cc-11e8-824f-0242ac160002", + "identifier": "6b9cdfc8-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2020-06-19T17:37:20+00:00", + "CFItemType": "Domain", + "CFItemTypeURI": { + "title": "Domain", + "identifier": "89d67580-f024-5f77-abd7-acfaef39b204", + "uri": "https://case.georgiastandards.org/uri/89d67580-f024-5f77-abd7-acfaef39b204" + }, + "educationLevel": [ + "07" + ], + "listEnumeration": "2", + "fullStatement": "The Number System", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9ce2d3-d7cc-11e8-824f-0242ac160002", + "identifier": "6b9ce2d3-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Domain", + "CFItemTypeURI": { + "title": "Domain", + "identifier": "89d67580-f024-5f77-abd7-acfaef39b204", + "uri": "https://case.georgiastandards.org/uri/89d67580-f024-5f77-abd7-acfaef39b204" + }, + "educationLevel": [ + "08" + ], + "listEnumeration": "2", + "fullStatement": "Expressions & Equations", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9ce596-d7cc-11e8-824f-0242ac160002", + "identifier": "6b9ce596-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Cluster", + "CFItemTypeURI": { + "title": "Cluster", + "identifier": "d77602ec-0098-5b60-b0c0-531cc61709e3", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/d77602ec-0098-5b60-b0c0-531cc61709e3" + }, + "educationLevel": [ + "01" + ], + "humanCodingScheme": "1.MD.B", + "listEnumeration": "2", + "fullStatement": "Tell and write time.", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9ce809-d7cc-11e8-824f-0242ac160002", + "identifier": "6b9ce809-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Cluster", + "CFItemTypeURI": { + "title": "Cluster", + "identifier": "d77602ec-0098-5b60-b0c0-531cc61709e3", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/d77602ec-0098-5b60-b0c0-531cc61709e3" + }, + "educationLevel": [ + "01" + ], + "humanCodingScheme": "1.NBT.B", + "listEnumeration": "2", + "fullStatement": "Understand place value.", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9cea7f-d7cc-11e8-824f-0242ac160002", + "identifier": "6b9cea7f-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Cluster", + "CFItemTypeURI": { + "title": "Cluster", + "identifier": "d77602ec-0098-5b60-b0c0-531cc61709e3", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/d77602ec-0098-5b60-b0c0-531cc61709e3" + }, + "educationLevel": [ + "01" + ], + "humanCodingScheme": "1.OA.B", + "listEnumeration": "2", + "fullStatement": "Understand and apply properties of operations and the relationship between addition and subtraction.", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9ceddc-d7cc-11e8-824f-0242ac160002", + "identifier": "6b9ceddc-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Cluster", + "CFItemTypeURI": { + "title": "Cluster", + "identifier": "d77602ec-0098-5b60-b0c0-531cc61709e3", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/d77602ec-0098-5b60-b0c0-531cc61709e3" + }, + "educationLevel": [ + "02" + ], + "humanCodingScheme": "2.MD.B", + "listEnumeration": "2", + "fullStatement": "Relate addition and subtraction to length.", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9cf059-d7cc-11e8-824f-0242ac160002", + "identifier": "6b9cf059-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Cluster", + "CFItemTypeURI": { + "title": "Cluster", + "identifier": "d77602ec-0098-5b60-b0c0-531cc61709e3", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/d77602ec-0098-5b60-b0c0-531cc61709e3" + }, + "educationLevel": [ + "02" + ], + "humanCodingScheme": "2.OA.B", + "listEnumeration": "2", + "fullStatement": "Add and subtract within 20.", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9cf2d0-d7cc-11e8-824f-0242ac160002", + "identifier": "6b9cf2d0-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Cluster", + "CFItemTypeURI": { + "title": "Cluster", + "identifier": "d77602ec-0098-5b60-b0c0-531cc61709e3", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/d77602ec-0098-5b60-b0c0-531cc61709e3" + }, + "educationLevel": [ + "03" + ], + "humanCodingScheme": "3.MD.B", + "listEnumeration": "2", + "fullStatement": "Represent and interpret data.", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9cf538-d7cc-11e8-824f-0242ac160002", + "identifier": "6b9cf538-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Cluster", + "CFItemTypeURI": { + "title": "Cluster", + "identifier": "d77602ec-0098-5b60-b0c0-531cc61709e3", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/d77602ec-0098-5b60-b0c0-531cc61709e3" + }, + "educationLevel": [ + "03" + ], + "humanCodingScheme": "3.OA.B", + "listEnumeration": "2", + "fullStatement": "Understand properties of multiplication and the relationship between multiplication and division.", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9cf7a3-d7cc-11e8-824f-0242ac160002", + "identifier": "6b9cf7a3-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Cluster", + "CFItemTypeURI": { + "title": "Cluster", + "identifier": "d77602ec-0098-5b60-b0c0-531cc61709e3", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/d77602ec-0098-5b60-b0c0-531cc61709e3" + }, + "educationLevel": [ + "04" + ], + "humanCodingScheme": "4.MD.B", + "listEnumeration": "2", + "fullStatement": "Represent and interpret data.", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9cfa11-d7cc-11e8-824f-0242ac160002", + "identifier": "6b9cfa11-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Cluster", + "CFItemTypeURI": { + "title": "Cluster", + "identifier": "d77602ec-0098-5b60-b0c0-531cc61709e3", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/d77602ec-0098-5b60-b0c0-531cc61709e3" + }, + "educationLevel": [ + "04" + ], + "humanCodingScheme": "4.NF.B", + "listEnumeration": "2", + "fullStatement": "Build fractions from unit fractions by applying and extending previous understandings of operations on whole numbers.", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9cfc85-d7cc-11e8-824f-0242ac160002", + "identifier": "6b9cfc85-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Cluster", + "CFItemTypeURI": { + "title": "Cluster", + "identifier": "d77602ec-0098-5b60-b0c0-531cc61709e3", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/d77602ec-0098-5b60-b0c0-531cc61709e3" + }, + "educationLevel": [ + "04" + ], + "humanCodingScheme": "4.OA.B", + "listEnumeration": "2", + "fullStatement": "Gain familiarity with factors and multiples.", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9cfef5-d7cc-11e8-824f-0242ac160002", + "identifier": "6b9cfef5-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Cluster", + "CFItemTypeURI": { + "title": "Cluster", + "identifier": "d77602ec-0098-5b60-b0c0-531cc61709e3", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/d77602ec-0098-5b60-b0c0-531cc61709e3" + }, + "educationLevel": [ + "05" + ], + "humanCodingScheme": "5.G.B", + "listEnumeration": "2", + "fullStatement": "Classify two-dimensional figures into categories based on their properties.", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9d01b9-d7cc-11e8-824f-0242ac160002", + "identifier": "6b9d01b9-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Cluster", + "CFItemTypeURI": { + "title": "Cluster", + "identifier": "d77602ec-0098-5b60-b0c0-531cc61709e3", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/d77602ec-0098-5b60-b0c0-531cc61709e3" + }, + "educationLevel": [ + "05" + ], + "humanCodingScheme": "5.MD.B", + "listEnumeration": "2", + "fullStatement": "Represent and interpret data.", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9d0429-d7cc-11e8-824f-0242ac160002", + "identifier": "6b9d0429-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Cluster", + "CFItemTypeURI": { + "title": "Cluster", + "identifier": "d77602ec-0098-5b60-b0c0-531cc61709e3", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/d77602ec-0098-5b60-b0c0-531cc61709e3" + }, + "educationLevel": [ + "05" + ], + "humanCodingScheme": "5.NF.B", + "listEnumeration": "2", + "fullStatement": "Apply and extend previous understandings of multiplication and division to multiply and divide fractions.", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9d0696-d7cc-11e8-824f-0242ac160002", + "identifier": "6b9d0696-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Cluster", + "CFItemTypeURI": { + "title": "Cluster", + "identifier": "d77602ec-0098-5b60-b0c0-531cc61709e3", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/d77602ec-0098-5b60-b0c0-531cc61709e3" + }, + "educationLevel": [ + "05" + ], + "humanCodingScheme": "5.OA.B", + "listEnumeration": "2", + "fullStatement": "Analyze patterns and relationships.", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9d0903-d7cc-11e8-824f-0242ac160002", + "identifier": "6b9d0903-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Cluster", + "CFItemTypeURI": { + "title": "Cluster", + "identifier": "d77602ec-0098-5b60-b0c0-531cc61709e3", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/d77602ec-0098-5b60-b0c0-531cc61709e3" + }, + "educationLevel": [ + "06" + ], + "humanCodingScheme": "6.EE.C", + "listEnumeration": "2", + "fullStatement": "Represent and analyze quantitative relationships between dependent and independent variables.", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9d0b6d-d7cc-11e8-824f-0242ac160002", + "identifier": "6b9d0b6d-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Cluster", + "CFItemTypeURI": { + "title": "Cluster", + "identifier": "d77602ec-0098-5b60-b0c0-531cc61709e3", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/d77602ec-0098-5b60-b0c0-531cc61709e3" + }, + "educationLevel": [ + "06" + ], + "humanCodingScheme": "6.NS.B", + "listEnumeration": "2", + "fullStatement": "Compute fluently with multi-digit numbers and find common factors and multiples.", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9d0dec-d7cc-11e8-824f-0242ac160002", + "identifier": "6b9d0dec-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Cluster", + "CFItemTypeURI": { + "title": "Cluster", + "identifier": "d77602ec-0098-5b60-b0c0-531cc61709e3", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/d77602ec-0098-5b60-b0c0-531cc61709e3" + }, + "educationLevel": [ + "07" + ], + "humanCodingScheme": "7.EE.B", + "listEnumeration": "2", + "fullStatement": "Solve real-life and mathematical problems using numerical and algebraic expressions and equations.", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9d1068-d7cc-11e8-824f-0242ac160002", + "identifier": "6b9d1068-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Cluster", + "CFItemTypeURI": { + "title": "Cluster", + "identifier": "d77602ec-0098-5b60-b0c0-531cc61709e3", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/d77602ec-0098-5b60-b0c0-531cc61709e3" + }, + "educationLevel": [ + "07" + ], + "humanCodingScheme": "7.G.B", + "listEnumeration": "2", + "fullStatement": "Solve real-life and mathematical problems involving angle measure, area, surface area, and volume.", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9d1384-d7cc-11e8-824f-0242ac160002", + "identifier": "6b9d1384-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Cluster", + "CFItemTypeURI": { + "title": "Cluster", + "identifier": "d77602ec-0098-5b60-b0c0-531cc61709e3", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/d77602ec-0098-5b60-b0c0-531cc61709e3" + }, + "educationLevel": [ + "07" + ], + "humanCodingScheme": "7.SP.B", + "listEnumeration": "2", + "fullStatement": "Draw informal comparative inferences about two populations.", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9d165f-d7cc-11e8-824f-0242ac160002", + "identifier": "6b9d165f-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Cluster", + "CFItemTypeURI": { + "title": "Cluster", + "identifier": "d77602ec-0098-5b60-b0c0-531cc61709e3", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/d77602ec-0098-5b60-b0c0-531cc61709e3" + }, + "educationLevel": [ + "08" + ], + "humanCodingScheme": "8.EE.B", + "listEnumeration": "2", + "fullStatement": "Understand the connections between proportional relationships, lines, and linear equations.", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9d18e7-d7cc-11e8-824f-0242ac160002", + "identifier": "6b9d18e7-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Cluster", + "CFItemTypeURI": { + "title": "Cluster", + "identifier": "d77602ec-0098-5b60-b0c0-531cc61709e3", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/d77602ec-0098-5b60-b0c0-531cc61709e3" + }, + "educationLevel": [ + "08" + ], + "humanCodingScheme": "8.F.B", + "listEnumeration": "2", + "fullStatement": "Use functions to model relationships between quantities.", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9d1b5c-d7cc-11e8-824f-0242ac160002", + "identifier": "6b9d1b5c-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Cluster", + "CFItemTypeURI": { + "title": "Cluster", + "identifier": "d77602ec-0098-5b60-b0c0-531cc61709e3", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/d77602ec-0098-5b60-b0c0-531cc61709e3" + }, + "educationLevel": [ + "08" + ], + "humanCodingScheme": "8.G.B", + "listEnumeration": "2", + "fullStatement": "Understand and apply the Pythagorean Theorem.", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9d1dd5-d7cc-11e8-824f-0242ac160002", + "identifier": "6b9d1dd5-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Standard", + "CFItemTypeURI": { + "title": "Standard", + "identifier": "88e14be5-f7f3-4e67-b4a2-d621eaa49d48", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/88e14be5-f7f3-4e67-b4a2-d621eaa49d48" + }, + "educationLevel": [ + "01" + ], + "humanCodingScheme": "1.G.A.2", + "listEnumeration": "2.", + "fullStatement": "Compose two-dimensional shapes (rectangles, squares, trapezoids, triangles, half-circles, and quarter-circles) or three-dimensional shapes (cubes, right rectangular prisms, right circular cones, and right circular cylinders) to create a composite shape, and compose new shapes from the composite shape.", + "notes": "Students do not need to learn formal names such as \"right rectangular prism.\"", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9d205c-d7cc-11e8-824f-0242ac160002", + "identifier": "6b9d205c-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Standard", + "CFItemTypeURI": { + "title": "Standard", + "identifier": "88e14be5-f7f3-4e67-b4a2-d621eaa49d48", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/88e14be5-f7f3-4e67-b4a2-d621eaa49d48" + }, + "educationLevel": [ + "01" + ], + "humanCodingScheme": "1.MD.A.2", + "listEnumeration": "2.", + "fullStatement": "Express the length of an object as a whole number of length units, by laying multiple copies of a shorter object (the length unit) end to end; understand that the length measurement of an object is the number of same-size length units that span it with no gaps or overlaps.", + "notes": "Limit to contexts where the object being measured is spanned by a whole number of length units with no gaps or overlaps.", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9d22e5-d7cc-11e8-824f-0242ac160002", + "identifier": "6b9d22e5-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Standard", + "CFItemTypeURI": { + "title": "Standard", + "identifier": "88e14be5-f7f3-4e67-b4a2-d621eaa49d48", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/88e14be5-f7f3-4e67-b4a2-d621eaa49d48" + }, + "educationLevel": [ + "01" + ], + "humanCodingScheme": "1.NBT.B.2", + "listEnumeration": "2.", + "fullStatement": "Understand that the two digits of a two-digit number represent amounts of tens and ones. Understand the following as special cases:", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9d25bb-d7cc-11e8-824f-0242ac160002", + "identifier": "6b9d25bb-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Standard", + "CFItemTypeURI": { + "title": "Standard", + "identifier": "88e14be5-f7f3-4e67-b4a2-d621eaa49d48", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/88e14be5-f7f3-4e67-b4a2-d621eaa49d48" + }, + "educationLevel": [ + "01" + ], + "humanCodingScheme": "1.OA.A.2", + "listEnumeration": "2.", + "fullStatement": "Solve word problems that call for addition of three whole numbers whose sum is less than or equal to 20, e.g., by using objects, drawings, and equations with a symbol for the unknown number to represent the problem.", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9d290b-d7cc-11e8-824f-0242ac160002", + "identifier": "6b9d290b-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Standard", + "CFItemTypeURI": { + "title": "Standard", + "identifier": "88e14be5-f7f3-4e67-b4a2-d621eaa49d48", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/88e14be5-f7f3-4e67-b4a2-d621eaa49d48" + }, + "educationLevel": [ + "02" + ], + "humanCodingScheme": "2.G.A.2", + "listEnumeration": "2.", + "fullStatement": "Partition a rectangle into rows and columns of same-size squares and count to find the total number of them.", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9d2bdf-d7cc-11e8-824f-0242ac160002", + "identifier": "6b9d2bdf-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Standard", + "CFItemTypeURI": { + "title": "Standard", + "identifier": "88e14be5-f7f3-4e67-b4a2-d621eaa49d48", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/88e14be5-f7f3-4e67-b4a2-d621eaa49d48" + }, + "educationLevel": [ + "02" + ], + "humanCodingScheme": "2.MD.A.2", + "listEnumeration": "2.", + "fullStatement": "Measure the length of an object twice, using length units of different lengths for the two measurements; describe how the two measurements relate to the size of the unit chosen.", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9d2e64-d7cc-11e8-824f-0242ac160002", + "identifier": "6b9d2e64-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Standard", + "CFItemTypeURI": { + "title": "Standard", + "identifier": "88e14be5-f7f3-4e67-b4a2-d621eaa49d48", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/88e14be5-f7f3-4e67-b4a2-d621eaa49d48" + }, + "educationLevel": [ + "02" + ], + "humanCodingScheme": "2.NBT.A.2", + "listEnumeration": "2.", + "fullStatement": "Count within 1000; skip-count by 5s, 10s, and 100s.", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9d30e1-d7cc-11e8-824f-0242ac160002", + "identifier": "6b9d30e1-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Standard", + "CFItemTypeURI": { + "title": "Standard", + "identifier": "88e14be5-f7f3-4e67-b4a2-d621eaa49d48", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/88e14be5-f7f3-4e67-b4a2-d621eaa49d48" + }, + "educationLevel": [ + "02" + ], + "humanCodingScheme": "2.OA.B.2", + "listEnumeration": "2.", + "fullStatement": "Fluently add and subtract within 20 using mental strategies. By end of Grade 2, know from memory all sums of two one-digit numbers.", + "notes": "See standard 1.OA.6 for a list of mental strategies.", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9d3367-d7cc-11e8-824f-0242ac160002", + "identifier": "6b9d3367-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Standard", + "CFItemTypeURI": { + "title": "Standard", + "identifier": "88e14be5-f7f3-4e67-b4a2-d621eaa49d48", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/88e14be5-f7f3-4e67-b4a2-d621eaa49d48" + }, + "educationLevel": [ + "03" + ], + "humanCodingScheme": "3.G.A.2", + "listEnumeration": "2.", + "fullStatement": "Partition shapes into parts with equal areas. Express the area of each part as a unit fraction of the whole. For example, partition a shape into 4 parts with equal area, and describe the area of each part as 1/4 of the area of the shape.", + "notes": "", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9d3655-d7cc-11e8-824f-0242ac160002", + "identifier": "6b9d3655-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Standard", + "CFItemTypeURI": { + "title": "Standard", + "identifier": "88e14be5-f7f3-4e67-b4a2-d621eaa49d48", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/88e14be5-f7f3-4e67-b4a2-d621eaa49d48" + }, + "educationLevel": [ + "03" + ], + "humanCodingScheme": "3.MD.A.2", + "listEnumeration": "2.", + "fullStatement": "Measure and estimate liquid volumes and masses of objects using standard units of grams (g), kilograms (kg), and liters (l). Add, subtract, multiply, or divide to solve one-step word problems involving masses or volumes that are given in the same units, e.g., by using drawings (such as a beaker with a measurement scale) to represent the problem.", + "notes": "Excludes multiplicative comparison problems (problems involving notions of \"times as much\";", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9d3a38-d7cc-11e8-824f-0242ac160002", + "identifier": "6b9d3a38-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Standard", + "CFItemTypeURI": { + "title": "Standard", + "identifier": "88e14be5-f7f3-4e67-b4a2-d621eaa49d48", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/88e14be5-f7f3-4e67-b4a2-d621eaa49d48" + }, + "educationLevel": [ + "03" + ], + "humanCodingScheme": "3.NBT.A.2", + "listEnumeration": "2.", + "fullStatement": "Fluently add and subtract within 1000 using strategies and algorithms based on place value, properties of operations, and/or the relationship between addition and subtraction.", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9d400d-d7cc-11e8-824f-0242ac160002", + "identifier": "6b9d400d-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Standard", + "CFItemTypeURI": { + "title": "Standard", + "identifier": "88e14be5-f7f3-4e67-b4a2-d621eaa49d48", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/88e14be5-f7f3-4e67-b4a2-d621eaa49d48" + }, + "educationLevel": [ + "03" + ], + "humanCodingScheme": "3.NF.A.2", + "listEnumeration": "2.", + "fullStatement": "Understand a fraction as a number on the number line; represent fractions on a number line diagram.", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9d430d-d7cc-11e8-824f-0242ac160002", + "identifier": "6b9d430d-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Standard", + "CFItemTypeURI": { + "title": "Standard", + "identifier": "88e14be5-f7f3-4e67-b4a2-d621eaa49d48", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/88e14be5-f7f3-4e67-b4a2-d621eaa49d48" + }, + "educationLevel": [ + "03" + ], + "humanCodingScheme": "3.OA.A.2", + "listEnumeration": "2.", + "fullStatement": "Interpret whole-number quotients of whole numbers, e.g., interpret 56 ÷ 8 as the number of objects in each share when 56 objects are partitioned equally into 8 shares, or as a number of shares when 56 objects are partitioned into equal shares of 8 objects each. For example, describe a context in which a number of shares or a number of groups can be expressed as 56 ÷ 8.", + "notes": "", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9d45b3-d7cc-11e8-824f-0242ac160002", + "identifier": "6b9d45b3-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Standard", + "CFItemTypeURI": { + "title": "Standard", + "identifier": "88e14be5-f7f3-4e67-b4a2-d621eaa49d48", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/88e14be5-f7f3-4e67-b4a2-d621eaa49d48" + }, + "educationLevel": [ + "04" + ], + "humanCodingScheme": "4.G.A.2", + "listEnumeration": "2.", + "fullStatement": "Classify two-dimensional figures based on the presence or absence of parallel or perpendicular lines, or the presence or absence of angles of a specified size. Recognize right triangles as a category, and identify right triangles.", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9d484a-d7cc-11e8-824f-0242ac160002", + "identifier": "6b9d484a-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Standard", + "CFItemTypeURI": { + "title": "Standard", + "identifier": "88e14be5-f7f3-4e67-b4a2-d621eaa49d48", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/88e14be5-f7f3-4e67-b4a2-d621eaa49d48" + }, + "educationLevel": [ + "04" + ], + "humanCodingScheme": "4.MD.A.2", + "listEnumeration": "2.", + "fullStatement": "Use the four operations to solve word problems involving distances, intervals of time, liquid volumes, masses of objects, and money, including problems involving simple fractions or decimals, and problems that require expressing measurements given in a larger unit in terms of a smaller unit. Represent measurement quantities using diagrams such as number line diagrams that feature a measurement scale.", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9d4b33-d7cc-11e8-824f-0242ac160002", + "identifier": "6b9d4b33-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Standard", + "CFItemTypeURI": { + "title": "Standard", + "identifier": "88e14be5-f7f3-4e67-b4a2-d621eaa49d48", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/88e14be5-f7f3-4e67-b4a2-d621eaa49d48" + }, + "educationLevel": [ + "04" + ], + "humanCodingScheme": "4.NBT.A.2", + "listEnumeration": "2.", + "fullStatement": "Read and write multi-digit whole numbers using base-ten numerals, number names, and expanded form. Compare two multi-digit numbers based on meanings of the digits in each place, using >, =, and < symbols to record the results of comparisons.", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9d4e66-d7cc-11e8-824f-0242ac160002", + "identifier": "6b9d4e66-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Standard", + "CFItemTypeURI": { + "title": "Standard", + "identifier": "88e14be5-f7f3-4e67-b4a2-d621eaa49d48", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/88e14be5-f7f3-4e67-b4a2-d621eaa49d48" + }, + "educationLevel": [ + "04" + ], + "humanCodingScheme": "4.NF.A.2", + "listEnumeration": "2.", + "fullStatement": "Compare two fractions with different numerators and different denominators, e.g., by creating common denominators or numerators, or by comparing to a benchmark fraction such as 1/2. Recognize that comparisons are valid only when the two fractions refer to the same whole. Record the results of comparisons with symbols >, =, or <, and justify the conclusions, e.g., by using a visual fraction model.", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9d51bd-d7cc-11e8-824f-0242ac160002", + "identifier": "6b9d51bd-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Standard", + "CFItemTypeURI": { + "title": "Standard", + "identifier": "88e14be5-f7f3-4e67-b4a2-d621eaa49d48", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/88e14be5-f7f3-4e67-b4a2-d621eaa49d48" + }, + "educationLevel": [ + "04" + ], + "humanCodingScheme": "4.OA.A.2", + "listEnumeration": "2.", + "fullStatement": "Multiply or divide to solve word problems involving multiplicative comparison, e.g., by using drawings and equations with a symbol for the unknown number to represent the problem, distinguishing multiplicative comparison from additive comparison.", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9d5464-d7cc-11e8-824f-0242ac160002", + "identifier": "6b9d5464-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Standard", + "CFItemTypeURI": { + "title": "Standard", + "identifier": "88e14be5-f7f3-4e67-b4a2-d621eaa49d48", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/88e14be5-f7f3-4e67-b4a2-d621eaa49d48" + }, + "educationLevel": [ + "05" + ], + "humanCodingScheme": "5.G.A.2", + "listEnumeration": "2.", + "fullStatement": "Represent real world and mathematical problems by graphing points in the first quadrant of the coordinate plane, and interpret coordinate values of points in the context of the situation.", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9d5741-d7cc-11e8-824f-0242ac160002", + "identifier": "6b9d5741-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Standard", + "CFItemTypeURI": { + "title": "Standard", + "identifier": "88e14be5-f7f3-4e67-b4a2-d621eaa49d48", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/88e14be5-f7f3-4e67-b4a2-d621eaa49d48" + }, + "educationLevel": [ + "05" + ], + "humanCodingScheme": "5.MD.B.2", + "listEnumeration": "2.", + "fullStatement": "Make a line plot to display a data set of measurements in fractions of a unit (1/2, 1/4, 1/8). Use operations on fractions for this grade to solve problems involving information presented in line plots. For example, given different measurements of liquid in identical beakers, find the amount of liquid each beaker would contain if the total amount in all the beakers were redistributed equally.", + "notes": "", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9d59e4-d7cc-11e8-824f-0242ac160002", + "identifier": "6b9d59e4-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Standard", + "CFItemTypeURI": { + "title": "Standard", + "identifier": "88e14be5-f7f3-4e67-b4a2-d621eaa49d48", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/88e14be5-f7f3-4e67-b4a2-d621eaa49d48" + }, + "educationLevel": [ + "05" + ], + "humanCodingScheme": "5.NBT.A.2", + "listEnumeration": "2.", + "fullStatement": "Explain patterns in the number of zeros of the product when multiplying a number by powers of 10, and explain patterns in the placement of the decimal point when a decimal is multiplied or divided by a power of 10. Use whole-number exponents to denote powers of 10.", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9d5c8c-d7cc-11e8-824f-0242ac160002", + "identifier": "6b9d5c8c-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Standard", + "CFItemTypeURI": { + "title": "Standard", + "identifier": "88e14be5-f7f3-4e67-b4a2-d621eaa49d48", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/88e14be5-f7f3-4e67-b4a2-d621eaa49d48" + }, + "educationLevel": [ + "05" + ], + "humanCodingScheme": "5.NF.A.2", + "listEnumeration": "2.", + "fullStatement": "Solve word problems involving addition and subtraction of fractions referring to the same whole, including cases of unlike denominators, e.g., by using visual fraction models or equations to represent the problem. Use benchmark fractions and number sense of fractions to estimate mentally and assess the reasonableness of answers. For example, recognize an incorrect result 2/5 + 1/2 = 3/7, by observing that 3/7 < 1/2.", + "notes": "", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9d5f43-d7cc-11e8-824f-0242ac160002", + "identifier": "6b9d5f43-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Standard", + "CFItemTypeURI": { + "title": "Standard", + "identifier": "88e14be5-f7f3-4e67-b4a2-d621eaa49d48", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/88e14be5-f7f3-4e67-b4a2-d621eaa49d48" + }, + "educationLevel": [ + "05" + ], + "humanCodingScheme": "5.OA.A.2", + "listEnumeration": "2.", + "fullStatement": "Write simple expressions that record calculations with numbers, and interpret numerical expressions without evaluating them. For example, express the calculation \"add 8 and 7, then multiply by 2\" as 2 × (8 + 7). Recognize that 3 × (18932 + 921) is three times as large as 18932 + 921, without having to calculate the indicated sum or product.", + "notes": "", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9d6298-d7cc-11e8-824f-0242ac160002", + "identifier": "6b9d6298-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Standard", + "CFItemTypeURI": { + "title": "Standard", + "identifier": "88e14be5-f7f3-4e67-b4a2-d621eaa49d48", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/88e14be5-f7f3-4e67-b4a2-d621eaa49d48" + }, + "educationLevel": [ + "06" + ], + "humanCodingScheme": "6.EE.A.2", + "listEnumeration": "2.", + "fullStatement": "Write, read, and evaluate expressions in which letters stand for numbers.", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9d6553-d7cc-11e8-824f-0242ac160002", + "identifier": "6b9d6553-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Standard", + "CFItemTypeURI": { + "title": "Standard", + "identifier": "88e14be5-f7f3-4e67-b4a2-d621eaa49d48", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/88e14be5-f7f3-4e67-b4a2-d621eaa49d48" + }, + "educationLevel": [ + "06" + ], + "humanCodingScheme": "6.G.A.2", + "listEnumeration": "2.", + "fullStatement": "Find the volume of a right rectangular prism with fractional edge lengths by packing it with unit cubes of the appropriate unit fraction edge lengths, and show that the volume is the same as would be found by multiplying the edge lengths of the prism. Apply the formulas V = l w h and V = b h to find volumes of right rectangular prisms with fractional edge lengths in the context of solving real-world and mathematical problems.", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9d680b-d7cc-11e8-824f-0242ac160002", + "identifier": "6b9d680b-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Standard", + "CFItemTypeURI": { + "title": "Standard", + "identifier": "88e14be5-f7f3-4e67-b4a2-d621eaa49d48", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/88e14be5-f7f3-4e67-b4a2-d621eaa49d48" + }, + "educationLevel": [ + "06" + ], + "humanCodingScheme": "6.NS.B.2", + "listEnumeration": "2.", + "fullStatement": "Fluently divide multi-digit numbers using the standard algorithm.", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9d6aa3-d7cc-11e8-824f-0242ac160002", + "identifier": "6b9d6aa3-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Standard", + "CFItemTypeURI": { + "title": "Standard", + "identifier": "88e14be5-f7f3-4e67-b4a2-d621eaa49d48", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/88e14be5-f7f3-4e67-b4a2-d621eaa49d48" + }, + "educationLevel": [ + "06" + ], + "humanCodingScheme": "6.RP.A.2", + "listEnumeration": "2.", + "fullStatement": "Understand the concept of a unit rate a/b associated with a ratio a:b with b ≠ 0, and use rate language in the context of a ratio relationship.", + "notes": "Expectations for unit rates in this grade are limited to non-complex fractions.", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9d6d44-d7cc-11e8-824f-0242ac160002", + "identifier": "6b9d6d44-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Standard", + "CFItemTypeURI": { + "title": "Standard", + "identifier": "88e14be5-f7f3-4e67-b4a2-d621eaa49d48", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/88e14be5-f7f3-4e67-b4a2-d621eaa49d48" + }, + "educationLevel": [ + "06" + ], + "humanCodingScheme": "6.SP.A.2", + "listEnumeration": "2.", + "fullStatement": "Understand that a set of data collected to answer a statistical question has a distribution which can be described by its center, spread, and overall shape.", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9d6fe1-d7cc-11e8-824f-0242ac160002", + "identifier": "6b9d6fe1-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Standard", + "CFItemTypeURI": { + "title": "Standard", + "identifier": "88e14be5-f7f3-4e67-b4a2-d621eaa49d48", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/88e14be5-f7f3-4e67-b4a2-d621eaa49d48" + }, + "educationLevel": [ + "07" + ], + "humanCodingScheme": "7.EE.A.2", + "listEnumeration": "2.", + "fullStatement": "Understand that rewriting an expression in different forms in a problem context can shed light on the problem and how the quantities in it are related. For example, a + 0.05a = 1.05a means that \"increase by 5%\" is the same as \"multiply by 1.05.\"", + "notes": "", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9d73cd-d7cc-11e8-824f-0242ac160002", + "identifier": "6b9d73cd-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Standard", + "CFItemTypeURI": { + "title": "Standard", + "identifier": "88e14be5-f7f3-4e67-b4a2-d621eaa49d48", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/88e14be5-f7f3-4e67-b4a2-d621eaa49d48" + }, + "educationLevel": [ + "07" + ], + "humanCodingScheme": "7.G.A.2", + "listEnumeration": "2.", + "fullStatement": "Draw (freehand, with ruler and protractor, and with technology) geometric shapes with given conditions. Focus on constructing triangles from three measures of angles or sides, noticing when the conditions determine a unique triangle, more than one triangle, or no triangle.", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9d769c-d7cc-11e8-824f-0242ac160002", + "identifier": "6b9d769c-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Standard", + "CFItemTypeURI": { + "title": "Standard", + "identifier": "88e14be5-f7f3-4e67-b4a2-d621eaa49d48", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/88e14be5-f7f3-4e67-b4a2-d621eaa49d48" + }, + "educationLevel": [ + "07" + ], + "humanCodingScheme": "7.NS.A.2", + "listEnumeration": "2.", + "fullStatement": "Apply and extend previous understandings of multiplication and division and of fractions to multiply and divide rational numbers.", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9d7951-d7cc-11e8-824f-0242ac160002", + "identifier": "6b9d7951-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Standard", + "CFItemTypeURI": { + "title": "Standard", + "identifier": "88e14be5-f7f3-4e67-b4a2-d621eaa49d48", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/88e14be5-f7f3-4e67-b4a2-d621eaa49d48" + }, + "educationLevel": [ + "07" + ], + "humanCodingScheme": "7.RP.A.2", + "listEnumeration": "2.", + "fullStatement": "Recognize and represent proportional relationships between quantities.", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9d7bf7-d7cc-11e8-824f-0242ac160002", + "identifier": "6b9d7bf7-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Standard", + "CFItemTypeURI": { + "title": "Standard", + "identifier": "88e14be5-f7f3-4e67-b4a2-d621eaa49d48", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/88e14be5-f7f3-4e67-b4a2-d621eaa49d48" + }, + "educationLevel": [ + "07" + ], + "humanCodingScheme": "7.SP.A.2", + "listEnumeration": "2.", + "fullStatement": "Use data from a random sample to draw inferences about a population with an unknown characteristic of interest. Generate multiple samples (or simulated samples) of the same size to gauge the variation in estimates or predictions. For example, estimate the mean word length in a book by randomly sampling words from the book; predict the winner of a school election based on randomly sampled survey data. Gauge how far off the estimate or prediction might be.", + "notes": "", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9d7eb3-d7cc-11e8-824f-0242ac160002", + "identifier": "6b9d7eb3-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Standard", + "CFItemTypeURI": { + "title": "Standard", + "identifier": "88e14be5-f7f3-4e67-b4a2-d621eaa49d48", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/88e14be5-f7f3-4e67-b4a2-d621eaa49d48" + }, + "educationLevel": [ + "08" + ], + "humanCodingScheme": "8.EE.A.2", + "listEnumeration": "2.", + "fullStatement": "Use square root and cube root symbols to represent solutions to equations of the form x² = p and x³ = p, where p is a positive rational number. Evaluate square roots of small perfect squares and cube roots of small perfect cubes. Know that √2 is irrational.", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9d816d-d7cc-11e8-824f-0242ac160002", + "identifier": "6b9d816d-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Standard", + "CFItemTypeURI": { + "title": "Standard", + "identifier": "88e14be5-f7f3-4e67-b4a2-d621eaa49d48", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/88e14be5-f7f3-4e67-b4a2-d621eaa49d48" + }, + "educationLevel": [ + "08" + ], + "humanCodingScheme": "8.F.A.2", + "listEnumeration": "2.", + "fullStatement": "Compare properties of two functions each represented in a different way (algebraically, graphically, numerically in tables, or by verbal descriptions). For example, given a linear function represented by a table of values and a linear function represented by an algebraic expression, determine which function has the greater rate of change.", + "notes": "", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9d8424-d7cc-11e8-824f-0242ac160002", + "identifier": "6b9d8424-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Standard", + "CFItemTypeURI": { + "title": "Standard", + "identifier": "88e14be5-f7f3-4e67-b4a2-d621eaa49d48", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/88e14be5-f7f3-4e67-b4a2-d621eaa49d48" + }, + "educationLevel": [ + "08" + ], + "humanCodingScheme": "8.G.A.2", + "listEnumeration": "2.", + "fullStatement": "Understand that a two-dimensional figure is congruent to another if the second can be obtained from the first by a sequence of rotations, reflections, and translations; given two congruent figures, describe a sequence that exhibits the congruence between them.", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9d86d6-d7cc-11e8-824f-0242ac160002", + "identifier": "6b9d86d6-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Standard", + "CFItemTypeURI": { + "title": "Standard", + "identifier": "88e14be5-f7f3-4e67-b4a2-d621eaa49d48", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/88e14be5-f7f3-4e67-b4a2-d621eaa49d48" + }, + "educationLevel": [ + "08" + ], + "humanCodingScheme": "8.NS.A.2", + "listEnumeration": "2.", + "fullStatement": "Use rational approximations of irrational numbers to compare the size of irrational numbers, locate them approximately on a number line diagram, and estimate the value of expressions (e.g., π²). For example, by truncating the decimal expansion of √2, show that √2 is between 1 and 2, then between 1.4 and 1.5, and explain how to continue on to get better approximations.", + "notes": "", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9d89d9-d7cc-11e8-824f-0242ac160002", + "identifier": "6b9d89d9-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Standard", + "CFItemTypeURI": { + "title": "Standard", + "identifier": "88e14be5-f7f3-4e67-b4a2-d621eaa49d48", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/88e14be5-f7f3-4e67-b4a2-d621eaa49d48" + }, + "educationLevel": [ + "08" + ], + "humanCodingScheme": "8.SP.A.2", + "listEnumeration": "2.", + "fullStatement": "Know that straight lines are widely used to model relationships between two quantitative variables. For scatter plots that suggest a linear association, informally fit a straight line, and informally assess the model fit by judging the closeness of the data points to the line.", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9d8c97-d7cc-11e8-824f-0242ac160002", + "identifier": "6b9d8c97-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Standard", + "CFItemTypeURI": { + "title": "Standard", + "identifier": "88e14be5-f7f3-4e67-b4a2-d621eaa49d48", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/88e14be5-f7f3-4e67-b4a2-d621eaa49d48" + }, + "educationLevel": [ + "09", + "10", + "11", + "12" + ], + "humanCodingScheme": "HSA-APR.B.2", + "listEnumeration": "2.", + "fullStatement": "Know and apply the Remainder Theorem: For a polynomial p(x) and a number a, the remainder on division by x - a is p(a), so p(a) = 0 if and only if (x - a) is a factor of p(x).", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9d8f41-d7cc-11e8-824f-0242ac160002", + "identifier": "6b9d8f41-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Standard", + "CFItemTypeURI": { + "title": "Standard", + "identifier": "88e14be5-f7f3-4e67-b4a2-d621eaa49d48", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/88e14be5-f7f3-4e67-b4a2-d621eaa49d48" + }, + "educationLevel": [ + "09", + "10", + "11", + "12" + ], + "humanCodingScheme": "HSA-CED.A.2", + "listEnumeration": "2.", + "fullStatement": "Create equations in two or more variables to represent relationships between quantities; graph equations on coordinate axes with labels and scales.", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9d91e7-d7cc-11e8-824f-0242ac160002", + "identifier": "6b9d91e7-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Standard", + "CFItemTypeURI": { + "title": "Standard", + "identifier": "88e14be5-f7f3-4e67-b4a2-d621eaa49d48", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/88e14be5-f7f3-4e67-b4a2-d621eaa49d48" + }, + "educationLevel": [ + "09", + "10", + "11", + "12" + ], + "humanCodingScheme": "HSA-REI.A.2", + "listEnumeration": "2.", + "fullStatement": "Solve simple rational and radical equations in one variable, and give examples showing how extraneous solutions may arise.", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9d9496-d7cc-11e8-824f-0242ac160002", + "identifier": "6b9d9496-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Standard", + "CFItemTypeURI": { + "title": "Standard", + "identifier": "88e14be5-f7f3-4e67-b4a2-d621eaa49d48", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/88e14be5-f7f3-4e67-b4a2-d621eaa49d48" + }, + "educationLevel": [ + "09", + "10", + "11", + "12" + ], + "humanCodingScheme": "HSA-SSE.A.2", + "listEnumeration": "2.", + "fullStatement": "Use the structure of an expression to identify ways to rewrite it. For example, see x4 — y4 as (x²)² — (y²)², thus recognizing it as a difference of squares that can be factored as (x² — y²)(x² + y²).", + "notes": "", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9d974a-d7cc-11e8-824f-0242ac160002", + "identifier": "6b9d974a-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Standard", + "CFItemTypeURI": { + "title": "Standard", + "identifier": "88e14be5-f7f3-4e67-b4a2-d621eaa49d48", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/88e14be5-f7f3-4e67-b4a2-d621eaa49d48" + }, + "educationLevel": [ + "09", + "10", + "11", + "12" + ], + "humanCodingScheme": "HSF-BF.A.2", + "listEnumeration": "2.", + "fullStatement": "Write arithmetic and geometric sequences both recursively and with an explicit formula, use them to model situations, and translate between the two forms.", + "notes": "Modeling is best interpreted not as a collection of isolated topics but in relation to other standards. Making mathematical models is a Standard for Mathematical Practice, and specific modeling standards appear throughout the high school standards indicated by a star symbol (★). The star symbol sometimes appears on the heading for a group of standards; in that case, it should be understood to apply to all standards in that group.", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9d99ff-d7cc-11e8-824f-0242ac160002", + "identifier": "6b9d99ff-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Standard", + "CFItemTypeURI": { + "title": "Standard", + "identifier": "88e14be5-f7f3-4e67-b4a2-d621eaa49d48", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/88e14be5-f7f3-4e67-b4a2-d621eaa49d48" + }, + "educationLevel": [ + "09", + "10", + "11", + "12" + ], + "humanCodingScheme": "HSF-IF.A.2", + "listEnumeration": "2.", + "fullStatement": "Use function notation, evaluate functions for inputs in their domains, and interpret statements that use function notation in terms of a context.", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9d9ca7-d7cc-11e8-824f-0242ac160002", + "identifier": "6b9d9ca7-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Standard", + "CFItemTypeURI": { + "title": "Standard", + "identifier": "88e14be5-f7f3-4e67-b4a2-d621eaa49d48", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/88e14be5-f7f3-4e67-b4a2-d621eaa49d48" + }, + "educationLevel": [ + "09", + "10", + "11", + "12" + ], + "humanCodingScheme": "HSF-LE.A.2", + "listEnumeration": "2.", + "fullStatement": "Construct linear and exponential functions, including arithmetic and geometric sequences, given a graph, a description of a relationship, or two input-output pairs (include reading these from a table).", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9d9f54-d7cc-11e8-824f-0242ac160002", + "identifier": "6b9d9f54-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Standard", + "CFItemTypeURI": { + "title": "Standard", + "identifier": "88e14be5-f7f3-4e67-b4a2-d621eaa49d48", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/88e14be5-f7f3-4e67-b4a2-d621eaa49d48" + }, + "educationLevel": [ + "09", + "10", + "11", + "12" + ], + "humanCodingScheme": "HSF-TF.A.2", + "listEnumeration": "2.", + "fullStatement": "Explain how the unit circle in the coordinate plane enables the extension of trigonometric functions to all real numbers, interpreted as radian measures of angles traversed counterclockwise around the unit circle.", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9da1fd-d7cc-11e8-824f-0242ac160002", + "identifier": "6b9da1fd-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Standard", + "CFItemTypeURI": { + "title": "Standard", + "identifier": "88e14be5-f7f3-4e67-b4a2-d621eaa49d48", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/88e14be5-f7f3-4e67-b4a2-d621eaa49d48" + }, + "educationLevel": [ + "09", + "10", + "11", + "12" + ], + "humanCodingScheme": "HSG-C.A.2", + "listEnumeration": "2.", + "fullStatement": "Identify and describe relationships among inscribed angles, radii, and chords.", + "notes": "Include the relationship between central, inscribed, and circumscribed angles; inscribed angles on a diameter are right angles; the radius of a circle is perpendicular to the tangent where the radius intersects the circle.", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9da4ac-d7cc-11e8-824f-0242ac160002", + "identifier": "6b9da4ac-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Standard", + "CFItemTypeURI": { + "title": "Standard", + "identifier": "88e14be5-f7f3-4e67-b4a2-d621eaa49d48", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/88e14be5-f7f3-4e67-b4a2-d621eaa49d48" + }, + "educationLevel": [ + "09", + "10", + "11", + "12" + ], + "humanCodingScheme": "HSG-CO.A.2", + "listEnumeration": "2.", + "fullStatement": "Represent transformations in the plane using, e.g., transparencies and geometry software; describe transformations as functions that take points in the plane as inputs and give other points as outputs. Compare transformations that preserve distance and angle to those that do not (e.g., translation versus horizontal stretch).", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9da784-d7cc-11e8-824f-0242ac160002", + "identifier": "6b9da784-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Standard", + "CFItemTypeURI": { + "title": "Standard", + "identifier": "88e14be5-f7f3-4e67-b4a2-d621eaa49d48", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/88e14be5-f7f3-4e67-b4a2-d621eaa49d48" + }, + "educationLevel": [ + "09", + "10", + "11", + "12" + ], + "humanCodingScheme": "HSG-GMD.A.2", + "listEnumeration": "2.", + "fullStatement": "(+) Give an informal argument using Cavalieri's principle for the formulas for the volume of a sphere and other solid figures.", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9daa46-d7cc-11e8-824f-0242ac160002", + "identifier": "6b9daa46-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Standard", + "CFItemTypeURI": { + "title": "Standard", + "identifier": "88e14be5-f7f3-4e67-b4a2-d621eaa49d48", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/88e14be5-f7f3-4e67-b4a2-d621eaa49d48" + }, + "educationLevel": [ + "09", + "10", + "11", + "12" + ], + "humanCodingScheme": "HSG-GPE.A.2", + "listEnumeration": "2.", + "fullStatement": "Derive the equation of a parabola given a focus and directrix.", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9dacf0-d7cc-11e8-824f-0242ac160002", + "identifier": "6b9dacf0-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Standard", + "CFItemTypeURI": { + "title": "Standard", + "identifier": "88e14be5-f7f3-4e67-b4a2-d621eaa49d48", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/88e14be5-f7f3-4e67-b4a2-d621eaa49d48" + }, + "educationLevel": [ + "09", + "10", + "11", + "12" + ], + "humanCodingScheme": "HSG-MG.A.2", + "listEnumeration": "2.", + "fullStatement": "Apply concepts of density based on area and volume in modeling situations (e.g., persons per square mile, BTUs per cubic foot).", + "notes": "Modeling is best interpreted not as a collection of isolated topics but in relation to other standards. Making mathematical models is a Standard for Mathematical Practice, and specific modeling standards appear throughout the high school standards indicated by a star symbol (★). The star symbol sometimes appears on the heading for a group of standards; in that case, it should be understood to apply to all standards in that group.", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9db04d-d7cc-11e8-824f-0242ac160002", + "identifier": "6b9db04d-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Standard", + "CFItemTypeURI": { + "title": "Standard", + "identifier": "88e14be5-f7f3-4e67-b4a2-d621eaa49d48", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/88e14be5-f7f3-4e67-b4a2-d621eaa49d48" + }, + "educationLevel": [ + "09", + "10", + "11", + "12" + ], + "humanCodingScheme": "HSG-SRT.A.2", + "listEnumeration": "2.", + "fullStatement": "Given two figures, use the definition of similarity in terms of similarity transformations to decide if they are similar; explain using similarity transformations the meaning of similarity for triangles as the equality of all corresponding pairs of angles and the proportionality of all corresponding pairs of sides.", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9db316-d7cc-11e8-824f-0242ac160002", + "identifier": "6b9db316-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Standard", + "CFItemTypeURI": { + "title": "Standard", + "identifier": "88e14be5-f7f3-4e67-b4a2-d621eaa49d48", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/88e14be5-f7f3-4e67-b4a2-d621eaa49d48" + }, + "educationLevel": [ + "09", + "10", + "11", + "12" + ], + "humanCodingScheme": "HSN-CN.A.2", + "listEnumeration": "2.", + "fullStatement": "Use the relation i² = -1 and the commutative, associative, and distributive properties to add, subtract, and multiply complex numbers.", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9db5bb-d7cc-11e8-824f-0242ac160002", + "identifier": "6b9db5bb-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Standard", + "CFItemTypeURI": { + "title": "Standard", + "identifier": "88e14be5-f7f3-4e67-b4a2-d621eaa49d48", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/88e14be5-f7f3-4e67-b4a2-d621eaa49d48" + }, + "educationLevel": [ + "09", + "10", + "11", + "12" + ], + "humanCodingScheme": "HSN-Q.A.2", + "listEnumeration": "2.", + "fullStatement": "Define appropriate quantities for the purpose of descriptive modeling.", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9db867-d7cc-11e8-824f-0242ac160002", + "identifier": "6b9db867-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Standard", + "CFItemTypeURI": { + "title": "Standard", + "identifier": "88e14be5-f7f3-4e67-b4a2-d621eaa49d48", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/88e14be5-f7f3-4e67-b4a2-d621eaa49d48" + }, + "educationLevel": [ + "09", + "10", + "11", + "12" + ], + "humanCodingScheme": "HSN-RN.A.2", + "listEnumeration": "2.", + "fullStatement": "Rewrite expressions involving radicals and rational exponents using the properties of exponents.", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9dbb12-d7cc-11e8-824f-0242ac160002", + "identifier": "6b9dbb12-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Standard", + "CFItemTypeURI": { + "title": "Standard", + "identifier": "88e14be5-f7f3-4e67-b4a2-d621eaa49d48", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/88e14be5-f7f3-4e67-b4a2-d621eaa49d48" + }, + "educationLevel": [ + "09", + "10", + "11", + "12" + ], + "humanCodingScheme": "HSN-VM.A.2", + "listEnumeration": "2.", + "fullStatement": "(+) Find the components of a vector by subtracting the coordinates of an initial point from the coordinates of a terminal point.", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9dbdbf-d7cc-11e8-824f-0242ac160002", + "identifier": "6b9dbdbf-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Standard", + "CFItemTypeURI": { + "title": "Standard", + "identifier": "88e14be5-f7f3-4e67-b4a2-d621eaa49d48", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/88e14be5-f7f3-4e67-b4a2-d621eaa49d48" + }, + "educationLevel": [ + "09", + "10", + "11", + "12" + ], + "humanCodingScheme": "HSS-CP.A.2", + "listEnumeration": "2.", + "fullStatement": "Understand that two events A and B are independent if the probability of A and B occurring together is the product of their probabilities, and use this characterization to determine if they are independent.", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9dc070-d7cc-11e8-824f-0242ac160002", + "identifier": "6b9dc070-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Standard", + "CFItemTypeURI": { + "title": "Standard", + "identifier": "88e14be5-f7f3-4e67-b4a2-d621eaa49d48", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/88e14be5-f7f3-4e67-b4a2-d621eaa49d48" + }, + "educationLevel": [ + "09", + "10", + "11", + "12" + ], + "humanCodingScheme": "HSS-IC.A.2", + "listEnumeration": "2.", + "fullStatement": "Decide if a specified model is consistent with results from a given data-generating process, e.g., using simulation. For example, a model says a spinning coin falls heads up with probability 0.5. Would a result of 5 tails in a row cause you to question the model?", + "notes": "", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9dc322-d7cc-11e8-824f-0242ac160002", + "identifier": "6b9dc322-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Standard", + "CFItemTypeURI": { + "title": "Standard", + "identifier": "88e14be5-f7f3-4e67-b4a2-d621eaa49d48", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/88e14be5-f7f3-4e67-b4a2-d621eaa49d48" + }, + "educationLevel": [ + "09", + "10", + "11", + "12" + ], + "humanCodingScheme": "HSS-ID.A.2", + "listEnumeration": "2.", + "fullStatement": "Use statistics appropriate to the shape of the data distribution to compare center (median, mean) and spread (interquartile range, standard deviation) of two or more different data sets.", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9dc5cd-d7cc-11e8-824f-0242ac160002", + "identifier": "6b9dc5cd-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Standard", + "CFItemTypeURI": { + "title": "Standard", + "identifier": "88e14be5-f7f3-4e67-b4a2-d621eaa49d48", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/88e14be5-f7f3-4e67-b4a2-d621eaa49d48" + }, + "educationLevel": [ + "09", + "10", + "11", + "12" + ], + "humanCodingScheme": "HSS-MD.A.2", + "listEnumeration": "2.", + "fullStatement": "(+) Calculate the expected value of a random variable; interpret it as the mean of the probability distribution.", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9dc8da-d7cc-11e8-824f-0242ac160002", + "identifier": "6b9dc8da-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Standard", + "CFItemTypeURI": { + "title": "Standard", + "identifier": "88e14be5-f7f3-4e67-b4a2-d621eaa49d48", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/88e14be5-f7f3-4e67-b4a2-d621eaa49d48" + }, + "educationLevel": [ + "KG" + ], + "humanCodingScheme": "K.CC.A.2", + "listEnumeration": "2.", + "fullStatement": "Count forward beginning from a given number within the known sequence (instead of having to begin at 1).", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9dcb8a-d7cc-11e8-824f-0242ac160002", + "identifier": "6b9dcb8a-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Standard", + "CFItemTypeURI": { + "title": "Standard", + "identifier": "88e14be5-f7f3-4e67-b4a2-d621eaa49d48", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/88e14be5-f7f3-4e67-b4a2-d621eaa49d48" + }, + "educationLevel": [ + "KG" + ], + "humanCodingScheme": "K.G.A.2", + "listEnumeration": "2.", + "fullStatement": "Correctly name shapes regardless of their orientations or overall size.", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9dce41-d7cc-11e8-824f-0242ac160002", + "identifier": "6b9dce41-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Standard", + "CFItemTypeURI": { + "title": "Standard", + "identifier": "88e14be5-f7f3-4e67-b4a2-d621eaa49d48", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/88e14be5-f7f3-4e67-b4a2-d621eaa49d48" + }, + "educationLevel": [ + "KG" + ], + "humanCodingScheme": "K.MD.A.2", + "listEnumeration": "2.", + "fullStatement": "Directly compare two objects with a measurable attribute in common, to see which object has \"more of\"/\"less of\" the attribute, and describe the difference. For example, directly compare the heights of two children and describe one child as taller/shorter.", + "notes": "", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9dd100-d7cc-11e8-824f-0242ac160002", + "identifier": "6b9dd100-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Standard", + "CFItemTypeURI": { + "title": "Standard", + "identifier": "88e14be5-f7f3-4e67-b4a2-d621eaa49d48", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/88e14be5-f7f3-4e67-b4a2-d621eaa49d48" + }, + "educationLevel": [ + "KG" + ], + "humanCodingScheme": "K.OA.A.2", + "listEnumeration": "2.", + "fullStatement": "Solve addition and subtraction word problems, and add and subtract within 10, e.g., by using objects or drawings to represent the problem.", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9dd3bc-d7cc-11e8-824f-0242ac160002", + "identifier": "6b9dd3bc-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2020-06-20T13:27:41+00:00", + "CFItemType": "Standard", + "CFItemTypeURI": { + "title": "Standard", + "identifier": "88e14be5-f7f3-4e67-b4a2-d621eaa49d48", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/88e14be5-f7f3-4e67-b4a2-d621eaa49d48" + }, + "educationLevel": [ + "KG", + "01", + "02", + "03", + "04", + "05", + "06", + "07", + "08", + "09", + "10", + "11", + "12" + ], + "humanCodingScheme": "MP2", + "listEnumeration": "2.", + "fullStatement": "Reason abstractly and quantitatively.", + "notes": "Mathematically proficient students make sense of quantities and their relationships in problem situations. They bring two complementary abilities to bear on problems involving quantitative relationships: the ability to decontextualize—to abstract a given situation and represent it symbolically and manipulate the representing symbols as if they have a life of their own, without necessarily attending to their referents—and the ability to contextualize, to pause as needed during the manipulation process in order to probe into the referents for the symbols involved. Quantitative reasoning entails habits of creating a coherent representation of the problem at hand; considering the units involved; attending to the meaning of quantities, not just how to compute them; and knowing and flexibly using different properties of operations and objects.", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9dd712-d7cc-11e8-824f-0242ac160002", + "identifier": "6b9dd712-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Conceptual Category", + "CFItemTypeURI": { + "title": "Conceptual Category", + "identifier": "bb2b7874-ca3b-4a28-bdf9-4ab9b6bdaa3f", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/bb2b7874-ca3b-4a28-bdf9-4ab9b6bdaa3f" + }, + "educationLevel": [ + "09", + "10", + "11", + "12" + ], + "listEnumeration": "3", + "fullStatement": "Functions", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9dda33-d7cc-11e8-824f-0242ac160002", + "identifier": "6b9dda33-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Domain", + "CFItemTypeURI": { + "title": "Domain", + "identifier": "89d67580-f024-5f77-abd7-acfaef39b204", + "uri": "https://case.georgiastandards.org/uri/89d67580-f024-5f77-abd7-acfaef39b204" + }, + "educationLevel": [ + "KG" + ], + "listEnumeration": "3", + "fullStatement": "Number & Operations in Base Ten", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9ddc4d-d7cc-11e8-824f-0242ac160002", + "identifier": "6b9ddc4d-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Grade Level", + "CFItemTypeURI": { + "title": "Grade Level", + "identifier": "8047d85d-6c8e-5231-bd6d-050731684413", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/8047d85d-6c8e-5231-bd6d-050731684413" + }, + "educationLevel": [ + "02" + ], + "listEnumeration": "3", + "fullStatement": "Grade 2", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9dde61-d7cc-11e8-824f-0242ac160002", + "identifier": "6b9dde61-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Domain", + "CFItemTypeURI": { + "title": "Domain", + "identifier": "89d67580-f024-5f77-abd7-acfaef39b204", + "uri": "https://case.georgiastandards.org/uri/89d67580-f024-5f77-abd7-acfaef39b204" + }, + "educationLevel": [ + "01" + ], + "listEnumeration": "3", + "fullStatement": "Measurement & Data", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9de075-d7cc-11e8-824f-0242ac160002", + "identifier": "6b9de075-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Domain", + "CFItemTypeURI": { + "title": "Domain", + "identifier": "89d67580-f024-5f77-abd7-acfaef39b204", + "uri": "https://case.georgiastandards.org/uri/89d67580-f024-5f77-abd7-acfaef39b204" + }, + "educationLevel": [ + "02" + ], + "listEnumeration": "3", + "fullStatement": "Measurement & Data", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9de28e-d7cc-11e8-824f-0242ac160002", + "identifier": "6b9de28e-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Domain", + "CFItemTypeURI": { + "title": "Domain", + "identifier": "89d67580-f024-5f77-abd7-acfaef39b204", + "uri": "https://case.georgiastandards.org/uri/89d67580-f024-5f77-abd7-acfaef39b204" + }, + "educationLevel": [ + "03" + ], + "listEnumeration": "3", + "fullStatement": "Number & Operations—Fractions", + "notes": "Grade 3 expectations in this domain are limited to fractions with denominators 2, 3, 4, 6, and 8.", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9de49f-d7cc-11e8-824f-0242ac160002", + "identifier": "6b9de49f-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Domain", + "CFItemTypeURI": { + "title": "Domain", + "identifier": "89d67580-f024-5f77-abd7-acfaef39b204", + "uri": "https://case.georgiastandards.org/uri/89d67580-f024-5f77-abd7-acfaef39b204" + }, + "educationLevel": [ + "04" + ], + "listEnumeration": "3", + "fullStatement": "Number & Operations—Fractions", + "notes": "Grade 4 expectations in this domain are limited to fractions with denominators 2, 3, 4, 5, 6, 8, 10, 12, and 100.", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9de6b2-d7cc-11e8-824f-0242ac160002", + "identifier": "6b9de6b2-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Domain", + "CFItemTypeURI": { + "title": "Domain", + "identifier": "89d67580-f024-5f77-abd7-acfaef39b204", + "uri": "https://case.georgiastandards.org/uri/89d67580-f024-5f77-abd7-acfaef39b204" + }, + "educationLevel": [ + "05" + ], + "listEnumeration": "3", + "fullStatement": "Number & Operations—Fractions", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9de8c5-d7cc-11e8-824f-0242ac160002", + "identifier": "6b9de8c5-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Domain", + "CFItemTypeURI": { + "title": "Domain", + "identifier": "89d67580-f024-5f77-abd7-acfaef39b204", + "uri": "https://case.georgiastandards.org/uri/89d67580-f024-5f77-abd7-acfaef39b204" + }, + "educationLevel": [ + "06" + ], + "listEnumeration": "3", + "fullStatement": "Expressions & Equations", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9dead9-d7cc-11e8-824f-0242ac160002", + "identifier": "6b9dead9-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Domain", + "CFItemTypeURI": { + "title": "Domain", + "identifier": "89d67580-f024-5f77-abd7-acfaef39b204", + "uri": "https://case.georgiastandards.org/uri/89d67580-f024-5f77-abd7-acfaef39b204" + }, + "educationLevel": [ + "07" + ], + "listEnumeration": "3", + "fullStatement": "Expressions & Equations", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9deced-d7cc-11e8-824f-0242ac160002", + "identifier": "6b9deced-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Domain", + "CFItemTypeURI": { + "title": "Domain", + "identifier": "89d67580-f024-5f77-abd7-acfaef39b204", + "uri": "https://case.georgiastandards.org/uri/89d67580-f024-5f77-abd7-acfaef39b204" + }, + "educationLevel": [ + "08" + ], + "listEnumeration": "3", + "fullStatement": "Functions", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9deefa-d7cc-11e8-824f-0242ac160002", + "identifier": "6b9deefa-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Cluster", + "CFItemTypeURI": { + "title": "Cluster", + "identifier": "d77602ec-0098-5b60-b0c0-531cc61709e3", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/d77602ec-0098-5b60-b0c0-531cc61709e3" + }, + "educationLevel": [ + "01" + ], + "humanCodingScheme": "1.MD.C", + "listEnumeration": "3", + "fullStatement": "Represent and interpret data.", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9df10d-d7cc-11e8-824f-0242ac160002", + "identifier": "6b9df10d-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Cluster", + "CFItemTypeURI": { + "title": "Cluster", + "identifier": "d77602ec-0098-5b60-b0c0-531cc61709e3", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/d77602ec-0098-5b60-b0c0-531cc61709e3" + }, + "educationLevel": [ + "01" + ], + "humanCodingScheme": "1.OA.C", + "listEnumeration": "3", + "fullStatement": "Add and subtract within 20.", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9df333-d7cc-11e8-824f-0242ac160002", + "identifier": "6b9df333-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Cluster", + "CFItemTypeURI": { + "title": "Cluster", + "identifier": "d77602ec-0098-5b60-b0c0-531cc61709e3", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/d77602ec-0098-5b60-b0c0-531cc61709e3" + }, + "educationLevel": [ + "02" + ], + "humanCodingScheme": "2.MD.C", + "listEnumeration": "3", + "fullStatement": "Work with time and money.", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9df54b-d7cc-11e8-824f-0242ac160002", + "identifier": "6b9df54b-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Cluster", + "CFItemTypeURI": { + "title": "Cluster", + "identifier": "d77602ec-0098-5b60-b0c0-531cc61709e3", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/d77602ec-0098-5b60-b0c0-531cc61709e3" + }, + "educationLevel": [ + "02" + ], + "humanCodingScheme": "2.OA.C", + "listEnumeration": "3", + "fullStatement": "Work with equal groups of objects to gain foundations for multiplication.", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9df769-d7cc-11e8-824f-0242ac160002", + "identifier": "6b9df769-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Cluster", + "CFItemTypeURI": { + "title": "Cluster", + "identifier": "d77602ec-0098-5b60-b0c0-531cc61709e3", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/d77602ec-0098-5b60-b0c0-531cc61709e3" + }, + "educationLevel": [ + "03" + ], + "humanCodingScheme": "3.MD.C", + "listEnumeration": "3", + "fullStatement": "Geometric measurement: understand concepts of area and relate area to multiplication and to addition.", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9df989-d7cc-11e8-824f-0242ac160002", + "identifier": "6b9df989-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Cluster", + "CFItemTypeURI": { + "title": "Cluster", + "identifier": "d77602ec-0098-5b60-b0c0-531cc61709e3", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/d77602ec-0098-5b60-b0c0-531cc61709e3" + }, + "educationLevel": [ + "03" + ], + "humanCodingScheme": "3.OA.C", + "listEnumeration": "3", + "fullStatement": "Multiply and divide within 100.", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9dfbae-d7cc-11e8-824f-0242ac160002", + "identifier": "6b9dfbae-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Cluster", + "CFItemTypeURI": { + "title": "Cluster", + "identifier": "d77602ec-0098-5b60-b0c0-531cc61709e3", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/d77602ec-0098-5b60-b0c0-531cc61709e3" + }, + "educationLevel": [ + "04" + ], + "humanCodingScheme": "4.NF.C", + "listEnumeration": "3", + "fullStatement": "Understand decimal notation for fractions, and compare decimal fractions.", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9dfeaf-d7cc-11e8-824f-0242ac160002", + "identifier": "6b9dfeaf-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Cluster", + "CFItemTypeURI": { + "title": "Cluster", + "identifier": "d77602ec-0098-5b60-b0c0-531cc61709e3", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/d77602ec-0098-5b60-b0c0-531cc61709e3" + }, + "educationLevel": [ + "04" + ], + "humanCodingScheme": "4.OA.C", + "listEnumeration": "3", + "fullStatement": "Generate and analyze patterns.", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9e00d3-d7cc-11e8-824f-0242ac160002", + "identifier": "6b9e00d3-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Cluster", + "CFItemTypeURI": { + "title": "Cluster", + "identifier": "d77602ec-0098-5b60-b0c0-531cc61709e3", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/d77602ec-0098-5b60-b0c0-531cc61709e3" + }, + "educationLevel": [ + "06" + ], + "humanCodingScheme": "6.NS.C", + "listEnumeration": "3", + "fullStatement": "Apply and extend previous understandings of numbers to the system of rational numbers.", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9e02f1-d7cc-11e8-824f-0242ac160002", + "identifier": "6b9e02f1-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Cluster", + "CFItemTypeURI": { + "title": "Cluster", + "identifier": "d77602ec-0098-5b60-b0c0-531cc61709e3", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/d77602ec-0098-5b60-b0c0-531cc61709e3" + }, + "educationLevel": [ + "07" + ], + "humanCodingScheme": "7.SP.C", + "listEnumeration": "3", + "fullStatement": "Investigate chance processes and develop, use, and evaluate probability models.", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9e0511-d7cc-11e8-824f-0242ac160002", + "identifier": "6b9e0511-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Cluster", + "CFItemTypeURI": { + "title": "Cluster", + "identifier": "d77602ec-0098-5b60-b0c0-531cc61709e3", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/d77602ec-0098-5b60-b0c0-531cc61709e3" + }, + "educationLevel": [ + "08" + ], + "humanCodingScheme": "8.EE.C", + "listEnumeration": "3", + "fullStatement": "Analyze and solve linear equations and pairs of simultaneous linear equations.", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9e072c-d7cc-11e8-824f-0242ac160002", + "identifier": "6b9e072c-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Cluster", + "CFItemTypeURI": { + "title": "Cluster", + "identifier": "d77602ec-0098-5b60-b0c0-531cc61709e3", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/d77602ec-0098-5b60-b0c0-531cc61709e3" + }, + "educationLevel": [ + "08" + ], + "humanCodingScheme": "8.G.C", + "listEnumeration": "3", + "fullStatement": "Solve real-world and mathematical problems involving volume of cylinders, cones, and spheres.", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9e0945-d7cc-11e8-824f-0242ac160002", + "identifier": "6b9e0945-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Standard", + "CFItemTypeURI": { + "title": "Standard", + "identifier": "88e14be5-f7f3-4e67-b4a2-d621eaa49d48", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/88e14be5-f7f3-4e67-b4a2-d621eaa49d48" + }, + "educationLevel": [ + "01" + ], + "humanCodingScheme": "1.G.A.3", + "listEnumeration": "3.", + "fullStatement": "Partition circles and rectangles into two and four equal shares, describe the shares using the words halves, fourths, and quarters, and use the phrases half of, fourth of, and quarter of. Describe the whole as two of, or four of the shares. Understand for these examples that decomposing into more equal shares creates smaller shares.", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9e0b6c-d7cc-11e8-824f-0242ac160002", + "identifier": "6b9e0b6c-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Standard", + "CFItemTypeURI": { + "title": "Standard", + "identifier": "88e14be5-f7f3-4e67-b4a2-d621eaa49d48", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/88e14be5-f7f3-4e67-b4a2-d621eaa49d48" + }, + "educationLevel": [ + "01" + ], + "humanCodingScheme": "1.MD.B.3", + "listEnumeration": "3.", + "fullStatement": "Tell and write time in hours and half-hours using analog and digital clocks.", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9e0d8d-d7cc-11e8-824f-0242ac160002", + "identifier": "6b9e0d8d-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Standard", + "CFItemTypeURI": { + "title": "Standard", + "identifier": "88e14be5-f7f3-4e67-b4a2-d621eaa49d48", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/88e14be5-f7f3-4e67-b4a2-d621eaa49d48" + }, + "educationLevel": [ + "01" + ], + "humanCodingScheme": "1.NBT.B.3", + "listEnumeration": "3.", + "fullStatement": "Compare two two-digit numbers based on meanings of the tens and ones digits, recording the results of comparisons with the symbols >, =, and <.", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9e0fbe-d7cc-11e8-824f-0242ac160002", + "identifier": "6b9e0fbe-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Standard", + "CFItemTypeURI": { + "title": "Standard", + "identifier": "88e14be5-f7f3-4e67-b4a2-d621eaa49d48", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/88e14be5-f7f3-4e67-b4a2-d621eaa49d48" + }, + "educationLevel": [ + "01" + ], + "humanCodingScheme": "1.OA.B.3", + "listEnumeration": "3.", + "fullStatement": "Apply properties of operations as strategies to add and subtract.", + "notes": "Students need not use formal terms for these properties.", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9e11e8-d7cc-11e8-824f-0242ac160002", + "identifier": "6b9e11e8-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Standard", + "CFItemTypeURI": { + "title": "Standard", + "identifier": "88e14be5-f7f3-4e67-b4a2-d621eaa49d48", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/88e14be5-f7f3-4e67-b4a2-d621eaa49d48" + }, + "educationLevel": [ + "02" + ], + "humanCodingScheme": "2.G.A.3", + "listEnumeration": "3.", + "fullStatement": "Partition circles and rectangles into two, three, or four equal shares, describe the shares using the words halves, thirds, half of, a third of, etc., and describe the whole as two halves, three thirds, four fourths. Recognize that equal shares of identical wholes need not have the same shape.", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9e1402-d7cc-11e8-824f-0242ac160002", + "identifier": "6b9e1402-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Standard", + "CFItemTypeURI": { + "title": "Standard", + "identifier": "88e14be5-f7f3-4e67-b4a2-d621eaa49d48", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/88e14be5-f7f3-4e67-b4a2-d621eaa49d48" + }, + "educationLevel": [ + "02" + ], + "humanCodingScheme": "2.MD.A.3", + "listEnumeration": "3.", + "fullStatement": "Estimate lengths using units of inches, feet, centimeters, and meters.", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9e166e-d7cc-11e8-824f-0242ac160002", + "identifier": "6b9e166e-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Standard", + "CFItemTypeURI": { + "title": "Standard", + "identifier": "88e14be5-f7f3-4e67-b4a2-d621eaa49d48", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/88e14be5-f7f3-4e67-b4a2-d621eaa49d48" + }, + "educationLevel": [ + "02" + ], + "humanCodingScheme": "2.NBT.A.3", + "listEnumeration": "3.", + "fullStatement": "Read and write numbers to 1000 using base-ten numerals, number names, and expanded form.", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9e188a-d7cc-11e8-824f-0242ac160002", + "identifier": "6b9e188a-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Standard", + "CFItemTypeURI": { + "title": "Standard", + "identifier": "88e14be5-f7f3-4e67-b4a2-d621eaa49d48", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/88e14be5-f7f3-4e67-b4a2-d621eaa49d48" + }, + "educationLevel": [ + "02" + ], + "humanCodingScheme": "2.OA.C.3", + "listEnumeration": "3.", + "fullStatement": "Determine whether a group of objects (up to 20) has an odd or even number of members, e.g., by pairing objects or counting them by 2s; write an equation to express an even number as a sum of two equal addends.", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9e1aec-d7cc-11e8-824f-0242ac160002", + "identifier": "6b9e1aec-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Standard", + "CFItemTypeURI": { + "title": "Standard", + "identifier": "88e14be5-f7f3-4e67-b4a2-d621eaa49d48", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/88e14be5-f7f3-4e67-b4a2-d621eaa49d48" + }, + "educationLevel": [ + "03" + ], + "humanCodingScheme": "3.MD.B.3", + "listEnumeration": "3.", + "fullStatement": "Draw a scaled picture graph and a scaled bar graph to represent a data set with several categories. Solve one- and two-step \"how many more\" and \"how many less\" problems using information presented in scaled bar graphs. For example, draw a bar graph in which each square in the bar graph might represent 5 pets.", + "notes": "", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9e1e66-d7cc-11e8-824f-0242ac160002", + "identifier": "6b9e1e66-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Standard", + "CFItemTypeURI": { + "title": "Standard", + "identifier": "88e14be5-f7f3-4e67-b4a2-d621eaa49d48", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/88e14be5-f7f3-4e67-b4a2-d621eaa49d48" + }, + "educationLevel": [ + "03" + ], + "humanCodingScheme": "3.NBT.A.3", + "listEnumeration": "3.", + "fullStatement": "Multiply one-digit whole numbers by multiples of 10 in the range 10—90 (e.g., 9 × 80, 5 × 60) using strategies based on place value and properties of operations.", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9e210d-d7cc-11e8-824f-0242ac160002", + "identifier": "6b9e210d-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Standard", + "CFItemTypeURI": { + "title": "Standard", + "identifier": "88e14be5-f7f3-4e67-b4a2-d621eaa49d48", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/88e14be5-f7f3-4e67-b4a2-d621eaa49d48" + }, + "educationLevel": [ + "03" + ], + "humanCodingScheme": "3.NF.A.3", + "listEnumeration": "3.", + "fullStatement": "Explain equivalence of fractions in special cases, and compare fractions by reasoning about their size.", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9e233f-d7cc-11e8-824f-0242ac160002", + "identifier": "6b9e233f-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Standard", + "CFItemTypeURI": { + "title": "Standard", + "identifier": "88e14be5-f7f3-4e67-b4a2-d621eaa49d48", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/88e14be5-f7f3-4e67-b4a2-d621eaa49d48" + }, + "educationLevel": [ + "03" + ], + "humanCodingScheme": "3.OA.A.3", + "listEnumeration": "3.", + "fullStatement": "Use multiplication and division within 100 to solve word problems in situations involving equal groups, arrays, and measurement quantities, e.g., by using drawings and equations with a symbol for the unknown number to represent the problem.", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9e25bb-d7cc-11e8-824f-0242ac160002", + "identifier": "6b9e25bb-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Standard", + "CFItemTypeURI": { + "title": "Standard", + "identifier": "88e14be5-f7f3-4e67-b4a2-d621eaa49d48", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/88e14be5-f7f3-4e67-b4a2-d621eaa49d48" + }, + "educationLevel": [ + "04" + ], + "humanCodingScheme": "4.G.A.3", + "listEnumeration": "3.", + "fullStatement": "Recognize a line of symmetry for a two-dimensional figure as a line across the figure such that the figure can be folded along the line into matching parts. Identify line-symmetric figures and draw lines of symmetry.", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9e283e-d7cc-11e8-824f-0242ac160002", + "identifier": "6b9e283e-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Standard", + "CFItemTypeURI": { + "title": "Standard", + "identifier": "88e14be5-f7f3-4e67-b4a2-d621eaa49d48", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/88e14be5-f7f3-4e67-b4a2-d621eaa49d48" + }, + "educationLevel": [ + "04" + ], + "humanCodingScheme": "4.MD.A.3", + "listEnumeration": "3.", + "fullStatement": "Apply the area and perimeter formulas for rectangles in real world and mathematical problems. For example, find the width of a rectangular room given the area of the flooring and the length, by viewing the area formula as a multiplication equation with an unknown factor.", + "notes": "", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9e2a5e-d7cc-11e8-824f-0242ac160002", + "identifier": "6b9e2a5e-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Standard", + "CFItemTypeURI": { + "title": "Standard", + "identifier": "88e14be5-f7f3-4e67-b4a2-d621eaa49d48", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/88e14be5-f7f3-4e67-b4a2-d621eaa49d48" + }, + "educationLevel": [ + "04" + ], + "humanCodingScheme": "4.NBT.A.3", + "listEnumeration": "3.", + "fullStatement": "Use place value understanding to round multi-digit whole numbers to any place.", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9e2c7a-d7cc-11e8-824f-0242ac160002", + "identifier": "6b9e2c7a-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Standard", + "CFItemTypeURI": { + "title": "Standard", + "identifier": "88e14be5-f7f3-4e67-b4a2-d621eaa49d48", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/88e14be5-f7f3-4e67-b4a2-d621eaa49d48" + }, + "educationLevel": [ + "04" + ], + "humanCodingScheme": "4.NF.B.3", + "listEnumeration": "3.", + "fullStatement": "Understand a fraction a/b with a > 1 as a sum of fractions 1/b.", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9e2e91-d7cc-11e8-824f-0242ac160002", + "identifier": "6b9e2e91-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Standard", + "CFItemTypeURI": { + "title": "Standard", + "identifier": "88e14be5-f7f3-4e67-b4a2-d621eaa49d48", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/88e14be5-f7f3-4e67-b4a2-d621eaa49d48" + }, + "educationLevel": [ + "04" + ], + "humanCodingScheme": "4.OA.A.3", + "listEnumeration": "3.", + "fullStatement": "Solve multistep word problems posed with whole numbers and having whole-number answers using the four operations, including problems in which remainders must be interpreted. Represent these problems using equations with a letter standing for the unknown quantity. Assess the reasonableness of answers using mental computation and estimation strategies including rounding.", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9e30b9-d7cc-11e8-824f-0242ac160002", + "identifier": "6b9e30b9-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Standard", + "CFItemTypeURI": { + "title": "Standard", + "identifier": "88e14be5-f7f3-4e67-b4a2-d621eaa49d48", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/88e14be5-f7f3-4e67-b4a2-d621eaa49d48" + }, + "educationLevel": [ + "05" + ], + "humanCodingScheme": "5.G.B.3", + "listEnumeration": "3.", + "fullStatement": "Understand that attributes belonging to a category of two-dimensional figures also belong to all subcategories of that category. For example, all rectangles have four right angles and squares are rectangles, so all squares have four right angles.", + "notes": "", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9e32dc-d7cc-11e8-824f-0242ac160002", + "identifier": "6b9e32dc-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Standard", + "CFItemTypeURI": { + "title": "Standard", + "identifier": "88e14be5-f7f3-4e67-b4a2-d621eaa49d48", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/88e14be5-f7f3-4e67-b4a2-d621eaa49d48" + }, + "educationLevel": [ + "05" + ], + "humanCodingScheme": "5.MD.C.3", + "listEnumeration": "3.", + "fullStatement": "Recognize volume as an attribute of solid figures and understand concepts of volume measurement.", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9e34fb-d7cc-11e8-824f-0242ac160002", + "identifier": "6b9e34fb-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Standard", + "CFItemTypeURI": { + "title": "Standard", + "identifier": "88e14be5-f7f3-4e67-b4a2-d621eaa49d48", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/88e14be5-f7f3-4e67-b4a2-d621eaa49d48" + }, + "educationLevel": [ + "05" + ], + "humanCodingScheme": "5.NBT.A.3", + "listEnumeration": "3.", + "fullStatement": "Read, write, and compare decimals to thousandths.", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9e3712-d7cc-11e8-824f-0242ac160002", + "identifier": "6b9e3712-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Standard", + "CFItemTypeURI": { + "title": "Standard", + "identifier": "88e14be5-f7f3-4e67-b4a2-d621eaa49d48", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/88e14be5-f7f3-4e67-b4a2-d621eaa49d48" + }, + "educationLevel": [ + "05" + ], + "humanCodingScheme": "5.NF.B.3", + "listEnumeration": "3.", + "fullStatement": "Interpret a fraction as division of the numerator by the denominator (a/b = a ÷ b). Solve word problems involving division of whole numbers leading to answers in the form of fractions or mixed numbers, e.g., by using visual fraction models or equations to represent the problem. For example, interpret 3/4 as the result of dividing 3 by 4, noting that 3/4 multiplied by 4 equals 3, and that when 3 wholes are shared equally among 4 people each person has a share of size 3/4. If 9 people want to share a 50-pound sack of rice equally by weight, how many pounds of rice should each person get? Between what two whole numbers does your answer lie?", + "notes": "", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9e3939-d7cc-11e8-824f-0242ac160002", + "identifier": "6b9e3939-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Standard", + "CFItemTypeURI": { + "title": "Standard", + "identifier": "88e14be5-f7f3-4e67-b4a2-d621eaa49d48", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/88e14be5-f7f3-4e67-b4a2-d621eaa49d48" + }, + "educationLevel": [ + "05" + ], + "humanCodingScheme": "5.OA.B.3", + "listEnumeration": "3.", + "fullStatement": "Generate two numerical patterns using two given rules. Identify apparent relationships between corresponding terms. Form ordered pairs consisting of corresponding terms from the two patterns, and graph the ordered pairs on a coordinate plane. For example, given the rule \"Add 3\" and the starting number 0, and given the rule \"Add 6\" and the starting number 0, generate terms in the resulting sequences, and observe that the terms in one sequence are twice the corresponding terms in the other sequence. Explain informally why this is so.", + "notes": "", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9e3b67-d7cc-11e8-824f-0242ac160002", + "identifier": "6b9e3b67-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Standard", + "CFItemTypeURI": { + "title": "Standard", + "identifier": "88e14be5-f7f3-4e67-b4a2-d621eaa49d48", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/88e14be5-f7f3-4e67-b4a2-d621eaa49d48" + }, + "educationLevel": [ + "06" + ], + "humanCodingScheme": "6.EE.A.3", + "listEnumeration": "3.", + "fullStatement": "Apply the properties of operations to generate equivalent expressions. For example, apply the distributive property to the expression 3 (2 + x) to produce the equivalent expression 6 + 3x; apply the distributive property to the expression 24x + 18y to produce the equivalent expression 6 (4x + 3y); apply properties of operations to y + y + y to produce the equivalent expression 3y.", + "notes": "", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9e3d90-d7cc-11e8-824f-0242ac160002", + "identifier": "6b9e3d90-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Standard", + "CFItemTypeURI": { + "title": "Standard", + "identifier": "88e14be5-f7f3-4e67-b4a2-d621eaa49d48", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/88e14be5-f7f3-4e67-b4a2-d621eaa49d48" + }, + "educationLevel": [ + "06" + ], + "humanCodingScheme": "6.G.A.3", + "listEnumeration": "3.", + "fullStatement": "Draw polygons in the coordinate plane given coordinates for the vertices; use coordinates to find the length of a side joining points with the same first coordinate or the same second coordinate. Apply these techniques in the context of solving real-world and mathematical problems.", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9e3fc3-d7cc-11e8-824f-0242ac160002", + "identifier": "6b9e3fc3-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Standard", + "CFItemTypeURI": { + "title": "Standard", + "identifier": "88e14be5-f7f3-4e67-b4a2-d621eaa49d48", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/88e14be5-f7f3-4e67-b4a2-d621eaa49d48" + }, + "educationLevel": [ + "06" + ], + "humanCodingScheme": "6.NS.B.3", + "listEnumeration": "3.", + "fullStatement": "Fluently add, subtract, multiply, and divide multi-digit decimals using the standard algorithm for each operation.", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9e41ee-d7cc-11e8-824f-0242ac160002", + "identifier": "6b9e41ee-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Standard", + "CFItemTypeURI": { + "title": "Standard", + "identifier": "88e14be5-f7f3-4e67-b4a2-d621eaa49d48", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/88e14be5-f7f3-4e67-b4a2-d621eaa49d48" + }, + "educationLevel": [ + "06" + ], + "humanCodingScheme": "6.RP.A.3", + "listEnumeration": "3.", + "fullStatement": "Use ratio and rate reasoning to solve real-world and mathematical problems, e.g., by reasoning about tables of equivalent ratios, tape diagrams, double number line diagrams, or equations.", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9e441c-d7cc-11e8-824f-0242ac160002", + "identifier": "6b9e441c-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Standard", + "CFItemTypeURI": { + "title": "Standard", + "identifier": "88e14be5-f7f3-4e67-b4a2-d621eaa49d48", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/88e14be5-f7f3-4e67-b4a2-d621eaa49d48" + }, + "educationLevel": [ + "06" + ], + "humanCodingScheme": "6.SP.A.3", + "listEnumeration": "3.", + "fullStatement": "Recognize that a measure of center for a numerical data set summarizes all of its values with a single number, while a measure of variation describes how its values vary with a single number.", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9e464c-d7cc-11e8-824f-0242ac160002", + "identifier": "6b9e464c-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Standard", + "CFItemTypeURI": { + "title": "Standard", + "identifier": "88e14be5-f7f3-4e67-b4a2-d621eaa49d48", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/88e14be5-f7f3-4e67-b4a2-d621eaa49d48" + }, + "educationLevel": [ + "07" + ], + "humanCodingScheme": "7.EE.B.3", + "listEnumeration": "3.", + "fullStatement": "Solve multi-step real-life and mathematical problems posed with positive and negative rational numbers in any form (whole numbers, fractions, and decimals), using tools strategically. Apply properties of operations to calculate with numbers in any form; convert between forms as appropriate; and assess the reasonableness of answers using mental computation and estimation strategies. For example: If a woman making $25 an hour gets a 10% raise, she will make an additional 1/10 of her salary an hour, or $2.50, for a new salary of $27.50. If you want to place a towel bar 9 3/4 inches long in the center of a door that is 27 1/2 inches wide, you will need to place the bar about 9 inches from each edge; this estimate can be used as a check on the exact computation.", + "notes": "", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9e4885-d7cc-11e8-824f-0242ac160002", + "identifier": "6b9e4885-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Standard", + "CFItemTypeURI": { + "title": "Standard", + "identifier": "88e14be5-f7f3-4e67-b4a2-d621eaa49d48", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/88e14be5-f7f3-4e67-b4a2-d621eaa49d48" + }, + "educationLevel": [ + "07" + ], + "humanCodingScheme": "7.G.A.3", + "listEnumeration": "3.", + "fullStatement": "Describe the two-dimensional figures that result from slicing three-dimensional figures, as in plane sections of right rectangular prisms and right rectangular pyramids.", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9e4aa8-d7cc-11e8-824f-0242ac160002", + "identifier": "6b9e4aa8-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Standard", + "CFItemTypeURI": { + "title": "Standard", + "identifier": "88e14be5-f7f3-4e67-b4a2-d621eaa49d48", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/88e14be5-f7f3-4e67-b4a2-d621eaa49d48" + }, + "educationLevel": [ + "07" + ], + "humanCodingScheme": "7.NS.A.3", + "listEnumeration": "3.", + "fullStatement": "Solve real-world and mathematical problems involving the four operations with rational numbers.", + "notes": "Computations with rational numbers extend the rules for manipulating fractions to complex fractions.", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9e4d0c-d7cc-11e8-824f-0242ac160002", + "identifier": "6b9e4d0c-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Standard", + "CFItemTypeURI": { + "title": "Standard", + "identifier": "88e14be5-f7f3-4e67-b4a2-d621eaa49d48", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/88e14be5-f7f3-4e67-b4a2-d621eaa49d48" + }, + "educationLevel": [ + "07" + ], + "humanCodingScheme": "7.RP.A.3", + "listEnumeration": "3.", + "fullStatement": "Use proportional relationships to solve multistep ratio and percent problems.", + "notes": "Examples: simple interest, tax, markups and markdowns, gratuities and commissions, fees, percent increase and decrease, percent error.", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9e4f3a-d7cc-11e8-824f-0242ac160002", + "identifier": "6b9e4f3a-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Standard", + "CFItemTypeURI": { + "title": "Standard", + "identifier": "88e14be5-f7f3-4e67-b4a2-d621eaa49d48", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/88e14be5-f7f3-4e67-b4a2-d621eaa49d48" + }, + "educationLevel": [ + "07" + ], + "humanCodingScheme": "7.SP.B.3", + "listEnumeration": "3.", + "fullStatement": "Informally assess the degree of visual overlap of two numerical data distributions with similar variabilities, measuring the difference between the centers by expressing it as a multiple of a measure of variability. For example, the mean height of players on the basketball team is 10 cm greater than the mean height of players on the soccer team, about twice the variability (mean absolute deviation) on either team; on a dot plot, the separation between the two distributions of heights is noticeable.", + "notes": "", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9e5169-d7cc-11e8-824f-0242ac160002", + "identifier": "6b9e5169-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Standard", + "CFItemTypeURI": { + "title": "Standard", + "identifier": "88e14be5-f7f3-4e67-b4a2-d621eaa49d48", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/88e14be5-f7f3-4e67-b4a2-d621eaa49d48" + }, + "educationLevel": [ + "08" + ], + "humanCodingScheme": "8.EE.A.3", + "listEnumeration": "3.", + "fullStatement": "Use numbers expressed in the form of a single digit times an integer power of 10 to estimate very large or very small quantities, and to express how many times as much one is than the other. For example, estimate the population of the United States as 3 × 108 and the population of the world as 7 × 109, and determine that the world population is more than 20 times larger.", + "notes": "", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9e5396-d7cc-11e8-824f-0242ac160002", + "identifier": "6b9e5396-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Standard", + "CFItemTypeURI": { + "title": "Standard", + "identifier": "88e14be5-f7f3-4e67-b4a2-d621eaa49d48", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/88e14be5-f7f3-4e67-b4a2-d621eaa49d48" + }, + "educationLevel": [ + "08" + ], + "humanCodingScheme": "8.F.A.3", + "listEnumeration": "3.", + "fullStatement": "Interpret the equation y = mx + b as defining a linear function, whose graph is a straight line; give examples of functions that are not linear. For example, the function A = s² giving the area of a square as a function of its side length is not linear because its graph contains the points (1,1), (2,4) and (3,9), which are not on a straight line.", + "notes": "", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9e55c9-d7cc-11e8-824f-0242ac160002", + "identifier": "6b9e55c9-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Standard", + "CFItemTypeURI": { + "title": "Standard", + "identifier": "88e14be5-f7f3-4e67-b4a2-d621eaa49d48", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/88e14be5-f7f3-4e67-b4a2-d621eaa49d48" + }, + "educationLevel": [ + "08" + ], + "humanCodingScheme": "8.G.A.3", + "listEnumeration": "3.", + "fullStatement": "Describe the effect of dilations, translations, rotations, and reflections on two-dimensional figures using coordinates.", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9e5802-d7cc-11e8-824f-0242ac160002", + "identifier": "6b9e5802-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Standard", + "CFItemTypeURI": { + "title": "Standard", + "identifier": "88e14be5-f7f3-4e67-b4a2-d621eaa49d48", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/88e14be5-f7f3-4e67-b4a2-d621eaa49d48" + }, + "educationLevel": [ + "08" + ], + "humanCodingScheme": "8.SP.A.3", + "listEnumeration": "3.", + "fullStatement": "Use the equation of a linear model to solve problems in the context of bivariate measurement data, interpreting the slope and intercept. For example, in a linear model for a biology experiment, interpret a slope of 1.5 cm/hr as meaning that an additional hour of sunlight each day is associated with an additional 1.5 cm in mature plant height.", + "notes": "", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9e5a39-d7cc-11e8-824f-0242ac160002", + "identifier": "6b9e5a39-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Standard", + "CFItemTypeURI": { + "title": "Standard", + "identifier": "88e14be5-f7f3-4e67-b4a2-d621eaa49d48", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/88e14be5-f7f3-4e67-b4a2-d621eaa49d48" + }, + "educationLevel": [ + "09", + "10", + "11", + "12" + ], + "humanCodingScheme": "HSA-APR.B.3", + "listEnumeration": "3.", + "fullStatement": "Identify zeros of polynomials when suitable factorizations are available, and use the zeros to construct a rough graph of the function defined by the polynomial.", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9e5c5a-d7cc-11e8-824f-0242ac160002", + "identifier": "6b9e5c5a-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Standard", + "CFItemTypeURI": { + "title": "Standard", + "identifier": "88e14be5-f7f3-4e67-b4a2-d621eaa49d48", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/88e14be5-f7f3-4e67-b4a2-d621eaa49d48" + }, + "educationLevel": [ + "09", + "10", + "11", + "12" + ], + "humanCodingScheme": "HSA-CED.A.3", + "listEnumeration": "3.", + "fullStatement": "Represent constraints by equations or inequalities, and by systems of equations and/or inequalities, and interpret solutions as viable or nonviable options in a modeling context. For example, represent inequalities describing nutritional and cost constraints on combinations of different foods.", + "notes": "", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9e5ed4-d7cc-11e8-824f-0242ac160002", + "identifier": "6b9e5ed4-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Standard", + "CFItemTypeURI": { + "title": "Standard", + "identifier": "88e14be5-f7f3-4e67-b4a2-d621eaa49d48", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/88e14be5-f7f3-4e67-b4a2-d621eaa49d48" + }, + "educationLevel": [ + "09", + "10", + "11", + "12" + ], + "humanCodingScheme": "HSA-REI.B.3", + "listEnumeration": "3.", + "fullStatement": "Solve linear equations and inequalities in one variable, including equations with coefficients represented by letters.", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9e60fe-d7cc-11e8-824f-0242ac160002", + "identifier": "6b9e60fe-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Standard", + "CFItemTypeURI": { + "title": "Standard", + "identifier": "88e14be5-f7f3-4e67-b4a2-d621eaa49d48", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/88e14be5-f7f3-4e67-b4a2-d621eaa49d48" + }, + "educationLevel": [ + "09", + "10", + "11", + "12" + ], + "humanCodingScheme": "HSA-SSE.B.3", + "listEnumeration": "3.", + "fullStatement": "Choose and produce an equivalent form of an expression to reveal and explain properties of the quantity represented by the expression.", + "notes": "Modeling is best interpreted not as a collection of isolated topics but in relation to other standards. Making mathematical models is a Standard for Mathematical Practice, and specific modeling standards appear throughout the high school standards indicated by a star symbol (★). The star symbol sometimes appears on the heading for a group of standards; in that case, it should be understood to apply to all standards in that group.", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9e632e-d7cc-11e8-824f-0242ac160002", + "identifier": "6b9e632e-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Standard", + "CFItemTypeURI": { + "title": "Standard", + "identifier": "88e14be5-f7f3-4e67-b4a2-d621eaa49d48", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/88e14be5-f7f3-4e67-b4a2-d621eaa49d48" + }, + "educationLevel": [ + "09", + "10", + "11", + "12" + ], + "humanCodingScheme": "HSF-BF.B.3", + "listEnumeration": "3.", + "fullStatement": "Identify the effect on the graph of replacing f(x) by f(x) + k, k f(x), f(kx), and f(x + k) for specific values of k (both positive and negative); find the value of k given the graphs. Experiment with cases and illustrate an explanation of the effects on the graph using technology. Include recognizing even and odd functions from their graphs and algebraic expressions for them.", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9e656a-d7cc-11e8-824f-0242ac160002", + "identifier": "6b9e656a-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Standard", + "CFItemTypeURI": { + "title": "Standard", + "identifier": "88e14be5-f7f3-4e67-b4a2-d621eaa49d48", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/88e14be5-f7f3-4e67-b4a2-d621eaa49d48" + }, + "educationLevel": [ + "09", + "10", + "11", + "12" + ], + "humanCodingScheme": "HSF-IF.A.3", + "listEnumeration": "3.", + "fullStatement": "Recognize that sequences are functions, sometimes defined recursively, whose domain is a subset of the integers. For example, the Fibonacci sequence is defined recursively by f(0) = f(1) = 1, f(n+1) = f(n) + f(n-1) for n ≥ 1.", + "notes": "", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9e67a9-d7cc-11e8-824f-0242ac160002", + "identifier": "6b9e67a9-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Standard", + "CFItemTypeURI": { + "title": "Standard", + "identifier": "88e14be5-f7f3-4e67-b4a2-d621eaa49d48", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/88e14be5-f7f3-4e67-b4a2-d621eaa49d48" + }, + "educationLevel": [ + "09", + "10", + "11", + "12" + ], + "humanCodingScheme": "HSF-LE.A.3", + "listEnumeration": "3.", + "fullStatement": "Observe using graphs and tables that a quantity increasing exponentially eventually exceeds a quantity increasing linearly, quadratically, or (more generally) as a polynomial function.", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9e6a3a-d7cc-11e8-824f-0242ac160002", + "identifier": "6b9e6a3a-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Standard", + "CFItemTypeURI": { + "title": "Standard", + "identifier": "88e14be5-f7f3-4e67-b4a2-d621eaa49d48", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/88e14be5-f7f3-4e67-b4a2-d621eaa49d48" + }, + "educationLevel": [ + "09", + "10", + "11", + "12" + ], + "humanCodingScheme": "HSF-TF.A.3", + "listEnumeration": "3.", + "fullStatement": "(+) Use special triangles to determine geometrically the values of sine, cosine, tangent for π/3, π/4 and π/6, and use the unit circle to express the values of sine, cosine, and tangent for π-x, π+x, and 2π-x in terms of their values for x, where x is any real number.", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9e6c76-d7cc-11e8-824f-0242ac160002", + "identifier": "6b9e6c76-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Standard", + "CFItemTypeURI": { + "title": "Standard", + "identifier": "88e14be5-f7f3-4e67-b4a2-d621eaa49d48", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/88e14be5-f7f3-4e67-b4a2-d621eaa49d48" + }, + "educationLevel": [ + "09", + "10", + "11", + "12" + ], + "humanCodingScheme": "HSG-C.A.3", + "listEnumeration": "3.", + "fullStatement": "Construct the inscribed and circumscribed circles of a triangle, and prove properties of angles for a quadrilateral inscribed in a circle.", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9e6ead-d7cc-11e8-824f-0242ac160002", + "identifier": "6b9e6ead-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Standard", + "CFItemTypeURI": { + "title": "Standard", + "identifier": "88e14be5-f7f3-4e67-b4a2-d621eaa49d48", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/88e14be5-f7f3-4e67-b4a2-d621eaa49d48" + }, + "educationLevel": [ + "09", + "10", + "11", + "12" + ], + "humanCodingScheme": "HSG-CO.A.3", + "listEnumeration": "3.", + "fullStatement": "Given a rectangle, parallelogram, trapezoid, or regular polygon, describe the rotations and reflections that carry it onto itself.", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9e70eb-d7cc-11e8-824f-0242ac160002", + "identifier": "6b9e70eb-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Standard", + "CFItemTypeURI": { + "title": "Standard", + "identifier": "88e14be5-f7f3-4e67-b4a2-d621eaa49d48", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/88e14be5-f7f3-4e67-b4a2-d621eaa49d48" + }, + "educationLevel": [ + "09", + "10", + "11", + "12" + ], + "humanCodingScheme": "HSG-GMD.A.3", + "listEnumeration": "3.", + "fullStatement": "Use volume formulas for cylinders, pyramids, cones, and spheres to solve problems.", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9e7402-d7cc-11e8-824f-0242ac160002", + "identifier": "6b9e7402-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Standard", + "CFItemTypeURI": { + "title": "Standard", + "identifier": "88e14be5-f7f3-4e67-b4a2-d621eaa49d48", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/88e14be5-f7f3-4e67-b4a2-d621eaa49d48" + }, + "educationLevel": [ + "09", + "10", + "11", + "12" + ], + "humanCodingScheme": "HSG-GPE.A.3", + "listEnumeration": "3.", + "fullStatement": "(+) Derive the equations of ellipses and hyperbolas given the foci, using the fact that the sum or difference of distances from the foci is constant.", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9e763a-d7cc-11e8-824f-0242ac160002", + "identifier": "6b9e763a-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Standard", + "CFItemTypeURI": { + "title": "Standard", + "identifier": "88e14be5-f7f3-4e67-b4a2-d621eaa49d48", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/88e14be5-f7f3-4e67-b4a2-d621eaa49d48" + }, + "educationLevel": [ + "09", + "10", + "11", + "12" + ], + "humanCodingScheme": "HSG-MG.A.3", + "listEnumeration": "3.", + "fullStatement": "Apply geometric methods to solve design problems (e.g., designing an object or structure to satisfy physical constraints or minimize cost; working with typographic grid systems based on ratios).", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9e7866-d7cc-11e8-824f-0242ac160002", + "identifier": "6b9e7866-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Standard", + "CFItemTypeURI": { + "title": "Standard", + "identifier": "88e14be5-f7f3-4e67-b4a2-d621eaa49d48", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/88e14be5-f7f3-4e67-b4a2-d621eaa49d48" + }, + "educationLevel": [ + "09", + "10", + "11", + "12" + ], + "humanCodingScheme": "HSG-SRT.A.3", + "listEnumeration": "3.", + "fullStatement": "Use the properties of similarity transformations to establish the AA criterion for two triangles to be similar.", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9e7a98-d7cc-11e8-824f-0242ac160002", + "identifier": "6b9e7a98-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Standard", + "CFItemTypeURI": { + "title": "Standard", + "identifier": "88e14be5-f7f3-4e67-b4a2-d621eaa49d48", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/88e14be5-f7f3-4e67-b4a2-d621eaa49d48" + }, + "educationLevel": [ + "09", + "10", + "11", + "12" + ], + "humanCodingScheme": "HSN-CN.A.3", + "listEnumeration": "3.", + "fullStatement": "(+) Find the conjugate of a complex number; use conjugates to find moduli and quotients of complex numbers.", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9e7cc4-d7cc-11e8-824f-0242ac160002", + "identifier": "6b9e7cc4-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Standard", + "CFItemTypeURI": { + "title": "Standard", + "identifier": "88e14be5-f7f3-4e67-b4a2-d621eaa49d48", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/88e14be5-f7f3-4e67-b4a2-d621eaa49d48" + }, + "educationLevel": [ + "09", + "10", + "11", + "12" + ], + "humanCodingScheme": "HSN-Q.A.3", + "listEnumeration": "3.", + "fullStatement": "Choose a level of accuracy appropriate to limitations on measurement when reporting quantities.", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9e7ef2-d7cc-11e8-824f-0242ac160002", + "identifier": "6b9e7ef2-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Standard", + "CFItemTypeURI": { + "title": "Standard", + "identifier": "88e14be5-f7f3-4e67-b4a2-d621eaa49d48", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/88e14be5-f7f3-4e67-b4a2-d621eaa49d48" + }, + "educationLevel": [ + "09", + "10", + "11", + "12" + ], + "humanCodingScheme": "HSN-RN.B.3", + "listEnumeration": "3.", + "fullStatement": "Explain why the sum or product of two rational numbers is rational; that the sum of a rational number and an irrational number is irrational; and that the product of a nonzero rational number and an irrational number is irrational.", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9e8132-d7cc-11e8-824f-0242ac160002", + "identifier": "6b9e8132-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Standard", + "CFItemTypeURI": { + "title": "Standard", + "identifier": "88e14be5-f7f3-4e67-b4a2-d621eaa49d48", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/88e14be5-f7f3-4e67-b4a2-d621eaa49d48" + }, + "educationLevel": [ + "09", + "10", + "11", + "12" + ], + "humanCodingScheme": "HSN-VM.A.3", + "listEnumeration": "3.", + "fullStatement": "(+) Solve problems involving velocity and other quantities that can be represented by vectors.", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9e8364-d7cc-11e8-824f-0242ac160002", + "identifier": "6b9e8364-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Standard", + "CFItemTypeURI": { + "title": "Standard", + "identifier": "88e14be5-f7f3-4e67-b4a2-d621eaa49d48", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/88e14be5-f7f3-4e67-b4a2-d621eaa49d48" + }, + "educationLevel": [ + "09", + "10", + "11", + "12" + ], + "humanCodingScheme": "HSS-CP.A.3", + "listEnumeration": "3.", + "fullStatement": "Understand the conditional probability of A given B as P(A and B)/P(B), and interpret independence of A and B as saying that the conditional probability of A given B is the same as the probability of A, and the conditional probability of B given A is the same as the probability of B.", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9e8595-d7cc-11e8-824f-0242ac160002", + "identifier": "6b9e8595-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Standard", + "CFItemTypeURI": { + "title": "Standard", + "identifier": "88e14be5-f7f3-4e67-b4a2-d621eaa49d48", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/88e14be5-f7f3-4e67-b4a2-d621eaa49d48" + }, + "educationLevel": [ + "09", + "10", + "11", + "12" + ], + "humanCodingScheme": "HSS-IC.B.3", + "listEnumeration": "3.", + "fullStatement": "Recognize the purposes of and differences among sample surveys, experiments, and observational studies; explain how randomization relates to each.", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9e87c7-d7cc-11e8-824f-0242ac160002", + "identifier": "6b9e87c7-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Standard", + "CFItemTypeURI": { + "title": "Standard", + "identifier": "88e14be5-f7f3-4e67-b4a2-d621eaa49d48", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/88e14be5-f7f3-4e67-b4a2-d621eaa49d48" + }, + "educationLevel": [ + "09", + "10", + "11", + "12" + ], + "humanCodingScheme": "HSS-ID.A.3", + "listEnumeration": "3.", + "fullStatement": "Interpret differences in shape, center, and spread in the context of the data sets, accounting for possible effects of extreme data points (outliers).", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9e89fc-d7cc-11e8-824f-0242ac160002", + "identifier": "6b9e89fc-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Standard", + "CFItemTypeURI": { + "title": "Standard", + "identifier": "88e14be5-f7f3-4e67-b4a2-d621eaa49d48", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/88e14be5-f7f3-4e67-b4a2-d621eaa49d48" + }, + "educationLevel": [ + "09", + "10", + "11", + "12" + ], + "humanCodingScheme": "HSS-MD.A.3", + "listEnumeration": "3.", + "fullStatement": "(+) Develop a probability distribution for a random variable defined for a sample space in which theoretical probabilities can be calculated; find the expected value. For example, find the theoretical probability distribution for the number of correct answers obtained by guessing on all five questions of a multiple-choice test where each question has four choices, and find the expected grade under various grading schemes.", + "notes": "", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9e8c53-d7cc-11e8-824f-0242ac160002", + "identifier": "6b9e8c53-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Standard", + "CFItemTypeURI": { + "title": "Standard", + "identifier": "88e14be5-f7f3-4e67-b4a2-d621eaa49d48", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/88e14be5-f7f3-4e67-b4a2-d621eaa49d48" + }, + "educationLevel": [ + "KG" + ], + "humanCodingScheme": "K.CC.A.3", + "listEnumeration": "3.", + "fullStatement": "Write numbers from 0 to 20. Represent a number of objects with a written numeral 0-20 (with 0 representing a count of no objects).", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9e8f43-d7cc-11e8-824f-0242ac160002", + "identifier": "6b9e8f43-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Standard", + "CFItemTypeURI": { + "title": "Standard", + "identifier": "88e14be5-f7f3-4e67-b4a2-d621eaa49d48", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/88e14be5-f7f3-4e67-b4a2-d621eaa49d48" + }, + "educationLevel": [ + "KG" + ], + "humanCodingScheme": "K.G.A.3", + "listEnumeration": "3.", + "fullStatement": "Identify shapes as two-dimensional (lying in a plane, \"flat\") or three-dimensional (\"solid\").", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9e9181-d7cc-11e8-824f-0242ac160002", + "identifier": "6b9e9181-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Standard", + "CFItemTypeURI": { + "title": "Standard", + "identifier": "88e14be5-f7f3-4e67-b4a2-d621eaa49d48", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/88e14be5-f7f3-4e67-b4a2-d621eaa49d48" + }, + "educationLevel": [ + "KG" + ], + "humanCodingScheme": "K.MD.B.3", + "listEnumeration": "3.", + "fullStatement": "Classify objects into given categories; count the numbers of objects in each category and sort the categories by count.", + "notes": "Limit category counts to be less than or equal to 10.", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9e93c4-d7cc-11e8-824f-0242ac160002", + "identifier": "6b9e93c4-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Standard", + "CFItemTypeURI": { + "title": "Standard", + "identifier": "88e14be5-f7f3-4e67-b4a2-d621eaa49d48", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/88e14be5-f7f3-4e67-b4a2-d621eaa49d48" + }, + "educationLevel": [ + "KG" + ], + "humanCodingScheme": "K.OA.A.3", + "listEnumeration": "3.", + "fullStatement": "Decompose numbers less than or equal to 10 into pairs in more than one way, e.g., by using objects or drawings, and record each decomposition by a drawing or equation (e.g., 5 = 2 + 3 and 5 = 4 + 1).", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9e9614-d7cc-11e8-824f-0242ac160002", + "identifier": "6b9e9614-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2020-06-20T13:27:54+00:00", + "CFItemType": "Standard", + "CFItemTypeURI": { + "title": "Standard", + "identifier": "88e14be5-f7f3-4e67-b4a2-d621eaa49d48", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/88e14be5-f7f3-4e67-b4a2-d621eaa49d48" + }, + "educationLevel": [ + "KG", + "01", + "02", + "03", + "04", + "05", + "06", + "07", + "08", + "09", + "10", + "11", + "12" + ], + "humanCodingScheme": "MP3", + "listEnumeration": "3.", + "fullStatement": "Construct viable arguments and critique the reasoning of others.", + "notes": "Mathematically proficient students understand and use stated assumptions, definitions, and previously established results in constructing arguments. They make conjectures and build a logical progression of statements to explore the truth of their conjectures. They are able to analyze situations by breaking them into cases, and can recognize and use counterexamples. They justify their conclusions, communicate them to others, and respond to the arguments of others. They reason inductively about data, making plausible arguments that take into account the context from which the data arose. Mathematically proficient students are also able to compare the effectiveness of two plausible arguments, distinguish correct logic or reasoning from that which is flawed, and—if there is a flaw in an argument—explain what it is. Elementary students can construct arguments using concrete referents such as objects, drawings, diagrams, and actions. Such arguments can make sense and be correct, even though they are not generalized or made formal until later grades. Later, students learn to determine domains to which an argument applies. Students at all grades can listen or read the arguments of others, decide whether they make sense, and ask useful questions to clarify or improve the arguments.", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9e9860-d7cc-11e8-824f-0242ac160002", + "identifier": "6b9e9860-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Conceptual Category", + "CFItemTypeURI": { + "title": "Conceptual Category", + "identifier": "bb2b7874-ca3b-4a28-bdf9-4ab9b6bdaa3f", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/bb2b7874-ca3b-4a28-bdf9-4ab9b6bdaa3f" + }, + "educationLevel": [ + "09", + "10", + "11", + "12" + ], + "listEnumeration": "4", + "fullStatement": "Geometry", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9e9ad9-d7cc-11e8-824f-0242ac160002", + "identifier": "6b9e9ad9-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Domain", + "CFItemTypeURI": { + "title": "Domain", + "identifier": "89d67580-f024-5f77-abd7-acfaef39b204", + "uri": "https://case.georgiastandards.org/uri/89d67580-f024-5f77-abd7-acfaef39b204" + }, + "educationLevel": [ + "KG" + ], + "listEnumeration": "4", + "fullStatement": "Measurement & Data", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9e9d1d-d7cc-11e8-824f-0242ac160002", + "identifier": "6b9e9d1d-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Grade Level", + "CFItemTypeURI": { + "title": "Grade Level", + "identifier": "8047d85d-6c8e-5231-bd6d-050731684413", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/8047d85d-6c8e-5231-bd6d-050731684413" + }, + "educationLevel": [ + "03" + ], + "listEnumeration": "4", + "fullStatement": "Grade 3", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9e9f5d-d7cc-11e8-824f-0242ac160002", + "identifier": "6b9e9f5d-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Domain", + "CFItemTypeURI": { + "title": "Domain", + "identifier": "89d67580-f024-5f77-abd7-acfaef39b204", + "uri": "https://case.georgiastandards.org/uri/89d67580-f024-5f77-abd7-acfaef39b204" + }, + "educationLevel": [ + "01" + ], + "listEnumeration": "4", + "fullStatement": "Geometry", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9ea195-d7cc-11e8-824f-0242ac160002", + "identifier": "6b9ea195-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Domain", + "CFItemTypeURI": { + "title": "Domain", + "identifier": "89d67580-f024-5f77-abd7-acfaef39b204", + "uri": "https://case.georgiastandards.org/uri/89d67580-f024-5f77-abd7-acfaef39b204" + }, + "educationLevel": [ + "02" + ], + "listEnumeration": "4", + "fullStatement": "Geometry", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9ea3cd-d7cc-11e8-824f-0242ac160002", + "identifier": "6b9ea3cd-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Domain", + "CFItemTypeURI": { + "title": "Domain", + "identifier": "89d67580-f024-5f77-abd7-acfaef39b204", + "uri": "https://case.georgiastandards.org/uri/89d67580-f024-5f77-abd7-acfaef39b204" + }, + "educationLevel": [ + "03" + ], + "listEnumeration": "4", + "fullStatement": "Measurement & Data", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9ea608-d7cc-11e8-824f-0242ac160002", + "identifier": "6b9ea608-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Domain", + "CFItemTypeURI": { + "title": "Domain", + "identifier": "89d67580-f024-5f77-abd7-acfaef39b204", + "uri": "https://case.georgiastandards.org/uri/89d67580-f024-5f77-abd7-acfaef39b204" + }, + "educationLevel": [ + "04" + ], + "listEnumeration": "4", + "fullStatement": "Measurement & Data", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9ea846-d7cc-11e8-824f-0242ac160002", + "identifier": "6b9ea846-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Domain", + "CFItemTypeURI": { + "title": "Domain", + "identifier": "89d67580-f024-5f77-abd7-acfaef39b204", + "uri": "https://case.georgiastandards.org/uri/89d67580-f024-5f77-abd7-acfaef39b204" + }, + "educationLevel": [ + "05" + ], + "listEnumeration": "4", + "fullStatement": "Measurement & Data", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9eaa94-d7cc-11e8-824f-0242ac160002", + "identifier": "6b9eaa94-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Domain", + "CFItemTypeURI": { + "title": "Domain", + "identifier": "89d67580-f024-5f77-abd7-acfaef39b204", + "uri": "https://case.georgiastandards.org/uri/89d67580-f024-5f77-abd7-acfaef39b204" + }, + "educationLevel": [ + "06" + ], + "listEnumeration": "4", + "fullStatement": "Geometry", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9eacd9-d7cc-11e8-824f-0242ac160002", + "identifier": "6b9eacd9-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Domain", + "CFItemTypeURI": { + "title": "Domain", + "identifier": "89d67580-f024-5f77-abd7-acfaef39b204", + "uri": "https://case.georgiastandards.org/uri/89d67580-f024-5f77-abd7-acfaef39b204" + }, + "educationLevel": [ + "07" + ], + "listEnumeration": "4", + "fullStatement": "Geometry", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9eaf0c-d7cc-11e8-824f-0242ac160002", + "identifier": "6b9eaf0c-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Domain", + "CFItemTypeURI": { + "title": "Domain", + "identifier": "89d67580-f024-5f77-abd7-acfaef39b204", + "uri": "https://case.georgiastandards.org/uri/89d67580-f024-5f77-abd7-acfaef39b204" + }, + "educationLevel": [ + "08" + ], + "listEnumeration": "4", + "fullStatement": "Geometry", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9eb1a4-d7cc-11e8-824f-0242ac160002", + "identifier": "6b9eb1a4-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Cluster", + "CFItemTypeURI": { + "title": "Cluster", + "identifier": "d77602ec-0098-5b60-b0c0-531cc61709e3", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/d77602ec-0098-5b60-b0c0-531cc61709e3" + }, + "educationLevel": [ + "01" + ], + "humanCodingScheme": "1.OA.D", + "listEnumeration": "4", + "fullStatement": "Work with addition and subtraction equations.", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9eb3f9-d7cc-11e8-824f-0242ac160002", + "identifier": "6b9eb3f9-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Cluster", + "CFItemTypeURI": { + "title": "Cluster", + "identifier": "d77602ec-0098-5b60-b0c0-531cc61709e3", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/d77602ec-0098-5b60-b0c0-531cc61709e3" + }, + "educationLevel": [ + "02" + ], + "humanCodingScheme": "2.MD.D", + "listEnumeration": "4", + "fullStatement": "Represent and interpret data.", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9eb642-d7cc-11e8-824f-0242ac160002", + "identifier": "6b9eb642-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Standard", + "CFItemTypeURI": { + "title": "Standard", + "identifier": "88e14be5-f7f3-4e67-b4a2-d621eaa49d48", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/88e14be5-f7f3-4e67-b4a2-d621eaa49d48" + }, + "educationLevel": [ + "01" + ], + "humanCodingScheme": "1.MD.C.4", + "listEnumeration": "4.", + "fullStatement": "Organize, represent, and interpret data with up to three categories; ask and answer questions about the total number of data points, how many in each category, and how many more or less are in one category than in another.", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9eb89a-d7cc-11e8-824f-0242ac160002", + "identifier": "6b9eb89a-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Standard", + "CFItemTypeURI": { + "title": "Standard", + "identifier": "88e14be5-f7f3-4e67-b4a2-d621eaa49d48", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/88e14be5-f7f3-4e67-b4a2-d621eaa49d48" + }, + "educationLevel": [ + "01" + ], + "humanCodingScheme": "1.NBT.C.4", + "listEnumeration": "4.", + "fullStatement": "Add within 100, including adding a two-digit number and a one-digit number, and adding a two-digit number and a multiple of 10, using concrete models or drawings and strategies based on place value, properties of operations, and/or the relationship between addition and subtraction; relate the strategy to a written method and explain the reasoning used. Understand that in adding two-digit numbers, one adds tens and tens, ones and ones; and sometimes it is necessary to compose a ten.", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9ebb03-d7cc-11e8-824f-0242ac160002", + "identifier": "6b9ebb03-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Standard", + "CFItemTypeURI": { + "title": "Standard", + "identifier": "88e14be5-f7f3-4e67-b4a2-d621eaa49d48", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/88e14be5-f7f3-4e67-b4a2-d621eaa49d48" + }, + "educationLevel": [ + "01" + ], + "humanCodingScheme": "1.OA.B.4", + "listEnumeration": "4.", + "fullStatement": "Understand subtraction as an unknown-addend problem. For example, subtract 10 - 8 by finding the number that makes 10 when added to 8.", + "notes": "", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9ebd58-d7cc-11e8-824f-0242ac160002", + "identifier": "6b9ebd58-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Standard", + "CFItemTypeURI": { + "title": "Standard", + "identifier": "88e14be5-f7f3-4e67-b4a2-d621eaa49d48", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/88e14be5-f7f3-4e67-b4a2-d621eaa49d48" + }, + "educationLevel": [ + "02" + ], + "humanCodingScheme": "2.MD.A.4", + "listEnumeration": "4.", + "fullStatement": "Measure to determine how much longer one object is than another, expressing the length difference in terms of a standard length unit.", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9ebf9b-d7cc-11e8-824f-0242ac160002", + "identifier": "6b9ebf9b-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Standard", + "CFItemTypeURI": { + "title": "Standard", + "identifier": "88e14be5-f7f3-4e67-b4a2-d621eaa49d48", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/88e14be5-f7f3-4e67-b4a2-d621eaa49d48" + }, + "educationLevel": [ + "02" + ], + "humanCodingScheme": "2.NBT.A.4", + "listEnumeration": "4.", + "fullStatement": "Compare two three-digit numbers based on meanings of the hundreds, tens, and ones digits, using >, =, and < symbols to record the results of comparisons.", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9ec21d-d7cc-11e8-824f-0242ac160002", + "identifier": "6b9ec21d-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Standard", + "CFItemTypeURI": { + "title": "Standard", + "identifier": "88e14be5-f7f3-4e67-b4a2-d621eaa49d48", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/88e14be5-f7f3-4e67-b4a2-d621eaa49d48" + }, + "educationLevel": [ + "02" + ], + "humanCodingScheme": "2.OA.C.4", + "listEnumeration": "4.", + "fullStatement": "Use addition to find the total number of objects arranged in rectangular arrays with up to 5 rows and up to 5 columns; write an equation to express the total as a sum of equal addends.", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9ec473-d7cc-11e8-824f-0242ac160002", + "identifier": "6b9ec473-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Standard", + "CFItemTypeURI": { + "title": "Standard", + "identifier": "88e14be5-f7f3-4e67-b4a2-d621eaa49d48", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/88e14be5-f7f3-4e67-b4a2-d621eaa49d48" + }, + "educationLevel": [ + "03" + ], + "humanCodingScheme": "3.MD.B.4", + "listEnumeration": "4.", + "fullStatement": "Generate measurement data by measuring lengths using rulers marked with halves and fourths of an inch. Show the data by making a line plot, where the horizontal scale is marked off in appropriate units— whole numbers, halves, or quarters.", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9ec6c0-d7cc-11e8-824f-0242ac160002", + "identifier": "6b9ec6c0-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Standard", + "CFItemTypeURI": { + "title": "Standard", + "identifier": "88e14be5-f7f3-4e67-b4a2-d621eaa49d48", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/88e14be5-f7f3-4e67-b4a2-d621eaa49d48" + }, + "educationLevel": [ + "03" + ], + "humanCodingScheme": "3.OA.A.4", + "listEnumeration": "4.", + "fullStatement": "Determine the unknown whole number in a multiplication or division equation relating three whole numbers. For example, determine the unknown number that makes the equation true in each of the equations 8 × ? = 48, 5 = _ ÷ 3, 6 × 6 = ?.", + "notes": "", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9ec90c-d7cc-11e8-824f-0242ac160002", + "identifier": "6b9ec90c-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Standard", + "CFItemTypeURI": { + "title": "Standard", + "identifier": "88e14be5-f7f3-4e67-b4a2-d621eaa49d48", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/88e14be5-f7f3-4e67-b4a2-d621eaa49d48" + }, + "educationLevel": [ + "04" + ], + "humanCodingScheme": "4.MD.B.4", + "listEnumeration": "4.", + "fullStatement": "Make a line plot to display a data set of measurements in fractions of a unit (1/2, 1/4, 1/8). Solve problems involving addition and subtraction of fractions by using information presented in line plots. For example, from a line plot find and interpret the difference in length between the longest and shortest specimens in an insect collection.", + "notes": "", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9ecb67-d7cc-11e8-824f-0242ac160002", + "identifier": "6b9ecb67-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Standard", + "CFItemTypeURI": { + "title": "Standard", + "identifier": "88e14be5-f7f3-4e67-b4a2-d621eaa49d48", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/88e14be5-f7f3-4e67-b4a2-d621eaa49d48" + }, + "educationLevel": [ + "04" + ], + "humanCodingScheme": "4.NBT.B.4", + "listEnumeration": "4.", + "fullStatement": "Fluently add and subtract multi-digit whole numbers using the standard algorithm.", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9ecdc0-d7cc-11e8-824f-0242ac160002", + "identifier": "6b9ecdc0-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Standard", + "CFItemTypeURI": { + "title": "Standard", + "identifier": "88e14be5-f7f3-4e67-b4a2-d621eaa49d48", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/88e14be5-f7f3-4e67-b4a2-d621eaa49d48" + }, + "educationLevel": [ + "04" + ], + "humanCodingScheme": "4.NF.B.4", + "listEnumeration": "4.", + "fullStatement": "Apply and extend previous understandings of multiplication to multiply a fraction by a whole number.", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9ed00e-d7cc-11e8-824f-0242ac160002", + "identifier": "6b9ed00e-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Standard", + "CFItemTypeURI": { + "title": "Standard", + "identifier": "88e14be5-f7f3-4e67-b4a2-d621eaa49d48", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/88e14be5-f7f3-4e67-b4a2-d621eaa49d48" + }, + "educationLevel": [ + "04" + ], + "humanCodingScheme": "4.OA.B.4", + "listEnumeration": "4.", + "fullStatement": "Find all factor pairs for a whole number in the range 1—100. Recognize that a whole number is a multiple of each of its factors. Determine whether a given whole number in the range 1—100 is a multiple of a given one-digit number. Determine whether a given whole number in the range 1—100 is prime or composite.", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9ed262-d7cc-11e8-824f-0242ac160002", + "identifier": "6b9ed262-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Standard", + "CFItemTypeURI": { + "title": "Standard", + "identifier": "88e14be5-f7f3-4e67-b4a2-d621eaa49d48", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/88e14be5-f7f3-4e67-b4a2-d621eaa49d48" + }, + "educationLevel": [ + "05" + ], + "humanCodingScheme": "5.G.B.4", + "listEnumeration": "4.", + "fullStatement": "Classify two-dimensional figures in a hierarchy based on properties.", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9ed5fc-d7cc-11e8-824f-0242ac160002", + "identifier": "6b9ed5fc-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Standard", + "CFItemTypeURI": { + "title": "Standard", + "identifier": "88e14be5-f7f3-4e67-b4a2-d621eaa49d48", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/88e14be5-f7f3-4e67-b4a2-d621eaa49d48" + }, + "educationLevel": [ + "05" + ], + "humanCodingScheme": "5.MD.C.4", + "listEnumeration": "4.", + "fullStatement": "Measure volumes by counting unit cubes, using cubic cm, cubic in, cubic ft, and improvised units.", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9ed865-d7cc-11e8-824f-0242ac160002", + "identifier": "6b9ed865-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Standard", + "CFItemTypeURI": { + "title": "Standard", + "identifier": "88e14be5-f7f3-4e67-b4a2-d621eaa49d48", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/88e14be5-f7f3-4e67-b4a2-d621eaa49d48" + }, + "educationLevel": [ + "05" + ], + "humanCodingScheme": "5.NBT.A.4", + "listEnumeration": "4.", + "fullStatement": "Use place value understanding to round decimals to any place.", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9edad5-d7cc-11e8-824f-0242ac160002", + "identifier": "6b9edad5-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Standard", + "CFItemTypeURI": { + "title": "Standard", + "identifier": "88e14be5-f7f3-4e67-b4a2-d621eaa49d48", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/88e14be5-f7f3-4e67-b4a2-d621eaa49d48" + }, + "educationLevel": [ + "05" + ], + "humanCodingScheme": "5.NF.B.4", + "listEnumeration": "4.", + "fullStatement": "Apply and extend previous understandings of multiplication to multiply a fraction or whole number by a fraction.", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9edd45-d7cc-11e8-824f-0242ac160002", + "identifier": "6b9edd45-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Standard", + "CFItemTypeURI": { + "title": "Standard", + "identifier": "88e14be5-f7f3-4e67-b4a2-d621eaa49d48", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/88e14be5-f7f3-4e67-b4a2-d621eaa49d48" + }, + "educationLevel": [ + "06" + ], + "humanCodingScheme": "6.EE.A.4", + "listEnumeration": "4.", + "fullStatement": "Identify when two expressions are equivalent (i.e., when the two expressions name the same number regardless of which value is substituted into them). For example, the expressions y + y + y and 3y are equivalent because they name the same number regardless of which number y stands for.", + "notes": "", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9edfbc-d7cc-11e8-824f-0242ac160002", + "identifier": "6b9edfbc-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Standard", + "CFItemTypeURI": { + "title": "Standard", + "identifier": "88e14be5-f7f3-4e67-b4a2-d621eaa49d48", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/88e14be5-f7f3-4e67-b4a2-d621eaa49d48" + }, + "educationLevel": [ + "06" + ], + "humanCodingScheme": "6.G.A.4", + "listEnumeration": "4.", + "fullStatement": "Represent three-dimensional figures using nets made up of rectangles and triangles, and use the nets to find the surface area of these figures. Apply these techniques in the context of solving real-world and mathematical problems.", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9ee241-d7cc-11e8-824f-0242ac160002", + "identifier": "6b9ee241-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Standard", + "CFItemTypeURI": { + "title": "Standard", + "identifier": "88e14be5-f7f3-4e67-b4a2-d621eaa49d48", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/88e14be5-f7f3-4e67-b4a2-d621eaa49d48" + }, + "educationLevel": [ + "06" + ], + "humanCodingScheme": "6.NS.B.4", + "listEnumeration": "4.", + "fullStatement": "Find the greatest common factor of two whole numbers less than or equal to 100 and the least common multiple of two whole numbers less than or equal to 12. Use the distributive property to express a sum of two whole numbers 1—100 with a common factor as a multiple of a sum of two whole numbers with no common factor. For example, express 36 + 8 as 4 (9 + 2).", + "notes": "", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9ee4bb-d7cc-11e8-824f-0242ac160002", + "identifier": "6b9ee4bb-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Standard", + "CFItemTypeURI": { + "title": "Standard", + "identifier": "88e14be5-f7f3-4e67-b4a2-d621eaa49d48", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/88e14be5-f7f3-4e67-b4a2-d621eaa49d48" + }, + "educationLevel": [ + "06" + ], + "humanCodingScheme": "6.SP.B.4", + "listEnumeration": "4.", + "fullStatement": "Display numerical data in plots on a number line, including dot plots, histograms, and box plots.", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9ee71f-d7cc-11e8-824f-0242ac160002", + "identifier": "6b9ee71f-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Standard", + "CFItemTypeURI": { + "title": "Standard", + "identifier": "88e14be5-f7f3-4e67-b4a2-d621eaa49d48", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/88e14be5-f7f3-4e67-b4a2-d621eaa49d48" + }, + "educationLevel": [ + "07" + ], + "humanCodingScheme": "7.EE.B.4", + "listEnumeration": "4.", + "fullStatement": "Use variables to represent quantities in a real-world or mathematical problem, and construct simple equations and inequalities to solve problems by reasoning about the quantities.", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9eebe1-d7cc-11e8-824f-0242ac160002", + "identifier": "6b9eebe1-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Standard", + "CFItemTypeURI": { + "title": "Standard", + "identifier": "88e14be5-f7f3-4e67-b4a2-d621eaa49d48", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/88e14be5-f7f3-4e67-b4a2-d621eaa49d48" + }, + "educationLevel": [ + "07" + ], + "humanCodingScheme": "7.G.B.4", + "listEnumeration": "4.", + "fullStatement": "Know the formulas for the area and circumference of a circle and use them to solve problems; give an informal derivation of the relationship between the circumference and area of a circle.", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9eee6f-d7cc-11e8-824f-0242ac160002", + "identifier": "6b9eee6f-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Standard", + "CFItemTypeURI": { + "title": "Standard", + "identifier": "88e14be5-f7f3-4e67-b4a2-d621eaa49d48", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/88e14be5-f7f3-4e67-b4a2-d621eaa49d48" + }, + "educationLevel": [ + "07" + ], + "humanCodingScheme": "7.SP.B.4", + "listEnumeration": "4.", + "fullStatement": "Use measures of center and measures of variability for numerical data from random samples to draw informal comparative inferences about two populations. For example, decide whether the words in a chapter of a seventh-grade science book are generally longer than the words in a chapter of a fourth-grade science book.", + "notes": "", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9ef0eb-d7cc-11e8-824f-0242ac160002", + "identifier": "6b9ef0eb-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Standard", + "CFItemTypeURI": { + "title": "Standard", + "identifier": "88e14be5-f7f3-4e67-b4a2-d621eaa49d48", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/88e14be5-f7f3-4e67-b4a2-d621eaa49d48" + }, + "educationLevel": [ + "08" + ], + "humanCodingScheme": "8.EE.A.4", + "listEnumeration": "4.", + "fullStatement": "Perform operations with numbers expressed in scientific notation, including problems where both decimal and scientific notation are used. Use scientific notation and choose units of appropriate size for measurements of very large or very small quantities (e.g., use millimeters per year for seafloor spreading). Interpret scientific notation that has been generated by technology.", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9ef36a-d7cc-11e8-824f-0242ac160002", + "identifier": "6b9ef36a-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Standard", + "CFItemTypeURI": { + "title": "Standard", + "identifier": "88e14be5-f7f3-4e67-b4a2-d621eaa49d48", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/88e14be5-f7f3-4e67-b4a2-d621eaa49d48" + }, + "educationLevel": [ + "08" + ], + "humanCodingScheme": "8.F.B.4", + "listEnumeration": "4.", + "fullStatement": "Construct a function to model a linear relationship between two quantities. Determine the rate of change and initial value of the function from a description of a relationship or from two (x, y) values, including reading these from a table or from a graph. Interpret the rate of change and initial value of a linear function in terms of the situation it models, and in terms of its graph or a table of values.", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9ef5f0-d7cc-11e8-824f-0242ac160002", + "identifier": "6b9ef5f0-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Standard", + "CFItemTypeURI": { + "title": "Standard", + "identifier": "88e14be5-f7f3-4e67-b4a2-d621eaa49d48", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/88e14be5-f7f3-4e67-b4a2-d621eaa49d48" + }, + "educationLevel": [ + "08" + ], + "humanCodingScheme": "8.G.A.4", + "listEnumeration": "4.", + "fullStatement": "Understand that a two-dimensional figure is similar to another if the second can be obtained from the first by a sequence of rotations, reflections, translations, and dilations; given two similar two-dimensional figures, describe a sequence that exhibits the similarity between them.", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9ef861-d7cc-11e8-824f-0242ac160002", + "identifier": "6b9ef861-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Standard", + "CFItemTypeURI": { + "title": "Standard", + "identifier": "88e14be5-f7f3-4e67-b4a2-d621eaa49d48", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/88e14be5-f7f3-4e67-b4a2-d621eaa49d48" + }, + "educationLevel": [ + "08" + ], + "humanCodingScheme": "8.SP.A.4", + "listEnumeration": "4.", + "fullStatement": "Understand that patterns of association can also be seen in bivariate categorical data by displaying frequencies and relative frequencies in a two-way table. Construct and interpret a two-way table summarizing data on two categorical variables collected from the same subjects. Use relative frequencies calculated for rows or columns to describe possible association between the two variables. For example, collect data from students in your class on whether or not they have a curfew on school nights and whether or not they have assigned chores at home. Is there evidence that those who have a curfew also tend to have chores?", + "notes": "", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9efad6-d7cc-11e8-824f-0242ac160002", + "identifier": "6b9efad6-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Standard", + "CFItemTypeURI": { + "title": "Standard", + "identifier": "88e14be5-f7f3-4e67-b4a2-d621eaa49d48", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/88e14be5-f7f3-4e67-b4a2-d621eaa49d48" + }, + "educationLevel": [ + "09", + "10", + "11", + "12" + ], + "humanCodingScheme": "HSA-APR.C.4", + "listEnumeration": "4.", + "fullStatement": "Prove polynomial identities and use them to describe numerical relationships. For example, the polynomial identity (x² + y²)2 = (x² — y²)² + (2xy)² can be used to generate Pythagorean triples.", + "notes": "", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9efd43-d7cc-11e8-824f-0242ac160002", + "identifier": "6b9efd43-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Standard", + "CFItemTypeURI": { + "title": "Standard", + "identifier": "88e14be5-f7f3-4e67-b4a2-d621eaa49d48", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/88e14be5-f7f3-4e67-b4a2-d621eaa49d48" + }, + "educationLevel": [ + "09", + "10", + "11", + "12" + ], + "humanCodingScheme": "HSA-CED.A.4", + "listEnumeration": "4.", + "fullStatement": "Rearrange formulas to highlight a quantity of interest, using the same reasoning as in solving equations. For example, rearrange Ohm's law V = IR to highlight resistance R.", + "notes": "", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9effbc-d7cc-11e8-824f-0242ac160002", + "identifier": "6b9effbc-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Standard", + "CFItemTypeURI": { + "title": "Standard", + "identifier": "88e14be5-f7f3-4e67-b4a2-d621eaa49d48", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/88e14be5-f7f3-4e67-b4a2-d621eaa49d48" + }, + "educationLevel": [ + "09", + "10", + "11", + "12" + ], + "humanCodingScheme": "HSA-REI.B.4", + "listEnumeration": "4.", + "fullStatement": "Solve quadratic equations in one variable.", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9f0232-d7cc-11e8-824f-0242ac160002", + "identifier": "6b9f0232-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Standard", + "CFItemTypeURI": { + "title": "Standard", + "identifier": "88e14be5-f7f3-4e67-b4a2-d621eaa49d48", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/88e14be5-f7f3-4e67-b4a2-d621eaa49d48" + }, + "educationLevel": [ + "09", + "10", + "11", + "12" + ], + "humanCodingScheme": "HSA-SSE.B.4", + "listEnumeration": "4.", + "fullStatement": "Derive the formula for the sum of a finite geometric series (when the common ratio is not 1), and use the formula to solve problems. For example, calculate mortgage payments.", + "notes": "", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9f04ba-d7cc-11e8-824f-0242ac160002", + "identifier": "6b9f04ba-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Standard", + "CFItemTypeURI": { + "title": "Standard", + "identifier": "88e14be5-f7f3-4e67-b4a2-d621eaa49d48", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/88e14be5-f7f3-4e67-b4a2-d621eaa49d48" + }, + "educationLevel": [ + "09", + "10", + "11", + "12" + ], + "humanCodingScheme": "HSF-BF.B.4", + "listEnumeration": "4.", + "fullStatement": "Find inverse functions.", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9f0737-d7cc-11e8-824f-0242ac160002", + "identifier": "6b9f0737-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Standard", + "CFItemTypeURI": { + "title": "Standard", + "identifier": "88e14be5-f7f3-4e67-b4a2-d621eaa49d48", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/88e14be5-f7f3-4e67-b4a2-d621eaa49d48" + }, + "educationLevel": [ + "09", + "10", + "11", + "12" + ], + "humanCodingScheme": "HSF-IF.B.4", + "listEnumeration": "4.", + "fullStatement": "For a function that models a relationship between two quantities, interpret key features of graphs and tables in terms of the quantities, and sketch graphs showing key features given a verbal description of the relationship.", + "notes": "Key features include: intercepts; intervals where the function is increasing, decreasing, positive, or negative; relative maximums and minimums; symmetries; end behavior; and periodicity.", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9f09b7-d7cc-11e8-824f-0242ac160002", + "identifier": "6b9f09b7-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Standard", + "CFItemTypeURI": { + "title": "Standard", + "identifier": "88e14be5-f7f3-4e67-b4a2-d621eaa49d48", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/88e14be5-f7f3-4e67-b4a2-d621eaa49d48" + }, + "educationLevel": [ + "09", + "10", + "11", + "12" + ], + "humanCodingScheme": "HSF-LE.A.4", + "listEnumeration": "4.", + "fullStatement": "For exponential models, express as a logarithm the solution to abct = d where a, c, and d are numbers and the base b is 2, 10, or e; evaluate the logarithm using technology.", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9f0c6f-d7cc-11e8-824f-0242ac160002", + "identifier": "6b9f0c6f-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Standard", + "CFItemTypeURI": { + "title": "Standard", + "identifier": "88e14be5-f7f3-4e67-b4a2-d621eaa49d48", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/88e14be5-f7f3-4e67-b4a2-d621eaa49d48" + }, + "educationLevel": [ + "09", + "10", + "11", + "12" + ], + "humanCodingScheme": "HSF-TF.A.4", + "listEnumeration": "4.", + "fullStatement": "(+) Use the unit circle to explain symmetry (odd and even) and periodicity of trigonometric functions.", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9f0f18-d7cc-11e8-824f-0242ac160002", + "identifier": "6b9f0f18-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Standard", + "CFItemTypeURI": { + "title": "Standard", + "identifier": "88e14be5-f7f3-4e67-b4a2-d621eaa49d48", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/88e14be5-f7f3-4e67-b4a2-d621eaa49d48" + }, + "educationLevel": [ + "09", + "10", + "11", + "12" + ], + "humanCodingScheme": "HSG-C.A.4", + "listEnumeration": "4.", + "fullStatement": "(+) Construct a tangent line from a point outside a given circle to the circle.", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9f119a-d7cc-11e8-824f-0242ac160002", + "identifier": "6b9f119a-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Standard", + "CFItemTypeURI": { + "title": "Standard", + "identifier": "88e14be5-f7f3-4e67-b4a2-d621eaa49d48", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/88e14be5-f7f3-4e67-b4a2-d621eaa49d48" + }, + "educationLevel": [ + "09", + "10", + "11", + "12" + ], + "humanCodingScheme": "HSG-CO.A.4", + "listEnumeration": "4.", + "fullStatement": "Develop definitions of rotations, reflections, and translations in terms of angles, circles, perpendicular lines, parallel lines, and line segments.", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9f140d-d7cc-11e8-824f-0242ac160002", + "identifier": "6b9f140d-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Standard", + "CFItemTypeURI": { + "title": "Standard", + "identifier": "88e14be5-f7f3-4e67-b4a2-d621eaa49d48", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/88e14be5-f7f3-4e67-b4a2-d621eaa49d48" + }, + "educationLevel": [ + "09", + "10", + "11", + "12" + ], + "humanCodingScheme": "HSG-GMD.B.4", + "listEnumeration": "4.", + "fullStatement": "Identify the shapes of two-dimensional cross-sections of three-dimensional objects, and identify three-dimensional objects generated by rotations of two-dimensional objects.", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9f16e0-d7cc-11e8-824f-0242ac160002", + "identifier": "6b9f16e0-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Standard", + "CFItemTypeURI": { + "title": "Standard", + "identifier": "88e14be5-f7f3-4e67-b4a2-d621eaa49d48", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/88e14be5-f7f3-4e67-b4a2-d621eaa49d48" + }, + "educationLevel": [ + "09", + "10", + "11", + "12" + ], + "humanCodingScheme": "HSG-GPE.B.4", + "listEnumeration": "4.", + "fullStatement": "Use coordinates to prove simple geometric theorems algebraically. For example, prove or disprove that a figure defined by four given points in the coordinate plane is a rectangle; prove or disprove that the point (1, √3) lies on the circle centered at the origin and containing the point (0, 2).", + "notes": "", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9f195e-d7cc-11e8-824f-0242ac160002", + "identifier": "6b9f195e-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Standard", + "CFItemTypeURI": { + "title": "Standard", + "identifier": "88e14be5-f7f3-4e67-b4a2-d621eaa49d48", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/88e14be5-f7f3-4e67-b4a2-d621eaa49d48" + }, + "educationLevel": [ + "09", + "10", + "11", + "12" + ], + "humanCodingScheme": "HSG-SRT.B.4", + "listEnumeration": "4.", + "fullStatement": "Prove theorems about triangles.", + "notes": "Theorems include: a line parallel to one side of a triangle divides the other two proportionally, and conversely; the Pythagorean Theorem proved using triangle similarity.", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9f1bd7-d7cc-11e8-824f-0242ac160002", + "identifier": "6b9f1bd7-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Standard", + "CFItemTypeURI": { + "title": "Standard", + "identifier": "88e14be5-f7f3-4e67-b4a2-d621eaa49d48", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/88e14be5-f7f3-4e67-b4a2-d621eaa49d48" + }, + "educationLevel": [ + "09", + "10", + "11", + "12" + ], + "humanCodingScheme": "HSN-CN.B.4", + "listEnumeration": "4.", + "fullStatement": "(+) Represent complex numbers on the complex plane in rectangular and polar form (including real and imaginary numbers), and explain why the rectangular and polar forms of a given complex number represent the same number.", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9f1e55-d7cc-11e8-824f-0242ac160002", + "identifier": "6b9f1e55-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Standard", + "CFItemTypeURI": { + "title": "Standard", + "identifier": "88e14be5-f7f3-4e67-b4a2-d621eaa49d48", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/88e14be5-f7f3-4e67-b4a2-d621eaa49d48" + }, + "educationLevel": [ + "09", + "10", + "11", + "12" + ], + "humanCodingScheme": "HSN-VM.B.4", + "listEnumeration": "4.", + "fullStatement": "(+) Add and subtract vectors.", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9f20d2-d7cc-11e8-824f-0242ac160002", + "identifier": "6b9f20d2-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Standard", + "CFItemTypeURI": { + "title": "Standard", + "identifier": "88e14be5-f7f3-4e67-b4a2-d621eaa49d48", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/88e14be5-f7f3-4e67-b4a2-d621eaa49d48" + }, + "educationLevel": [ + "09", + "10", + "11", + "12" + ], + "humanCodingScheme": "HSS-CP.A.4", + "listEnumeration": "4.", + "fullStatement": "Construct and interpret two-way frequency tables of data when two categories are associated with each object being classified. Use the two-way table as a sample space to decide if events are independent and to approximate conditional probabilities. For example, collect data from a random sample of students in your school on their favorite subject among math, science, and English. Estimate the probability that a randomly selected student from your school will favor science given that the student is in tenth grade. Do the same for other subjects and compare the results.", + "notes": "", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9f235a-d7cc-11e8-824f-0242ac160002", + "identifier": "6b9f235a-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Standard", + "CFItemTypeURI": { + "title": "Standard", + "identifier": "88e14be5-f7f3-4e67-b4a2-d621eaa49d48", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/88e14be5-f7f3-4e67-b4a2-d621eaa49d48" + }, + "educationLevel": [ + "09", + "10", + "11", + "12" + ], + "humanCodingScheme": "HSS-IC.B.4", + "listEnumeration": "4.", + "fullStatement": "Use data from a sample survey to estimate a population mean or proportion; develop a margin of error through the use of simulation models for random sampling.", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9f25df-d7cc-11e8-824f-0242ac160002", + "identifier": "6b9f25df-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Standard", + "CFItemTypeURI": { + "title": "Standard", + "identifier": "88e14be5-f7f3-4e67-b4a2-d621eaa49d48", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/88e14be5-f7f3-4e67-b4a2-d621eaa49d48" + }, + "educationLevel": [ + "09", + "10", + "11", + "12" + ], + "humanCodingScheme": "HSS-ID.A.4", + "listEnumeration": "4.", + "fullStatement": "Use the mean and standard deviation of a data set to fit it to a normal distribution and to estimate population percentages. Recognize that there are data sets for which such a procedure is not appropriate. Use calculators, spreadsheets, and tables to estimate areas under the normal curve.", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9f286a-d7cc-11e8-824f-0242ac160002", + "identifier": "6b9f286a-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Standard", + "CFItemTypeURI": { + "title": "Standard", + "identifier": "88e14be5-f7f3-4e67-b4a2-d621eaa49d48", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/88e14be5-f7f3-4e67-b4a2-d621eaa49d48" + }, + "educationLevel": [ + "09", + "10", + "11", + "12" + ], + "humanCodingScheme": "HSS-MD.A.4", + "listEnumeration": "4.", + "fullStatement": "(+) Develop a probability distribution for a random variable defined for a sample space in which probabilities are assigned empirically; find the expected value. For example, find a current data distribution on the number of TV sets per household in the United States, and calculate the expected number of sets per household. How many TV sets would you expect to find in 100 randomly selected households?", + "notes": "", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9f2c57-d7cc-11e8-824f-0242ac160002", + "identifier": "6b9f2c57-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Standard", + "CFItemTypeURI": { + "title": "Standard", + "identifier": "88e14be5-f7f3-4e67-b4a2-d621eaa49d48", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/88e14be5-f7f3-4e67-b4a2-d621eaa49d48" + }, + "educationLevel": [ + "KG" + ], + "humanCodingScheme": "K.CC.B.4", + "listEnumeration": "4.", + "fullStatement": "Understand the relationship between numbers and quantities; connect counting to cardinality.", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9f2ef8-d7cc-11e8-824f-0242ac160002", + "identifier": "6b9f2ef8-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Standard", + "CFItemTypeURI": { + "title": "Standard", + "identifier": "88e14be5-f7f3-4e67-b4a2-d621eaa49d48", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/88e14be5-f7f3-4e67-b4a2-d621eaa49d48" + }, + "educationLevel": [ + "KG" + ], + "humanCodingScheme": "K.G.B.4", + "listEnumeration": "4.", + "fullStatement": "Analyze and compare two- and three-dimensional shapes, in different sizes and orientations, using informal language to describe their similarities, differences, parts (e.g., number of sides and vertices/\"corners\") and other attributes (e.g., having sides of equal length).", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9f318e-d7cc-11e8-824f-0242ac160002", + "identifier": "6b9f318e-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Standard", + "CFItemTypeURI": { + "title": "Standard", + "identifier": "88e14be5-f7f3-4e67-b4a2-d621eaa49d48", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/88e14be5-f7f3-4e67-b4a2-d621eaa49d48" + }, + "educationLevel": [ + "KG" + ], + "humanCodingScheme": "K.OA.A.4", + "listEnumeration": "4.", + "fullStatement": "For any number from 1 to 9, find the number that makes 10 when added to the given number, e.g., by using objects or drawings, and record the answer with a drawing or equation.", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9f345f-d7cc-11e8-824f-0242ac160002", + "identifier": "6b9f345f-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2020-06-20T13:28:07+00:00", + "CFItemType": "Standard", + "CFItemTypeURI": { + "title": "Standard", + "identifier": "88e14be5-f7f3-4e67-b4a2-d621eaa49d48", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/88e14be5-f7f3-4e67-b4a2-d621eaa49d48" + }, + "educationLevel": [ + "KG", + "01", + "02", + "03", + "04", + "05", + "06", + "07", + "08", + "09", + "10", + "11", + "12" + ], + "humanCodingScheme": "MP4", + "listEnumeration": "4.", + "fullStatement": "Model with mathematics.", + "notes": "Mathematically proficient students can apply the mathematics they know to solve problems arising in everyday life, society, and the workplace. In early grades, this might be as simple as writing an addition equation to describe a situation. In middle grades, a student might apply proportional reasoning to plan a school event or analyze a problem in the community. By high school, a student might use geometry to solve a design problem or use a function to describe how one quantity of interest depends on another. Mathematically proficient students who can apply what they know are comfortable making assumptions and approximations to simplify a complicated situation, realizing that these may need revision later. They are able to identify important quantities in a practical situation and map their relationships using such tools as diagrams, two-way tables, graphs, flowcharts and formulas. They can analyze those relationships mathematically to draw conclusions. They routinely interpret their mathematical results in the context of the situation and reflect on whether the results make sense, possibly improving the model if it has not served its purpose.", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9f375c-d7cc-11e8-824f-0242ac160002", + "identifier": "6b9f375c-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Conceptual Category", + "CFItemTypeURI": { + "title": "Conceptual Category", + "identifier": "bb2b7874-ca3b-4a28-bdf9-4ab9b6bdaa3f", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/bb2b7874-ca3b-4a28-bdf9-4ab9b6bdaa3f" + }, + "educationLevel": [ + "09", + "10", + "11", + "12" + ], + "listEnumeration": "5", + "fullStatement": "Statistics & Probability", + "notes": "Modeling is best interpreted not as a collection of isolated topics but in relation to other standards. Making mathematical models is a Standard for Mathematical Practice, and specific modeling standards appear throughout the high school standards indicated by a star symbol (★). The star symbol sometimes appears on the heading for a group of standards; in that case, it should be understood to apply to all standards in that group.", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9f3a16-d7cc-11e8-824f-0242ac160002", + "identifier": "6b9f3a16-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Domain", + "CFItemTypeURI": { + "title": "Domain", + "identifier": "89d67580-f024-5f77-abd7-acfaef39b204", + "uri": "https://case.georgiastandards.org/uri/89d67580-f024-5f77-abd7-acfaef39b204" + }, + "educationLevel": [ + "KG" + ], + "listEnumeration": "5", + "fullStatement": "Geometry", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9f3cb3-d7cc-11e8-824f-0242ac160002", + "identifier": "6b9f3cb3-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Grade Level", + "CFItemTypeURI": { + "title": "Grade Level", + "identifier": "8047d85d-6c8e-5231-bd6d-050731684413", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/8047d85d-6c8e-5231-bd6d-050731684413" + }, + "educationLevel": [ + "04" + ], + "listEnumeration": "5", + "fullStatement": "Grade 4", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9f3f4d-d7cc-11e8-824f-0242ac160002", + "identifier": "6b9f3f4d-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Domain", + "CFItemTypeURI": { + "title": "Domain", + "identifier": "89d67580-f024-5f77-abd7-acfaef39b204", + "uri": "https://case.georgiastandards.org/uri/89d67580-f024-5f77-abd7-acfaef39b204" + }, + "educationLevel": [ + "03" + ], + "listEnumeration": "5", + "fullStatement": "Geometry", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9f41e4-d7cc-11e8-824f-0242ac160002", + "identifier": "6b9f41e4-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Domain", + "CFItemTypeURI": { + "title": "Domain", + "identifier": "89d67580-f024-5f77-abd7-acfaef39b204", + "uri": "https://case.georgiastandards.org/uri/89d67580-f024-5f77-abd7-acfaef39b204" + }, + "educationLevel": [ + "04" + ], + "listEnumeration": "5", + "fullStatement": "Geometry", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9f4474-d7cc-11e8-824f-0242ac160002", + "identifier": "6b9f4474-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Domain", + "CFItemTypeURI": { + "title": "Domain", + "identifier": "89d67580-f024-5f77-abd7-acfaef39b204", + "uri": "https://case.georgiastandards.org/uri/89d67580-f024-5f77-abd7-acfaef39b204" + }, + "educationLevel": [ + "05" + ], + "listEnumeration": "5", + "fullStatement": "Geometry", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9f4709-d7cc-11e8-824f-0242ac160002", + "identifier": "6b9f4709-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Domain", + "CFItemTypeURI": { + "title": "Domain", + "identifier": "89d67580-f024-5f77-abd7-acfaef39b204", + "uri": "https://case.georgiastandards.org/uri/89d67580-f024-5f77-abd7-acfaef39b204" + }, + "educationLevel": [ + "06" + ], + "listEnumeration": "5", + "fullStatement": "Statistics & Probability", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9f49a3-d7cc-11e8-824f-0242ac160002", + "identifier": "6b9f49a3-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Domain", + "CFItemTypeURI": { + "title": "Domain", + "identifier": "89d67580-f024-5f77-abd7-acfaef39b204", + "uri": "https://case.georgiastandards.org/uri/89d67580-f024-5f77-abd7-acfaef39b204" + }, + "educationLevel": [ + "07" + ], + "listEnumeration": "5", + "fullStatement": "Statistics & Probability", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9f4d1b-d7cc-11e8-824f-0242ac160002", + "identifier": "6b9f4d1b-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Domain", + "CFItemTypeURI": { + "title": "Domain", + "identifier": "89d67580-f024-5f77-abd7-acfaef39b204", + "uri": "https://case.georgiastandards.org/uri/89d67580-f024-5f77-abd7-acfaef39b204" + }, + "educationLevel": [ + "08" + ], + "listEnumeration": "5", + "fullStatement": "Statistics & Probability", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9f4fd0-d7cc-11e8-824f-0242ac160002", + "identifier": "6b9f4fd0-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Standard", + "CFItemTypeURI": { + "title": "Standard", + "identifier": "88e14be5-f7f3-4e67-b4a2-d621eaa49d48", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/88e14be5-f7f3-4e67-b4a2-d621eaa49d48" + }, + "educationLevel": [ + "01" + ], + "humanCodingScheme": "1.NBT.C.5", + "listEnumeration": "5.", + "fullStatement": "Given a two-digit number, mentally find 10 more or 10 less than the number, without having to count; explain the reasoning used.", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9f527f-d7cc-11e8-824f-0242ac160002", + "identifier": "6b9f527f-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Standard", + "CFItemTypeURI": { + "title": "Standard", + "identifier": "88e14be5-f7f3-4e67-b4a2-d621eaa49d48", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/88e14be5-f7f3-4e67-b4a2-d621eaa49d48" + }, + "educationLevel": [ + "01" + ], + "humanCodingScheme": "1.OA.C.5", + "listEnumeration": "5.", + "fullStatement": "Relate counting to addition and subtraction (e.g., by counting on 2 to add 2).", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9f552e-d7cc-11e8-824f-0242ac160002", + "identifier": "6b9f552e-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Standard", + "CFItemTypeURI": { + "title": "Standard", + "identifier": "88e14be5-f7f3-4e67-b4a2-d621eaa49d48", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/88e14be5-f7f3-4e67-b4a2-d621eaa49d48" + }, + "educationLevel": [ + "02" + ], + "humanCodingScheme": "2.MD.B.5", + "listEnumeration": "5.", + "fullStatement": "Use addition and subtraction within 100 to solve word problems involving lengths that are given in the same units, e.g., by using drawings (such as drawings of rulers) and equations with a symbol for the unknown number to represent the problem.", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9f57e3-d7cc-11e8-824f-0242ac160002", + "identifier": "6b9f57e3-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Standard", + "CFItemTypeURI": { + "title": "Standard", + "identifier": "88e14be5-f7f3-4e67-b4a2-d621eaa49d48", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/88e14be5-f7f3-4e67-b4a2-d621eaa49d48" + }, + "educationLevel": [ + "02" + ], + "humanCodingScheme": "2.NBT.B.5", + "listEnumeration": "5.", + "fullStatement": "Fluently add and subtract within 100 using strategies based on place value, properties of operations, and/or the relationship between addition and subtraction.", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9f5a86-d7cc-11e8-824f-0242ac160002", + "identifier": "6b9f5a86-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Standard", + "CFItemTypeURI": { + "title": "Standard", + "identifier": "88e14be5-f7f3-4e67-b4a2-d621eaa49d48", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/88e14be5-f7f3-4e67-b4a2-d621eaa49d48" + }, + "educationLevel": [ + "03" + ], + "humanCodingScheme": "3.MD.C.5", + "listEnumeration": "5.", + "fullStatement": "Recognize area as an attribute of plane figures and understand concepts of area measurement.", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9f5d5a-d7cc-11e8-824f-0242ac160002", + "identifier": "6b9f5d5a-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Standard", + "CFItemTypeURI": { + "title": "Standard", + "identifier": "88e14be5-f7f3-4e67-b4a2-d621eaa49d48", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/88e14be5-f7f3-4e67-b4a2-d621eaa49d48" + }, + "educationLevel": [ + "03" + ], + "humanCodingScheme": "3.OA.B.5", + "listEnumeration": "5.", + "fullStatement": "Apply properties of operations as strategies to multiply and divide.", + "notes": "Students need not use formal terms for these properties.", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9f6012-d7cc-11e8-824f-0242ac160002", + "identifier": "6b9f6012-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Standard", + "CFItemTypeURI": { + "title": "Standard", + "identifier": "88e14be5-f7f3-4e67-b4a2-d621eaa49d48", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/88e14be5-f7f3-4e67-b4a2-d621eaa49d48" + }, + "educationLevel": [ + "04" + ], + "humanCodingScheme": "4.MD.C.5", + "listEnumeration": "5.", + "fullStatement": "Recognize angles as geometric shapes that are formed wherever two rays share a common endpoint, and understand concepts of angle measurement:", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9f62c1-d7cc-11e8-824f-0242ac160002", + "identifier": "6b9f62c1-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Standard", + "CFItemTypeURI": { + "title": "Standard", + "identifier": "88e14be5-f7f3-4e67-b4a2-d621eaa49d48", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/88e14be5-f7f3-4e67-b4a2-d621eaa49d48" + }, + "educationLevel": [ + "04" + ], + "humanCodingScheme": "4.NBT.B.5", + "listEnumeration": "5.", + "fullStatement": "Multiply a whole number of up to four digits by a one-digit whole number, and multiply two two-digit numbers, using strategies based on place value and the properties of operations. Illustrate and explain the calculation by using equations, rectangular arrays, and/or area models.", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9f6583-d7cc-11e8-824f-0242ac160002", + "identifier": "6b9f6583-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Standard", + "CFItemTypeURI": { + "title": "Standard", + "identifier": "88e14be5-f7f3-4e67-b4a2-d621eaa49d48", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/88e14be5-f7f3-4e67-b4a2-d621eaa49d48" + }, + "educationLevel": [ + "04" + ], + "humanCodingScheme": "4.NF.C.5", + "listEnumeration": "5.", + "fullStatement": "Express a fraction with denominator 10 as an equivalent fraction with denominator 100, and use this technique to add two fractions with respective denominators 10 and 100.", + "notes": "Students who can generate equivalent fractions can develop strategies for adding fractions with unlike denominators in general. But addition and subtraction with unlike denominators in general is not a requirement at this grade.", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9f6853-d7cc-11e8-824f-0242ac160002", + "identifier": "6b9f6853-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Standard", + "CFItemTypeURI": { + "title": "Standard", + "identifier": "88e14be5-f7f3-4e67-b4a2-d621eaa49d48", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/88e14be5-f7f3-4e67-b4a2-d621eaa49d48" + }, + "educationLevel": [ + "04" + ], + "humanCodingScheme": "4.OA.C.5", + "listEnumeration": "5.", + "fullStatement": "Generate a number or shape pattern that follows a given rule. Identify apparent features of the pattern that were not explicit in the rule itself. For example, given the rule \"Add 3\" and the starting number 1, generate terms in the resulting sequence and observe that the terms appear to alternate between odd and even numbers. Explain informally why the numbers will continue to alternate in this way.", + "notes": "", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9f6b11-d7cc-11e8-824f-0242ac160002", + "identifier": "6b9f6b11-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Standard", + "CFItemTypeURI": { + "title": "Standard", + "identifier": "88e14be5-f7f3-4e67-b4a2-d621eaa49d48", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/88e14be5-f7f3-4e67-b4a2-d621eaa49d48" + }, + "educationLevel": [ + "05" + ], + "humanCodingScheme": "5.MD.C.5", + "listEnumeration": "5.", + "fullStatement": "Relate volume to the operations of multiplication and addition and solve real world and mathematical problems involving volume.", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9f6e17-d7cc-11e8-824f-0242ac160002", + "identifier": "6b9f6e17-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Standard", + "CFItemTypeURI": { + "title": "Standard", + "identifier": "88e14be5-f7f3-4e67-b4a2-d621eaa49d48", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/88e14be5-f7f3-4e67-b4a2-d621eaa49d48" + }, + "educationLevel": [ + "05" + ], + "humanCodingScheme": "5.NBT.B.5", + "listEnumeration": "5.", + "fullStatement": "Fluently multiply multi-digit whole numbers using the standard algorithm.", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9f70d0-d7cc-11e8-824f-0242ac160002", + "identifier": "6b9f70d0-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Standard", + "CFItemTypeURI": { + "title": "Standard", + "identifier": "88e14be5-f7f3-4e67-b4a2-d621eaa49d48", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/88e14be5-f7f3-4e67-b4a2-d621eaa49d48" + }, + "educationLevel": [ + "05" + ], + "humanCodingScheme": "5.NF.B.5", + "listEnumeration": "5.", + "fullStatement": "Interpret multiplication as scaling (resizing), by:", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9f74c0-d7cc-11e8-824f-0242ac160002", + "identifier": "6b9f74c0-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Standard", + "CFItemTypeURI": { + "title": "Standard", + "identifier": "88e14be5-f7f3-4e67-b4a2-d621eaa49d48", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/88e14be5-f7f3-4e67-b4a2-d621eaa49d48" + }, + "educationLevel": [ + "06" + ], + "humanCodingScheme": "6.EE.B.5", + "listEnumeration": "5.", + "fullStatement": "Understand solving an equation or inequality as a process of answering a question: which values from a specified set, if any, make the equation or inequality true? Use substitution to determine whether a given number in a specified set makes an equation or inequality true.", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9f77af-d7cc-11e8-824f-0242ac160002", + "identifier": "6b9f77af-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Standard", + "CFItemTypeURI": { + "title": "Standard", + "identifier": "88e14be5-f7f3-4e67-b4a2-d621eaa49d48", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/88e14be5-f7f3-4e67-b4a2-d621eaa49d48" + }, + "educationLevel": [ + "06" + ], + "humanCodingScheme": "6.NS.C.5", + "listEnumeration": "5.", + "fullStatement": "Understand that positive and negative numbers are used together to describe quantities having opposite directions or values (e.g., temperature above/below zero, elevation above/below sea level, credits/debits, positive/negative electric charge); use positive and negative numbers to represent quantities in real-world contexts, explaining the meaning of 0 in each situation.", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9f7a96-d7cc-11e8-824f-0242ac160002", + "identifier": "6b9f7a96-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Standard", + "CFItemTypeURI": { + "title": "Standard", + "identifier": "88e14be5-f7f3-4e67-b4a2-d621eaa49d48", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/88e14be5-f7f3-4e67-b4a2-d621eaa49d48" + }, + "educationLevel": [ + "06" + ], + "humanCodingScheme": "6.SP.B.5", + "listEnumeration": "5.", + "fullStatement": "Summarize numerical data sets in relation to their context, such as by:", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9f7d68-d7cc-11e8-824f-0242ac160002", + "identifier": "6b9f7d68-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Standard", + "CFItemTypeURI": { + "title": "Standard", + "identifier": "88e14be5-f7f3-4e67-b4a2-d621eaa49d48", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/88e14be5-f7f3-4e67-b4a2-d621eaa49d48" + }, + "educationLevel": [ + "07" + ], + "humanCodingScheme": "7.G.B.5", + "listEnumeration": "5.", + "fullStatement": "Use facts about supplementary, complementary, vertical, and adjacent angles in a multi-step problem to write and solve simple equations for an unknown angle in a figure.", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9f803d-d7cc-11e8-824f-0242ac160002", + "identifier": "6b9f803d-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Standard", + "CFItemTypeURI": { + "title": "Standard", + "identifier": "88e14be5-f7f3-4e67-b4a2-d621eaa49d48", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/88e14be5-f7f3-4e67-b4a2-d621eaa49d48" + }, + "educationLevel": [ + "07" + ], + "humanCodingScheme": "7.SP.C.5", + "listEnumeration": "5.", + "fullStatement": "Understand that the probability of a chance event is a number between 0 and 1 that expresses the likelihood of the event occurring. Larger numbers indicate greater likelihood. A probability near 0 indicates an unlikely event, a probability around 1/2 indicates an event that is neither unlikely nor likely, and a probability near 1 indicates a likely event.", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9f8362-d7cc-11e8-824f-0242ac160002", + "identifier": "6b9f8362-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Standard", + "CFItemTypeURI": { + "title": "Standard", + "identifier": "88e14be5-f7f3-4e67-b4a2-d621eaa49d48", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/88e14be5-f7f3-4e67-b4a2-d621eaa49d48" + }, + "educationLevel": [ + "08" + ], + "humanCodingScheme": "8.EE.B.5", + "listEnumeration": "5.", + "fullStatement": "Graph proportional relationships, interpreting the unit rate as the slope of the graph. Compare two different proportional relationships represented in different ways. For example, compare a distance-time graph to a distance-time equation to determine which of two moving objects has greater speed.", + "notes": "", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9f86d5-d7cc-11e8-824f-0242ac160002", + "identifier": "6b9f86d5-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Standard", + "CFItemTypeURI": { + "title": "Standard", + "identifier": "88e14be5-f7f3-4e67-b4a2-d621eaa49d48", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/88e14be5-f7f3-4e67-b4a2-d621eaa49d48" + }, + "educationLevel": [ + "08" + ], + "humanCodingScheme": "8.F.B.5", + "listEnumeration": "5.", + "fullStatement": "Describe qualitatively the functional relationship between two quantities by analyzing a graph (e.g., where the function is increasing or decreasing, linear or nonlinear). Sketch a graph that exhibits the qualitative features of a function that has been described verbally.", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9f89a0-d7cc-11e8-824f-0242ac160002", + "identifier": "6b9f89a0-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Standard", + "CFItemTypeURI": { + "title": "Standard", + "identifier": "88e14be5-f7f3-4e67-b4a2-d621eaa49d48", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/88e14be5-f7f3-4e67-b4a2-d621eaa49d48" + }, + "educationLevel": [ + "08" + ], + "humanCodingScheme": "8.G.A.5", + "listEnumeration": "5.", + "fullStatement": "Use informal arguments to establish facts about the angle sum and exterior angle of triangles, about the angles created when parallel lines are cut by a transversal, and the angle-angle criterion for similarity of triangles. For example, arrange three copies of the same triangle so that the sum of the three angles appears to form a line, and give an argument in terms of transversals why this is so.", + "notes": "", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9f8c74-d7cc-11e8-824f-0242ac160002", + "identifier": "6b9f8c74-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Standard", + "CFItemTypeURI": { + "title": "Standard", + "identifier": "88e14be5-f7f3-4e67-b4a2-d621eaa49d48", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/88e14be5-f7f3-4e67-b4a2-d621eaa49d48" + }, + "educationLevel": [ + "09", + "10", + "11", + "12" + ], + "humanCodingScheme": "HSA-APR.C.5", + "listEnumeration": "5.", + "fullStatement": "(+) Know and apply the Binomial Theorem for the expansion of (x + y)n in powers of x and y for a positive integer n, where x and y are any numbers, with coefficients determined for example by Pascal's Triangle.", + "notes": "The Binomial Theorem can be proved by mathematical induction or by a combinatorial argument.", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9f8f43-d7cc-11e8-824f-0242ac160002", + "identifier": "6b9f8f43-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Standard", + "CFItemTypeURI": { + "title": "Standard", + "identifier": "88e14be5-f7f3-4e67-b4a2-d621eaa49d48", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/88e14be5-f7f3-4e67-b4a2-d621eaa49d48" + }, + "educationLevel": [ + "09", + "10", + "11", + "12" + ], + "humanCodingScheme": "HSA-REI.C.5", + "listEnumeration": "5.", + "fullStatement": "Prove that, given a system of two equations in two variables, replacing one equation by the sum of that equation and a multiple of the other produces a system with the same solutions.", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9f920f-d7cc-11e8-824f-0242ac160002", + "identifier": "6b9f920f-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Standard", + "CFItemTypeURI": { + "title": "Standard", + "identifier": "88e14be5-f7f3-4e67-b4a2-d621eaa49d48", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/88e14be5-f7f3-4e67-b4a2-d621eaa49d48" + }, + "educationLevel": [ + "09", + "10", + "11", + "12" + ], + "humanCodingScheme": "HSF-BF.B.5", + "listEnumeration": "5.", + "fullStatement": "(+) Understand the inverse relationship between exponents and logarithms and use this relationship to solve problems involving logarithms and exponents.", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9f94e7-d7cc-11e8-824f-0242ac160002", + "identifier": "6b9f94e7-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Standard", + "CFItemTypeURI": { + "title": "Standard", + "identifier": "88e14be5-f7f3-4e67-b4a2-d621eaa49d48", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/88e14be5-f7f3-4e67-b4a2-d621eaa49d48" + }, + "educationLevel": [ + "09", + "10", + "11", + "12" + ], + "humanCodingScheme": "HSF-IF.B.5", + "listEnumeration": "5.", + "fullStatement": "Relate the domain of a function to its graph and, where applicable, to the quantitative relationship it describes. For example, if the function h(n) gives the number of person-hours it takes to assemble n engines in a factory, then the positive integers would be an appropriate domain for the function.", + "notes": "", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9f97c6-d7cc-11e8-824f-0242ac160002", + "identifier": "6b9f97c6-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Standard", + "CFItemTypeURI": { + "title": "Standard", + "identifier": "88e14be5-f7f3-4e67-b4a2-d621eaa49d48", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/88e14be5-f7f3-4e67-b4a2-d621eaa49d48" + }, + "educationLevel": [ + "09", + "10", + "11", + "12" + ], + "humanCodingScheme": "HSF-LE.B.5", + "listEnumeration": "5.", + "fullStatement": "Interpret the parameters in a linear or exponential function in terms of a context.", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9f9a9b-d7cc-11e8-824f-0242ac160002", + "identifier": "6b9f9a9b-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Standard", + "CFItemTypeURI": { + "title": "Standard", + "identifier": "88e14be5-f7f3-4e67-b4a2-d621eaa49d48", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/88e14be5-f7f3-4e67-b4a2-d621eaa49d48" + }, + "educationLevel": [ + "09", + "10", + "11", + "12" + ], + "humanCodingScheme": "HSF-TF.B.5", + "listEnumeration": "5.", + "fullStatement": "Choose trigonometric functions to model periodic phenomena with specified amplitude, frequency, and midline.", + "notes": "Modeling is best interpreted not as a collection of isolated topics but in relation to other standards. Making mathematical models is a Standard for Mathematical Practice, and specific modeling standards appear throughout the high school standards indicated by a star symbol (★). The star symbol sometimes appears on the heading for a group of standards; in that case, it should be understood to apply to all standards in that group.", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9f9d82-d7cc-11e8-824f-0242ac160002", + "identifier": "6b9f9d82-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Standard", + "CFItemTypeURI": { + "title": "Standard", + "identifier": "88e14be5-f7f3-4e67-b4a2-d621eaa49d48", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/88e14be5-f7f3-4e67-b4a2-d621eaa49d48" + }, + "educationLevel": [ + "09", + "10", + "11", + "12" + ], + "humanCodingScheme": "HSG-C.B.5", + "listEnumeration": "5.", + "fullStatement": "Derive using similarity the fact that the length of the arc intercepted by an angle is proportional to the radius, and define the radian measure of the angle as the constant of proportionality; derive the formula for the area of a sector.", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9fa05a-d7cc-11e8-824f-0242ac160002", + "identifier": "6b9fa05a-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Standard", + "CFItemTypeURI": { + "title": "Standard", + "identifier": "88e14be5-f7f3-4e67-b4a2-d621eaa49d48", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/88e14be5-f7f3-4e67-b4a2-d621eaa49d48" + }, + "educationLevel": [ + "09", + "10", + "11", + "12" + ], + "humanCodingScheme": "HSG-CO.A.5", + "listEnumeration": "5.", + "fullStatement": "Given a geometric figure and a rotation, reflection, or translation, draw the transformed figure using, e.g., graph paper, tracing paper, or geometry software. Specify a sequence of transformations that will carry a given figure onto another.", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9fa334-d7cc-11e8-824f-0242ac160002", + "identifier": "6b9fa334-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Standard", + "CFItemTypeURI": { + "title": "Standard", + "identifier": "88e14be5-f7f3-4e67-b4a2-d621eaa49d48", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/88e14be5-f7f3-4e67-b4a2-d621eaa49d48" + }, + "educationLevel": [ + "09", + "10", + "11", + "12" + ], + "humanCodingScheme": "HSG-GPE.B.5", + "listEnumeration": "5.", + "fullStatement": "Prove the slope criteria for parallel and perpendicular lines and use them to solve geometric problems (e.g., find the equation of a line parallel or perpendicular to a given line that passes through a given point).", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9fa609-d7cc-11e8-824f-0242ac160002", + "identifier": "6b9fa609-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Standard", + "CFItemTypeURI": { + "title": "Standard", + "identifier": "88e14be5-f7f3-4e67-b4a2-d621eaa49d48", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/88e14be5-f7f3-4e67-b4a2-d621eaa49d48" + }, + "educationLevel": [ + "09", + "10", + "11", + "12" + ], + "humanCodingScheme": "HSG-SRT.B.5", + "listEnumeration": "5.", + "fullStatement": "Use congruence and similarity criteria for triangles to solve problems and to prove relationships in geometric figures.", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9fa8da-d7cc-11e8-824f-0242ac160002", + "identifier": "6b9fa8da-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Standard", + "CFItemTypeURI": { + "title": "Standard", + "identifier": "88e14be5-f7f3-4e67-b4a2-d621eaa49d48", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/88e14be5-f7f3-4e67-b4a2-d621eaa49d48" + }, + "educationLevel": [ + "09", + "10", + "11", + "12" + ], + "humanCodingScheme": "HSN-CN.B.5", + "listEnumeration": "5.", + "fullStatement": "(+) Represent addition, subtraction, multiplication, and conjugation of complex numbers geometrically on the complex plane; use properties of this representation for computation. For example, (-1 + √3 i)³ = 8 because (-1 + √3 i) has modulus 2 and argument 120°.", + "notes": "", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9fabf9-d7cc-11e8-824f-0242ac160002", + "identifier": "6b9fabf9-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Standard", + "CFItemTypeURI": { + "title": "Standard", + "identifier": "88e14be5-f7f3-4e67-b4a2-d621eaa49d48", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/88e14be5-f7f3-4e67-b4a2-d621eaa49d48" + }, + "educationLevel": [ + "09", + "10", + "11", + "12" + ], + "humanCodingScheme": "HSN-VM.B.5", + "listEnumeration": "5.", + "fullStatement": "(+) Multiply a vector by a scalar.", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9faedc-d7cc-11e8-824f-0242ac160002", + "identifier": "6b9faedc-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Standard", + "CFItemTypeURI": { + "title": "Standard", + "identifier": "88e14be5-f7f3-4e67-b4a2-d621eaa49d48", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/88e14be5-f7f3-4e67-b4a2-d621eaa49d48" + }, + "educationLevel": [ + "09", + "10", + "11", + "12" + ], + "humanCodingScheme": "HSS-CP.A.5", + "listEnumeration": "5.", + "fullStatement": "Recognize and explain the concepts of conditional probability and independence in everyday language and everyday situations. For example, compare the chance of having lung cancer if you are a smoker with the chance of being a smoker if you have lung cancer.", + "notes": "", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9fb424-d7cc-11e8-824f-0242ac160002", + "identifier": "6b9fb424-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Standard", + "CFItemTypeURI": { + "title": "Standard", + "identifier": "88e14be5-f7f3-4e67-b4a2-d621eaa49d48", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/88e14be5-f7f3-4e67-b4a2-d621eaa49d48" + }, + "educationLevel": [ + "09", + "10", + "11", + "12" + ], + "humanCodingScheme": "HSS-IC.B.5", + "listEnumeration": "5.", + "fullStatement": "Use data from a randomized experiment to compare two treatments; use simulations to decide if differences between parameters are significant.", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9fb768-d7cc-11e8-824f-0242ac160002", + "identifier": "6b9fb768-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Standard", + "CFItemTypeURI": { + "title": "Standard", + "identifier": "88e14be5-f7f3-4e67-b4a2-d621eaa49d48", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/88e14be5-f7f3-4e67-b4a2-d621eaa49d48" + }, + "educationLevel": [ + "09", + "10", + "11", + "12" + ], + "humanCodingScheme": "HSS-ID.B.5", + "listEnumeration": "5.", + "fullStatement": "Summarize categorical data for two categories in two-way frequency tables. Interpret relative frequencies in the context of the data (including joint, marginal, and conditional relative frequencies). Recognize possible associations and trends in the data.", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9fba47-d7cc-11e8-824f-0242ac160002", + "identifier": "6b9fba47-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Standard", + "CFItemTypeURI": { + "title": "Standard", + "identifier": "88e14be5-f7f3-4e67-b4a2-d621eaa49d48", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/88e14be5-f7f3-4e67-b4a2-d621eaa49d48" + }, + "educationLevel": [ + "09", + "10", + "11", + "12" + ], + "humanCodingScheme": "HSS-MD.B.5", + "listEnumeration": "5.", + "fullStatement": "(+) Weigh the possible outcomes of a decision by assigning probabilities to payoff values and finding expected values.", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9fbd0d-d7cc-11e8-824f-0242ac160002", + "identifier": "6b9fbd0d-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Standard", + "CFItemTypeURI": { + "title": "Standard", + "identifier": "88e14be5-f7f3-4e67-b4a2-d621eaa49d48", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/88e14be5-f7f3-4e67-b4a2-d621eaa49d48" + }, + "educationLevel": [ + "KG" + ], + "humanCodingScheme": "K.CC.B.5", + "listEnumeration": "5.", + "fullStatement": "Count to answer \"how many?\" questions about as many as 20 things arranged in a line, a rectangular array, or a circle, or as many as 10 things in a scattered configuration; given a number from 1—20, count out that many objects.", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9fc08e-d7cc-11e8-824f-0242ac160002", + "identifier": "6b9fc08e-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Standard", + "CFItemTypeURI": { + "title": "Standard", + "identifier": "88e14be5-f7f3-4e67-b4a2-d621eaa49d48", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/88e14be5-f7f3-4e67-b4a2-d621eaa49d48" + }, + "educationLevel": [ + "KG" + ], + "humanCodingScheme": "K.G.B.5", + "listEnumeration": "5.", + "fullStatement": "Model shapes in the world by building shapes from components (e.g., sticks and clay balls) and drawing shapes.", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9fc478-d7cc-11e8-824f-0242ac160002", + "identifier": "6b9fc478-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Standard", + "CFItemTypeURI": { + "title": "Standard", + "identifier": "88e14be5-f7f3-4e67-b4a2-d621eaa49d48", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/88e14be5-f7f3-4e67-b4a2-d621eaa49d48" + }, + "educationLevel": [ + "KG" + ], + "humanCodingScheme": "K.OA.A.5", + "listEnumeration": "5.", + "fullStatement": "Fluently add and subtract within 5.", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9fca17-d7cc-11e8-824f-0242ac160002", + "identifier": "6b9fca17-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2020-06-20T13:28:22+00:00", + "CFItemType": "Standard", + "CFItemTypeURI": { + "title": "Standard", + "identifier": "88e14be5-f7f3-4e67-b4a2-d621eaa49d48", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/88e14be5-f7f3-4e67-b4a2-d621eaa49d48" + }, + "educationLevel": [ + "KG", + "01", + "02", + "03", + "04", + "05", + "06", + "07", + "08", + "09", + "10", + "11", + "12" + ], + "humanCodingScheme": "MP5", + "listEnumeration": "5.", + "fullStatement": "Use appropriate tools strategically.", + "notes": "Mathematically proficient students consider the available tools when solving a mathematical problem. These tools might include pencil and paper, concrete models, a ruler, a protractor, a calculator, a spreadsheet, a computer algebra system, a statistical package, or dynamic geometry software. Proficient students are sufficiently familiar with tools appropriate for their grade or course to make sound decisions about when each of these tools might be helpful, recognizing both the insight to be gained and their limitations. For example, mathematically proficient high school students analyze graphs of functions and solutions generated using a graphing calculator. They detect possible errors by strategically using estimation and other mathematical knowledge. When making mathematical models, they know that technology can enable them to visualize the results of varying assumptions, explore consequences, and compare predictions with data. Mathematically proficient students at various grade levels are able to identify relevant external mathematical resources, such as digital content located on a website, and use them to pose or solve problems. They are able to use technological tools to explore and deepen their understanding of concepts.", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9fcd8e-d7cc-11e8-824f-0242ac160002", + "identifier": "6b9fcd8e-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Grade Level", + "CFItemTypeURI": { + "title": "Grade Level", + "identifier": "8047d85d-6c8e-5231-bd6d-050731684413", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/8047d85d-6c8e-5231-bd6d-050731684413" + }, + "educationLevel": [ + "05" + ], + "listEnumeration": "6", + "fullStatement": "Grade 5", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9fd080-d7cc-11e8-824f-0242ac160002", + "identifier": "6b9fd080-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Standard", + "CFItemTypeURI": { + "title": "Standard", + "identifier": "88e14be5-f7f3-4e67-b4a2-d621eaa49d48", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/88e14be5-f7f3-4e67-b4a2-d621eaa49d48" + }, + "educationLevel": [ + "01" + ], + "humanCodingScheme": "1.NBT.C.6", + "listEnumeration": "6.", + "fullStatement": "Subtract multiples of 10 in the range 10-90 from multiples of 10 in the range 10-90 (positive or zero differences), using concrete models or drawings and strategies based on place value, properties of operations, and/or the relationship between addition and subtraction; relate the strategy to a written method and explain the reasoning used.", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9fd4e5-d7cc-11e8-824f-0242ac160002", + "identifier": "6b9fd4e5-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Standard", + "CFItemTypeURI": { + "title": "Standard", + "identifier": "88e14be5-f7f3-4e67-b4a2-d621eaa49d48", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/88e14be5-f7f3-4e67-b4a2-d621eaa49d48" + }, + "educationLevel": [ + "01" + ], + "humanCodingScheme": "1.OA.C.6", + "listEnumeration": "6.", + "fullStatement": "Add and subtract within 20, demonstrating fluency for addition and subtraction within 10. Use strategies such as counting on; making ten (e.g., 8 + 6 = 8 + 2 + 4 = 10 + 4 = 14); decomposing a number leading to a ten (e.g., 13 - 4 = 13 - 3 - 1 = 10 - 1 = 9); using the relationship between addition and subtraction (e.g., knowing that 8 + 4 = 12, one knows 12 - 8 = 4); and creating equivalent but easier or known sums (e.g., adding 6 + 7 by creating the known equivalent 6 + 6 + 1 = 12 + 1 = 13).", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9fd7e9-d7cc-11e8-824f-0242ac160002", + "identifier": "6b9fd7e9-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Standard", + "CFItemTypeURI": { + "title": "Standard", + "identifier": "88e14be5-f7f3-4e67-b4a2-d621eaa49d48", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/88e14be5-f7f3-4e67-b4a2-d621eaa49d48" + }, + "educationLevel": [ + "02" + ], + "humanCodingScheme": "2.MD.B.6", + "listEnumeration": "6.", + "fullStatement": "Represent whole numbers as lengths from 0 on a number line diagram with equally spaced points corresponding to the numbers 0, 1, 2, …, and represent whole-number sums and differences within 100 on a number line diagram.", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9fdad9-d7cc-11e8-824f-0242ac160002", + "identifier": "6b9fdad9-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Standard", + "CFItemTypeURI": { + "title": "Standard", + "identifier": "88e14be5-f7f3-4e67-b4a2-d621eaa49d48", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/88e14be5-f7f3-4e67-b4a2-d621eaa49d48" + }, + "educationLevel": [ + "02" + ], + "humanCodingScheme": "2.NBT.B.6", + "listEnumeration": "6.", + "fullStatement": "Add up to four two-digit numbers using strategies based on place value and properties of operations.", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9fddc7-d7cc-11e8-824f-0242ac160002", + "identifier": "6b9fddc7-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Standard", + "CFItemTypeURI": { + "title": "Standard", + "identifier": "88e14be5-f7f3-4e67-b4a2-d621eaa49d48", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/88e14be5-f7f3-4e67-b4a2-d621eaa49d48" + }, + "educationLevel": [ + "03" + ], + "humanCodingScheme": "3.MD.C.6", + "listEnumeration": "6.", + "fullStatement": "Measure areas by counting unit squares (square cm, square m, square in, square ft, and improvised units).", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9fe0ba-d7cc-11e8-824f-0242ac160002", + "identifier": "6b9fe0ba-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Standard", + "CFItemTypeURI": { + "title": "Standard", + "identifier": "88e14be5-f7f3-4e67-b4a2-d621eaa49d48", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/88e14be5-f7f3-4e67-b4a2-d621eaa49d48" + }, + "educationLevel": [ + "03" + ], + "humanCodingScheme": "3.OA.B.6", + "listEnumeration": "6.", + "fullStatement": "Understand division as an unknown-factor problem. For example, find 32 ÷ 8 by finding the number that makes 32 when multiplied by 8.", + "notes": "", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9fe3ab-d7cc-11e8-824f-0242ac160002", + "identifier": "6b9fe3ab-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Standard", + "CFItemTypeURI": { + "title": "Standard", + "identifier": "88e14be5-f7f3-4e67-b4a2-d621eaa49d48", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/88e14be5-f7f3-4e67-b4a2-d621eaa49d48" + }, + "educationLevel": [ + "04" + ], + "humanCodingScheme": "4.MD.C.6", + "listEnumeration": "6.", + "fullStatement": "Measure angles in whole-number degrees using a protractor. Sketch angles of specified measure.", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9fe69c-d7cc-11e8-824f-0242ac160002", + "identifier": "6b9fe69c-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Standard", + "CFItemTypeURI": { + "title": "Standard", + "identifier": "88e14be5-f7f3-4e67-b4a2-d621eaa49d48", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/88e14be5-f7f3-4e67-b4a2-d621eaa49d48" + }, + "educationLevel": [ + "04" + ], + "humanCodingScheme": "4.NBT.B.6", + "listEnumeration": "6.", + "fullStatement": "Find whole-number quotients and remainders with up to four-digit dividends and one-digit divisors, using strategies based on place value, the properties of operations, and/or the relationship between multiplication and division. Illustrate and explain the calculation by using equations, rectangular arrays, and/or area models.", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9fea01-d7cc-11e8-824f-0242ac160002", + "identifier": "6b9fea01-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Standard", + "CFItemTypeURI": { + "title": "Standard", + "identifier": "88e14be5-f7f3-4e67-b4a2-d621eaa49d48", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/88e14be5-f7f3-4e67-b4a2-d621eaa49d48" + }, + "educationLevel": [ + "04" + ], + "humanCodingScheme": "4.NF.C.6", + "listEnumeration": "6.", + "fullStatement": "Use decimal notation for fractions with denominators 10 or 100. For example, rewrite 0.62 as 62/100; describe a length as 0.62 meters; locate 0.62 on a number line diagram.", + "notes": "", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9fed0a-d7cc-11e8-824f-0242ac160002", + "identifier": "6b9fed0a-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Standard", + "CFItemTypeURI": { + "title": "Standard", + "identifier": "88e14be5-f7f3-4e67-b4a2-d621eaa49d48", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/88e14be5-f7f3-4e67-b4a2-d621eaa49d48" + }, + "educationLevel": [ + "05" + ], + "humanCodingScheme": "5.NBT.B.6", + "listEnumeration": "6.", + "fullStatement": "Find whole-number quotients of whole numbers with up to four-digit dividends and two-digit divisors, using strategies based on place value, the properties of operations, and/or the relationship between multiplication and division. Illustrate and explain the calculation by using equations, rectangular arrays, and/or area models.", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9ff014-d7cc-11e8-824f-0242ac160002", + "identifier": "6b9ff014-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Standard", + "CFItemTypeURI": { + "title": "Standard", + "identifier": "88e14be5-f7f3-4e67-b4a2-d621eaa49d48", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/88e14be5-f7f3-4e67-b4a2-d621eaa49d48" + }, + "educationLevel": [ + "05" + ], + "humanCodingScheme": "5.NF.B.6", + "listEnumeration": "6.", + "fullStatement": "Solve real world problems involving multiplication of fractions and mixed numbers, e.g., by using visual fraction models or equations to represent the problem.", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9ff310-d7cc-11e8-824f-0242ac160002", + "identifier": "6b9ff310-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Standard", + "CFItemTypeURI": { + "title": "Standard", + "identifier": "88e14be5-f7f3-4e67-b4a2-d621eaa49d48", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/88e14be5-f7f3-4e67-b4a2-d621eaa49d48" + }, + "educationLevel": [ + "06" + ], + "humanCodingScheme": "6.EE.B.6", + "listEnumeration": "6.", + "fullStatement": "Use variables to represent numbers and write expressions when solving a real-world or mathematical problem; understand that a variable can represent an unknown number, or, depending on the purpose at hand, any number in a specified set.", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9ff611-d7cc-11e8-824f-0242ac160002", + "identifier": "6b9ff611-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Standard", + "CFItemTypeURI": { + "title": "Standard", + "identifier": "88e14be5-f7f3-4e67-b4a2-d621eaa49d48", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/88e14be5-f7f3-4e67-b4a2-d621eaa49d48" + }, + "educationLevel": [ + "06" + ], + "humanCodingScheme": "6.NS.C.6", + "listEnumeration": "6.", + "fullStatement": "Understand a rational number as a point on the number line. Extend number line diagrams and coordinate axes familiar from previous grades to represent points on the line and in the plane with negative number coordinates.", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9ff914-d7cc-11e8-824f-0242ac160002", + "identifier": "6b9ff914-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Standard", + "CFItemTypeURI": { + "title": "Standard", + "identifier": "88e14be5-f7f3-4e67-b4a2-d621eaa49d48", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/88e14be5-f7f3-4e67-b4a2-d621eaa49d48" + }, + "educationLevel": [ + "07" + ], + "humanCodingScheme": "7.G.B.6", + "listEnumeration": "6.", + "fullStatement": "Solve real-world and mathematical problems involving area, volume and surface area of two- and three-dimensional objects composed of triangles, quadrilaterals, polygons, cubes, and right prisms.", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9ffc59-d7cc-11e8-824f-0242ac160002", + "identifier": "6b9ffc59-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Standard", + "CFItemTypeURI": { + "title": "Standard", + "identifier": "88e14be5-f7f3-4e67-b4a2-d621eaa49d48", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/88e14be5-f7f3-4e67-b4a2-d621eaa49d48" + }, + "educationLevel": [ + "07" + ], + "humanCodingScheme": "7.SP.C.6", + "listEnumeration": "6.", + "fullStatement": "Approximate the probability of a chance event by collecting data on the chance process that produces it and observing its long-run relative frequency, and predict the approximate relative frequency given the probability. For example, when rolling a number cube 600 times, predict that a 3 or 6 would be rolled roughly 200 times, but probably not exactly 200 times.", + "notes": "", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9fff6f-d7cc-11e8-824f-0242ac160002", + "identifier": "6b9fff6f-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Standard", + "CFItemTypeURI": { + "title": "Standard", + "identifier": "88e14be5-f7f3-4e67-b4a2-d621eaa49d48", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/88e14be5-f7f3-4e67-b4a2-d621eaa49d48" + }, + "educationLevel": [ + "08" + ], + "humanCodingScheme": "8.EE.B.6", + "listEnumeration": "6.", + "fullStatement": "Use similar triangles to explain why the slope m is the same between any two distinct points on a non-vertical line in the coordinate plane; derive the equation y = mx for a line through the origin and the equation y = mx + b for a line intercepting the vertical axis at b.", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6ba0026f-d7cc-11e8-824f-0242ac160002", + "identifier": "6ba0026f-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Standard", + "CFItemTypeURI": { + "title": "Standard", + "identifier": "88e14be5-f7f3-4e67-b4a2-d621eaa49d48", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/88e14be5-f7f3-4e67-b4a2-d621eaa49d48" + }, + "educationLevel": [ + "08" + ], + "humanCodingScheme": "8.G.B.6", + "listEnumeration": "6.", + "fullStatement": "Explain a proof of the Pythagorean Theorem and its converse.", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6ba00569-d7cc-11e8-824f-0242ac160002", + "identifier": "6ba00569-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Standard", + "CFItemTypeURI": { + "title": "Standard", + "identifier": "88e14be5-f7f3-4e67-b4a2-d621eaa49d48", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/88e14be5-f7f3-4e67-b4a2-d621eaa49d48" + }, + "educationLevel": [ + "09", + "10", + "11", + "12" + ], + "humanCodingScheme": "HSA-APR.D.6", + "listEnumeration": "6.", + "fullStatement": "Rewrite simple rational expressions in different forms; write a(x /b(x) in the form q(x) + r(x)/b(x), where a(x), b(x), q(x), and r(x) are polynomials with the degree of r(x) less than the degree of b(x), using inspection, long division, or, for the more complicated examples, a computer algebra system.", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6ba00873-d7cc-11e8-824f-0242ac160002", + "identifier": "6ba00873-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Standard", + "CFItemTypeURI": { + "title": "Standard", + "identifier": "88e14be5-f7f3-4e67-b4a2-d621eaa49d48", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/88e14be5-f7f3-4e67-b4a2-d621eaa49d48" + }, + "educationLevel": [ + "09", + "10", + "11", + "12" + ], + "humanCodingScheme": "HSA-REI.C.6", + "listEnumeration": "6.", + "fullStatement": "Solve systems of linear equations exactly and approximately (e.g., with graphs), focusing on pairs of linear equations in two variables.", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6ba00b75-d7cc-11e8-824f-0242ac160002", + "identifier": "6ba00b75-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Standard", + "CFItemTypeURI": { + "title": "Standard", + "identifier": "88e14be5-f7f3-4e67-b4a2-d621eaa49d48", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/88e14be5-f7f3-4e67-b4a2-d621eaa49d48" + }, + "educationLevel": [ + "09", + "10", + "11", + "12" + ], + "humanCodingScheme": "HSF-IF.B.6", + "listEnumeration": "6.", + "fullStatement": "Calculate and interpret the average rate of change of a function (presented symbolically or as a table) over a specified interval. Estimate the rate of change from a graph.", + "notes": "Modeling is best interpreted not as a collection of isolated topics but in relation to other standards. Making mathematical models is a Standard for Mathematical Practice, and specific modeling standards appear throughout the high school standards indicated by a star symbol (★). The star symbol sometimes appears on the heading for a group of standards; in that case, it should be understood to apply to all standards in that group.", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6ba00e93-d7cc-11e8-824f-0242ac160002", + "identifier": "6ba00e93-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Standard", + "CFItemTypeURI": { + "title": "Standard", + "identifier": "88e14be5-f7f3-4e67-b4a2-d621eaa49d48", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/88e14be5-f7f3-4e67-b4a2-d621eaa49d48" + }, + "educationLevel": [ + "09", + "10", + "11", + "12" + ], + "humanCodingScheme": "HSF-TF.B.6", + "listEnumeration": "6.", + "fullStatement": "(+) Understand that restricting a trigonometric function to a domain on which it is always increasing or always decreasing allows its inverse to be constructed.", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6ba011a4-d7cc-11e8-824f-0242ac160002", + "identifier": "6ba011a4-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Standard", + "CFItemTypeURI": { + "title": "Standard", + "identifier": "88e14be5-f7f3-4e67-b4a2-d621eaa49d48", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/88e14be5-f7f3-4e67-b4a2-d621eaa49d48" + }, + "educationLevel": [ + "09", + "10", + "11", + "12" + ], + "humanCodingScheme": "HSG-CO.B.6", + "listEnumeration": "6.", + "fullStatement": "Use geometric descriptions of rigid motions to transform figures and to predict the effect of a given rigid motion on a given figure; given two figures, use the definition of congruence in terms of rigid motions to decide if they are congruent.", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6ba014b5-d7cc-11e8-824f-0242ac160002", + "identifier": "6ba014b5-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Standard", + "CFItemTypeURI": { + "title": "Standard", + "identifier": "88e14be5-f7f3-4e67-b4a2-d621eaa49d48", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/88e14be5-f7f3-4e67-b4a2-d621eaa49d48" + }, + "educationLevel": [ + "09", + "10", + "11", + "12" + ], + "humanCodingScheme": "HSG-GPE.B.6", + "listEnumeration": "6.", + "fullStatement": "Find the point on a directed line segment between two given points that partitions the segment in a given ratio.", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6ba017c6-d7cc-11e8-824f-0242ac160002", + "identifier": "6ba017c6-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Standard", + "CFItemTypeURI": { + "title": "Standard", + "identifier": "88e14be5-f7f3-4e67-b4a2-d621eaa49d48", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/88e14be5-f7f3-4e67-b4a2-d621eaa49d48" + }, + "educationLevel": [ + "09", + "10", + "11", + "12" + ], + "humanCodingScheme": "HSG-SRT.C.6", + "listEnumeration": "6.", + "fullStatement": "Understand that by similarity, side ratios in right triangles are properties of the angles in the triangle, leading to definitions of trigonometric ratios for acute angles.", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6ba01ad6-d7cc-11e8-824f-0242ac160002", + "identifier": "6ba01ad6-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Standard", + "CFItemTypeURI": { + "title": "Standard", + "identifier": "88e14be5-f7f3-4e67-b4a2-d621eaa49d48", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/88e14be5-f7f3-4e67-b4a2-d621eaa49d48" + }, + "educationLevel": [ + "09", + "10", + "11", + "12" + ], + "humanCodingScheme": "HSN-CN.B.6", + "listEnumeration": "6.", + "fullStatement": "(+) Calculate the distance between numbers in the complex plane as the modulus of the difference, and the midpoint of a segment as the average of the numbers at its endpoints.", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6ba01de0-d7cc-11e8-824f-0242ac160002", + "identifier": "6ba01de0-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Standard", + "CFItemTypeURI": { + "title": "Standard", + "identifier": "88e14be5-f7f3-4e67-b4a2-d621eaa49d48", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/88e14be5-f7f3-4e67-b4a2-d621eaa49d48" + }, + "educationLevel": [ + "09", + "10", + "11", + "12" + ], + "humanCodingScheme": "HSN-VM.C.6", + "listEnumeration": "6.", + "fullStatement": "(+) Use matrices to represent and manipulate data, e.g., to represent payoffs or incidence relationships in a network.", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6ba0213a-d7cc-11e8-824f-0242ac160002", + "identifier": "6ba0213a-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Standard", + "CFItemTypeURI": { + "title": "Standard", + "identifier": "88e14be5-f7f3-4e67-b4a2-d621eaa49d48", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/88e14be5-f7f3-4e67-b4a2-d621eaa49d48" + }, + "educationLevel": [ + "09", + "10", + "11", + "12" + ], + "humanCodingScheme": "HSS-CP.B.6", + "listEnumeration": "6.", + "fullStatement": "Find the conditional probability of A given B as the fraction of B's outcomes that also belong to A, and interpret the answer in terms of the model.", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6ba02461-d7cc-11e8-824f-0242ac160002", + "identifier": "6ba02461-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Standard", + "CFItemTypeURI": { + "title": "Standard", + "identifier": "88e14be5-f7f3-4e67-b4a2-d621eaa49d48", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/88e14be5-f7f3-4e67-b4a2-d621eaa49d48" + }, + "educationLevel": [ + "09", + "10", + "11", + "12" + ], + "humanCodingScheme": "HSS-IC.B.6", + "listEnumeration": "6.", + "fullStatement": "Evaluate reports based on data.", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6ba02776-d7cc-11e8-824f-0242ac160002", + "identifier": "6ba02776-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Standard", + "CFItemTypeURI": { + "title": "Standard", + "identifier": "88e14be5-f7f3-4e67-b4a2-d621eaa49d48", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/88e14be5-f7f3-4e67-b4a2-d621eaa49d48" + }, + "educationLevel": [ + "09", + "10", + "11", + "12" + ], + "humanCodingScheme": "HSS-ID.B.6", + "listEnumeration": "6.", + "fullStatement": "Represent data on two quantitative variables on a scatter plot, and describe how the variables are related.", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6ba02a8f-d7cc-11e8-824f-0242ac160002", + "identifier": "6ba02a8f-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Standard", + "CFItemTypeURI": { + "title": "Standard", + "identifier": "88e14be5-f7f3-4e67-b4a2-d621eaa49d48", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/88e14be5-f7f3-4e67-b4a2-d621eaa49d48" + }, + "educationLevel": [ + "09", + "10", + "11", + "12" + ], + "humanCodingScheme": "HSS-MD.B.6", + "listEnumeration": "6.", + "fullStatement": "(+) Use probabilities to make fair decisions (e.g., drawing by lots, using a random number generator).", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6ba02dad-d7cc-11e8-824f-0242ac160002", + "identifier": "6ba02dad-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Standard", + "CFItemTypeURI": { + "title": "Standard", + "identifier": "88e14be5-f7f3-4e67-b4a2-d621eaa49d48", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/88e14be5-f7f3-4e67-b4a2-d621eaa49d48" + }, + "educationLevel": [ + "KG" + ], + "humanCodingScheme": "K.CC.C.6", + "listEnumeration": "6.", + "fullStatement": "Identify whether the number of objects in one group is greater than, less than, or equal to the number of objects in another group, e.g., by using matching and counting strategies.", + "notes": "Include groups with up to ten objects.", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6ba030d6-d7cc-11e8-824f-0242ac160002", + "identifier": "6ba030d6-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Standard", + "CFItemTypeURI": { + "title": "Standard", + "identifier": "88e14be5-f7f3-4e67-b4a2-d621eaa49d48", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/88e14be5-f7f3-4e67-b4a2-d621eaa49d48" + }, + "educationLevel": [ + "KG" + ], + "humanCodingScheme": "K.G.B.6", + "listEnumeration": "6.", + "fullStatement": "Compose simple shapes to form larger shapes. For example, \"Can you join these two triangles with full sides touching to make a rectangle?\"", + "notes": "", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6ba033ff-d7cc-11e8-824f-0242ac160002", + "identifier": "6ba033ff-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2020-06-20T13:28:35+00:00", + "CFItemType": "Standard", + "CFItemTypeURI": { + "title": "Standard", + "identifier": "88e14be5-f7f3-4e67-b4a2-d621eaa49d48", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/88e14be5-f7f3-4e67-b4a2-d621eaa49d48" + }, + "educationLevel": [ + "KG", + "01", + "02", + "03", + "04", + "05", + "06", + "07", + "08", + "09", + "10", + "11", + "12" + ], + "humanCodingScheme": "MP6", + "listEnumeration": "6.", + "fullStatement": "Attend to precision.", + "notes": "Mathematically proficient students try to communicate precisely to others. They try to use clear definitions in discussion with others and in their own reasoning. They state the meaning of the symbols they choose, including using the equal sign consistently and appropriately. They are careful about specifying units of measure, and labeling axes to clarify the correspondence with quantities in a problem. They calculate accurately and efficiently, express numerical answers with a degree of precision appropriate for the problem context. In the elementary grades, students give carefully formulated explanations to each other. By the time they reach high school they have learned to examine claims and make explicit use of definitions.", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6ba03728-d7cc-11e8-824f-0242ac160002", + "identifier": "6ba03728-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Grade Level", + "CFItemTypeURI": { + "title": "Grade Level", + "identifier": "8047d85d-6c8e-5231-bd6d-050731684413", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/8047d85d-6c8e-5231-bd6d-050731684413" + }, + "educationLevel": [ + "06" + ], + "listEnumeration": "7", + "fullStatement": "Grade 6", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6ba03a8f-d7cc-11e8-824f-0242ac160002", + "identifier": "6ba03a8f-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Standard", + "CFItemTypeURI": { + "title": "Standard", + "identifier": "88e14be5-f7f3-4e67-b4a2-d621eaa49d48", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/88e14be5-f7f3-4e67-b4a2-d621eaa49d48" + }, + "educationLevel": [ + "01" + ], + "humanCodingScheme": "1.OA.D.7", + "listEnumeration": "7.", + "fullStatement": "Understand the meaning of the equal sign, and determine if equations involving addition and subtraction are true or false. For example, which of the following equations are true and which are false? 6 = 6, 7 = 8 - 1, 5 + 2 = 2 + 5, 4 + 1 = 5 + 2.", + "notes": "", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6ba03dbb-d7cc-11e8-824f-0242ac160002", + "identifier": "6ba03dbb-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Standard", + "CFItemTypeURI": { + "title": "Standard", + "identifier": "88e14be5-f7f3-4e67-b4a2-d621eaa49d48", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/88e14be5-f7f3-4e67-b4a2-d621eaa49d48" + }, + "educationLevel": [ + "02" + ], + "humanCodingScheme": "2.MD.C.7", + "listEnumeration": "7.", + "fullStatement": "Tell and write time from analog and digital clocks to the nearest five minutes, using a.m. and p.m.", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6ba040da-d7cc-11e8-824f-0242ac160002", + "identifier": "6ba040da-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Standard", + "CFItemTypeURI": { + "title": "Standard", + "identifier": "88e14be5-f7f3-4e67-b4a2-d621eaa49d48", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/88e14be5-f7f3-4e67-b4a2-d621eaa49d48" + }, + "educationLevel": [ + "02" + ], + "humanCodingScheme": "2.NBT.B.7", + "listEnumeration": "7.", + "fullStatement": "Add and subtract within 1000, using concrete models or drawings and strategies based on place value, properties of operations, and/or the relationship between addition and subtraction; relate the strategy to a written method. Understand that in adding or subtracting three-digit numbers, one adds or subtracts hundreds and hundreds, tens and tens, ones and ones; and sometimes it is necessary to compose or decompose tens or hundreds.", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6ba04403-d7cc-11e8-824f-0242ac160002", + "identifier": "6ba04403-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Standard", + "CFItemTypeURI": { + "title": "Standard", + "identifier": "88e14be5-f7f3-4e67-b4a2-d621eaa49d48", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/88e14be5-f7f3-4e67-b4a2-d621eaa49d48" + }, + "educationLevel": [ + "03" + ], + "humanCodingScheme": "3.MD.C.7", + "listEnumeration": "7.", + "fullStatement": "Relate area to the operations of multiplication and addition.", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6ba0471b-d7cc-11e8-824f-0242ac160002", + "identifier": "6ba0471b-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Standard", + "CFItemTypeURI": { + "title": "Standard", + "identifier": "88e14be5-f7f3-4e67-b4a2-d621eaa49d48", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/88e14be5-f7f3-4e67-b4a2-d621eaa49d48" + }, + "educationLevel": [ + "03" + ], + "humanCodingScheme": "3.OA.C.7", + "listEnumeration": "7.", + "fullStatement": "Fluently multiply and divide within 100, using strategies such as the relationship between multiplication and division (e.g., knowing that 8 × 5 = 40, one knows 40 ÷ 5 = 8) or properties of operations. By the end of Grade 3, know from memory all products of two one-digit numbers.", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6ba04a80-d7cc-11e8-824f-0242ac160002", + "identifier": "6ba04a80-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Standard", + "CFItemTypeURI": { + "title": "Standard", + "identifier": "88e14be5-f7f3-4e67-b4a2-d621eaa49d48", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/88e14be5-f7f3-4e67-b4a2-d621eaa49d48" + }, + "educationLevel": [ + "04" + ], + "humanCodingScheme": "4.MD.C.7", + "listEnumeration": "7.", + "fullStatement": "Recognize angle measure as additive. When an angle is decomposed into non-overlapping parts, the angle measure of the whole is the sum of the angle measures of the parts. Solve addition and subtraction problems to find unknown angles on a diagram in real world and mathematical problems, e.g., by using an equation with a symbol for the unknown angle measure.", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6ba04da6-d7cc-11e8-824f-0242ac160002", + "identifier": "6ba04da6-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Standard", + "CFItemTypeURI": { + "title": "Standard", + "identifier": "88e14be5-f7f3-4e67-b4a2-d621eaa49d48", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/88e14be5-f7f3-4e67-b4a2-d621eaa49d48" + }, + "educationLevel": [ + "04" + ], + "humanCodingScheme": "4.NF.C.7", + "listEnumeration": "7.", + "fullStatement": "Compare two decimals to hundredths by reasoning about their size. Recognize that comparisons are valid only when the two decimals refer to the same whole. Record the results of comparisons with the symbols >, =, or <, and justify the conclusions, e.g., by using a visual model.", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6ba050ca-d7cc-11e8-824f-0242ac160002", + "identifier": "6ba050ca-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Standard", + "CFItemTypeURI": { + "title": "Standard", + "identifier": "88e14be5-f7f3-4e67-b4a2-d621eaa49d48", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/88e14be5-f7f3-4e67-b4a2-d621eaa49d48" + }, + "educationLevel": [ + "05" + ], + "humanCodingScheme": "5.NBT.B.7", + "listEnumeration": "7.", + "fullStatement": "Add, subtract, multiply, and divide decimals to hundredths, using concrete models or drawings and strategies based on place value, properties of operations, and/or the relationship between addition and subtraction; relate the strategy to a written method and explain the reasoning used.", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6ba053e8-d7cc-11e8-824f-0242ac160002", + "identifier": "6ba053e8-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Standard", + "CFItemTypeURI": { + "title": "Standard", + "identifier": "88e14be5-f7f3-4e67-b4a2-d621eaa49d48", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/88e14be5-f7f3-4e67-b4a2-d621eaa49d48" + }, + "educationLevel": [ + "05" + ], + "humanCodingScheme": "5.NF.B.7", + "listEnumeration": "7.", + "fullStatement": "Apply and extend previous understandings of division to divide unit fractions by whole numbers and whole numbers by unit fractions.", + "notes": "Students able to multiply fractions in general can develop strategies to divide fractions in general, by reasoning about the relationship between multiplication and division. But division of a fraction by a fraction is not a requirement at this grade", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6ba05715-d7cc-11e8-824f-0242ac160002", + "identifier": "6ba05715-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Standard", + "CFItemTypeURI": { + "title": "Standard", + "identifier": "88e14be5-f7f3-4e67-b4a2-d621eaa49d48", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/88e14be5-f7f3-4e67-b4a2-d621eaa49d48" + }, + "educationLevel": [ + "06" + ], + "humanCodingScheme": "6.EE.B.7", + "listEnumeration": "7.", + "fullStatement": "Solve real-world and mathematical problems by writing and solving equations of the form x + p = q and px = q for cases in which p, q and x are all nonnegative rational numbers.", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6ba05a42-d7cc-11e8-824f-0242ac160002", + "identifier": "6ba05a42-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Standard", + "CFItemTypeURI": { + "title": "Standard", + "identifier": "88e14be5-f7f3-4e67-b4a2-d621eaa49d48", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/88e14be5-f7f3-4e67-b4a2-d621eaa49d48" + }, + "educationLevel": [ + "06" + ], + "humanCodingScheme": "6.NS.C.7", + "listEnumeration": "7.", + "fullStatement": "Understand ordering and absolute value of rational numbers.", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6ba05d6e-d7cc-11e8-824f-0242ac160002", + "identifier": "6ba05d6e-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Standard", + "CFItemTypeURI": { + "title": "Standard", + "identifier": "88e14be5-f7f3-4e67-b4a2-d621eaa49d48", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/88e14be5-f7f3-4e67-b4a2-d621eaa49d48" + }, + "educationLevel": [ + "07" + ], + "humanCodingScheme": "7.SP.C.7", + "listEnumeration": "7.", + "fullStatement": "Develop a probability model and use it to find probabilities of events. Compare probabilities from a model to observed frequencies; if the agreement is not good, explain possible sources of the discrepancy.", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6ba0609c-d7cc-11e8-824f-0242ac160002", + "identifier": "6ba0609c-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Standard", + "CFItemTypeURI": { + "title": "Standard", + "identifier": "88e14be5-f7f3-4e67-b4a2-d621eaa49d48", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/88e14be5-f7f3-4e67-b4a2-d621eaa49d48" + }, + "educationLevel": [ + "08" + ], + "humanCodingScheme": "8.EE.C.7", + "listEnumeration": "7.", + "fullStatement": "Solve linear equations in one variable.", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6ba063cb-d7cc-11e8-824f-0242ac160002", + "identifier": "6ba063cb-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Standard", + "CFItemTypeURI": { + "title": "Standard", + "identifier": "88e14be5-f7f3-4e67-b4a2-d621eaa49d48", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/88e14be5-f7f3-4e67-b4a2-d621eaa49d48" + }, + "educationLevel": [ + "08" + ], + "humanCodingScheme": "8.G.B.7", + "listEnumeration": "7.", + "fullStatement": "Apply the Pythagorean Theorem to determine unknown side lengths in right triangles in real-world and mathematical problems in two and three dimensions.", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6ba06702-d7cc-11e8-824f-0242ac160002", + "identifier": "6ba06702-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Standard", + "CFItemTypeURI": { + "title": "Standard", + "identifier": "88e14be5-f7f3-4e67-b4a2-d621eaa49d48", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/88e14be5-f7f3-4e67-b4a2-d621eaa49d48" + }, + "educationLevel": [ + "09", + "10", + "11", + "12" + ], + "humanCodingScheme": "HSA-APR.D.7", + "listEnumeration": "7.", + "fullStatement": "(+) Understand that rational expressions form a system analogous to the rational numbers, closed under addition, subtraction, multiplication, and division by a nonzero rational expression; add, subtract, multiply, and divide rational expressions.", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6ba06a30-d7cc-11e8-824f-0242ac160002", + "identifier": "6ba06a30-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Standard", + "CFItemTypeURI": { + "title": "Standard", + "identifier": "88e14be5-f7f3-4e67-b4a2-d621eaa49d48", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/88e14be5-f7f3-4e67-b4a2-d621eaa49d48" + }, + "educationLevel": [ + "09", + "10", + "11", + "12" + ], + "humanCodingScheme": "HSA-REI.C.7", + "listEnumeration": "7.", + "fullStatement": "Solve a simple system consisting of a linear equation and a quadratic equation in two variables algebraically and graphically. For example, find the points of intersection between the line y = -3x and the circle x² + y² = 3.", + "notes": "", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6ba06d60-d7cc-11e8-824f-0242ac160002", + "identifier": "6ba06d60-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Standard", + "CFItemTypeURI": { + "title": "Standard", + "identifier": "88e14be5-f7f3-4e67-b4a2-d621eaa49d48", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/88e14be5-f7f3-4e67-b4a2-d621eaa49d48" + }, + "educationLevel": [ + "09", + "10", + "11", + "12" + ], + "humanCodingScheme": "HSF-IF.C.7", + "listEnumeration": "7.", + "fullStatement": "Graph functions expressed symbolically and show key features of the graph, by hand in simple cases and using technology for more complicated cases.", + "notes": "Modeling is best interpreted not as a collection of isolated topics but in relation to other standards. Making mathematical models is a Standard for Mathematical Practice, and specific modeling standards appear throughout the high school standards indicated by a star symbol (★). The star symbol sometimes appears on the heading for a group of standards; in that case, it should be understood to apply to all standards in that group.", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6ba070dd-d7cc-11e8-824f-0242ac160002", + "identifier": "6ba070dd-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Standard", + "CFItemTypeURI": { + "title": "Standard", + "identifier": "88e14be5-f7f3-4e67-b4a2-d621eaa49d48", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/88e14be5-f7f3-4e67-b4a2-d621eaa49d48" + }, + "educationLevel": [ + "09", + "10", + "11", + "12" + ], + "humanCodingScheme": "HSF-TF.B.7", + "listEnumeration": "7.", + "fullStatement": "(+) Use inverse functions to solve trigonometric equations that arise in modeling contexts; evaluate the solutions using technology, and interpret them in terms of the context.", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6ba07418-d7cc-11e8-824f-0242ac160002", + "identifier": "6ba07418-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Standard", + "CFItemTypeURI": { + "title": "Standard", + "identifier": "88e14be5-f7f3-4e67-b4a2-d621eaa49d48", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/88e14be5-f7f3-4e67-b4a2-d621eaa49d48" + }, + "educationLevel": [ + "09", + "10", + "11", + "12" + ], + "humanCodingScheme": "HSG-CO.B.7", + "listEnumeration": "7.", + "fullStatement": "Use the definition of congruence in terms of rigid motions to show that two triangles are congruent if and only if corresponding pairs of sides and corresponding pairs of angles are congruent.", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6ba0774a-d7cc-11e8-824f-0242ac160002", + "identifier": "6ba0774a-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Standard", + "CFItemTypeURI": { + "title": "Standard", + "identifier": "88e14be5-f7f3-4e67-b4a2-d621eaa49d48", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/88e14be5-f7f3-4e67-b4a2-d621eaa49d48" + }, + "educationLevel": [ + "09", + "10", + "11", + "12" + ], + "humanCodingScheme": "HSG-GPE.B.7", + "listEnumeration": "7.", + "fullStatement": "Use coordinates to compute perimeters of polygons and areas of triangles and rectangles, e.g., using the distance formula.", + "notes": "Modeling is best interpreted not as a collection of isolated topics but in relation to other standards. Making mathematical models is a Standard for Mathematical Practice, and specific modeling standards appear throughout the high school standards indicated by a star symbol (★). The star symbol sometimes appears on the heading for a group of standards; in that case, it should be understood to apply to all standards in that group.", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6ba07a82-d7cc-11e8-824f-0242ac160002", + "identifier": "6ba07a82-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Standard", + "CFItemTypeURI": { + "title": "Standard", + "identifier": "88e14be5-f7f3-4e67-b4a2-d621eaa49d48", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/88e14be5-f7f3-4e67-b4a2-d621eaa49d48" + }, + "educationLevel": [ + "09", + "10", + "11", + "12" + ], + "humanCodingScheme": "HSG-SRT.C.7", + "listEnumeration": "7.", + "fullStatement": "Explain and use the relationship between the sine and cosine of complementary angles.", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6ba07db3-d7cc-11e8-824f-0242ac160002", + "identifier": "6ba07db3-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Standard", + "CFItemTypeURI": { + "title": "Standard", + "identifier": "88e14be5-f7f3-4e67-b4a2-d621eaa49d48", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/88e14be5-f7f3-4e67-b4a2-d621eaa49d48" + }, + "educationLevel": [ + "09", + "10", + "11", + "12" + ], + "humanCodingScheme": "HSN-CN.C.7", + "listEnumeration": "7.", + "fullStatement": "Solve quadratic equations with real coefficients that have complex solutions.", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6ba080f8-d7cc-11e8-824f-0242ac160002", + "identifier": "6ba080f8-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Standard", + "CFItemTypeURI": { + "title": "Standard", + "identifier": "88e14be5-f7f3-4e67-b4a2-d621eaa49d48", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/88e14be5-f7f3-4e67-b4a2-d621eaa49d48" + }, + "educationLevel": [ + "09", + "10", + "11", + "12" + ], + "humanCodingScheme": "HSN-VM.C.7", + "listEnumeration": "7.", + "fullStatement": "(+) Multiply matrices by scalars to produce new matrices, e.g., as when all of the payoffs in a game are doubled.", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6ba08433-d7cc-11e8-824f-0242ac160002", + "identifier": "6ba08433-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Standard", + "CFItemTypeURI": { + "title": "Standard", + "identifier": "88e14be5-f7f3-4e67-b4a2-d621eaa49d48", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/88e14be5-f7f3-4e67-b4a2-d621eaa49d48" + }, + "educationLevel": [ + "09", + "10", + "11", + "12" + ], + "humanCodingScheme": "HSS-CP.B.7", + "listEnumeration": "7.", + "fullStatement": "Apply the Addition Rule, P(A or B) = P(A) + P(B) - P(A and B), and interpret the answer in terms of the model.", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6ba08773-d7cc-11e8-824f-0242ac160002", + "identifier": "6ba08773-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Standard", + "CFItemTypeURI": { + "title": "Standard", + "identifier": "88e14be5-f7f3-4e67-b4a2-d621eaa49d48", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/88e14be5-f7f3-4e67-b4a2-d621eaa49d48" + }, + "educationLevel": [ + "09", + "10", + "11", + "12" + ], + "humanCodingScheme": "HSS-ID.C.7", + "listEnumeration": "7.", + "fullStatement": "Interpret the slope (rate of change) and the intercept (constant term) of a linear model in the context of the data.", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6ba08ab7-d7cc-11e8-824f-0242ac160002", + "identifier": "6ba08ab7-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Standard", + "CFItemTypeURI": { + "title": "Standard", + "identifier": "88e14be5-f7f3-4e67-b4a2-d621eaa49d48", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/88e14be5-f7f3-4e67-b4a2-d621eaa49d48" + }, + "educationLevel": [ + "09", + "10", + "11", + "12" + ], + "humanCodingScheme": "HSS-MD.B.7", + "listEnumeration": "7.", + "fullStatement": "(+) Analyze decisions and strategies using probability concepts (e.g., product testing, medical testing, pulling a hockey goalie at the end of a game).", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6ba08e06-d7cc-11e8-824f-0242ac160002", + "identifier": "6ba08e06-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Standard", + "CFItemTypeURI": { + "title": "Standard", + "identifier": "88e14be5-f7f3-4e67-b4a2-d621eaa49d48", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/88e14be5-f7f3-4e67-b4a2-d621eaa49d48" + }, + "educationLevel": [ + "KG" + ], + "humanCodingScheme": "K.CC.C.7", + "listEnumeration": "7.", + "fullStatement": "Compare two numbers between 1 and 10 presented as written numerals.", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6ba09141-d7cc-11e8-824f-0242ac160002", + "identifier": "6ba09141-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2020-06-20T13:28:48+00:00", + "CFItemType": "Standard", + "CFItemTypeURI": { + "title": "Standard", + "identifier": "88e14be5-f7f3-4e67-b4a2-d621eaa49d48", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/88e14be5-f7f3-4e67-b4a2-d621eaa49d48" + }, + "educationLevel": [ + "KG", + "01", + "02", + "03", + "04", + "05", + "06", + "07", + "08", + "09", + "10", + "11", + "12" + ], + "humanCodingScheme": "MP7", + "listEnumeration": "7.", + "fullStatement": "Look for and make use of structure.", + "notes": "Mathematically proficient students look closely to discern a pattern or structure. Young students, for example, might notice that three and seven more is the same amount as seven and three more, or they may sort a collection of shapes according to how many sides the shapes have. Later, students will see 7 × 8 equals the well remembered 7 × 5 + 7 × 3, in preparation for learning about the distributive property. In the expression x² + 9x + 14, older students can see the 14 as 2 × 7 and the 9 as 2 + 7. They recognize the significance of an existing line in a geometric figure and can use the strategy of drawing an auxiliary line for solving problems. They also can step back for an overview and shift perspective. They can see complicated things, such as some algebraic expressions, as single objects or as being composed of several objects. For example, they can see 5 – 3(x – y)² as 5 minus a positive number times a square and use that to realize that its value cannot be more than 5 for any real numbers x and y.", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6ba0948b-d7cc-11e8-824f-0242ac160002", + "identifier": "6ba0948b-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Grade Level", + "CFItemTypeURI": { + "title": "Grade Level", + "identifier": "8047d85d-6c8e-5231-bd6d-050731684413", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/8047d85d-6c8e-5231-bd6d-050731684413" + }, + "educationLevel": [ + "07" + ], + "listEnumeration": "8", + "fullStatement": "Grade 7", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6ba09818-d7cc-11e8-824f-0242ac160002", + "identifier": "6ba09818-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Standard", + "CFItemTypeURI": { + "title": "Standard", + "identifier": "88e14be5-f7f3-4e67-b4a2-d621eaa49d48", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/88e14be5-f7f3-4e67-b4a2-d621eaa49d48" + }, + "educationLevel": [ + "01" + ], + "humanCodingScheme": "1.OA.D.8", + "listEnumeration": "8.", + "fullStatement": "Determine the unknown whole number in an addition or subtraction equation relating three whole numbers. For example, determine the unknown number that makes the equation true in each of the equations 8 + ? = 11, 5 = _ - 3, 6 + 6 = _.", + "notes": "", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6ba09ba4-d7cc-11e8-824f-0242ac160002", + "identifier": "6ba09ba4-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Standard", + "CFItemTypeURI": { + "title": "Standard", + "identifier": "88e14be5-f7f3-4e67-b4a2-d621eaa49d48", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/88e14be5-f7f3-4e67-b4a2-d621eaa49d48" + }, + "educationLevel": [ + "02" + ], + "humanCodingScheme": "2.MD.C.8", + "listEnumeration": "8.", + "fullStatement": "Solve word problems involving dollar bills, quarters, dimes, nickels, and pennies, using $ and ¢ symbols appropriately.", + "notes": "Example: If you have 2 dimes and 3 pennies, how many cents do you have?", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6ba09eb5-d7cc-11e8-824f-0242ac160002", + "identifier": "6ba09eb5-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Standard", + "CFItemTypeURI": { + "title": "Standard", + "identifier": "88e14be5-f7f3-4e67-b4a2-d621eaa49d48", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/88e14be5-f7f3-4e67-b4a2-d621eaa49d48" + }, + "educationLevel": [ + "02" + ], + "humanCodingScheme": "2.NBT.B.8", + "listEnumeration": "8.", + "fullStatement": "Mentally add 10 or 100 to a given number 100—900, and mentally subtract 10 or 100 from a given number 100—900.", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6ba0a209-d7cc-11e8-824f-0242ac160002", + "identifier": "6ba0a209-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Standard", + "CFItemTypeURI": { + "title": "Standard", + "identifier": "88e14be5-f7f3-4e67-b4a2-d621eaa49d48", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/88e14be5-f7f3-4e67-b4a2-d621eaa49d48" + }, + "educationLevel": [ + "03" + ], + "humanCodingScheme": "3.MD.D.8", + "listEnumeration": "8.", + "fullStatement": "Solve real world and mathematical problems involving perimeters of polygons, including finding the perimeter given the side lengths, finding an unknown side length, and exhibiting rectangles with the same perimeter and different areas or with the same area and different perimeters.", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6ba0a525-d7cc-11e8-824f-0242ac160002", + "identifier": "6ba0a525-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Standard", + "CFItemTypeURI": { + "title": "Standard", + "identifier": "88e14be5-f7f3-4e67-b4a2-d621eaa49d48", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/88e14be5-f7f3-4e67-b4a2-d621eaa49d48" + }, + "educationLevel": [ + "03" + ], + "humanCodingScheme": "3.OA.D.8", + "listEnumeration": "8.", + "fullStatement": "Solve two-step word problems using the four operations. Represent these problems using equations with a letter standing for the unknown quantity. Assess the reasonableness of answers using mental computation and estimation strategies including rounding.", + "notes": "This standard is limited to problems posed with whole numbers and having whole-number answers; students should know how to perform operations in the conventional order when there are no parentheses to specify a particular order (Order of Operations).", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6ba0a85f-d7cc-11e8-824f-0242ac160002", + "identifier": "6ba0a85f-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Standard", + "CFItemTypeURI": { + "title": "Standard", + "identifier": "88e14be5-f7f3-4e67-b4a2-d621eaa49d48", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/88e14be5-f7f3-4e67-b4a2-d621eaa49d48" + }, + "educationLevel": [ + "06" + ], + "humanCodingScheme": "6.EE.B.8", + "listEnumeration": "8.", + "fullStatement": "Write an inequality of the form x > c or x < c to represent a constraint or condition in a real-world or mathematical problem. Recognize that inequalities of the form x > c or x < c have infinitely many solutions; represent solutions of such inequalities on number line diagrams.", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6ba0ab8d-d7cc-11e8-824f-0242ac160002", + "identifier": "6ba0ab8d-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Standard", + "CFItemTypeURI": { + "title": "Standard", + "identifier": "88e14be5-f7f3-4e67-b4a2-d621eaa49d48", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/88e14be5-f7f3-4e67-b4a2-d621eaa49d48" + }, + "educationLevel": [ + "06" + ], + "humanCodingScheme": "6.NS.C.8", + "listEnumeration": "8.", + "fullStatement": "Solve real-world and mathematical problems by graphing points in all four quadrants of the coordinate plane. Include use of coordinates and absolute value to find distances between points with the same first coordinate or the same second coordinate.", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6ba0aeb7-d7cc-11e8-824f-0242ac160002", + "identifier": "6ba0aeb7-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Standard", + "CFItemTypeURI": { + "title": "Standard", + "identifier": "88e14be5-f7f3-4e67-b4a2-d621eaa49d48", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/88e14be5-f7f3-4e67-b4a2-d621eaa49d48" + }, + "educationLevel": [ + "07" + ], + "humanCodingScheme": "7.SP.C.8", + "listEnumeration": "8.", + "fullStatement": "Find probabilities of compound events using organized lists, tables, tree diagrams, and simulation.", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6ba0b1df-d7cc-11e8-824f-0242ac160002", + "identifier": "6ba0b1df-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Standard", + "CFItemTypeURI": { + "title": "Standard", + "identifier": "88e14be5-f7f3-4e67-b4a2-d621eaa49d48", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/88e14be5-f7f3-4e67-b4a2-d621eaa49d48" + }, + "educationLevel": [ + "08" + ], + "humanCodingScheme": "8.EE.C.8", + "listEnumeration": "8.", + "fullStatement": "Analyze and solve pairs of simultaneous linear equations.", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6ba0b50b-d7cc-11e8-824f-0242ac160002", + "identifier": "6ba0b50b-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Standard", + "CFItemTypeURI": { + "title": "Standard", + "identifier": "88e14be5-f7f3-4e67-b4a2-d621eaa49d48", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/88e14be5-f7f3-4e67-b4a2-d621eaa49d48" + }, + "educationLevel": [ + "08" + ], + "humanCodingScheme": "8.G.B.8", + "listEnumeration": "8.", + "fullStatement": "Apply the Pythagorean Theorem to find the distance between two points in a coordinate system.", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6ba0b82c-d7cc-11e8-824f-0242ac160002", + "identifier": "6ba0b82c-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Standard", + "CFItemTypeURI": { + "title": "Standard", + "identifier": "88e14be5-f7f3-4e67-b4a2-d621eaa49d48", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/88e14be5-f7f3-4e67-b4a2-d621eaa49d48" + }, + "educationLevel": [ + "09", + "10", + "11", + "12" + ], + "humanCodingScheme": "HSA-REI.C.8", + "listEnumeration": "8.", + "fullStatement": "(+) Represent a system of linear equations as a single matrix equation in a vector variable.", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6ba0bb4b-d7cc-11e8-824f-0242ac160002", + "identifier": "6ba0bb4b-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Standard", + "CFItemTypeURI": { + "title": "Standard", + "identifier": "88e14be5-f7f3-4e67-b4a2-d621eaa49d48", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/88e14be5-f7f3-4e67-b4a2-d621eaa49d48" + }, + "educationLevel": [ + "09", + "10", + "11", + "12" + ], + "humanCodingScheme": "HSF-IF.C.8", + "listEnumeration": "8.", + "fullStatement": "Write a function defined by an expression in different but equivalent forms to reveal and explain different properties of the function.", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6ba0bf6b-d7cc-11e8-824f-0242ac160002", + "identifier": "6ba0bf6b-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Standard", + "CFItemTypeURI": { + "title": "Standard", + "identifier": "88e14be5-f7f3-4e67-b4a2-d621eaa49d48", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/88e14be5-f7f3-4e67-b4a2-d621eaa49d48" + }, + "educationLevel": [ + "09", + "10", + "11", + "12" + ], + "humanCodingScheme": "HSF-TF.C.8", + "listEnumeration": "8.", + "fullStatement": "Prove the Pythagorean identity sin²(θ) + cos²(θ) = 1 and use it to find sin(θ), cos(θ), or tan(θ) given sin(θ), cos(θ), or tan(θ) and the quadrant of the angle.", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6ba0c2a8-d7cc-11e8-824f-0242ac160002", + "identifier": "6ba0c2a8-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Standard", + "CFItemTypeURI": { + "title": "Standard", + "identifier": "88e14be5-f7f3-4e67-b4a2-d621eaa49d48", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/88e14be5-f7f3-4e67-b4a2-d621eaa49d48" + }, + "educationLevel": [ + "09", + "10", + "11", + "12" + ], + "humanCodingScheme": "HSG-CO.B.8", + "listEnumeration": "8.", + "fullStatement": "Explain how the criteria for triangle congruence (ASA, SAS, and SSS) follow from the definition of congruence in terms of rigid motions.", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6ba0c5dc-d7cc-11e8-824f-0242ac160002", + "identifier": "6ba0c5dc-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Standard", + "CFItemTypeURI": { + "title": "Standard", + "identifier": "88e14be5-f7f3-4e67-b4a2-d621eaa49d48", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/88e14be5-f7f3-4e67-b4a2-d621eaa49d48" + }, + "educationLevel": [ + "09", + "10", + "11", + "12" + ], + "humanCodingScheme": "HSG-SRT.C.8", + "listEnumeration": "8.", + "fullStatement": "Use trigonometric ratios and the Pythagorean Theorem to solve right triangles in applied problems.", + "notes": "Modeling is best interpreted not as a collection of isolated topics but in relation to other standards. Making mathematical models is a Standard for Mathematical Practice, and specific modeling standards appear throughout the high school standards indicated by a star symbol (★). The star symbol sometimes appears on the heading for a group of standards; in that case, it should be understood to apply to all standards in that group.", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6ba0c91e-d7cc-11e8-824f-0242ac160002", + "identifier": "6ba0c91e-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Standard", + "CFItemTypeURI": { + "title": "Standard", + "identifier": "88e14be5-f7f3-4e67-b4a2-d621eaa49d48", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/88e14be5-f7f3-4e67-b4a2-d621eaa49d48" + }, + "educationLevel": [ + "09", + "10", + "11", + "12" + ], + "humanCodingScheme": "HSN-CN.C.8", + "listEnumeration": "8.", + "fullStatement": "(+) Extend polynomial identities to the complex numbers. For example, rewrite x² + 4 as (x + 2i)(x - 2i).", + "notes": "", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6ba0ccae-d7cc-11e8-824f-0242ac160002", + "identifier": "6ba0ccae-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Standard", + "CFItemTypeURI": { + "title": "Standard", + "identifier": "88e14be5-f7f3-4e67-b4a2-d621eaa49d48", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/88e14be5-f7f3-4e67-b4a2-d621eaa49d48" + }, + "educationLevel": [ + "09", + "10", + "11", + "12" + ], + "humanCodingScheme": "HSN-VM.C.8", + "listEnumeration": "8.", + "fullStatement": "(+) Add, subtract, and multiply matrices of appropriate dimensions.", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6ba0cfe5-d7cc-11e8-824f-0242ac160002", + "identifier": "6ba0cfe5-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Standard", + "CFItemTypeURI": { + "title": "Standard", + "identifier": "88e14be5-f7f3-4e67-b4a2-d621eaa49d48", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/88e14be5-f7f3-4e67-b4a2-d621eaa49d48" + }, + "educationLevel": [ + "09", + "10", + "11", + "12" + ], + "humanCodingScheme": "HSS-CP.B.8", + "listEnumeration": "8.", + "fullStatement": "(+) Apply the general Multiplication Rule in a uniform probability model, P(A and B) = P(A)P(B|A) = P(B)P(A|B), and interpret the answer in terms of the model.", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6ba0d319-d7cc-11e8-824f-0242ac160002", + "identifier": "6ba0d319-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Standard", + "CFItemTypeURI": { + "title": "Standard", + "identifier": "88e14be5-f7f3-4e67-b4a2-d621eaa49d48", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/88e14be5-f7f3-4e67-b4a2-d621eaa49d48" + }, + "educationLevel": [ + "09", + "10", + "11", + "12" + ], + "humanCodingScheme": "HSS-ID.C.8", + "listEnumeration": "8.", + "fullStatement": "Compute (using technology) and interpret the correlation coefficient of a linear fit.", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6ba0d653-d7cc-11e8-824f-0242ac160002", + "identifier": "6ba0d653-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2020-06-20T13:29:03+00:00", + "CFItemType": "Standard", + "CFItemTypeURI": { + "title": "Standard", + "identifier": "88e14be5-f7f3-4e67-b4a2-d621eaa49d48", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/88e14be5-f7f3-4e67-b4a2-d621eaa49d48" + }, + "educationLevel": [ + "KG", + "01", + "02", + "03", + "04", + "05", + "06", + "07", + "08", + "09", + "10", + "11", + "12" + ], + "humanCodingScheme": "MP8", + "listEnumeration": "8.", + "fullStatement": "Look for and express regularity in repeated reasoning.", + "notes": "Mathematically proficient students notice if calculations are repeated, and look both for general methods and for shortcuts. Upper elementary students might notice when dividing 25 by 11 that they are repeating the same calculations over and over again, and conclude they have a repeating decimal. By paying attention to the calculation of slope as they repeatedly check whether points are on the line through (1, 2) with slope 3, middle school students might abstract the equation (y – 2)/(x – 1) = 3. Noticing the regularity in the way terms cancel when expanding (x – 1)(x + 1), (x – 1)(x² + x + 1), and (x – 1)(x³ + x² + x + 1) might lead them to the general formula for the sum of a geometric series. As they work to solve a problem, mathematically proficient students maintain oversight of the process, while attending to the details. They continually evaluate the reasonableness of their intermediate results.", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6ba0d99c-d7cc-11e8-824f-0242ac160002", + "identifier": "6ba0d99c-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Grade Level", + "CFItemTypeURI": { + "title": "Grade Level", + "identifier": "8047d85d-6c8e-5231-bd6d-050731684413", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/8047d85d-6c8e-5231-bd6d-050731684413" + }, + "educationLevel": [ + "08" + ], + "listEnumeration": "9", + "fullStatement": "Grade 8", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6ba0dcdd-d7cc-11e8-824f-0242ac160002", + "identifier": "6ba0dcdd-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Standard", + "CFItemTypeURI": { + "title": "Standard", + "identifier": "88e14be5-f7f3-4e67-b4a2-d621eaa49d48", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/88e14be5-f7f3-4e67-b4a2-d621eaa49d48" + }, + "educationLevel": [ + "02" + ], + "humanCodingScheme": "2.MD.D.9", + "listEnumeration": "9.", + "fullStatement": "Generate measurement data by measuring lengths of several objects to the nearest whole unit, or by making repeated measurements of the same object. Show the measurements by making a line plot, where the horizontal scale is marked off in whole-number units.", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6ba0df6b-d7cc-11e8-824f-0242ac160002", + "identifier": "6ba0df6b-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Standard", + "CFItemTypeURI": { + "title": "Standard", + "identifier": "88e14be5-f7f3-4e67-b4a2-d621eaa49d48", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/88e14be5-f7f3-4e67-b4a2-d621eaa49d48" + }, + "educationLevel": [ + "02" + ], + "humanCodingScheme": "2.NBT.B.9", + "listEnumeration": "9.", + "fullStatement": "Explain why addition and subtraction strategies work, using place value and the properties of operations.", + "notes": "Explanations may be supported by drawings or objects.", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6ba0e1df-d7cc-11e8-824f-0242ac160002", + "identifier": "6ba0e1df-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Standard", + "CFItemTypeURI": { + "title": "Standard", + "identifier": "88e14be5-f7f3-4e67-b4a2-d621eaa49d48", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/88e14be5-f7f3-4e67-b4a2-d621eaa49d48" + }, + "educationLevel": [ + "03" + ], + "humanCodingScheme": "3.OA.D.9", + "listEnumeration": "9.", + "fullStatement": "Identify arithmetic patterns (including patterns in the addition table or multiplication table), and explain them using properties of operations. For example, observe that 4 times a number is always even, and explain why 4 times a number can be decomposed into two equal addends.", + "notes": "", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6ba0e50b-d7cc-11e8-824f-0242ac160002", + "identifier": "6ba0e50b-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Standard", + "CFItemTypeURI": { + "title": "Standard", + "identifier": "88e14be5-f7f3-4e67-b4a2-d621eaa49d48", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/88e14be5-f7f3-4e67-b4a2-d621eaa49d48" + }, + "educationLevel": [ + "06" + ], + "humanCodingScheme": "6.EE.C.9", + "listEnumeration": "9.", + "fullStatement": "Use variables to represent two quantities in a real-world problem that change in relationship to one another; write an equation to express one quantity, thought of as the dependent variable, in terms of the other quantity, thought of as the independent variable. Analyze the relationship between the dependent and independent variables using graphs and tables, and relate these to the equation. For example, in a problem involving motion at constant speed, list and graph ordered pairs of distances and times, and write the equation d = 65t to represent the relationship between distance and time.", + "notes": "", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6ba0e7f4-d7cc-11e8-824f-0242ac160002", + "identifier": "6ba0e7f4-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Standard", + "CFItemTypeURI": { + "title": "Standard", + "identifier": "88e14be5-f7f3-4e67-b4a2-d621eaa49d48", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/88e14be5-f7f3-4e67-b4a2-d621eaa49d48" + }, + "educationLevel": [ + "08" + ], + "humanCodingScheme": "8.G.C.9", + "listEnumeration": "9.", + "fullStatement": "Know the formulas for the volumes of cones, cylinders, and spheres and use them to solve real-world and mathematical problems.", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6ba0ea6e-d7cc-11e8-824f-0242ac160002", + "identifier": "6ba0ea6e-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Standard", + "CFItemTypeURI": { + "title": "Standard", + "identifier": "88e14be5-f7f3-4e67-b4a2-d621eaa49d48", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/88e14be5-f7f3-4e67-b4a2-d621eaa49d48" + }, + "educationLevel": [ + "09", + "10", + "11", + "12" + ], + "humanCodingScheme": "HSA-REI.C.9", + "listEnumeration": "9.", + "fullStatement": "(+) Find the inverse of a matrix if it exists and use it to solve systems of linear equations (using technology for matrices of dimension 3 × 3 or greater).", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6ba0ece8-d7cc-11e8-824f-0242ac160002", + "identifier": "6ba0ece8-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Standard", + "CFItemTypeURI": { + "title": "Standard", + "identifier": "88e14be5-f7f3-4e67-b4a2-d621eaa49d48", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/88e14be5-f7f3-4e67-b4a2-d621eaa49d48" + }, + "educationLevel": [ + "09", + "10", + "11", + "12" + ], + "humanCodingScheme": "HSF-IF.C.9", + "listEnumeration": "9.", + "fullStatement": "Compare properties of two functions each represented in a different way (algebraically, graphically, numerically in tables, or by verbal descriptions). For example, given a graph of one quadratic function and an algebraic expression for another, say which has the larger maximum.", + "notes": "", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6ba0ef63-d7cc-11e8-824f-0242ac160002", + "identifier": "6ba0ef63-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Standard", + "CFItemTypeURI": { + "title": "Standard", + "identifier": "88e14be5-f7f3-4e67-b4a2-d621eaa49d48", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/88e14be5-f7f3-4e67-b4a2-d621eaa49d48" + }, + "educationLevel": [ + "09", + "10", + "11", + "12" + ], + "humanCodingScheme": "HSF-TF.C.9", + "listEnumeration": "9.", + "fullStatement": "(+) Prove the addition and subtraction formulas for sine, cosine, and tangent and use them to solve problems.", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6ba0f1e1-d7cc-11e8-824f-0242ac160002", + "identifier": "6ba0f1e1-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Standard", + "CFItemTypeURI": { + "title": "Standard", + "identifier": "88e14be5-f7f3-4e67-b4a2-d621eaa49d48", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/88e14be5-f7f3-4e67-b4a2-d621eaa49d48" + }, + "educationLevel": [ + "09", + "10", + "11", + "12" + ], + "humanCodingScheme": "HSG-CO.C.9", + "listEnumeration": "9.", + "fullStatement": "Prove theorems about lines and angles.", + "notes": "Theorems include: vertical angles are congruent; when a transversal crosses parallel lines, alternate interior angles are congruent and corresponding angles are congruent; points on a perpendicular bisector of a line segment are exactly those equidistant from the segment's endpoints.", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6ba0f473-d7cc-11e8-824f-0242ac160002", + "identifier": "6ba0f473-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Standard", + "CFItemTypeURI": { + "title": "Standard", + "identifier": "88e14be5-f7f3-4e67-b4a2-d621eaa49d48", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/88e14be5-f7f3-4e67-b4a2-d621eaa49d48" + }, + "educationLevel": [ + "09", + "10", + "11", + "12" + ], + "humanCodingScheme": "HSG-SRT.D.9", + "listEnumeration": "9.", + "fullStatement": "(+) Derive the formula A = 1/2 ab sin(C) for the area of a triangle by drawing an auxiliary line from a vertex perpendicular to the opposite side.", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6ba0f6fa-d7cc-11e8-824f-0242ac160002", + "identifier": "6ba0f6fa-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Standard", + "CFItemTypeURI": { + "title": "Standard", + "identifier": "88e14be5-f7f3-4e67-b4a2-d621eaa49d48", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/88e14be5-f7f3-4e67-b4a2-d621eaa49d48" + }, + "educationLevel": [ + "09", + "10", + "11", + "12" + ], + "humanCodingScheme": "HSN-CN.C.9", + "listEnumeration": "9.", + "fullStatement": "(+) Know the Fundamental Theorem of Algebra; show that it is true for quadratic polynomials.", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6ba0f981-d7cc-11e8-824f-0242ac160002", + "identifier": "6ba0f981-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Standard", + "CFItemTypeURI": { + "title": "Standard", + "identifier": "88e14be5-f7f3-4e67-b4a2-d621eaa49d48", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/88e14be5-f7f3-4e67-b4a2-d621eaa49d48" + }, + "educationLevel": [ + "09", + "10", + "11", + "12" + ], + "humanCodingScheme": "HSN-VM.C.9", + "listEnumeration": "9.", + "fullStatement": "(+) Understand that, unlike multiplication of numbers, matrix multiplication for square matrices is not a commutative operation, but still satisfies the associative and distributive properties.", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6ba0fc13-d7cc-11e8-824f-0242ac160002", + "identifier": "6ba0fc13-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Standard", + "CFItemTypeURI": { + "title": "Standard", + "identifier": "88e14be5-f7f3-4e67-b4a2-d621eaa49d48", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/88e14be5-f7f3-4e67-b4a2-d621eaa49d48" + }, + "educationLevel": [ + "09", + "10", + "11", + "12" + ], + "humanCodingScheme": "HSS-CP.B.9", + "listEnumeration": "9.", + "fullStatement": "(+) Use permutations and combinations to compute probabilities of compound events and solve problems.", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6ba0feac-d7cc-11e8-824f-0242ac160002", + "identifier": "6ba0feac-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Standard", + "CFItemTypeURI": { + "title": "Standard", + "identifier": "88e14be5-f7f3-4e67-b4a2-d621eaa49d48", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/88e14be5-f7f3-4e67-b4a2-d621eaa49d48" + }, + "educationLevel": [ + "09", + "10", + "11", + "12" + ], + "humanCodingScheme": "HSS-ID.C.9", + "listEnumeration": "9.", + "fullStatement": "Distinguish between correlation and causation.", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6ba1012f-d7cc-11e8-824f-0242ac160002", + "identifier": "6ba1012f-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Component", + "CFItemTypeURI": { + "title": "Component", + "identifier": "1f1afd62-66cd-51cb-8299-1fe5ced9df16", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/1f1afd62-66cd-51cb-8299-1fe5ced9df16" + }, + "educationLevel": [ + "01" + ], + "humanCodingScheme": "1.NBT.B.2.a", + "listEnumeration": "a.", + "fullStatement": "10 can be thought of as a bundle of ten ones — called a \"ten.\"", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6ba103ab-d7cc-11e8-824f-0242ac160002", + "identifier": "6ba103ab-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Component", + "CFItemTypeURI": { + "title": "Component", + "identifier": "1f1afd62-66cd-51cb-8299-1fe5ced9df16", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/1f1afd62-66cd-51cb-8299-1fe5ced9df16" + }, + "educationLevel": [ + "02" + ], + "humanCodingScheme": "2.NBT.A.1.a", + "listEnumeration": "a.", + "fullStatement": "100 can be thought of as a bundle of ten tens — called a \"hundred.\"", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6ba10673-d7cc-11e8-824f-0242ac160002", + "identifier": "6ba10673-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Component", + "CFItemTypeURI": { + "title": "Component", + "identifier": "1f1afd62-66cd-51cb-8299-1fe5ced9df16", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/1f1afd62-66cd-51cb-8299-1fe5ced9df16" + }, + "educationLevel": [ + "03" + ], + "humanCodingScheme": "3.MD.C.5.a", + "listEnumeration": "a.", + "fullStatement": "A square with side length 1 unit, called \"a unit square,\" is said to have \"one square unit\" of area, and can be used to measure area.", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6ba108fe-d7cc-11e8-824f-0242ac160002", + "identifier": "6ba108fe-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Component", + "CFItemTypeURI": { + "title": "Component", + "identifier": "1f1afd62-66cd-51cb-8299-1fe5ced9df16", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/1f1afd62-66cd-51cb-8299-1fe5ced9df16" + }, + "educationLevel": [ + "03" + ], + "humanCodingScheme": "3.MD.C.7.a", + "listEnumeration": "a.", + "fullStatement": "Find the area of a rectangle with whole-number side lengths by tiling it, and show that the area is the same as would be found by multiplying the side lengths.", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6ba10bbf-d7cc-11e8-824f-0242ac160002", + "identifier": "6ba10bbf-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Component", + "CFItemTypeURI": { + "title": "Component", + "identifier": "1f1afd62-66cd-51cb-8299-1fe5ced9df16", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/1f1afd62-66cd-51cb-8299-1fe5ced9df16" + }, + "educationLevel": [ + "03" + ], + "humanCodingScheme": "3.NF.A.2.a", + "listEnumeration": "a.", + "fullStatement": "Represent a fraction 1/b on a number line diagram by defining the interval from 0 to 1 as the whole and partitioning it into b equal parts. Recognize that each part has size 1/b and that the endpoint of the part based at 0 locates the number 1/b on the number line.", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6ba10e51-d7cc-11e8-824f-0242ac160002", + "identifier": "6ba10e51-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Component", + "CFItemTypeURI": { + "title": "Component", + "identifier": "1f1afd62-66cd-51cb-8299-1fe5ced9df16", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/1f1afd62-66cd-51cb-8299-1fe5ced9df16" + }, + "educationLevel": [ + "03" + ], + "humanCodingScheme": "3.NF.A.3.a", + "listEnumeration": "a.", + "fullStatement": "Understand two fractions as equivalent (equal) if they are the same size, or the same point on a number line.", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6ba110dd-d7cc-11e8-824f-0242ac160002", + "identifier": "6ba110dd-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Component", + "CFItemTypeURI": { + "title": "Component", + "identifier": "1f1afd62-66cd-51cb-8299-1fe5ced9df16", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/1f1afd62-66cd-51cb-8299-1fe5ced9df16" + }, + "educationLevel": [ + "04" + ], + "humanCodingScheme": "4.MD.C.5.a", + "listEnumeration": "a.", + "fullStatement": "An angle is measured with reference to a circle with its center at the common endpoint of the rays, by considering the fraction of the circular arc between the points where the two rays intersect the circle. An angle that turns through 1/360 of a circle is called a \"one-degree angle,\" and can be used to measure angles.", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6ba1136b-d7cc-11e8-824f-0242ac160002", + "identifier": "6ba1136b-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Component", + "CFItemTypeURI": { + "title": "Component", + "identifier": "1f1afd62-66cd-51cb-8299-1fe5ced9df16", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/1f1afd62-66cd-51cb-8299-1fe5ced9df16" + }, + "educationLevel": [ + "04" + ], + "humanCodingScheme": "4.NF.B.3.a", + "listEnumeration": "a.", + "fullStatement": "Understand addition and subtraction of fractions as joining and separating parts referring to the same whole.", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6ba115f2-d7cc-11e8-824f-0242ac160002", + "identifier": "6ba115f2-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Component", + "CFItemTypeURI": { + "title": "Component", + "identifier": "1f1afd62-66cd-51cb-8299-1fe5ced9df16", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/1f1afd62-66cd-51cb-8299-1fe5ced9df16" + }, + "educationLevel": [ + "04" + ], + "humanCodingScheme": "4.NF.B.4.a", + "listEnumeration": "a.", + "fullStatement": "Understand a fraction a/b as a multiple of 1/b. For example, use a visual fraction model to represent 5/4 as the product 5 × (1/4), recording the conclusion by the equation 5/4 = 5 × (1/4).", + "notes": "", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6ba11885-d7cc-11e8-824f-0242ac160002", + "identifier": "6ba11885-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Component", + "CFItemTypeURI": { + "title": "Component", + "identifier": "1f1afd62-66cd-51cb-8299-1fe5ced9df16", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/1f1afd62-66cd-51cb-8299-1fe5ced9df16" + }, + "educationLevel": [ + "05" + ], + "humanCodingScheme": "5.MD.C.3.a", + "listEnumeration": "a.", + "fullStatement": "A cube with side length 1 unit, called a \"unit cube,\" is said to have \"one cubic unit\" of volume, and can be used to measure volume.", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6ba11b29-d7cc-11e8-824f-0242ac160002", + "identifier": "6ba11b29-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Component", + "CFItemTypeURI": { + "title": "Component", + "identifier": "1f1afd62-66cd-51cb-8299-1fe5ced9df16", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/1f1afd62-66cd-51cb-8299-1fe5ced9df16" + }, + "educationLevel": [ + "05" + ], + "humanCodingScheme": "5.MD.C.5.a", + "listEnumeration": "a.", + "fullStatement": "Find the volume of a right rectangular prism with whole-number side lengths by packing it with unit cubes, and show that the volume is the same as would be found by multiplying the edge lengths, equivalently by multiplying the height by the area of the base. Represent threefold whole-number products as volumes, e.g., to represent the associative property of multiplication.", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6ba11dd3-d7cc-11e8-824f-0242ac160002", + "identifier": "6ba11dd3-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Component", + "CFItemTypeURI": { + "title": "Component", + "identifier": "1f1afd62-66cd-51cb-8299-1fe5ced9df16", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/1f1afd62-66cd-51cb-8299-1fe5ced9df16" + }, + "educationLevel": [ + "05" + ], + "humanCodingScheme": "5.NBT.A.3.a", + "listEnumeration": "a.", + "fullStatement": "Read and write decimals to thousandths using base-ten numerals, number names, and expanded form, e.g., 347.392 = 3 × 100 + 4 × 10 + 7 × 1 + 3 × (1/10) + 9 × (1/100) + 2 × (1/1000).", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6ba12074-d7cc-11e8-824f-0242ac160002", + "identifier": "6ba12074-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Component", + "CFItemTypeURI": { + "title": "Component", + "identifier": "1f1afd62-66cd-51cb-8299-1fe5ced9df16", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/1f1afd62-66cd-51cb-8299-1fe5ced9df16" + }, + "educationLevel": [ + "05" + ], + "humanCodingScheme": "5.NF.B.4.a", + "listEnumeration": "a.", + "fullStatement": "Interpret the product (a/b) × q as a parts of a partition of q into b equal parts; equivalently, as the result of a sequence of operations a × q ÷ b. For example, use a visual fraction model to show (2/3) × 4 = 8/3, and create a story context for this equation. Do the same with (2/3) × (4/5) = 8/15. (In general, (a/b) × (c/d) = ac/bd.)", + "notes": "", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6ba1231f-d7cc-11e8-824f-0242ac160002", + "identifier": "6ba1231f-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Component", + "CFItemTypeURI": { + "title": "Component", + "identifier": "1f1afd62-66cd-51cb-8299-1fe5ced9df16", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/1f1afd62-66cd-51cb-8299-1fe5ced9df16" + }, + "educationLevel": [ + "05" + ], + "humanCodingScheme": "5.NF.B.5.a", + "listEnumeration": "a.", + "fullStatement": "Comparing the size of a product to the size of one factor on the basis of the size of the other factor, without performing the indicated multiplication.", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6ba125cb-d7cc-11e8-824f-0242ac160002", + "identifier": "6ba125cb-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Component", + "CFItemTypeURI": { + "title": "Component", + "identifier": "1f1afd62-66cd-51cb-8299-1fe5ced9df16", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/1f1afd62-66cd-51cb-8299-1fe5ced9df16" + }, + "educationLevel": [ + "05" + ], + "humanCodingScheme": "5.NF.B.7.a", + "listEnumeration": "a.", + "fullStatement": "Interpret division of a unit fraction by a non-zero whole number, and compute such quotients. For example, create a story context for (1/3) ÷ 4, and use a visual fraction model to show the quotient. Use the relationship between multiplication and division to explain that (1/3) ÷ 4 = 1/12 because (1/12) × 4 = 1/3.", + "notes": "", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6ba1286a-d7cc-11e8-824f-0242ac160002", + "identifier": "6ba1286a-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Component", + "CFItemTypeURI": { + "title": "Component", + "identifier": "1f1afd62-66cd-51cb-8299-1fe5ced9df16", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/1f1afd62-66cd-51cb-8299-1fe5ced9df16" + }, + "educationLevel": [ + "06" + ], + "humanCodingScheme": "6.EE.A.2.a", + "listEnumeration": "a.", + "fullStatement": "Write expressions that record operations with numbers and with letters standing for numbers. For example, express the calculation \"Subtract y from 5\" as 5 - y.", + "notes": "", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6ba12b02-d7cc-11e8-824f-0242ac160002", + "identifier": "6ba12b02-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Component", + "CFItemTypeURI": { + "title": "Component", + "identifier": "1f1afd62-66cd-51cb-8299-1fe5ced9df16", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/1f1afd62-66cd-51cb-8299-1fe5ced9df16" + }, + "educationLevel": [ + "06" + ], + "humanCodingScheme": "6.NS.C.6.a", + "listEnumeration": "a.", + "fullStatement": "Recognize opposite signs of numbers as indicating locations on opposite sides of 0 on the number line; recognize that the opposite of the opposite of a number is the number itself, e.g., -(-3) = 3, and that 0 is its own opposite.", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6ba12da0-d7cc-11e8-824f-0242ac160002", + "identifier": "6ba12da0-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Component", + "CFItemTypeURI": { + "title": "Component", + "identifier": "1f1afd62-66cd-51cb-8299-1fe5ced9df16", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/1f1afd62-66cd-51cb-8299-1fe5ced9df16" + }, + "educationLevel": [ + "06" + ], + "humanCodingScheme": "6.NS.C.7.a", + "listEnumeration": "a.", + "fullStatement": "Interpret statements of inequality as statements about the relative position of two numbers on a number line diagram. For example, interpret -3 > -7 as a statement that -3 is located to the right of -7 on a number line oriented from left to right.", + "notes": "", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6ba1303f-d7cc-11e8-824f-0242ac160002", + "identifier": "6ba1303f-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Component", + "CFItemTypeURI": { + "title": "Component", + "identifier": "1f1afd62-66cd-51cb-8299-1fe5ced9df16", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/1f1afd62-66cd-51cb-8299-1fe5ced9df16" + }, + "educationLevel": [ + "06" + ], + "humanCodingScheme": "6.RP.A.3.a", + "listEnumeration": "a.", + "fullStatement": "Make tables of equivalent ratios relating quantities with whole number measurements, find missing values in the tables, and plot the pairs of values on the coordinate plane. Use tables to compare ratios.", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6ba1331c-d7cc-11e8-824f-0242ac160002", + "identifier": "6ba1331c-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Component", + "CFItemTypeURI": { + "title": "Component", + "identifier": "1f1afd62-66cd-51cb-8299-1fe5ced9df16", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/1f1afd62-66cd-51cb-8299-1fe5ced9df16" + }, + "educationLevel": [ + "06" + ], + "humanCodingScheme": "6.SP.B.5.a", + "listEnumeration": "a.", + "fullStatement": "Reporting the number of observations.", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6ba1361d-d7cc-11e8-824f-0242ac160002", + "identifier": "6ba1361d-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Component", + "CFItemTypeURI": { + "title": "Component", + "identifier": "1f1afd62-66cd-51cb-8299-1fe5ced9df16", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/1f1afd62-66cd-51cb-8299-1fe5ced9df16" + }, + "educationLevel": [ + "07" + ], + "humanCodingScheme": "7.EE.B.4.a", + "listEnumeration": "a.", + "fullStatement": "Solve word problems leading to equations of the form px + q = r and p(x + q) = r, where p, q, and r are specific rational numbers. Solve equations of these forms fluently. Compare an algebraic solution to an arithmetic solution, identifying the sequence of the operations used in each approach. For example, the perimeter of a rectangle is 54 cm. Its length is 6 cm. What is its width?", + "notes": "", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6ba138d5-d7cc-11e8-824f-0242ac160002", + "identifier": "6ba138d5-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Component", + "CFItemTypeURI": { + "title": "Component", + "identifier": "1f1afd62-66cd-51cb-8299-1fe5ced9df16", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/1f1afd62-66cd-51cb-8299-1fe5ced9df16" + }, + "educationLevel": [ + "07" + ], + "humanCodingScheme": "7.NS.A.1.a", + "listEnumeration": "a.", + "fullStatement": "Describe situations in which opposite quantities combine to make 0. For example, a hydrogen atom has 0 charge because its two constituents are oppositely charged.", + "notes": "", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6ba13b7c-d7cc-11e8-824f-0242ac160002", + "identifier": "6ba13b7c-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Component", + "CFItemTypeURI": { + "title": "Component", + "identifier": "1f1afd62-66cd-51cb-8299-1fe5ced9df16", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/1f1afd62-66cd-51cb-8299-1fe5ced9df16" + }, + "educationLevel": [ + "07" + ], + "humanCodingScheme": "7.NS.A.2.a", + "listEnumeration": "a.", + "fullStatement": "Understand that multiplication is extended from fractions to rational numbers by requiring that operations continue to satisfy the properties of operations, particularly the distributive property, leading to products such as (-1)(-1) = 1 and the rules for multiplying signed numbers. Interpret products of rational numbers by describing real-world contexts.", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6ba13e2b-d7cc-11e8-824f-0242ac160002", + "identifier": "6ba13e2b-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Component", + "CFItemTypeURI": { + "title": "Component", + "identifier": "1f1afd62-66cd-51cb-8299-1fe5ced9df16", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/1f1afd62-66cd-51cb-8299-1fe5ced9df16" + }, + "educationLevel": [ + "07" + ], + "humanCodingScheme": "7.RP.A.2.a", + "listEnumeration": "a.", + "fullStatement": "Decide whether two quantities are in a proportional relationship, e.g., by testing for equivalent ratios in a table or graphing on a coordinate plane and observing whether the graph is a straight line through the origin.", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6ba141ef-d7cc-11e8-824f-0242ac160002", + "identifier": "6ba141ef-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Component", + "CFItemTypeURI": { + "title": "Component", + "identifier": "1f1afd62-66cd-51cb-8299-1fe5ced9df16", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/1f1afd62-66cd-51cb-8299-1fe5ced9df16" + }, + "educationLevel": [ + "07" + ], + "humanCodingScheme": "7.SP.C.7.a", + "listEnumeration": "a.", + "fullStatement": "Develop a uniform probability model by assigning equal probability to all outcomes, and use the model to determine probabilities of events. For example, if a student is selected at random from a class, find the probability that Jane will be selected and the probability that a girl will be selected.", + "notes": "", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6ba14563-d7cc-11e8-824f-0242ac160002", + "identifier": "6ba14563-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Component", + "CFItemTypeURI": { + "title": "Component", + "identifier": "1f1afd62-66cd-51cb-8299-1fe5ced9df16", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/1f1afd62-66cd-51cb-8299-1fe5ced9df16" + }, + "educationLevel": [ + "07" + ], + "humanCodingScheme": "7.SP.C.8.a", + "listEnumeration": "a.", + "fullStatement": "Understand that, just as with simple events, the probability of a compound event is the fraction of outcomes in the sample space for which the compound event occurs.", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6ba1486b-d7cc-11e8-824f-0242ac160002", + "identifier": "6ba1486b-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Component", + "CFItemTypeURI": { + "title": "Component", + "identifier": "1f1afd62-66cd-51cb-8299-1fe5ced9df16", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/1f1afd62-66cd-51cb-8299-1fe5ced9df16" + }, + "educationLevel": [ + "08" + ], + "humanCodingScheme": "8.EE.C.7.a", + "listEnumeration": "a.", + "fullStatement": "Give examples of linear equations in one variable with one solution, infinitely many solutions, or no solutions. Show which of these possibilities is the case by successively transforming the given equation into simpler forms, until an equivalent equation of the form x = a, a = a, or a = b results (where a and b are different numbers).", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6ba14b22-d7cc-11e8-824f-0242ac160002", + "identifier": "6ba14b22-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Component", + "CFItemTypeURI": { + "title": "Component", + "identifier": "1f1afd62-66cd-51cb-8299-1fe5ced9df16", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/1f1afd62-66cd-51cb-8299-1fe5ced9df16" + }, + "educationLevel": [ + "08" + ], + "humanCodingScheme": "8.EE.C.8.a", + "listEnumeration": "a.", + "fullStatement": "Understand that solutions to a system of two linear equations in two variables correspond to points of intersection of their graphs, because points of intersection satisfy both equations simultaneously.", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6ba14dd9-d7cc-11e8-824f-0242ac160002", + "identifier": "6ba14dd9-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Component", + "CFItemTypeURI": { + "title": "Component", + "identifier": "1f1afd62-66cd-51cb-8299-1fe5ced9df16", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/1f1afd62-66cd-51cb-8299-1fe5ced9df16" + }, + "educationLevel": [ + "08" + ], + "humanCodingScheme": "8.G.A.1.a", + "listEnumeration": "a.", + "fullStatement": "Lines are taken to lines, and line segments to line segments of the same length.", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6ba1507e-d7cc-11e8-824f-0242ac160002", + "identifier": "6ba1507e-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Component", + "CFItemTypeURI": { + "title": "Component", + "identifier": "1f1afd62-66cd-51cb-8299-1fe5ced9df16", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/1f1afd62-66cd-51cb-8299-1fe5ced9df16" + }, + "educationLevel": [ + "09", + "10", + "11", + "12" + ], + "humanCodingScheme": "HSA-REI.B.4.a", + "listEnumeration": "a.", + "fullStatement": "Use the method of completing the square to transform any quadratic equation in x into an equation of the form (x - p)² = q that has the same solutions. Derive the quadratic formula from this form.", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6ba15328-d7cc-11e8-824f-0242ac160002", + "identifier": "6ba15328-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Component", + "CFItemTypeURI": { + "title": "Component", + "identifier": "1f1afd62-66cd-51cb-8299-1fe5ced9df16", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/1f1afd62-66cd-51cb-8299-1fe5ced9df16" + }, + "educationLevel": [ + "09", + "10", + "11", + "12" + ], + "humanCodingScheme": "HSA-SSE.A.1.a", + "listEnumeration": "a.", + "fullStatement": "Interpret parts of an expression, such as terms, factors, and coefficients.", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6ba155d1-d7cc-11e8-824f-0242ac160002", + "identifier": "6ba155d1-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Component", + "CFItemTypeURI": { + "title": "Component", + "identifier": "1f1afd62-66cd-51cb-8299-1fe5ced9df16", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/1f1afd62-66cd-51cb-8299-1fe5ced9df16" + }, + "educationLevel": [ + "09", + "10", + "11", + "12" + ], + "humanCodingScheme": "HSA-SSE.B.3.a", + "listEnumeration": "a.", + "fullStatement": "Factor a quadratic expression to reveal the zeros of the function it defines.", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6ba15907-d7cc-11e8-824f-0242ac160002", + "identifier": "6ba15907-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Component", + "CFItemTypeURI": { + "title": "Component", + "identifier": "1f1afd62-66cd-51cb-8299-1fe5ced9df16", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/1f1afd62-66cd-51cb-8299-1fe5ced9df16" + }, + "educationLevel": [ + "09", + "10", + "11", + "12" + ], + "humanCodingScheme": "HSF-BF.A.1.a", + "listEnumeration": "a.", + "fullStatement": "Determine an explicit expression, a recursive process, or steps for calculation from a context.", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6ba15bd5-d7cc-11e8-824f-0242ac160002", + "identifier": "6ba15bd5-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Component", + "CFItemTypeURI": { + "title": "Component", + "identifier": "1f1afd62-66cd-51cb-8299-1fe5ced9df16", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/1f1afd62-66cd-51cb-8299-1fe5ced9df16" + }, + "educationLevel": [ + "09", + "10", + "11", + "12" + ], + "humanCodingScheme": "HSF-BF.B.4.a", + "listEnumeration": "a.", + "fullStatement": "Solve an equation of the form f(x) = c for a simple function f that has an inverse and write an expression for the inverse. For example, f(x) =2 x3 or f(x) = (x+1)/(x—1) for x ? 1.", + "notes": "", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6ba16016-d7cc-11e8-824f-0242ac160002", + "identifier": "6ba16016-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Component", + "CFItemTypeURI": { + "title": "Component", + "identifier": "1f1afd62-66cd-51cb-8299-1fe5ced9df16", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/1f1afd62-66cd-51cb-8299-1fe5ced9df16" + }, + "educationLevel": [ + "09", + "10", + "11", + "12" + ], + "humanCodingScheme": "HSF-IF.C.7.a", + "listEnumeration": "a.", + "fullStatement": "Graph linear and quadratic functions and show intercepts, maxima, and minima.", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6ba16344-d7cc-11e8-824f-0242ac160002", + "identifier": "6ba16344-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Component", + "CFItemTypeURI": { + "title": "Component", + "identifier": "1f1afd62-66cd-51cb-8299-1fe5ced9df16", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/1f1afd62-66cd-51cb-8299-1fe5ced9df16" + }, + "educationLevel": [ + "09", + "10", + "11", + "12" + ], + "humanCodingScheme": "HSF-IF.C.8.a", + "listEnumeration": "a.", + "fullStatement": "Use the process of factoring and completing the square in a quadratic function to show zeros, extreme values, and symmetry of the graph, and interpret these in terms of a context.", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6ba16606-d7cc-11e8-824f-0242ac160002", + "identifier": "6ba16606-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Component", + "CFItemTypeURI": { + "title": "Component", + "identifier": "1f1afd62-66cd-51cb-8299-1fe5ced9df16", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/1f1afd62-66cd-51cb-8299-1fe5ced9df16" + }, + "educationLevel": [ + "09", + "10", + "11", + "12" + ], + "humanCodingScheme": "HSF-LE.A.1.a", + "listEnumeration": "a.", + "fullStatement": "Prove that linear functions grow by equal differences over equal intervals, and that exponential functions grow by equal factors over equal intervals.", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6ba168b8-d7cc-11e8-824f-0242ac160002", + "identifier": "6ba168b8-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Component", + "CFItemTypeURI": { + "title": "Component", + "identifier": "1f1afd62-66cd-51cb-8299-1fe5ced9df16", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/1f1afd62-66cd-51cb-8299-1fe5ced9df16" + }, + "educationLevel": [ + "09", + "10", + "11", + "12" + ], + "humanCodingScheme": "HSG-SRT.A.1.a", + "listEnumeration": "a.", + "fullStatement": "A dilation takes a line not passing through the center of the dilation to a parallel line, and leaves a line passing through the center unchanged.", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6ba16bb7-d7cc-11e8-824f-0242ac160002", + "identifier": "6ba16bb7-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Component", + "CFItemTypeURI": { + "title": "Component", + "identifier": "1f1afd62-66cd-51cb-8299-1fe5ced9df16", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/1f1afd62-66cd-51cb-8299-1fe5ced9df16" + }, + "educationLevel": [ + "09", + "10", + "11", + "12" + ], + "humanCodingScheme": "HSN-VM.B.4.a", + "listEnumeration": "a.", + "fullStatement": "Add vectors end-to-end, component-wise, and by the parallelogram rule. Understand that the magnitude of a sum of two vectors is typically not the sum of the magnitudes.", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6ba16e75-d7cc-11e8-824f-0242ac160002", + "identifier": "6ba16e75-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Component", + "CFItemTypeURI": { + "title": "Component", + "identifier": "1f1afd62-66cd-51cb-8299-1fe5ced9df16", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/1f1afd62-66cd-51cb-8299-1fe5ced9df16" + }, + "educationLevel": [ + "09", + "10", + "11", + "12" + ], + "humanCodingScheme": "HSN-VM.B.5.a", + "listEnumeration": "a.", + "fullStatement": "Represent scalar multiplication graphically by scaling vectors and possibly reversing their direction; perform scalar multiplication component-wise, e.g., as c(vx, vy) = (cvx, cvy).", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6ba17134-d7cc-11e8-824f-0242ac160002", + "identifier": "6ba17134-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Component", + "CFItemTypeURI": { + "title": "Component", + "identifier": "1f1afd62-66cd-51cb-8299-1fe5ced9df16", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/1f1afd62-66cd-51cb-8299-1fe5ced9df16" + }, + "educationLevel": [ + "09", + "10", + "11", + "12" + ], + "humanCodingScheme": "HSS-ID.B.6.a", + "listEnumeration": "a.", + "fullStatement": "Fit a function to the data; use functions fitted to data to solve problems in the context of the data.", + "notes": "Use given functions or choose a function suggested by the context. Emphasize linear, quadratic, and exponential models.", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6ba173ea-d7cc-11e8-824f-0242ac160002", + "identifier": "6ba173ea-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Component", + "CFItemTypeURI": { + "title": "Component", + "identifier": "1f1afd62-66cd-51cb-8299-1fe5ced9df16", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/1f1afd62-66cd-51cb-8299-1fe5ced9df16" + }, + "educationLevel": [ + "09", + "10", + "11", + "12" + ], + "humanCodingScheme": "HSS-MD.B.5.a", + "listEnumeration": "a.", + "fullStatement": "Find the expected payoff for a game of chance. For example, find the expected winnings from a state lottery ticket or a game at a fast-food restaurant.", + "notes": "", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6ba176a2-d7cc-11e8-824f-0242ac160002", + "identifier": "6ba176a2-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Component", + "CFItemTypeURI": { + "title": "Component", + "identifier": "1f1afd62-66cd-51cb-8299-1fe5ced9df16", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/1f1afd62-66cd-51cb-8299-1fe5ced9df16" + }, + "educationLevel": [ + "KG" + ], + "humanCodingScheme": "K.CC.B.4.a", + "listEnumeration": "a.", + "fullStatement": "When counting objects, say the number names in the standard order, pairing each object with one and only one number name and each number name with one and only one object.", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6ba1795a-d7cc-11e8-824f-0242ac160002", + "identifier": "6ba1795a-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Component", + "CFItemTypeURI": { + "title": "Component", + "identifier": "1f1afd62-66cd-51cb-8299-1fe5ced9df16", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/1f1afd62-66cd-51cb-8299-1fe5ced9df16" + }, + "educationLevel": [ + "01" + ], + "humanCodingScheme": "1.NBT.B.2.b", + "listEnumeration": "b.", + "fullStatement": "The numbers from 11 to 19 are composed of a ten and one, two, three, four, five, six, seven, eight, or nine ones.", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6ba17c11-d7cc-11e8-824f-0242ac160002", + "identifier": "6ba17c11-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Component", + "CFItemTypeURI": { + "title": "Component", + "identifier": "1f1afd62-66cd-51cb-8299-1fe5ced9df16", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/1f1afd62-66cd-51cb-8299-1fe5ced9df16" + }, + "educationLevel": [ + "02" + ], + "humanCodingScheme": "2.NBT.A.1.b", + "listEnumeration": "b.", + "fullStatement": "The numbers 100, 200, 300, 400, 500, 600, 700, 800, 900 refer to one, two, three, four, five, six, seven, eight, or nine hundreds (and 0 tens and 0 ones).", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6ba17ecd-d7cc-11e8-824f-0242ac160002", + "identifier": "6ba17ecd-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Component", + "CFItemTypeURI": { + "title": "Component", + "identifier": "1f1afd62-66cd-51cb-8299-1fe5ced9df16", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/1f1afd62-66cd-51cb-8299-1fe5ced9df16" + }, + "educationLevel": [ + "03" + ], + "humanCodingScheme": "3.MD.C.5.b", + "listEnumeration": "b.", + "fullStatement": "A plane figure which can be covered without gaps or overlaps by n unit squares is said to have an area of n square units.", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6ba1826d-d7cc-11e8-824f-0242ac160002", + "identifier": "6ba1826d-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Component", + "CFItemTypeURI": { + "title": "Component", + "identifier": "1f1afd62-66cd-51cb-8299-1fe5ced9df16", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/1f1afd62-66cd-51cb-8299-1fe5ced9df16" + }, + "educationLevel": [ + "03" + ], + "humanCodingScheme": "3.MD.C.7.b", + "listEnumeration": "b.", + "fullStatement": "Multiply side lengths to find areas of rectangles with whole-number side lengths in the context of solving real world and mathematical problems, and represent whole-number products as rectangular areas in mathematical reasoning.", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6ba18533-d7cc-11e8-824f-0242ac160002", + "identifier": "6ba18533-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Component", + "CFItemTypeURI": { + "title": "Component", + "identifier": "1f1afd62-66cd-51cb-8299-1fe5ced9df16", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/1f1afd62-66cd-51cb-8299-1fe5ced9df16" + }, + "educationLevel": [ + "03" + ], + "humanCodingScheme": "3.NF.A.2.b", + "listEnumeration": "b.", + "fullStatement": "Represent a fraction a/b on a number line diagram by marking off a lengths 1/b from 0. Recognize that the resulting interval has size a/b and that its endpoint locates the number a/b on the number line.", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6ba187f3-d7cc-11e8-824f-0242ac160002", + "identifier": "6ba187f3-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Component", + "CFItemTypeURI": { + "title": "Component", + "identifier": "1f1afd62-66cd-51cb-8299-1fe5ced9df16", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/1f1afd62-66cd-51cb-8299-1fe5ced9df16" + }, + "educationLevel": [ + "03" + ], + "humanCodingScheme": "3.NF.A.3.b", + "listEnumeration": "b.", + "fullStatement": "Recognize and generate simple equivalent fractions, e.g., 1/2 = 2/4, 4/6 = 2/3). Explain why the fractions are equivalent, e.g., by using a visual fraction model.", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6ba18ab1-d7cc-11e8-824f-0242ac160002", + "identifier": "6ba18ab1-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Component", + "CFItemTypeURI": { + "title": "Component", + "identifier": "1f1afd62-66cd-51cb-8299-1fe5ced9df16", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/1f1afd62-66cd-51cb-8299-1fe5ced9df16" + }, + "educationLevel": [ + "04" + ], + "humanCodingScheme": "4.MD.C.5.b", + "listEnumeration": "b.", + "fullStatement": "An angle that turns through n one-degree angles is said to have an angle measure of n degrees.", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6ba18d83-d7cc-11e8-824f-0242ac160002", + "identifier": "6ba18d83-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Component", + "CFItemTypeURI": { + "title": "Component", + "identifier": "1f1afd62-66cd-51cb-8299-1fe5ced9df16", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/1f1afd62-66cd-51cb-8299-1fe5ced9df16" + }, + "educationLevel": [ + "04" + ], + "humanCodingScheme": "4.NF.B.3.b", + "listEnumeration": "b.", + "fullStatement": "Decompose a fraction into a sum of fractions with the same denominator in more than one way, recording each decomposition by an equation. Justify decompositions, e.g., by using a visual fraction model.", + "notes": "Examples: 3/8 = 1/8 + 1/8 + 1/8 ; 3/8 = 1/8 + 2/8 ; 2 1/8 = 1 + 1 + 1/8 = 8/8 + 8/8 + 1/8.", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6ba1905b-d7cc-11e8-824f-0242ac160002", + "identifier": "6ba1905b-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Component", + "CFItemTypeURI": { + "title": "Component", + "identifier": "1f1afd62-66cd-51cb-8299-1fe5ced9df16", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/1f1afd62-66cd-51cb-8299-1fe5ced9df16" + }, + "educationLevel": [ + "04" + ], + "humanCodingScheme": "4.NF.B.4.b", + "listEnumeration": "b.", + "fullStatement": "Understand a multiple of a/b as a multiple of 1/b, and use this understanding to multiply a fraction by a whole number. For example, use a visual fraction model to express 3 × (2/5) as 6 × (1/5), recognizing this product as 6/5. (In general, n × (a/b) = (n × a)/b.)", + "notes": "", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6ba1938b-d7cc-11e8-824f-0242ac160002", + "identifier": "6ba1938b-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Component", + "CFItemTypeURI": { + "title": "Component", + "identifier": "1f1afd62-66cd-51cb-8299-1fe5ced9df16", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/1f1afd62-66cd-51cb-8299-1fe5ced9df16" + }, + "educationLevel": [ + "05" + ], + "humanCodingScheme": "5.MD.C.3.b", + "listEnumeration": "b.", + "fullStatement": "A solid figure which can be packed without gaps or overlaps using n unit cubes is said to have a volume of n cubic units.", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6ba1965f-d7cc-11e8-824f-0242ac160002", + "identifier": "6ba1965f-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Component", + "CFItemTypeURI": { + "title": "Component", + "identifier": "1f1afd62-66cd-51cb-8299-1fe5ced9df16", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/1f1afd62-66cd-51cb-8299-1fe5ced9df16" + }, + "educationLevel": [ + "05" + ], + "humanCodingScheme": "5.MD.C.5.b", + "listEnumeration": "b.", + "fullStatement": "Apply the formulas V = l × w × h and V = b × h for rectangular prisms to find volumes of right rectangular prisms with whole-number edge lengths in the context of solving real world and mathematical problems.", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6ba19ae2-d7cc-11e8-824f-0242ac160002", + "identifier": "6ba19ae2-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Component", + "CFItemTypeURI": { + "title": "Component", + "identifier": "1f1afd62-66cd-51cb-8299-1fe5ced9df16", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/1f1afd62-66cd-51cb-8299-1fe5ced9df16" + }, + "educationLevel": [ + "05" + ], + "humanCodingScheme": "5.NBT.A.3.b", + "listEnumeration": "b.", + "fullStatement": "Compare two decimals to thousandths based on meanings of the digits in each place, using >, =, and < symbols to record the results of comparisons.", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6ba19dde-d7cc-11e8-824f-0242ac160002", + "identifier": "6ba19dde-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Component", + "CFItemTypeURI": { + "title": "Component", + "identifier": "1f1afd62-66cd-51cb-8299-1fe5ced9df16", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/1f1afd62-66cd-51cb-8299-1fe5ced9df16" + }, + "educationLevel": [ + "05" + ], + "humanCodingScheme": "5.NF.B.4.b", + "listEnumeration": "b.", + "fullStatement": "Find the area of a rectangle with fractional side lengths by tiling it with unit squares of the appropriate unit fraction side lengths, and show that the area is the same as would be found by multiplying the side lengths. Multiply fractional side lengths to find areas of rectangles, and represent fraction products as rectangular areas.", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6ba1a0ce-d7cc-11e8-824f-0242ac160002", + "identifier": "6ba1a0ce-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Component", + "CFItemTypeURI": { + "title": "Component", + "identifier": "1f1afd62-66cd-51cb-8299-1fe5ced9df16", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/1f1afd62-66cd-51cb-8299-1fe5ced9df16" + }, + "educationLevel": [ + "05" + ], + "humanCodingScheme": "5.NF.B.5.b", + "listEnumeration": "b.", + "fullStatement": "Explaining why multiplying a given number by a fraction greater than 1 results in a product greater than the given number (recognizing multiplication by whole numbers greater than 1 as a familiar case); explaining why multiplying a given number by a fraction less than 1 results in a product smaller than the given number; and relating the principle of fraction equivalence a/b = (n×a)/(n×b) to the effect of multiplying a/b by 1.", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6ba1a3cc-d7cc-11e8-824f-0242ac160002", + "identifier": "6ba1a3cc-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Component", + "CFItemTypeURI": { + "title": "Component", + "identifier": "1f1afd62-66cd-51cb-8299-1fe5ced9df16", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/1f1afd62-66cd-51cb-8299-1fe5ced9df16" + }, + "educationLevel": [ + "05" + ], + "humanCodingScheme": "5.NF.B.7.b", + "listEnumeration": "b.", + "fullStatement": "Interpret division of a whole number by a unit fraction, and compute such quotients. For example, create a story context for 4 ÷ (1/5), and use a visual fraction model to show the quotient. Use the relationship between multiplication and division to explain that 4 ÷ (1/5) = 20 because 20 × (1/5) = 4.", + "notes": "", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6ba1a6b3-d7cc-11e8-824f-0242ac160002", + "identifier": "6ba1a6b3-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Component", + "CFItemTypeURI": { + "title": "Component", + "identifier": "1f1afd62-66cd-51cb-8299-1fe5ced9df16", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/1f1afd62-66cd-51cb-8299-1fe5ced9df16" + }, + "educationLevel": [ + "06" + ], + "humanCodingScheme": "6.EE.A.2.b", + "listEnumeration": "b.", + "fullStatement": "Identify parts of an expression using mathematical terms (sum, term, product, factor, quotient, coefficient); view one or more parts of an expression as a single entity. For example, describe the expression 2 (8 + 7) as a product of two factors; view (8 + 7) as both a single entity and a sum of two terms.", + "notes": "", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6ba1a9ea-d7cc-11e8-824f-0242ac160002", + "identifier": "6ba1a9ea-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Component", + "CFItemTypeURI": { + "title": "Component", + "identifier": "1f1afd62-66cd-51cb-8299-1fe5ced9df16", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/1f1afd62-66cd-51cb-8299-1fe5ced9df16" + }, + "educationLevel": [ + "06" + ], + "humanCodingScheme": "6.NS.C.6.b", + "listEnumeration": "b.", + "fullStatement": "Understand signs of numbers in ordered pairs as indicating locations in quadrants of the coordinate plane; recognize that when two ordered pairs differ only by signs, the locations of the points are related by reflections across one or both axes.", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6ba1acd4-d7cc-11e8-824f-0242ac160002", + "identifier": "6ba1acd4-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Component", + "CFItemTypeURI": { + "title": "Component", + "identifier": "1f1afd62-66cd-51cb-8299-1fe5ced9df16", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/1f1afd62-66cd-51cb-8299-1fe5ced9df16" + }, + "educationLevel": [ + "06" + ], + "humanCodingScheme": "6.NS.C.7.b", + "listEnumeration": "b.", + "fullStatement": "Write, interpret, and explain statements of order for rational numbers in real-world contexts. For example, write -3 °C > -7 °C to express the fact that -3 °C is warmer than -7 °C.", + "notes": "", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6ba1afb9-d7cc-11e8-824f-0242ac160002", + "identifier": "6ba1afb9-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Component", + "CFItemTypeURI": { + "title": "Component", + "identifier": "1f1afd62-66cd-51cb-8299-1fe5ced9df16", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/1f1afd62-66cd-51cb-8299-1fe5ced9df16" + }, + "educationLevel": [ + "06" + ], + "humanCodingScheme": "6.RP.A.3.b", + "listEnumeration": "b.", + "fullStatement": "Solve unit rate problems including those involving unit pricing and constant speed. For example, if it took 7 hours to mow 4 lawns, then at that rate, how many lawns could be mowed in 35 hours? At what rate were lawns being mowed?", + "notes": "", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6ba1b2b7-d7cc-11e8-824f-0242ac160002", + "identifier": "6ba1b2b7-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Component", + "CFItemTypeURI": { + "title": "Component", + "identifier": "1f1afd62-66cd-51cb-8299-1fe5ced9df16", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/1f1afd62-66cd-51cb-8299-1fe5ced9df16" + }, + "educationLevel": [ + "06" + ], + "humanCodingScheme": "6.SP.B.5.b", + "listEnumeration": "b.", + "fullStatement": "Describing the nature of the attribute under investigation, including how it was measured and its units of measurement.", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6ba1b5b2-d7cc-11e8-824f-0242ac160002", + "identifier": "6ba1b5b2-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Component", + "CFItemTypeURI": { + "title": "Component", + "identifier": "1f1afd62-66cd-51cb-8299-1fe5ced9df16", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/1f1afd62-66cd-51cb-8299-1fe5ced9df16" + }, + "educationLevel": [ + "07" + ], + "humanCodingScheme": "7.EE.B.4.b", + "listEnumeration": "b.", + "fullStatement": "Solve word problems leading to inequalities of the form px + q > r or px + q < r, where p, q, and r are specific rational numbers. Graph the solution set of the inequality and interpret it in the context of the problem. For example: As a salesperson, you are paid $50 per week plus $3 per sale. This week you want your pay to be at least $100. Write an inequality for the number of sales you need to make, and describe the solutions.", + "notes": "", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6ba1b8b8-d7cc-11e8-824f-0242ac160002", + "identifier": "6ba1b8b8-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Component", + "CFItemTypeURI": { + "title": "Component", + "identifier": "1f1afd62-66cd-51cb-8299-1fe5ced9df16", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/1f1afd62-66cd-51cb-8299-1fe5ced9df16" + }, + "educationLevel": [ + "07" + ], + "humanCodingScheme": "7.NS.A.1.b", + "listEnumeration": "b.", + "fullStatement": "Understand p + q as the number located a distance |q| from p, in the positive or negative direction depending on whether q is positive or negative. Show that a number and its opposite have a sum of 0 (are additive inverses). Interpret sums of rational numbers by describing real-world contexts.", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6ba1bbb1-d7cc-11e8-824f-0242ac160002", + "identifier": "6ba1bbb1-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Component", + "CFItemTypeURI": { + "title": "Component", + "identifier": "1f1afd62-66cd-51cb-8299-1fe5ced9df16", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/1f1afd62-66cd-51cb-8299-1fe5ced9df16" + }, + "educationLevel": [ + "07" + ], + "humanCodingScheme": "7.NS.A.2.b", + "listEnumeration": "b.", + "fullStatement": "Understand that integers can be divided, provided that the divisor is not zero, and every quotient of integers (with non-zero divisor) is a rational number. If p and q are integers, then -(p/q) = (-p)/q = p/(-q). Interpret quotients of rational numbers by describing real-world contexts.", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6ba1beae-d7cc-11e8-824f-0242ac160002", + "identifier": "6ba1beae-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Component", + "CFItemTypeURI": { + "title": "Component", + "identifier": "1f1afd62-66cd-51cb-8299-1fe5ced9df16", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/1f1afd62-66cd-51cb-8299-1fe5ced9df16" + }, + "educationLevel": [ + "07" + ], + "humanCodingScheme": "7.RP.A.2.b", + "listEnumeration": "b.", + "fullStatement": "Identify the constant of proportionality (unit rate) in tables, graphs, equations, diagrams, and verbal descriptions of proportional relationships.", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6ba1c19b-d7cc-11e8-824f-0242ac160002", + "identifier": "6ba1c19b-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Component", + "CFItemTypeURI": { + "title": "Component", + "identifier": "1f1afd62-66cd-51cb-8299-1fe5ced9df16", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/1f1afd62-66cd-51cb-8299-1fe5ced9df16" + }, + "educationLevel": [ + "07" + ], + "humanCodingScheme": "7.SP.C.7.b", + "listEnumeration": "b.", + "fullStatement": "Develop a probability model (which may not be uniform) by observing frequencies in data generated from a chance process. For example, find the approximate probability that a spinning penny will land heads up or that a tossed paper cup will land open-end down. Do the outcomes for the spinning penny appear to be equally likely based on the observed frequencies?", + "notes": "", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6ba1c4a2-d7cc-11e8-824f-0242ac160002", + "identifier": "6ba1c4a2-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Component", + "CFItemTypeURI": { + "title": "Component", + "identifier": "1f1afd62-66cd-51cb-8299-1fe5ced9df16", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/1f1afd62-66cd-51cb-8299-1fe5ced9df16" + }, + "educationLevel": [ + "07" + ], + "humanCodingScheme": "7.SP.C.8.b", + "listEnumeration": "b.", + "fullStatement": "Represent sample spaces for compound events using methods such as organized lists, tables and tree diagrams. For an event described in everyday language (e.g., \"rolling double sixes\"), identify the outcomes in the sample space which compose the event.", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6ba1c7ad-d7cc-11e8-824f-0242ac160002", + "identifier": "6ba1c7ad-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Component", + "CFItemTypeURI": { + "title": "Component", + "identifier": "1f1afd62-66cd-51cb-8299-1fe5ced9df16", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/1f1afd62-66cd-51cb-8299-1fe5ced9df16" + }, + "educationLevel": [ + "08" + ], + "humanCodingScheme": "8.EE.C.7.b", + "listEnumeration": "b.", + "fullStatement": "Solve linear equations with rational number coefficients, including equations whose solutions require expanding expressions using the distributive property and collecting like terms.", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6ba1caa3-d7cc-11e8-824f-0242ac160002", + "identifier": "6ba1caa3-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Component", + "CFItemTypeURI": { + "title": "Component", + "identifier": "1f1afd62-66cd-51cb-8299-1fe5ced9df16", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/1f1afd62-66cd-51cb-8299-1fe5ced9df16" + }, + "educationLevel": [ + "08" + ], + "humanCodingScheme": "8.EE.C.8.b", + "listEnumeration": "b.", + "fullStatement": "Solve systems of two linear equations in two variables algebraically, and estimate solutions by graphing the equations. Solve simple cases by inspection. For example, 3x + 2y = 5 and 3x + 2y = 6 have no solution because 3x + 2y cannot simultaneously be 5 and 6.", + "notes": "", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6ba1cd94-d7cc-11e8-824f-0242ac160002", + "identifier": "6ba1cd94-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Component", + "CFItemTypeURI": { + "title": "Component", + "identifier": "1f1afd62-66cd-51cb-8299-1fe5ced9df16", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/1f1afd62-66cd-51cb-8299-1fe5ced9df16" + }, + "educationLevel": [ + "08" + ], + "humanCodingScheme": "8.G.A.1.b", + "listEnumeration": "b.", + "fullStatement": "Angles are taken to angles of the same measure.", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6ba1d10e-d7cc-11e8-824f-0242ac160002", + "identifier": "6ba1d10e-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Component", + "CFItemTypeURI": { + "title": "Component", + "identifier": "1f1afd62-66cd-51cb-8299-1fe5ced9df16", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/1f1afd62-66cd-51cb-8299-1fe5ced9df16" + }, + "educationLevel": [ + "09", + "10", + "11", + "12" + ], + "humanCodingScheme": "HSA-REI.B.4.b", + "listEnumeration": "b.", + "fullStatement": "Solve quadratic equations by inspection (e.g., for x² = 49), taking square roots, completing the square, the quadratic formula and factoring, as appropriate to the initial form of the equation. Recognize when the quadratic formula gives complex solutions and write them as a ± bi for real numbers a and b.", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6ba1d40f-d7cc-11e8-824f-0242ac160002", + "identifier": "6ba1d40f-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Component", + "CFItemTypeURI": { + "title": "Component", + "identifier": "1f1afd62-66cd-51cb-8299-1fe5ced9df16", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/1f1afd62-66cd-51cb-8299-1fe5ced9df16" + }, + "educationLevel": [ + "09", + "10", + "11", + "12" + ], + "humanCodingScheme": "HSA-SSE.A.1.b", + "listEnumeration": "b.", + "fullStatement": "Interpret complicated expressions by viewing one or more of their parts as a single entity. For example, interpret P(1+r)n as the product of P and a factor not depending on P.", + "notes": "", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6ba1d702-d7cc-11e8-824f-0242ac160002", + "identifier": "6ba1d702-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Component", + "CFItemTypeURI": { + "title": "Component", + "identifier": "1f1afd62-66cd-51cb-8299-1fe5ced9df16", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/1f1afd62-66cd-51cb-8299-1fe5ced9df16" + }, + "educationLevel": [ + "09", + "10", + "11", + "12" + ], + "humanCodingScheme": "HSA-SSE.B.3.b", + "listEnumeration": "b.", + "fullStatement": "Complete the square in a quadratic expression to reveal the maximum or minimum value of the function it defines.", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6ba1da14-d7cc-11e8-824f-0242ac160002", + "identifier": "6ba1da14-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Component", + "CFItemTypeURI": { + "title": "Component", + "identifier": "1f1afd62-66cd-51cb-8299-1fe5ced9df16", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/1f1afd62-66cd-51cb-8299-1fe5ced9df16" + }, + "educationLevel": [ + "09", + "10", + "11", + "12" + ], + "humanCodingScheme": "HSF-BF.A.1.b", + "listEnumeration": "b.", + "fullStatement": "Combine standard function types using arithmetic operations. For example, build a function that models the temperature of a cooling body by adding a constant function to a decaying exponential, and relate these functions to the model.", + "notes": "", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6ba1dd29-d7cc-11e8-824f-0242ac160002", + "identifier": "6ba1dd29-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Component", + "CFItemTypeURI": { + "title": "Component", + "identifier": "1f1afd62-66cd-51cb-8299-1fe5ced9df16", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/1f1afd62-66cd-51cb-8299-1fe5ced9df16" + }, + "educationLevel": [ + "09", + "10", + "11", + "12" + ], + "humanCodingScheme": "HSF-BF.B.4.b", + "listEnumeration": "b.", + "fullStatement": "(+) Verify by composition that one function is the inverse of another.", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6ba1e033-d7cc-11e8-824f-0242ac160002", + "identifier": "6ba1e033-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Component", + "CFItemTypeURI": { + "title": "Component", + "identifier": "1f1afd62-66cd-51cb-8299-1fe5ced9df16", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/1f1afd62-66cd-51cb-8299-1fe5ced9df16" + }, + "educationLevel": [ + "09", + "10", + "11", + "12" + ], + "humanCodingScheme": "HSF-IF.C.7.b", + "listEnumeration": "b.", + "fullStatement": "Graph square root, cube root, and piecewise-defined functions, including step functions and absolute value functions.", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6ba1e33f-d7cc-11e8-824f-0242ac160002", + "identifier": "6ba1e33f-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Component", + "CFItemTypeURI": { + "title": "Component", + "identifier": "1f1afd62-66cd-51cb-8299-1fe5ced9df16", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/1f1afd62-66cd-51cb-8299-1fe5ced9df16" + }, + "educationLevel": [ + "09", + "10", + "11", + "12" + ], + "humanCodingScheme": "HSF-IF.C.8.b", + "listEnumeration": "b.", + "fullStatement": "Use the properties of exponents to interpret expressions for exponential functions. For example, identify percent rate of change in functions such as y = (1.02)t, y = (0.97)t, y = (1.01 12t, y = (1.2)t/10, and classify them as representing exponential growth or decay.", + "notes": "", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6ba1e7bb-d7cc-11e8-824f-0242ac160002", + "identifier": "6ba1e7bb-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Component", + "CFItemTypeURI": { + "title": "Component", + "identifier": "1f1afd62-66cd-51cb-8299-1fe5ced9df16", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/1f1afd62-66cd-51cb-8299-1fe5ced9df16" + }, + "educationLevel": [ + "09", + "10", + "11", + "12" + ], + "humanCodingScheme": "HSF-LE.A.1.b", + "listEnumeration": "b.", + "fullStatement": "Recognize situations in which one quantity changes at a constant rate per unit interval relative to another.", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6ba1eada-d7cc-11e8-824f-0242ac160002", + "identifier": "6ba1eada-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Component", + "CFItemTypeURI": { + "title": "Component", + "identifier": "1f1afd62-66cd-51cb-8299-1fe5ced9df16", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/1f1afd62-66cd-51cb-8299-1fe5ced9df16" + }, + "educationLevel": [ + "09", + "10", + "11", + "12" + ], + "humanCodingScheme": "HSG-SRT.A.1.b", + "listEnumeration": "b.", + "fullStatement": "The dilation of a line segment is longer or shorter in the ratio given by the scale factor.", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6ba1ede4-d7cc-11e8-824f-0242ac160002", + "identifier": "6ba1ede4-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Component", + "CFItemTypeURI": { + "title": "Component", + "identifier": "1f1afd62-66cd-51cb-8299-1fe5ced9df16", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/1f1afd62-66cd-51cb-8299-1fe5ced9df16" + }, + "educationLevel": [ + "09", + "10", + "11", + "12" + ], + "humanCodingScheme": "HSN-VM.B.4.b", + "listEnumeration": "b.", + "fullStatement": "Given two vectors in magnitude and direction form, determine the magnitude and direction of their sum.", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6ba1f221-d7cc-11e8-824f-0242ac160002", + "identifier": "6ba1f221-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Component", + "CFItemTypeURI": { + "title": "Component", + "identifier": "1f1afd62-66cd-51cb-8299-1fe5ced9df16", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/1f1afd62-66cd-51cb-8299-1fe5ced9df16" + }, + "educationLevel": [ + "09", + "10", + "11", + "12" + ], + "humanCodingScheme": "HSN-VM.B.5.b", + "listEnumeration": "b.", + "fullStatement": "Compute the magnitude of a scalar multiple cv using ||cv|| = |c|v. Compute the direction of cv knowing that when |c|v ? 0, the direction of cv is either along v (for c > 0) or against v (for c < 0).", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6ba1f64b-d7cc-11e8-824f-0242ac160002", + "identifier": "6ba1f64b-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Component", + "CFItemTypeURI": { + "title": "Component", + "identifier": "1f1afd62-66cd-51cb-8299-1fe5ced9df16", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/1f1afd62-66cd-51cb-8299-1fe5ced9df16" + }, + "educationLevel": [ + "09", + "10", + "11", + "12" + ], + "humanCodingScheme": "HSS-ID.B.6.b", + "listEnumeration": "b.", + "fullStatement": "Informally assess the fit of a function by plotting and analyzing residuals.", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6ba1f961-d7cc-11e8-824f-0242ac160002", + "identifier": "6ba1f961-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Component", + "CFItemTypeURI": { + "title": "Component", + "identifier": "1f1afd62-66cd-51cb-8299-1fe5ced9df16", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/1f1afd62-66cd-51cb-8299-1fe5ced9df16" + }, + "educationLevel": [ + "09", + "10", + "11", + "12" + ], + "humanCodingScheme": "HSS-MD.B.5.b", + "listEnumeration": "b.", + "fullStatement": "Evaluate and compare strategies on the basis of expected values. For example, compare a high-deductible versus a low-deductible automobile insurance policy using various, but reasonable, chances of having a minor or a major accident.", + "notes": "", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6ba1fc69-d7cc-11e8-824f-0242ac160002", + "identifier": "6ba1fc69-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Component", + "CFItemTypeURI": { + "title": "Component", + "identifier": "1f1afd62-66cd-51cb-8299-1fe5ced9df16", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/1f1afd62-66cd-51cb-8299-1fe5ced9df16" + }, + "educationLevel": [ + "KG" + ], + "humanCodingScheme": "K.CC.B.4.b", + "listEnumeration": "b.", + "fullStatement": "Understand that the last number name said tells the number of objects counted. The number of objects is the same regardless of their arrangement or the order in which they were counted.", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6ba1ff7c-d7cc-11e8-824f-0242ac160002", + "identifier": "6ba1ff7c-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Component", + "CFItemTypeURI": { + "title": "Component", + "identifier": "1f1afd62-66cd-51cb-8299-1fe5ced9df16", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/1f1afd62-66cd-51cb-8299-1fe5ced9df16" + }, + "educationLevel": [ + "01" + ], + "humanCodingScheme": "1.NBT.B.2.c", + "listEnumeration": "c.", + "fullStatement": "The numbers 10, 20, 30, 40, 50, 60, 70, 80, 90 refer to one, two, three, four, five, six, seven, eight, or nine tens (and 0 ones).", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6ba20290-d7cc-11e8-824f-0242ac160002", + "identifier": "6ba20290-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Component", + "CFItemTypeURI": { + "title": "Component", + "identifier": "1f1afd62-66cd-51cb-8299-1fe5ced9df16", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/1f1afd62-66cd-51cb-8299-1fe5ced9df16" + }, + "educationLevel": [ + "03" + ], + "humanCodingScheme": "3.MD.C.7.c", + "listEnumeration": "c.", + "fullStatement": "Use tiling to show in a concrete case that the area of a rectangle with whole-number side lengths a and b + c is the sum of a × b and a × c. Use area models to represent the distributive property in mathematical reasoning.", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6ba205a2-d7cc-11e8-824f-0242ac160002", + "identifier": "6ba205a2-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Component", + "CFItemTypeURI": { + "title": "Component", + "identifier": "1f1afd62-66cd-51cb-8299-1fe5ced9df16", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/1f1afd62-66cd-51cb-8299-1fe5ced9df16" + }, + "educationLevel": [ + "03" + ], + "humanCodingScheme": "3.NF.A.3.c", + "listEnumeration": "c.", + "fullStatement": "Express whole numbers as fractions, and recognize fractions that are equivalent to whole numbers.", + "notes": "Example: express 3 in the form 3 = 3/1; recognize that 6/1 = 6.", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6ba208b6-d7cc-11e8-824f-0242ac160002", + "identifier": "6ba208b6-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Component", + "CFItemTypeURI": { + "title": "Component", + "identifier": "1f1afd62-66cd-51cb-8299-1fe5ced9df16", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/1f1afd62-66cd-51cb-8299-1fe5ced9df16" + }, + "educationLevel": [ + "04" + ], + "humanCodingScheme": "4.NF.B.3.c", + "listEnumeration": "c.", + "fullStatement": "Add and subtract mixed numbers with like denominators, e.g., by replacing each mixed number with an equivalent fraction, and/or by using properties of operations and the relationship between addition and subtraction.", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6ba20bca-d7cc-11e8-824f-0242ac160002", + "identifier": "6ba20bca-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Component", + "CFItemTypeURI": { + "title": "Component", + "identifier": "1f1afd62-66cd-51cb-8299-1fe5ced9df16", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/1f1afd62-66cd-51cb-8299-1fe5ced9df16" + }, + "educationLevel": [ + "04" + ], + "humanCodingScheme": "4.NF.B.4.c", + "listEnumeration": "c.", + "fullStatement": "Solve word problems involving multiplication of a fraction by a whole number, e.g., by using visual fraction models and equations to represent the problem. For example, if each person at a party will eat 3/8 of a pound of roast beef, and there will be 5 people at the party, how many pounds of roast beef will be needed? Between what two whole numbers does your answer lie?", + "notes": "", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6ba20ee1-d7cc-11e8-824f-0242ac160002", + "identifier": "6ba20ee1-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Component", + "CFItemTypeURI": { + "title": "Component", + "identifier": "1f1afd62-66cd-51cb-8299-1fe5ced9df16", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/1f1afd62-66cd-51cb-8299-1fe5ced9df16" + }, + "educationLevel": [ + "05" + ], + "humanCodingScheme": "5.MD.C.5.c", + "listEnumeration": "c.", + "fullStatement": "Recognize volume as additive. Find volumes of solid figures composed of two non-overlapping right rectangular prisms by adding the volumes of the non-overlapping parts, applying this technique to solve real world problems.", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6ba211ee-d7cc-11e8-824f-0242ac160002", + "identifier": "6ba211ee-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Component", + "CFItemTypeURI": { + "title": "Component", + "identifier": "1f1afd62-66cd-51cb-8299-1fe5ced9df16", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/1f1afd62-66cd-51cb-8299-1fe5ced9df16" + }, + "educationLevel": [ + "05" + ], + "humanCodingScheme": "5.NF.B.7.c", + "listEnumeration": "c.", + "fullStatement": "Solve real world problems involving division of unit fractions by non-zero whole numbers and division of whole numbers by unit fractions, e.g., by using visual fraction models and equations to represent the problem. For example, how much chocolate will each person get if 3 people share 1/2 lb of chocolate equally? How many 1/3-cup servings are in 2 cups of raisins?", + "notes": "", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6ba21506-d7cc-11e8-824f-0242ac160002", + "identifier": "6ba21506-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Component", + "CFItemTypeURI": { + "title": "Component", + "identifier": "1f1afd62-66cd-51cb-8299-1fe5ced9df16", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/1f1afd62-66cd-51cb-8299-1fe5ced9df16" + }, + "educationLevel": [ + "06" + ], + "humanCodingScheme": "6.EE.A.2.c", + "listEnumeration": "c.", + "fullStatement": "Evaluate expressions at specific values of their variables. Include expressions that arise from formulas used in real-world problems. Perform arithmetic operations, including those involving whole-number exponents, in the conventional order when there are no parentheses to specify a particular order (Order of Operations). For example, use the formulas V = s³ and A = 6 s² to find the volume and surface area of a cube with sides of length s = 1/2.", + "notes": "", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6ba2181f-d7cc-11e8-824f-0242ac160002", + "identifier": "6ba2181f-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Component", + "CFItemTypeURI": { + "title": "Component", + "identifier": "1f1afd62-66cd-51cb-8299-1fe5ced9df16", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/1f1afd62-66cd-51cb-8299-1fe5ced9df16" + }, + "educationLevel": [ + "06" + ], + "humanCodingScheme": "6.NS.C.6.c", + "listEnumeration": "c.", + "fullStatement": "Find and position integers and other rational numbers on a horizontal or vertical number line diagram; find and position pairs of integers and other rational numbers on a coordinate plane.", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6ba21b2c-d7cc-11e8-824f-0242ac160002", + "identifier": "6ba21b2c-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Component", + "CFItemTypeURI": { + "title": "Component", + "identifier": "1f1afd62-66cd-51cb-8299-1fe5ced9df16", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/1f1afd62-66cd-51cb-8299-1fe5ced9df16" + }, + "educationLevel": [ + "06" + ], + "humanCodingScheme": "6.NS.C.7.c", + "listEnumeration": "c.", + "fullStatement": "Understand the absolute value of a rational number as its distance from 0 on the number line; interpret absolute value as magnitude for a positive or negative quantity in a real-world situation. For example, for an account balance of -30 dollars, write |-30| = 30 to describe the size of the debt in dollars.", + "notes": "", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6ba21e79-d7cc-11e8-824f-0242ac160002", + "identifier": "6ba21e79-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Component", + "CFItemTypeURI": { + "title": "Component", + "identifier": "1f1afd62-66cd-51cb-8299-1fe5ced9df16", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/1f1afd62-66cd-51cb-8299-1fe5ced9df16" + }, + "educationLevel": [ + "06" + ], + "humanCodingScheme": "6.RP.A.3.c", + "listEnumeration": "c.", + "fullStatement": "Find a percent of a quantity as a rate per 100 (e.g., 30% of a quantity means 30/100 times the quantity); solve problems involving finding the whole, given a part and the percent.", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6ba221e0-d7cc-11e8-824f-0242ac160002", + "identifier": "6ba221e0-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Component", + "CFItemTypeURI": { + "title": "Component", + "identifier": "1f1afd62-66cd-51cb-8299-1fe5ced9df16", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/1f1afd62-66cd-51cb-8299-1fe5ced9df16" + }, + "educationLevel": [ + "06" + ], + "humanCodingScheme": "6.SP.B.5.c", + "listEnumeration": "c.", + "fullStatement": "Giving quantitative measures of center (median and/or mean) and variability (interquartile range and/or mean absolute deviation), as well as describing any overall pattern and any striking deviations from the overall pattern with reference to the context in which the data were gathered.", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6ba224e2-d7cc-11e8-824f-0242ac160002", + "identifier": "6ba224e2-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Component", + "CFItemTypeURI": { + "title": "Component", + "identifier": "1f1afd62-66cd-51cb-8299-1fe5ced9df16", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/1f1afd62-66cd-51cb-8299-1fe5ced9df16" + }, + "educationLevel": [ + "07" + ], + "humanCodingScheme": "7.NS.A.1.c", + "listEnumeration": "c.", + "fullStatement": "Understand subtraction of rational numbers as adding the additive inverse, p - q = p + (-q). Show that the distance between two rational numbers on the number line is the absolute value of their difference, and apply this principle in real-world contexts.", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6ba227ec-d7cc-11e8-824f-0242ac160002", + "identifier": "6ba227ec-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Component", + "CFItemTypeURI": { + "title": "Component", + "identifier": "1f1afd62-66cd-51cb-8299-1fe5ced9df16", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/1f1afd62-66cd-51cb-8299-1fe5ced9df16" + }, + "educationLevel": [ + "07" + ], + "humanCodingScheme": "7.NS.A.2.c", + "listEnumeration": "c.", + "fullStatement": "Apply properties of operations as strategies to multiply and divide rational numbers.", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6ba22af7-d7cc-11e8-824f-0242ac160002", + "identifier": "6ba22af7-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Component", + "CFItemTypeURI": { + "title": "Component", + "identifier": "1f1afd62-66cd-51cb-8299-1fe5ced9df16", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/1f1afd62-66cd-51cb-8299-1fe5ced9df16" + }, + "educationLevel": [ + "07" + ], + "humanCodingScheme": "7.RP.A.2.c", + "listEnumeration": "c.", + "fullStatement": "Represent proportional relationships by equations. For example, if total cost t is proportional to the number n of items purchased at a constant price p, the relationship between the total cost and the number of items can be expressed as t = pn.", + "notes": "", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6ba22e04-d7cc-11e8-824f-0242ac160002", + "identifier": "6ba22e04-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Component", + "CFItemTypeURI": { + "title": "Component", + "identifier": "1f1afd62-66cd-51cb-8299-1fe5ced9df16", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/1f1afd62-66cd-51cb-8299-1fe5ced9df16" + }, + "educationLevel": [ + "07" + ], + "humanCodingScheme": "7.SP.C.8.c", + "listEnumeration": "c.", + "fullStatement": "Design and use a simulation to generate frequencies for compound events. For example, use random digits as a simulation tool to approximate the answer to the question: If 40% of donors have type A blood, what is the probability that it will take at least 4 donors to find one with type A blood?", + "notes": "", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6ba23117-d7cc-11e8-824f-0242ac160002", + "identifier": "6ba23117-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Component", + "CFItemTypeURI": { + "title": "Component", + "identifier": "1f1afd62-66cd-51cb-8299-1fe5ced9df16", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/1f1afd62-66cd-51cb-8299-1fe5ced9df16" + }, + "educationLevel": [ + "08" + ], + "humanCodingScheme": "8.EE.C.8.c", + "listEnumeration": "c.", + "fullStatement": "Solve real-world and mathematical problems leading to two linear equations in two variables. For example, given coordinates for two pairs of points, determine whether the line through the first pair of points intersects the line through the second pair.", + "notes": "", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6ba2342b-d7cc-11e8-824f-0242ac160002", + "identifier": "6ba2342b-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Component", + "CFItemTypeURI": { + "title": "Component", + "identifier": "1f1afd62-66cd-51cb-8299-1fe5ced9df16", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/1f1afd62-66cd-51cb-8299-1fe5ced9df16" + }, + "educationLevel": [ + "08" + ], + "humanCodingScheme": "8.G.A.1.c", + "listEnumeration": "c.", + "fullStatement": "Parallel lines are taken to parallel lines.", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6ba237aa-d7cc-11e8-824f-0242ac160002", + "identifier": "6ba237aa-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Component", + "CFItemTypeURI": { + "title": "Component", + "identifier": "1f1afd62-66cd-51cb-8299-1fe5ced9df16", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/1f1afd62-66cd-51cb-8299-1fe5ced9df16" + }, + "educationLevel": [ + "09", + "10", + "11", + "12" + ], + "humanCodingScheme": "HSA-SSE.B.3.c", + "listEnumeration": "c.", + "fullStatement": "Use the properties of exponents to transform expressions for exponential functions. For example the expression 1.15t can be rewritten as (1.151/12)12t ˜ 1.01212t to reveal the approximate equivalent monhly interest rate if the annual rate is 15%.", + "notes": "", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6ba23ad5-d7cc-11e8-824f-0242ac160002", + "identifier": "6ba23ad5-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Component", + "CFItemTypeURI": { + "title": "Component", + "identifier": "1f1afd62-66cd-51cb-8299-1fe5ced9df16", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/1f1afd62-66cd-51cb-8299-1fe5ced9df16" + }, + "educationLevel": [ + "09", + "10", + "11", + "12" + ], + "humanCodingScheme": "HSF-BF.A.1.c", + "listEnumeration": "c.", + "fullStatement": "(+) Compose functions. For example, if T(y) is the temperature in the atmosphere as a function of height, and h(t) is the height of a weather balloon as a function of time, then T(h(t)) is the temperature at the location of the weather balloon as a function of time.", + "notes": "", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6ba23ded-d7cc-11e8-824f-0242ac160002", + "identifier": "6ba23ded-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Component", + "CFItemTypeURI": { + "title": "Component", + "identifier": "1f1afd62-66cd-51cb-8299-1fe5ced9df16", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/1f1afd62-66cd-51cb-8299-1fe5ced9df16" + }, + "educationLevel": [ + "09", + "10", + "11", + "12" + ], + "humanCodingScheme": "HSF-BF.B.4.c", + "listEnumeration": "c.", + "fullStatement": "(+) Read values of an inverse function from a graph or a table, given that the function has an inverse.", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6ba2416d-d7cc-11e8-824f-0242ac160002", + "identifier": "6ba2416d-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Component", + "CFItemTypeURI": { + "title": "Component", + "identifier": "1f1afd62-66cd-51cb-8299-1fe5ced9df16", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/1f1afd62-66cd-51cb-8299-1fe5ced9df16" + }, + "educationLevel": [ + "09", + "10", + "11", + "12" + ], + "humanCodingScheme": "HSF-IF.C.7.c", + "listEnumeration": "c.", + "fullStatement": "Graph polynomial functions, identifying zeros when suitable factorizations are available, and showing end behavior.", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6ba24537-d7cc-11e8-824f-0242ac160002", + "identifier": "6ba24537-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Component", + "CFItemTypeURI": { + "title": "Component", + "identifier": "1f1afd62-66cd-51cb-8299-1fe5ced9df16", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/1f1afd62-66cd-51cb-8299-1fe5ced9df16" + }, + "educationLevel": [ + "09", + "10", + "11", + "12" + ], + "humanCodingScheme": "HSF-LE.A.1.c", + "listEnumeration": "c.", + "fullStatement": "Recognize situations in which a quantity grows or decays by a constant percent rate per unit interval relative to another.", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6ba24865-d7cc-11e8-824f-0242ac160002", + "identifier": "6ba24865-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Component", + "CFItemTypeURI": { + "title": "Component", + "identifier": "1f1afd62-66cd-51cb-8299-1fe5ced9df16", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/1f1afd62-66cd-51cb-8299-1fe5ced9df16" + }, + "educationLevel": [ + "09", + "10", + "11", + "12" + ], + "humanCodingScheme": "HSN-VM.B.4.c", + "listEnumeration": "c.", + "fullStatement": "Understand vector subtraction v - w as v + (-w), where -w is the additive inverse of w, with the same magnitude as w and pointing in the opposite direction. Represent vector subtraction graphically by connecting the tips in the appropriate order, and perform vector subtraction component-wise.", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6ba24be0-d7cc-11e8-824f-0242ac160002", + "identifier": "6ba24be0-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Component", + "CFItemTypeURI": { + "title": "Component", + "identifier": "1f1afd62-66cd-51cb-8299-1fe5ced9df16", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/1f1afd62-66cd-51cb-8299-1fe5ced9df16" + }, + "educationLevel": [ + "09", + "10", + "11", + "12" + ], + "humanCodingScheme": "HSS-ID.B.6.c", + "listEnumeration": "c.", + "fullStatement": "Fit a linear function for a scatter plot that suggests a linear association.", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6ba250cd-d7cc-11e8-824f-0242ac160002", + "identifier": "6ba250cd-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Component", + "CFItemTypeURI": { + "title": "Component", + "identifier": "1f1afd62-66cd-51cb-8299-1fe5ced9df16", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/1f1afd62-66cd-51cb-8299-1fe5ced9df16" + }, + "educationLevel": [ + "KG" + ], + "humanCodingScheme": "K.CC.B.4.c", + "listEnumeration": "c.", + "fullStatement": "Understand that each successive number name refers to a quantity that is one larger.", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6ba25656-d7cc-11e8-824f-0242ac160002", + "identifier": "6ba25656-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Component", + "CFItemTypeURI": { + "title": "Component", + "identifier": "1f1afd62-66cd-51cb-8299-1fe5ced9df16", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/1f1afd62-66cd-51cb-8299-1fe5ced9df16" + }, + "educationLevel": [ + "03" + ], + "humanCodingScheme": "3.MD.C.7.d", + "listEnumeration": "d.", + "fullStatement": "Recognize area as additive. Find areas of rectilinear figures by decomposing them into non-overlapping rectangles and adding the areas of the non-overlapping parts, applying this technique to solve real world problems.", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6ba25aa3-d7cc-11e8-824f-0242ac160002", + "identifier": "6ba25aa3-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Component", + "CFItemTypeURI": { + "title": "Component", + "identifier": "1f1afd62-66cd-51cb-8299-1fe5ced9df16", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/1f1afd62-66cd-51cb-8299-1fe5ced9df16" + }, + "educationLevel": [ + "03" + ], + "humanCodingScheme": "3.NF.A.3.d", + "listEnumeration": "d.", + "fullStatement": "Compare two fractions with the same numerator or the same denominator by reasoning about their size. Recognize that comparisons are valid only when the two fractions refer to the same whole. Record the results of comparisons with the symbols >, =, or <, and justify the conclusions, e.g., by using a visual fraction model.", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6ba25f3e-d7cc-11e8-824f-0242ac160002", + "identifier": "6ba25f3e-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Component", + "CFItemTypeURI": { + "title": "Component", + "identifier": "1f1afd62-66cd-51cb-8299-1fe5ced9df16", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/1f1afd62-66cd-51cb-8299-1fe5ced9df16" + }, + "educationLevel": [ + "04" + ], + "humanCodingScheme": "4.NF.B.3.d", + "listEnumeration": "d.", + "fullStatement": "Solve word problems involving addition and subtraction of fractions referring to the same whole and having like denominators, e.g., by using visual fraction models and equations to represent the problem.", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6ba2632d-d7cc-11e8-824f-0242ac160002", + "identifier": "6ba2632d-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Component", + "CFItemTypeURI": { + "title": "Component", + "identifier": "1f1afd62-66cd-51cb-8299-1fe5ced9df16", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/1f1afd62-66cd-51cb-8299-1fe5ced9df16" + }, + "educationLevel": [ + "06" + ], + "humanCodingScheme": "6.NS.C.7.d", + "listEnumeration": "d.", + "fullStatement": "Distinguish comparisons of absolute value from statements about order. For example, recognize that an account balance less than -30 dollars represents a debt greater than 30 dollars.", + "notes": "", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6ba26661-d7cc-11e8-824f-0242ac160002", + "identifier": "6ba26661-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Component", + "CFItemTypeURI": { + "title": "Component", + "identifier": "1f1afd62-66cd-51cb-8299-1fe5ced9df16", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/1f1afd62-66cd-51cb-8299-1fe5ced9df16" + }, + "educationLevel": [ + "06" + ], + "humanCodingScheme": "6.RP.A.3.d", + "listEnumeration": "d.", + "fullStatement": "Use ratio reasoning to convert measurement units; manipulate and transform units appropriately when multiplying or dividing quantities.", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6ba26991-d7cc-11e8-824f-0242ac160002", + "identifier": "6ba26991-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Component", + "CFItemTypeURI": { + "title": "Component", + "identifier": "1f1afd62-66cd-51cb-8299-1fe5ced9df16", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/1f1afd62-66cd-51cb-8299-1fe5ced9df16" + }, + "educationLevel": [ + "06" + ], + "humanCodingScheme": "6.SP.B.5.d", + "listEnumeration": "d.", + "fullStatement": "Relating the choice of measures of center and variability to the shape of the data distribution and the context in which the data were gathered.", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6ba26d02-d7cc-11e8-824f-0242ac160002", + "identifier": "6ba26d02-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Component", + "CFItemTypeURI": { + "title": "Component", + "identifier": "1f1afd62-66cd-51cb-8299-1fe5ced9df16", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/1f1afd62-66cd-51cb-8299-1fe5ced9df16" + }, + "educationLevel": [ + "07" + ], + "humanCodingScheme": "7.NS.A.1.d", + "listEnumeration": "d.", + "fullStatement": "Apply properties of operations as strategies to add and subtract rational numbers.", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6ba2703e-d7cc-11e8-824f-0242ac160002", + "identifier": "6ba2703e-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Component", + "CFItemTypeURI": { + "title": "Component", + "identifier": "1f1afd62-66cd-51cb-8299-1fe5ced9df16", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/1f1afd62-66cd-51cb-8299-1fe5ced9df16" + }, + "educationLevel": [ + "07" + ], + "humanCodingScheme": "7.NS.A.2.d", + "listEnumeration": "d.", + "fullStatement": "Convert a rational number to a decimal using long division; know that the decimal form of a rational number terminates in 0s or eventually repeats.", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6ba27388-d7cc-11e8-824f-0242ac160002", + "identifier": "6ba27388-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Component", + "CFItemTypeURI": { + "title": "Component", + "identifier": "1f1afd62-66cd-51cb-8299-1fe5ced9df16", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/1f1afd62-66cd-51cb-8299-1fe5ced9df16" + }, + "educationLevel": [ + "07" + ], + "humanCodingScheme": "7.RP.A.2.d", + "listEnumeration": "d.", + "fullStatement": "Explain what a point (x, y) on the graph of a proportional relationship means in terms of the situation, with special attention to the points (0, 0) and (1, r) where r is the unit rate.", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6ba276c6-d7cc-11e8-824f-0242ac160002", + "identifier": "6ba276c6-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Component", + "CFItemTypeURI": { + "title": "Component", + "identifier": "1f1afd62-66cd-51cb-8299-1fe5ced9df16", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/1f1afd62-66cd-51cb-8299-1fe5ced9df16" + }, + "educationLevel": [ + "09", + "10", + "11", + "12" + ], + "humanCodingScheme": "HSF-BF.B.4.d", + "listEnumeration": "d.", + "fullStatement": "(+) Produce an invertible function from a non-invertible function by restricting the domain.", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6ba27a0c-d7cc-11e8-824f-0242ac160002", + "identifier": "6ba27a0c-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Component", + "CFItemTypeURI": { + "title": "Component", + "identifier": "1f1afd62-66cd-51cb-8299-1fe5ced9df16", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/1f1afd62-66cd-51cb-8299-1fe5ced9df16" + }, + "educationLevel": [ + "09", + "10", + "11", + "12" + ], + "humanCodingScheme": "HSF-IF.C.7.d", + "listEnumeration": "d.", + "fullStatement": "(+) Graph rational functions, identifying zeros and asymptotes when suitable factorizations are available, and showing end behavior.", + "language": "en" + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6ba27db0-d7cc-11e8-824f-0242ac160002", + "identifier": "6ba27db0-d7cc-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:56:19+00:00", + "CFItemType": "Component", + "CFItemTypeURI": { + "title": "Component", + "identifier": "1f1afd62-66cd-51cb-8299-1fe5ced9df16", + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/1f1afd62-66cd-51cb-8299-1fe5ced9df16" + }, + "educationLevel": [ + "09", + "10", + "11", + "12" + ], + "humanCodingScheme": "HSF-IF.C.7.e", + "listEnumeration": "e.", + "fullStatement": "Graph exponential and logarithmic functions, showing intercepts and end behavior, and trigonometric functions, showing period, midline, and amplitude.", + "language": "en" + }, + { + "identifier": "2aec685b-f838-4d85-ae78-31a92c7e113a", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/2aec685b-f838-4d85-ae78-31a92c7e113a", + "fullStatement": "Make sense of problems and persevere in solving them.", + "lastChangeDateTime": "2022-05-09T20:17:19+00:00", + "humanCodingScheme": "K.MP1", + "language": "en", + "educationLevel": [ + "KG" + ], + "CFItemType": "Content Standard" + }, + { + "identifier": "dcd4b925-730b-4e1a-a267-888ed82b6c78", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/dcd4b925-730b-4e1a-a267-888ed82b6c78", + "fullStatement": "Reason abstractly and quantitatively.", + "lastChangeDateTime": "2022-05-09T20:17:19+00:00", + "humanCodingScheme": "K.MP2", + "language": "en", + "educationLevel": [ + "KG" + ], + "CFItemType": "Content Standard" + }, + { + "identifier": "bcd138d7-ad4d-4e39-8ff9-b6662075c1cf", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/bcd138d7-ad4d-4e39-8ff9-b6662075c1cf", + "fullStatement": "Construct viable arguments and critique the reasoning of others.", + "lastChangeDateTime": "2022-05-09T20:17:19+00:00", + "humanCodingScheme": "K.MP3", + "language": "en", + "educationLevel": [ + "KG" + ], + "CFItemType": "Content Standard" + }, + { + "identifier": "ec3d9991-c429-4f86-9d69-63b9565c0b14", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/ec3d9991-c429-4f86-9d69-63b9565c0b14", + "fullStatement": "Model with mathematics.", + "lastChangeDateTime": "2022-05-09T20:17:19+00:00", + "humanCodingScheme": "K.MP4", + "language": "en", + "educationLevel": [ + "KG" + ], + "CFItemType": "Content Standard" + }, + { + "identifier": "c1497564-3bb8-4b5f-9737-689702c4e2c9", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/c1497564-3bb8-4b5f-9737-689702c4e2c9", + "fullStatement": "Use appropriate tools strategically.", + "lastChangeDateTime": "2022-05-09T20:17:19+00:00", + "humanCodingScheme": "K.MP5", + "language": "en", + "educationLevel": [ + "KG" + ], + "CFItemType": "Content Standard" + }, + { + "identifier": "4b4dd641-9c9c-4aab-bd93-3e54ae531e28", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/4b4dd641-9c9c-4aab-bd93-3e54ae531e28", + "fullStatement": "Attend to precision.", + "lastChangeDateTime": "2022-05-09T20:17:19+00:00", + "humanCodingScheme": "K.MP6", + "language": "en", + "educationLevel": [ + "KG" + ], + "CFItemType": "Content Standard" + }, + { + "identifier": "53fc3fb3-6879-4e30-b6aa-57d846aeb4cb", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/53fc3fb3-6879-4e30-b6aa-57d846aeb4cb", + "fullStatement": "Look for and make use of structure.", + "lastChangeDateTime": "2022-05-09T20:17:19+00:00", + "humanCodingScheme": "K.MP7", + "language": "en", + "educationLevel": [ + "KG" + ], + "CFItemType": "Content Standard" + }, + { + "identifier": "fbf38719-b7eb-4b03-bf5d-f6baef79e17d", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/fbf38719-b7eb-4b03-bf5d-f6baef79e17d", + "fullStatement": "Look for and express regularity in repeated reasoning.", + "lastChangeDateTime": "2022-05-09T20:17:19+00:00", + "humanCodingScheme": "K.MP8", + "language": "en", + "educationLevel": [ + "KG" + ], + "CFItemType": "Content Standard" + }, + { + "identifier": "933c6f11-8e9f-43fc-a849-26390b860fc3", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/933c6f11-8e9f-43fc-a849-26390b860fc3", + "fullStatement": "Make sense of problems and persevere in solving them.", + "lastChangeDateTime": "2022-05-09T20:21:28+00:00", + "humanCodingScheme": "7.MP1", + "language": "en", + "CFItemType": "Content Standard" + }, + { + "identifier": "dda99b3b-9f7b-4089-8b3e-bd94f5ab9fe6", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/dda99b3b-9f7b-4089-8b3e-bd94f5ab9fe6", + "fullStatement": "Reason abstractly and quantitatively.", + "lastChangeDateTime": "2022-05-09T20:21:28+00:00", + "humanCodingScheme": "7.MP2", + "language": "en", + "CFItemType": "Content Standard" + }, + { + "identifier": "1fa3892c-daf7-45b1-a92c-1e89fb4a5746", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/1fa3892c-daf7-45b1-a92c-1e89fb4a5746", + "fullStatement": "Construct viable arguments and critique the reasoning of others.", + "lastChangeDateTime": "2022-05-09T20:21:28+00:00", + "humanCodingScheme": "7.MP3", + "language": "en", + "CFItemType": "Content Standard" + }, + { + "identifier": "c7486852-61c5-48b2-bd89-2f7fca1b0828", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/c7486852-61c5-48b2-bd89-2f7fca1b0828", + "fullStatement": "Model with mathematics.", + "lastChangeDateTime": "2022-05-09T20:21:28+00:00", + "humanCodingScheme": "7.MP4", + "language": "en", + "CFItemType": "Content Standard" + }, + { + "identifier": "f6b902b0-c6b0-4d7b-ae9a-effcf233e47e", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/f6b902b0-c6b0-4d7b-ae9a-effcf233e47e", + "fullStatement": "Use appropriate tools strategically.", + "lastChangeDateTime": "2022-05-09T20:21:28+00:00", + "humanCodingScheme": "7.MP5", + "language": "en", + "CFItemType": "Content Standard" + }, + { + "identifier": "a57644d4-73dd-47ac-9564-b972d2557e37", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/a57644d4-73dd-47ac-9564-b972d2557e37", + "fullStatement": "Attend to precision.", + "lastChangeDateTime": "2022-05-09T20:21:28+00:00", + "humanCodingScheme": "7.MP6", + "language": "en", + "CFItemType": "Content Standard" + }, + { + "identifier": "782cc96b-556c-46ac-9861-b70b248c17b5", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/782cc96b-556c-46ac-9861-b70b248c17b5", + "fullStatement": "Look for and make use of structure.", + "lastChangeDateTime": "2022-05-09T20:21:28+00:00", + "humanCodingScheme": "7.MP7", + "language": "en", + "CFItemType": "Content Standard" + }, + { + "identifier": "b0d268a5-1ca3-48b4-9112-94195de633ad", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/b0d268a5-1ca3-48b4-9112-94195de633ad", + "fullStatement": "Look for and express regularity in repeated reasoning.", + "lastChangeDateTime": "2022-05-09T20:21:28+00:00", + "humanCodingScheme": "7.MP8", + "language": "en", + "CFItemType": "Content Standard" + }, + { + "identifier": "bfd280aa-6b70-45f3-ac3d-9e8f38ac5f60", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/bfd280aa-6b70-45f3-ac3d-9e8f38ac5f60", + "fullStatement": "Make sense of problems and persevere in solving them.", + "lastChangeDateTime": "2022-05-09T20:21:28+00:00", + "humanCodingScheme": "8.MP1", + "language": "en", + "CFItemType": "Content Standard" + }, + { + "identifier": "57f6a595-e0f0-4147-85f8-3cf10b209eb0", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/57f6a595-e0f0-4147-85f8-3cf10b209eb0", + "fullStatement": "Reason abstractly and quantitatively.", + "lastChangeDateTime": "2022-05-09T20:21:28+00:00", + "humanCodingScheme": "8.MP2", + "language": "en", + "CFItemType": "Content Standard" + }, + { + "identifier": "fd1caebb-a1a6-4af4-ae57-13f8271e9e1f", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/fd1caebb-a1a6-4af4-ae57-13f8271e9e1f", + "fullStatement": "Construct viable arguments and critique the reasoning of others.", + "lastChangeDateTime": "2022-05-09T20:21:28+00:00", + "humanCodingScheme": "8.MP3", + "language": "en", + "CFItemType": "Content Standard" + }, + { + "identifier": "3ec1980d-14e5-431f-8aa7-4cf7bc010a36", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/3ec1980d-14e5-431f-8aa7-4cf7bc010a36", + "fullStatement": "Model with mathematics.", + "lastChangeDateTime": "2022-05-09T20:21:28+00:00", + "humanCodingScheme": "8.MP4", + "language": "en", + "CFItemType": "Content Standard" + }, + { + "identifier": "eee36421-cadb-4d71-8ded-6cf72fdfe011", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/eee36421-cadb-4d71-8ded-6cf72fdfe011", + "fullStatement": "Use appropriate tools strategically.", + "lastChangeDateTime": "2022-05-09T20:21:28+00:00", + "humanCodingScheme": "8.MP5", + "language": "en", + "CFItemType": "Content Standard" + }, + { + "identifier": "74a731ce-0e0b-4df7-b7e9-ada518b6d05e", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/74a731ce-0e0b-4df7-b7e9-ada518b6d05e", + "fullStatement": "Attend to precision.", + "lastChangeDateTime": "2022-05-09T20:21:28+00:00", + "humanCodingScheme": "8.MP6", + "language": "en", + "CFItemType": "Content Standard" + }, + { + "identifier": "a15def9a-8d5b-4b95-a852-1f1bd2e3d467", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/a15def9a-8d5b-4b95-a852-1f1bd2e3d467", + "fullStatement": "Look for and make use of structure.", + "lastChangeDateTime": "2022-05-09T20:21:28+00:00", + "humanCodingScheme": "8.MP7", + "language": "en", + "CFItemType": "Content Standard" + }, + { + "identifier": "5349c614-5b19-4bd5-87fd-82229ae8b1ba", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/5349c614-5b19-4bd5-87fd-82229ae8b1ba", + "fullStatement": "Look for and express regularity in repeated reasoning.", + "lastChangeDateTime": "2022-05-09T20:21:28+00:00", + "humanCodingScheme": "8.MP8", + "language": "en", + "CFItemType": "Content Standard" + }, + { + "identifier": "5d1b1f9b-f80d-4bef-a814-6f407f4e27ef", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/5d1b1f9b-f80d-4bef-a814-6f407f4e27ef", + "fullStatement": "Make sense of problems and persevere in solving them.", + "lastChangeDateTime": "2022-05-09T20:21:28+00:00", + "humanCodingScheme": "HS.MP1", + "language": "en", + "CFItemType": "Content Standard" + }, + { + "identifier": "d15e120b-73e5-45dc-be1b-e608f26290ad", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/d15e120b-73e5-45dc-be1b-e608f26290ad", + "fullStatement": "Reason abstractly and quantitatively.", + "lastChangeDateTime": "2022-05-09T20:21:28+00:00", + "humanCodingScheme": "HS.MP2", + "language": "en", + "CFItemType": "Content Standard" + }, + { + "identifier": "fe1982c2-c214-4e35-a8e6-59c37e7c33c9", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/fe1982c2-c214-4e35-a8e6-59c37e7c33c9", + "fullStatement": "Construct viable arguments and critique the reasoning of others.", + "lastChangeDateTime": "2022-05-09T20:21:28+00:00", + "humanCodingScheme": "HS.MP3", + "language": "en", + "CFItemType": "Content Standard" + }, + { + "identifier": "29230547-9d51-4093-8c2d-141266073432", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/29230547-9d51-4093-8c2d-141266073432", + "fullStatement": "Model with mathematics.", + "lastChangeDateTime": "2022-05-09T20:21:28+00:00", + "humanCodingScheme": "HS.MP4", + "language": "en", + "CFItemType": "Content Standard" + }, + { + "identifier": "1b2daac0-a390-4c94-a808-c720cee87dd3", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/1b2daac0-a390-4c94-a808-c720cee87dd3", + "fullStatement": "Use appropriate tools strategically.", + "lastChangeDateTime": "2022-05-09T20:21:28+00:00", + "humanCodingScheme": "HS.MP5", + "language": "en", + "CFItemType": "Content Standard" + }, + { + "identifier": "cc52bf76-6e8a-4ab4-9c9a-ae8c17f87e9d", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/cc52bf76-6e8a-4ab4-9c9a-ae8c17f87e9d", + "fullStatement": "Attend to precision.", + "lastChangeDateTime": "2022-05-09T20:21:28+00:00", + "humanCodingScheme": "HS.MP6", + "language": "en", + "CFItemType": "Content Standard" + }, + { + "identifier": "3dbfdbc4-0a0d-4c38-9bf9-945297bc4121", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/3dbfdbc4-0a0d-4c38-9bf9-945297bc4121", + "fullStatement": "Look for and make use of structure.", + "lastChangeDateTime": "2022-05-09T20:21:28+00:00", + "humanCodingScheme": "HS.MP7", + "language": "en", + "CFItemType": "Content Standard" + }, + { + "identifier": "25f07e74-00eb-4aae-b348-83c06271d7df", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/25f07e74-00eb-4aae-b348-83c06271d7df", + "fullStatement": "Look for and express regularity in repeated reasoning.", + "lastChangeDateTime": "2022-05-09T20:21:28+00:00", + "humanCodingScheme": "HS.MP8", + "language": "en", + "CFItemType": "Content Standard" + }, + { + "identifier": "ced70744-4824-4075-b820-690d760aea43", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/ced70744-4824-4075-b820-690d760aea43", + "fullStatement": "Standards for Mathematical Practice: Kindergarten", + "lastChangeDateTime": "2022-05-09T20:24:55+00:00", + "language": "en" + }, + { + "identifier": "2c535476-9f13-458b-8686-54bec60b88d6", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/2c535476-9f13-458b-8686-54bec60b88d6", + "fullStatement": "Make sense of problems and persevere in solving them.", + "lastChangeDateTime": "2022-05-09T20:24:55+00:00", + "humanCodingScheme": "K.MP1", + "language": "en", + "CFItemType": "Content Standard" + }, + { + "identifier": "b2fafb0e-4ed3-401c-9434-bc7863c78dd6", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/b2fafb0e-4ed3-401c-9434-bc7863c78dd6", + "fullStatement": "Reason abstractly and quantitatively.", + "lastChangeDateTime": "2022-05-09T20:24:55+00:00", + "humanCodingScheme": "K.MP2", + "language": "en", + "CFItemType": "Content Standard" + }, + { + "identifier": "669a0367-28e3-4926-bc0b-fcbf31713001", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/669a0367-28e3-4926-bc0b-fcbf31713001", + "fullStatement": "Construct viable arguments and critique the reasoning of others.", + "lastChangeDateTime": "2022-05-09T20:24:55+00:00", + "humanCodingScheme": "K.MP3", + "language": "en", + "CFItemType": "Content Standard" + }, + { + "identifier": "0b381fd7-8e97-4642-8a1a-7bb046873b51", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/0b381fd7-8e97-4642-8a1a-7bb046873b51", + "fullStatement": "Model with mathematics.", + "lastChangeDateTime": "2022-05-09T20:24:55+00:00", + "humanCodingScheme": "K.MP4", + "language": "en", + "CFItemType": "Content Standard" + }, + { + "identifier": "00592483-6bd8-4da8-aca6-947d54afcc7f", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/00592483-6bd8-4da8-aca6-947d54afcc7f", + "fullStatement": "Use appropriate tools strategically.", + "lastChangeDateTime": "2022-05-09T20:24:55+00:00", + "humanCodingScheme": "K.MP5", + "language": "en", + "CFItemType": "Content Standard" + }, + { + "identifier": "e6b4d3f5-89c9-41d7-a65b-c4f1390d4abb", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/e6b4d3f5-89c9-41d7-a65b-c4f1390d4abb", + "fullStatement": "Attend to precision.", + "lastChangeDateTime": "2022-05-09T20:24:55+00:00", + "humanCodingScheme": "K.MP6", + "language": "en", + "CFItemType": "Content Standard" + }, + { + "identifier": "773fa434-1360-4fdc-b784-30b4c5b9ab8b", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/773fa434-1360-4fdc-b784-30b4c5b9ab8b", + "fullStatement": "Look for and make use of structure.", + "lastChangeDateTime": "2022-05-09T20:24:55+00:00", + "humanCodingScheme": "K.MP7", + "language": "en", + "CFItemType": "Content Standard" + }, + { + "identifier": "7244b236-9bad-4896-8def-68469e20dd9f", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/7244b236-9bad-4896-8def-68469e20dd9f", + "fullStatement": "Look for and express regularity in repeated reasoning.", + "lastChangeDateTime": "2022-05-09T20:24:55+00:00", + "humanCodingScheme": "K.MP8", + "language": "en", + "CFItemType": "Content Standard" + }, + { + "identifier": "5852d648-2b96-47cc-9736-e6e8ffd541db", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/5852d648-2b96-47cc-9736-e6e8ffd541db", + "fullStatement": "Standards for Mathematical Practice: Grade 1", + "lastChangeDateTime": "2022-05-09T20:24:55+00:00", + "language": "en" + }, + { + "identifier": "5fbf1c38-c3ad-484c-9346-e83dc3b35590", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/5fbf1c38-c3ad-484c-9346-e83dc3b35590", + "fullStatement": "Make sense of problems and persevere in solving them.", + "lastChangeDateTime": "2022-05-09T20:24:55+00:00", + "humanCodingScheme": "1.MP1", + "language": "en", + "CFItemType": "Content Standard" + }, + { + "identifier": "b4b7c6d5-77c3-43c8-8b81-0abb5ab4a25e", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/b4b7c6d5-77c3-43c8-8b81-0abb5ab4a25e", + "fullStatement": "Reason abstractly and quantitatively.", + "lastChangeDateTime": "2022-05-09T20:24:55+00:00", + "humanCodingScheme": "1.MP2", + "language": "en", + "CFItemType": "Content Standard" + }, + { + "identifier": "d781ebb4-b2f9-4704-a51f-5442225bc6d7", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/d781ebb4-b2f9-4704-a51f-5442225bc6d7", + "fullStatement": "Construct viable arguments and critique the reasoning of others.", + "lastChangeDateTime": "2022-05-09T20:24:55+00:00", + "humanCodingScheme": "1.MP3", + "language": "en", + "CFItemType": "Content Standard" + }, + { + "identifier": "6699998b-01fa-406d-8827-3b62673f6515", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6699998b-01fa-406d-8827-3b62673f6515", + "fullStatement": "Model with mathematics.", + "lastChangeDateTime": "2022-05-09T20:24:55+00:00", + "humanCodingScheme": "1.MP4", + "language": "en", + "CFItemType": "Content Standard" + }, + { + "identifier": "b119a28a-be88-4d86-9263-c785cbe25366", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/b119a28a-be88-4d86-9263-c785cbe25366", + "fullStatement": "Use appropriate tools strategically.", + "lastChangeDateTime": "2022-05-09T20:24:55+00:00", + "humanCodingScheme": "1.MP5", + "language": "en", + "CFItemType": "Content Standard" + }, + { + "identifier": "bc372236-5406-4a40-bd11-8b88eb5ee9be", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/bc372236-5406-4a40-bd11-8b88eb5ee9be", + "fullStatement": "Attend to precision.", + "lastChangeDateTime": "2022-05-09T20:24:55+00:00", + "humanCodingScheme": "1.MP6", + "language": "en", + "CFItemType": "Content Standard" + }, + { + "identifier": "a22476fc-cc30-46c2-a7d5-74aac75ef60b", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/a22476fc-cc30-46c2-a7d5-74aac75ef60b", + "fullStatement": "Look for and make use of structure.", + "lastChangeDateTime": "2022-05-09T20:24:55+00:00", + "humanCodingScheme": "1.MP7", + "language": "en", + "CFItemType": "Content Standard" + }, + { + "identifier": "635a6a3c-f8c7-4083-95dd-91359393257f", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/635a6a3c-f8c7-4083-95dd-91359393257f", + "fullStatement": "Look for and express regularity in repeated reasoning.", + "lastChangeDateTime": "2022-05-09T20:24:55+00:00", + "humanCodingScheme": "1.MP8", + "language": "en", + "CFItemType": "Content Standard" + }, + { + "identifier": "6e113c21-fb9d-44c0-9945-de0d00d74c4d", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6e113c21-fb9d-44c0-9945-de0d00d74c4d", + "fullStatement": "Standards for Mathematical Practice: Grade 2", + "lastChangeDateTime": "2022-05-09T20:24:55+00:00", + "language": "en" + }, + { + "identifier": "7ef9937f-7e62-4ae2-bb20-4a8345499fc2", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/7ef9937f-7e62-4ae2-bb20-4a8345499fc2", + "fullStatement": "Make sense of problems and persevere in solving them.", + "lastChangeDateTime": "2022-05-09T20:24:55+00:00", + "humanCodingScheme": "2.MP1", + "language": "en", + "CFItemType": "Content Standard" + }, + { + "identifier": "a140cefc-124c-439d-b450-801bbf1be566", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/a140cefc-124c-439d-b450-801bbf1be566", + "fullStatement": "Reason abstractly and quantitatively.", + "lastChangeDateTime": "2022-05-09T20:24:55+00:00", + "humanCodingScheme": "2.MP2", + "language": "en", + "CFItemType": "Content Standard" + }, + { + "identifier": "1b48179d-e3da-43a5-a2af-2ea90e09138b", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/1b48179d-e3da-43a5-a2af-2ea90e09138b", + "fullStatement": "Construct viable arguments and critique the reasoning of others.", + "lastChangeDateTime": "2022-05-09T20:24:55+00:00", + "humanCodingScheme": "2.MP3", + "language": "en", + "CFItemType": "Content Standard" + }, + { + "identifier": "9afbe749-6c7f-480d-9d10-0e4a0f5b48cf", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/9afbe749-6c7f-480d-9d10-0e4a0f5b48cf", + "fullStatement": "Model with mathematics.", + "lastChangeDateTime": "2022-05-09T20:24:55+00:00", + "humanCodingScheme": "2.MP4", + "language": "en", + "CFItemType": "Content Standard" + }, + { + "identifier": "592123d6-dda5-483d-9947-b966a5d1cd89", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/592123d6-dda5-483d-9947-b966a5d1cd89", + "fullStatement": "Use appropriate tools strategically.", + "lastChangeDateTime": "2022-05-09T20:24:55+00:00", + "humanCodingScheme": "2.MP5", + "language": "en", + "CFItemType": "Content Standard" + }, + { + "identifier": "c111a3b6-286c-409f-9fb4-ec662c5b856f", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/c111a3b6-286c-409f-9fb4-ec662c5b856f", + "fullStatement": "Attend to precision.", + "lastChangeDateTime": "2022-05-09T20:24:55+00:00", + "humanCodingScheme": "2.MP6", + "language": "en", + "CFItemType": "Content Standard" + }, + { + "identifier": "c7f75e3e-5854-4357-ab76-917c3ccf04b5", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/c7f75e3e-5854-4357-ab76-917c3ccf04b5", + "fullStatement": "Look for and make use of structure.", + "lastChangeDateTime": "2022-05-09T20:24:55+00:00", + "humanCodingScheme": "2.MP7", + "language": "en", + "CFItemType": "Content Standard" + }, + { + "identifier": "46caf4e1-5835-4cf8-83ae-1718810e4fa1", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/46caf4e1-5835-4cf8-83ae-1718810e4fa1", + "fullStatement": "Look for and express regularity in repeated reasoning.", + "lastChangeDateTime": "2022-05-09T20:24:55+00:00", + "humanCodingScheme": "2.MP8", + "language": "en", + "CFItemType": "Content Standard" + }, + { + "identifier": "6f0bb25b-4587-4888-8cfe-4fd54ce3aefb", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6f0bb25b-4587-4888-8cfe-4fd54ce3aefb", + "fullStatement": "Standards for Mathematical Practice: Grade 3", + "lastChangeDateTime": "2022-05-09T20:24:55+00:00", + "language": "en" + }, + { + "identifier": "a6243334-bcc0-4659-9898-9d212cce236e", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/a6243334-bcc0-4659-9898-9d212cce236e", + "fullStatement": "Make sense of problems and persevere in solving them.", + "lastChangeDateTime": "2022-05-09T20:24:55+00:00", + "humanCodingScheme": "3.MP1", + "language": "en", + "CFItemType": "Content Standard" + }, + { + "identifier": "679c68f6-5dad-4cfd-b5ae-8b316309fb7f", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/679c68f6-5dad-4cfd-b5ae-8b316309fb7f", + "fullStatement": "Reason abstractly and quantitatively.", + "lastChangeDateTime": "2022-05-09T20:24:55+00:00", + "humanCodingScheme": "3.MP2", + "language": "en", + "CFItemType": "Content Standard" + }, + { + "identifier": "290ba6f3-3b17-496a-8986-0b9dcb22b292", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/290ba6f3-3b17-496a-8986-0b9dcb22b292", + "fullStatement": "Construct viable arguments and critique the reasoning of others.", + "lastChangeDateTime": "2022-05-09T20:24:55+00:00", + "humanCodingScheme": "3.MP3", + "language": "en", + "CFItemType": "Content Standard" + }, + { + "identifier": "7b025668-d9c1-40dc-99f9-8d58a2b647d5", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/7b025668-d9c1-40dc-99f9-8d58a2b647d5", + "fullStatement": "Model with mathematics.", + "lastChangeDateTime": "2022-05-09T20:24:55+00:00", + "humanCodingScheme": "3.MP4", + "language": "en", + "CFItemType": "Content Standard" + }, + { + "identifier": "8bf65d14-d8c2-4abc-b7c5-1f546847125c", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/8bf65d14-d8c2-4abc-b7c5-1f546847125c", + "fullStatement": "Use appropriate tools strategically.", + "lastChangeDateTime": "2022-05-09T20:24:55+00:00", + "humanCodingScheme": "3.MP5", + "language": "en", + "CFItemType": "Content Standard" + }, + { + "identifier": "818dc46a-a23c-4ead-b2b9-cd7e2a1a85c6", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/818dc46a-a23c-4ead-b2b9-cd7e2a1a85c6", + "fullStatement": "Attend to precision.", + "lastChangeDateTime": "2022-05-09T20:24:55+00:00", + "humanCodingScheme": "3.MP6", + "language": "en", + "CFItemType": "Content Standard" + }, + { + "identifier": "81fe2d1a-6d29-4cbd-ab28-e992b250a176", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/81fe2d1a-6d29-4cbd-ab28-e992b250a176", + "fullStatement": "Look for and make use of structure.", + "lastChangeDateTime": "2022-05-09T20:24:55+00:00", + "humanCodingScheme": "3.MP7", + "language": "en", + "CFItemType": "Content Standard" + }, + { + "identifier": "38fddec8-6fab-4015-b864-a0c1d78fae3f", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/38fddec8-6fab-4015-b864-a0c1d78fae3f", + "fullStatement": "Look for and express regularity in repeated reasoning.", + "lastChangeDateTime": "2022-05-09T20:24:55+00:00", + "humanCodingScheme": "3.MP8", + "language": "en", + "CFItemType": "Content Standard" + }, + { + "identifier": "6078f24b-1177-4a80-8a06-01aefa091dd3", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6078f24b-1177-4a80-8a06-01aefa091dd3", + "fullStatement": "Standards for Mathematical Practice: Grade 4", + "lastChangeDateTime": "2022-05-09T20:24:55+00:00", + "language": "en" + }, + { + "identifier": "600207bf-3404-4d79-9400-b9cce5b699c7", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/600207bf-3404-4d79-9400-b9cce5b699c7", + "fullStatement": "Make sense of problems and persevere in solving them.", + "lastChangeDateTime": "2022-05-09T20:24:55+00:00", + "humanCodingScheme": "4.MP1", + "language": "en", + "CFItemType": "Content Standard" + }, + { + "identifier": "2348c823-5f48-4670-b667-f2a8f8bf7124", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/2348c823-5f48-4670-b667-f2a8f8bf7124", + "fullStatement": "Reason abstractly and quantitatively.", + "lastChangeDateTime": "2022-05-09T20:24:55+00:00", + "humanCodingScheme": "4.MP2", + "language": "en", + "CFItemType": "Content Standard" + }, + { + "identifier": "685640a9-93cd-4c8c-b17b-2edc7cc4c26e", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/685640a9-93cd-4c8c-b17b-2edc7cc4c26e", + "fullStatement": "Construct viable arguments and critique the reasoning of others.", + "lastChangeDateTime": "2022-05-09T20:24:55+00:00", + "humanCodingScheme": "4.MP3", + "language": "en", + "CFItemType": "Content Standard" + }, + { + "identifier": "c59b544d-f3a8-45fe-8ce5-5855d772f5c0", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/c59b544d-f3a8-45fe-8ce5-5855d772f5c0", + "fullStatement": "Model with mathematics.", + "lastChangeDateTime": "2022-05-09T20:24:55+00:00", + "humanCodingScheme": "4.MP4", + "language": "en", + "CFItemType": "Content Standard" + }, + { + "identifier": "d750e9b5-5498-468e-b8ad-a387d86c8965", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/d750e9b5-5498-468e-b8ad-a387d86c8965", + "fullStatement": "Use appropriate tools strategically.", + "lastChangeDateTime": "2022-05-09T20:24:55+00:00", + "humanCodingScheme": "4.MP5", + "language": "en", + "CFItemType": "Content Standard" + }, + { + "identifier": "dbe409b8-7bb0-4e43-9043-d6736209e781", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/dbe409b8-7bb0-4e43-9043-d6736209e781", + "fullStatement": "Attend to precision.", + "lastChangeDateTime": "2022-05-09T20:24:55+00:00", + "humanCodingScheme": "4.MP6", + "language": "en", + "CFItemType": "Content Standard" + }, + { + "identifier": "b3ff2e2a-9bfe-44c3-b58d-ea335b92a5de", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/b3ff2e2a-9bfe-44c3-b58d-ea335b92a5de", + "fullStatement": "Look for and make use of structure.", + "lastChangeDateTime": "2022-05-09T20:24:55+00:00", + "humanCodingScheme": "4.MP7", + "language": "en", + "CFItemType": "Content Standard" + }, + { + "identifier": "d76d967c-1f92-4c06-8ff2-e77250ce865c", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/d76d967c-1f92-4c06-8ff2-e77250ce865c", + "fullStatement": "Look for and express regularity in repeated reasoning.", + "lastChangeDateTime": "2022-05-09T20:24:55+00:00", + "humanCodingScheme": "4.MP8", + "language": "en", + "CFItemType": "Content Standard" + }, + { + "identifier": "c86af86e-0243-498b-b177-da1d3b398ae3", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/c86af86e-0243-498b-b177-da1d3b398ae3", + "fullStatement": "Standards for Mathematical Practice: Grade 5", + "lastChangeDateTime": "2022-05-09T20:24:55+00:00", + "language": "en" + }, + { + "identifier": "cf2ae260-718c-43dc-acde-19aa1297daff", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/cf2ae260-718c-43dc-acde-19aa1297daff", + "fullStatement": "Make sense of problems and persevere in solving them.", + "lastChangeDateTime": "2022-05-09T20:24:55+00:00", + "humanCodingScheme": "5.MP1", + "language": "en", + "CFItemType": "Content Standard" + }, + { + "identifier": "e68059b4-882d-4536-bc11-d35cb8f04b36", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/e68059b4-882d-4536-bc11-d35cb8f04b36", + "fullStatement": "Reason abstractly and quantitatively.", + "lastChangeDateTime": "2022-05-09T20:24:55+00:00", + "humanCodingScheme": "5.MP2", + "language": "en", + "CFItemType": "Content Standard" + }, + { + "identifier": "77fda01e-4a52-42a8-bee2-1bc9a61382b2", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/77fda01e-4a52-42a8-bee2-1bc9a61382b2", + "fullStatement": "Construct viable arguments and critique the reasoning of others.", + "lastChangeDateTime": "2022-05-09T20:24:55+00:00", + "humanCodingScheme": "5.MP3", + "language": "en", + "CFItemType": "Content Standard" + }, + { + "identifier": "1241dd99-c8f2-4228-adb7-0e4675ed23d4", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/1241dd99-c8f2-4228-adb7-0e4675ed23d4", + "fullStatement": "Model with mathematics.", + "lastChangeDateTime": "2022-05-09T20:24:55+00:00", + "humanCodingScheme": "5.MP4", + "language": "en", + "CFItemType": "Content Standard" + }, + { + "identifier": "a4705798-7e3c-4bab-bca9-26edf2a9e4bf", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/a4705798-7e3c-4bab-bca9-26edf2a9e4bf", + "fullStatement": "Use appropriate tools strategically.", + "lastChangeDateTime": "2022-05-09T20:24:55+00:00", + "humanCodingScheme": "5.MP5", + "language": "en", + "CFItemType": "Content Standard" + }, + { + "identifier": "7fb11367-5dcf-4ecb-8f0e-f1c4849c734d", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/7fb11367-5dcf-4ecb-8f0e-f1c4849c734d", + "fullStatement": "Attend to precision.", + "lastChangeDateTime": "2022-05-09T20:24:55+00:00", + "humanCodingScheme": "5.MP6", + "language": "en", + "CFItemType": "Content Standard" + }, + { + "identifier": "3299c99e-0e94-49a0-b180-d466c8ab3a22", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/3299c99e-0e94-49a0-b180-d466c8ab3a22", + "fullStatement": "Look for and make use of structure.", + "lastChangeDateTime": "2022-05-09T20:24:55+00:00", + "humanCodingScheme": "5.MP7", + "language": "en", + "CFItemType": "Content Standard" + }, + { + "identifier": "ed17c711-dba6-4d67-937f-fdbf6edb6d6f", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/ed17c711-dba6-4d67-937f-fdbf6edb6d6f", + "fullStatement": "Look for and express regularity in repeated reasoning.", + "lastChangeDateTime": "2022-05-09T20:24:55+00:00", + "humanCodingScheme": "5.MP8", + "language": "en", + "CFItemType": "Content Standard" + }, + { + "identifier": "9c74c327-3fab-42c7-849f-7562b81e65f9", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/9c74c327-3fab-42c7-849f-7562b81e65f9", + "fullStatement": "Standards for Mathematical Practice: Grade 6", + "lastChangeDateTime": "2022-05-09T20:24:55+00:00", + "language": "en" + }, + { + "identifier": "36000f7e-5fa9-47d1-ab6a-9cf93dc0b336", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/36000f7e-5fa9-47d1-ab6a-9cf93dc0b336", + "fullStatement": "Make sense of problems and persevere in solving them.", + "lastChangeDateTime": "2022-05-09T20:24:55+00:00", + "humanCodingScheme": "6.MP1", + "language": "en", + "CFItemType": "Content Standard" + }, + { + "identifier": "74381e15-fd87-4b71-9429-aece79dd2d03", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/74381e15-fd87-4b71-9429-aece79dd2d03", + "fullStatement": "Reason abstractly and quantitatively.", + "lastChangeDateTime": "2022-05-09T20:24:55+00:00", + "humanCodingScheme": "6.MP2", + "language": "en", + "CFItemType": "Content Standard" + }, + { + "identifier": "feb60c25-a92d-43fa-9726-def32ea00b1e", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/feb60c25-a92d-43fa-9726-def32ea00b1e", + "fullStatement": "Construct viable arguments and critique the reasoning of others.", + "lastChangeDateTime": "2022-05-09T20:24:55+00:00", + "humanCodingScheme": "6.MP3", + "language": "en", + "CFItemType": "Content Standard" + }, + { + "identifier": "9bcc0416-1cf0-43fa-a3f1-cd7e730a1dbe", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/9bcc0416-1cf0-43fa-a3f1-cd7e730a1dbe", + "fullStatement": "Model with mathematics.", + "lastChangeDateTime": "2022-05-09T20:24:55+00:00", + "humanCodingScheme": "6.MP4", + "language": "en", + "CFItemType": "Content Standard" + }, + { + "identifier": "1d88548a-3717-46ac-bb9a-5a3b65715325", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/1d88548a-3717-46ac-bb9a-5a3b65715325", + "fullStatement": "Use appropriate tools strategically.", + "lastChangeDateTime": "2022-05-09T20:24:55+00:00", + "humanCodingScheme": "6.MP5", + "language": "en", + "CFItemType": "Content Standard" + }, + { + "identifier": "5dac7153-843d-4b8f-b210-e5e5b1267032", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/5dac7153-843d-4b8f-b210-e5e5b1267032", + "fullStatement": "Attend to precision.", + "lastChangeDateTime": "2022-05-09T20:24:55+00:00", + "humanCodingScheme": "6.MP6", + "language": "en", + "CFItemType": "Content Standard" + }, + { + "identifier": "cfb61941-38e5-49d1-aa1c-2ee582bf07bd", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/cfb61941-38e5-49d1-aa1c-2ee582bf07bd", + "fullStatement": "Look for and make use of structure.", + "lastChangeDateTime": "2022-05-09T20:24:55+00:00", + "humanCodingScheme": "6.MP7", + "language": "en", + "CFItemType": "Content Standard" + }, + { + "identifier": "4047e759-351a-4225-bebe-fa03868b07e5", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/4047e759-351a-4225-bebe-fa03868b07e5", + "fullStatement": "Look for and express regularity in repeated reasoning.", + "lastChangeDateTime": "2022-05-09T20:24:55+00:00", + "humanCodingScheme": "6.MP8", + "language": "en", + "CFItemType": "Content Standard" + }, + { + "identifier": "42e8c484-cb13-4024-9314-bceab47dc614", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/42e8c484-cb13-4024-9314-bceab47dc614", + "fullStatement": "Standards for Mathematical Practice: Grade 7", + "lastChangeDateTime": "2022-05-09T20:24:55+00:00", + "language": "en" + }, + { + "identifier": "09a3410a-85b1-4974-8a05-a5db067eaaac", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/09a3410a-85b1-4974-8a05-a5db067eaaac", + "fullStatement": "Make sense of problems and persevere in solving them.", + "lastChangeDateTime": "2022-05-09T20:24:55+00:00", + "humanCodingScheme": "7.MP1", + "language": "en", + "CFItemType": "Content Standard" + }, + { + "identifier": "f75089ae-d7b3-4540-be65-13319610d73a", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/f75089ae-d7b3-4540-be65-13319610d73a", + "fullStatement": "Reason abstractly and quantitatively.", + "lastChangeDateTime": "2022-05-09T20:24:55+00:00", + "humanCodingScheme": "7.MP2", + "language": "en", + "CFItemType": "Content Standard" + }, + { + "identifier": "98565139-2c4f-4163-8b97-88fc347aec85", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/98565139-2c4f-4163-8b97-88fc347aec85", + "fullStatement": "Construct viable arguments and critique the reasoning of others.", + "lastChangeDateTime": "2022-05-09T20:24:55+00:00", + "humanCodingScheme": "7.MP3", + "language": "en", + "CFItemType": "Content Standard" + }, + { + "identifier": "87c18c39-c179-40e5-89fa-ecb921735ecc", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/87c18c39-c179-40e5-89fa-ecb921735ecc", + "fullStatement": "Model with mathematics.", + "lastChangeDateTime": "2022-05-09T20:24:55+00:00", + "humanCodingScheme": "7.MP4", + "language": "en", + "CFItemType": "Content Standard" + }, + { + "identifier": "cf225053-f338-4f08-b0fa-3d23803779eb", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/cf225053-f338-4f08-b0fa-3d23803779eb", + "fullStatement": "Use appropriate tools strategically.", + "lastChangeDateTime": "2022-05-09T20:24:55+00:00", + "humanCodingScheme": "7.MP5", + "language": "en", + "CFItemType": "Content Standard" + }, + { + "identifier": "51fe888a-8a2a-40a4-8744-742d3f9af296", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/51fe888a-8a2a-40a4-8744-742d3f9af296", + "fullStatement": "Attend to precision.", + "lastChangeDateTime": "2022-05-09T20:24:55+00:00", + "humanCodingScheme": "7.MP6", + "language": "en", + "CFItemType": "Content Standard" + }, + { + "identifier": "e00a3a42-5832-4722-913f-c6e9686bf17f", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/e00a3a42-5832-4722-913f-c6e9686bf17f", + "fullStatement": "Look for and make use of structure.", + "lastChangeDateTime": "2022-05-09T20:24:55+00:00", + "humanCodingScheme": "7.MP7", + "language": "en", + "CFItemType": "Content Standard" + }, + { + "identifier": "2764a521-9336-40a7-9d10-99a9b557ecd5", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/2764a521-9336-40a7-9d10-99a9b557ecd5", + "fullStatement": "Look for and express regularity in repeated reasoning.", + "lastChangeDateTime": "2022-05-09T20:24:55+00:00", + "humanCodingScheme": "7.MP8", + "language": "en", + "CFItemType": "Content Standard" + }, + { + "identifier": "603def9b-9696-4721-aaf7-464f4d4cdc48", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/603def9b-9696-4721-aaf7-464f4d4cdc48", + "fullStatement": "Standards for Mathematical Practice: Grade 8", + "lastChangeDateTime": "2022-05-09T20:24:55+00:00", + "language": "en" + }, + { + "identifier": "8fed1d2f-2a46-4cb2-8b40-57bb732e5a33", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/8fed1d2f-2a46-4cb2-8b40-57bb732e5a33", + "fullStatement": "Make sense of problems and persevere in solving them.", + "lastChangeDateTime": "2022-05-09T20:24:55+00:00", + "humanCodingScheme": "8.MP1", + "language": "en", + "CFItemType": "Content Standard" + }, + { + "identifier": "e57ffc4d-badc-4c62-85f8-df6d2599019c", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/e57ffc4d-badc-4c62-85f8-df6d2599019c", + "fullStatement": "Reason abstractly and quantitatively.", + "lastChangeDateTime": "2022-05-09T20:24:55+00:00", + "humanCodingScheme": "8.MP2", + "language": "en", + "CFItemType": "Content Standard" + }, + { + "identifier": "5e5d9d9e-6a24-4499-b6f9-6b9c6c7e0333", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/5e5d9d9e-6a24-4499-b6f9-6b9c6c7e0333", + "fullStatement": "Construct viable arguments and critique the reasoning of others.", + "lastChangeDateTime": "2022-05-09T20:24:55+00:00", + "humanCodingScheme": "8.MP3", + "language": "en", + "CFItemType": "Content Standard" + }, + { + "identifier": "c3a3d5d0-62c5-403a-82b8-508b41ca9590", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/c3a3d5d0-62c5-403a-82b8-508b41ca9590", + "fullStatement": "Model with mathematics.", + "lastChangeDateTime": "2022-05-09T20:24:55+00:00", + "humanCodingScheme": "8.MP4", + "language": "en", + "CFItemType": "Content Standard" + }, + { + "identifier": "26bb6ade-7f0f-4ee3-bff0-ad7d977c7a26", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/26bb6ade-7f0f-4ee3-bff0-ad7d977c7a26", + "fullStatement": "Use appropriate tools strategically.", + "lastChangeDateTime": "2022-05-09T20:24:55+00:00", + "humanCodingScheme": "8.MP5", + "language": "en", + "CFItemType": "Content Standard" + }, + { + "identifier": "36efbbc0-b8fa-4608-b8f9-ef74b24c9c25", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/36efbbc0-b8fa-4608-b8f9-ef74b24c9c25", + "fullStatement": "Attend to precision.", + "lastChangeDateTime": "2022-05-09T20:24:55+00:00", + "humanCodingScheme": "8.MP6", + "language": "en", + "CFItemType": "Content Standard" + }, + { + "identifier": "3d43e565-fca4-4bb3-8449-c1748f9a0e80", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/3d43e565-fca4-4bb3-8449-c1748f9a0e80", + "fullStatement": "Look for and make use of structure.", + "lastChangeDateTime": "2022-05-09T20:24:55+00:00", + "humanCodingScheme": "8.MP7", + "language": "en", + "CFItemType": "Content Standard" + }, + { + "identifier": "35743102-a5ef-4b85-93f1-592e35bf0a31", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/35743102-a5ef-4b85-93f1-592e35bf0a31", + "fullStatement": "Look for and express regularity in repeated reasoning.", + "lastChangeDateTime": "2022-05-09T20:24:55+00:00", + "humanCodingScheme": "8.MP8", + "language": "en", + "CFItemType": "Content Standard" + }, + { + "identifier": "1f0ff35c-7ff2-4153-b307-ccb583170227", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/1f0ff35c-7ff2-4153-b307-ccb583170227", + "fullStatement": "Standards for Mathematical Practice: High School", + "lastChangeDateTime": "2022-05-09T20:24:55+00:00", + "language": "en" + }, + { + "identifier": "971ece10-7750-41cf-a8e6-26abc66ac507", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/971ece10-7750-41cf-a8e6-26abc66ac507", + "fullStatement": "Make sense of problems and persevere in solving them.", + "lastChangeDateTime": "2022-05-09T20:24:55+00:00", + "humanCodingScheme": "HS.MP1", + "language": "en", + "CFItemType": "Content Standard" + }, + { + "identifier": "13978cb3-6231-4836-800e-68e594825c99", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/13978cb3-6231-4836-800e-68e594825c99", + "fullStatement": "Reason abstractly and quantitatively.", + "lastChangeDateTime": "2022-05-09T20:24:55+00:00", + "humanCodingScheme": "HS.MP2", + "language": "en", + "CFItemType": "Content Standard" + }, + { + "identifier": "590e8d5e-84cd-4b50-97f3-218568e51d61", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/590e8d5e-84cd-4b50-97f3-218568e51d61", + "fullStatement": "Construct viable arguments and critique the reasoning of others.", + "lastChangeDateTime": "2022-05-09T20:24:55+00:00", + "humanCodingScheme": "HS.MP3", + "language": "en", + "CFItemType": "Content Standard" + }, + { + "identifier": "2b81a18a-9f54-4af5-bc05-b0c1373d4da8", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/2b81a18a-9f54-4af5-bc05-b0c1373d4da8", + "fullStatement": "Model with mathematics.", + "lastChangeDateTime": "2022-05-09T20:24:55+00:00", + "humanCodingScheme": "HS.MP4", + "language": "en", + "CFItemType": "Content Standard" + }, + { + "identifier": "d922d8a8-6813-4f48-a67f-6f5310233393", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/d922d8a8-6813-4f48-a67f-6f5310233393", + "fullStatement": "Use appropriate tools strategically.", + "lastChangeDateTime": "2022-05-09T20:24:55+00:00", + "humanCodingScheme": "HS.MP5", + "language": "en", + "CFItemType": "Content Standard" + }, + { + "identifier": "c1d376fb-8824-4089-8600-9b11944cf8d2", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/c1d376fb-8824-4089-8600-9b11944cf8d2", + "fullStatement": "Attend to precision.", + "lastChangeDateTime": "2022-05-09T20:24:55+00:00", + "humanCodingScheme": "HS.MP6", + "language": "en", + "CFItemType": "Content Standard" + }, + { + "identifier": "0e2a3a6d-e495-4531-9784-aa77ad4c2510", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/0e2a3a6d-e495-4531-9784-aa77ad4c2510", + "fullStatement": "Look for and make use of structure.", + "lastChangeDateTime": "2022-05-09T20:24:55+00:00", + "humanCodingScheme": "HS.MP7", + "language": "en", + "CFItemType": "Content Standard" + }, + { + "identifier": "0eb54431-361c-4183-8c24-70b487e43073", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/0eb54431-361c-4183-8c24-70b487e43073", + "fullStatement": "Look for and express regularity in repeated reasoning.", + "lastChangeDateTime": "2022-05-09T20:24:55+00:00", + "humanCodingScheme": "HS.MP8", + "language": "en", + "CFItemType": "Content Standard" + } + ], + "CFAssociations": [ + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c302dd44-d7cd-11e8-824f-0242ac160002", + "identifier": "c302dd44-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "Standards for Mathematical Practice", + "identifier": "6b9b08e6-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9b08e6-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "Common Core State Standards for Math", + "identifier": "c6496676-d7cb-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/c6496676-d7cb-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c302dfa6-d7cd-11e8-824f-0242ac160002", + "identifier": "c302dfa6-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "MP1", + "identifier": "6b9ca36a-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9ca36a-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "Standards for Mathematical Practice", + "identifier": "6b9b08e6-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9b08e6-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c302e1da-d7cd-11e8-824f-0242ac160002", + "identifier": "c302e1da-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "MP2", + "identifier": "6b9dd3bc-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9dd3bc-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "Standards for Mathematical Practice", + "identifier": "6b9b08e6-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9b08e6-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c302e3f1-d7cd-11e8-824f-0242ac160002", + "identifier": "c302e3f1-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "MP3", + "identifier": "6b9e9614-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9e9614-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "Standards for Mathematical Practice", + "identifier": "6b9b08e6-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9b08e6-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c302e607-d7cd-11e8-824f-0242ac160002", + "identifier": "c302e607-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "MP4", + "identifier": "6b9f345f-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9f345f-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "Standards for Mathematical Practice", + "identifier": "6b9b08e6-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9b08e6-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c302e820-d7cd-11e8-824f-0242ac160002", + "identifier": "c302e820-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "MP5", + "identifier": "6b9fca17-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9fca17-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "Standards for Mathematical Practice", + "identifier": "6b9b08e6-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9b08e6-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c302ea41-d7cd-11e8-824f-0242ac160002", + "identifier": "c302ea41-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "MP6", + "identifier": "6ba033ff-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6ba033ff-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "Standards for Mathematical Practice", + "identifier": "6b9b08e6-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9b08e6-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c302ec55-d7cd-11e8-824f-0242ac160002", + "identifier": "c302ec55-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "MP7", + "identifier": "6ba09141-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6ba09141-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "Standards for Mathematical Practice", + "identifier": "6b9b08e6-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9b08e6-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c302eead-d7cd-11e8-824f-0242ac160002", + "identifier": "c302eead-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "MP8", + "identifier": "6ba0d653-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6ba0d653-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "Standards for Mathematical Practice", + "identifier": "6b9b08e6-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9b08e6-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c302f0cd-d7cd-11e8-824f-0242ac160002", + "identifier": "c302f0cd-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "K.CC.A", + "identifier": "6b9b0011-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9b0011-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "Counting & Cardinality", + "identifier": "6b9b0bbe-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9b0bbe-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c302f2e3-d7cd-11e8-824f-0242ac160002", + "identifier": "c302f2e3-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "K.CC.B", + "identifier": "6b9b02df-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9b02df-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "Counting & Cardinality", + "identifier": "6b9b0bbe-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9b0bbe-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c302f4f9-d7cd-11e8-824f-0242ac160002", + "identifier": "c302f4f9-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "K.CC.C", + "identifier": "6b9b05a0-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9b05a0-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "Counting & Cardinality", + "identifier": "6b9b0bbe-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9b0bbe-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c302f710-d7cd-11e8-824f-0242ac160002", + "identifier": "c302f710-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "K.CC.A.1", + "identifier": "6b9c9637-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9c9637-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "K.CC.A", + "identifier": "6b9b0011-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9b0011-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c302f92b-d7cd-11e8-824f-0242ac160002", + "identifier": "c302f92b-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "K.CC.A.2", + "identifier": "6b9dc8da-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9dc8da-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "K.CC.A", + "identifier": "6b9b0011-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9b0011-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c302fb46-d7cd-11e8-824f-0242ac160002", + "identifier": "c302fb46-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "K.CC.A.3", + "identifier": "6b9e8c53-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9e8c53-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "K.CC.A", + "identifier": "6b9b0011-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9b0011-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c302fd63-d7cd-11e8-824f-0242ac160002", + "identifier": "c302fd63-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "K.CC.B.4", + "identifier": "6b9f2c57-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9f2c57-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "K.CC.B", + "identifier": "6b9b02df-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9b02df-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c302ff82-d7cd-11e8-824f-0242ac160002", + "identifier": "c302ff82-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "K.CC.B.5", + "identifier": "6b9fbd0d-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9fbd0d-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "K.CC.B", + "identifier": "6b9b02df-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9b02df-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c30301ac-d7cd-11e8-824f-0242ac160002", + "identifier": "c30301ac-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "K.CC.B.4.a", + "identifier": "6ba176a2-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6ba176a2-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "K.CC.B.4", + "identifier": "6b9f2c57-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9f2c57-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c30303d2-d7cd-11e8-824f-0242ac160002", + "identifier": "c30303d2-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "K.CC.B.4.b", + "identifier": "6ba1fc69-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6ba1fc69-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "K.CC.B.4", + "identifier": "6b9f2c57-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9f2c57-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c30305fa-d7cd-11e8-824f-0242ac160002", + "identifier": "c30305fa-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "K.CC.B.4.c", + "identifier": "6ba250cd-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6ba250cd-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "K.CC.B.4", + "identifier": "6b9f2c57-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9f2c57-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c303081e-d7cd-11e8-824f-0242ac160002", + "identifier": "c303081e-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "K.CC.C.6", + "identifier": "6ba02dad-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6ba02dad-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "K.CC.C", + "identifier": "6b9b05a0-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9b05a0-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c3030a4f-d7cd-11e8-824f-0242ac160002", + "identifier": "c3030a4f-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "K.CC.C.7", + "identifier": "6ba08e06-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6ba08e06-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "K.CC.C", + "identifier": "6b9b05a0-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9b05a0-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c3030c7b-d7cd-11e8-824f-0242ac160002", + "identifier": "c3030c7b-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "K.OA.A.1", + "identifier": "6b9ca104-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9ca104-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "K.OA.A", + "identifier": "6b9bd21e-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9bd21e-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c3030ea3-d7cd-11e8-824f-0242ac160002", + "identifier": "c3030ea3-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "K.OA.A.2", + "identifier": "6b9dd100-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9dd100-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "K.OA.A", + "identifier": "6b9bd21e-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9bd21e-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c30310d3-d7cd-11e8-824f-0242ac160002", + "identifier": "c30310d3-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "K.OA.A.3", + "identifier": "6b9e93c4-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9e93c4-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "K.OA.A", + "identifier": "6b9bd21e-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9bd21e-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c3031301-d7cd-11e8-824f-0242ac160002", + "identifier": "c3031301-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "K.OA.A.4", + "identifier": "6b9f318e-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9f318e-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "K.OA.A", + "identifier": "6b9bd21e-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9bd21e-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c30315bf-d7cd-11e8-824f-0242ac160002", + "identifier": "c30315bf-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "K.OA.A.5", + "identifier": "6b9fc478-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9fc478-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "K.OA.A", + "identifier": "6b9bd21e-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9bd21e-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c30317fa-d7cd-11e8-824f-0242ac160002", + "identifier": "c30317fa-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "1.OA.A.1", + "identifier": "6b9bdee1-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9bdee1-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "1.OA.A", + "identifier": "6b9b3728-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9b3728-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c3031bf0-d7cd-11e8-824f-0242ac160002", + "identifier": "c3031bf0-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "1.OA.A.2", + "identifier": "6b9d25bb-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9d25bb-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "1.OA.A", + "identifier": "6b9b3728-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9b3728-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c3031e44-d7cd-11e8-824f-0242ac160002", + "identifier": "c3031e44-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "2.OA.A.1", + "identifier": "6b9beba4-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9beba4-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "2.OA.A", + "identifier": "6b9b461d-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9b461d-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c3032084-d7cd-11e8-824f-0242ac160002", + "identifier": "c3032084-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "1.OA.B.3", + "identifier": "6b9e0fbe-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9e0fbe-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "1.OA.B", + "identifier": "6b9cea7f-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9cea7f-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c30322c4-d7cd-11e8-824f-0242ac160002", + "identifier": "c30322c4-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "1.OA.B.4", + "identifier": "6b9ebb03-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9ebb03-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "1.OA.B", + "identifier": "6b9cea7f-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9cea7f-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c3032508-d7cd-11e8-824f-0242ac160002", + "identifier": "c3032508-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "1.OA.C.5", + "identifier": "6b9f527f-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9f527f-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "1.OA.C", + "identifier": "6b9df10d-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9df10d-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c3032741-d7cd-11e8-824f-0242ac160002", + "identifier": "c3032741-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "1.OA.C.6", + "identifier": "6b9fd4e5-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9fd4e5-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "1.OA.C", + "identifier": "6b9df10d-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9df10d-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c303297b-d7cd-11e8-824f-0242ac160002", + "identifier": "c303297b-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "2.OA.B.2", + "identifier": "6b9d30e1-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9d30e1-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "2.OA.B", + "identifier": "6b9cf059-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9cf059-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c3032bb1-d7cd-11e8-824f-0242ac160002", + "identifier": "c3032bb1-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "1.OA.D.7", + "identifier": "6ba03a8f-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6ba03a8f-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "1.OA.D", + "identifier": "6b9eb1a4-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9eb1a4-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c3032ded-d7cd-11e8-824f-0242ac160002", + "identifier": "c3032ded-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "1.OA.D.8", + "identifier": "6ba09818-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6ba09818-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "1.OA.D", + "identifier": "6b9eb1a4-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9eb1a4-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c303303d-d7cd-11e8-824f-0242ac160002", + "identifier": "c303303d-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "2.OA.C.3", + "identifier": "6b9e188a-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9e188a-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "2.OA.C", + "identifier": "6b9df54b-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9df54b-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c3033280-d7cd-11e8-824f-0242ac160002", + "identifier": "c3033280-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "2.OA.C.4", + "identifier": "6b9ec21d-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9ec21d-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "2.OA.C", + "identifier": "6b9df54b-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9df54b-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c30334b6-d7cd-11e8-824f-0242ac160002", + "identifier": "c30334b6-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "3.OA.A.1", + "identifier": "6b9bfb73-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9bfb73-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "3.OA.A", + "identifier": "6b9b59eb-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9b59eb-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c303376e-d7cd-11e8-824f-0242ac160002", + "identifier": "c303376e-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "3.OA.A.2", + "identifier": "6b9d430d-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9d430d-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "3.OA.A", + "identifier": "6b9b59eb-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9b59eb-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c30339b6-d7cd-11e8-824f-0242ac160002", + "identifier": "c30339b6-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "3.OA.A.3", + "identifier": "6b9e233f-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9e233f-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "3.OA.A", + "identifier": "6b9b59eb-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9b59eb-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c3033c2d-d7cd-11e8-824f-0242ac160002", + "identifier": "c3033c2d-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "3.OA.A.4", + "identifier": "6b9ec6c0-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9ec6c0-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "3.OA.A", + "identifier": "6b9b59eb-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9b59eb-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c3033e80-d7cd-11e8-824f-0242ac160002", + "identifier": "c3033e80-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "3.OA.B.5", + "identifier": "6b9f5d5a-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9f5d5a-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "3.OA.B", + "identifier": "6b9cf538-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9cf538-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c30340c9-d7cd-11e8-824f-0242ac160002", + "identifier": "c30340c9-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "3.OA.B.6", + "identifier": "6b9fe0ba-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9fe0ba-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "3.OA.B", + "identifier": "6b9cf538-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9cf538-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c3034314-d7cd-11e8-824f-0242ac160002", + "identifier": "c3034314-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "3.OA.C.7", + "identifier": "6ba0471b-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6ba0471b-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "3.OA.C", + "identifier": "6b9df989-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9df989-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c303455b-d7cd-11e8-824f-0242ac160002", + "identifier": "c303455b-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "3.OA.D.8", + "identifier": "6ba0a525-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6ba0a525-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "3.OA.D", + "identifier": "6b9b5d24-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9b5d24-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c3034797-d7cd-11e8-824f-0242ac160002", + "identifier": "c3034797-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "3.OA.D.9", + "identifier": "6ba0e1df-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6ba0e1df-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "3.OA.D", + "identifier": "6b9b5d24-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9b5d24-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c30349cc-d7cd-11e8-824f-0242ac160002", + "identifier": "c30349cc-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "4.OA.A.1", + "identifier": "6b9c0d77-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9c0d77-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "4.OA.A", + "identifier": "6b9b7443-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9b7443-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c3034c05-d7cd-11e8-824f-0242ac160002", + "identifier": "c3034c05-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "4.OA.A.2", + "identifier": "6b9d51bd-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9d51bd-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "4.OA.A", + "identifier": "6b9b7443-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9b7443-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c3034e3a-d7cd-11e8-824f-0242ac160002", + "identifier": "c3034e3a-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "4.OA.A.3", + "identifier": "6b9e2e91-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9e2e91-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "4.OA.A", + "identifier": "6b9b7443-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9b7443-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c3035076-d7cd-11e8-824f-0242ac160002", + "identifier": "c3035076-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "4.OA.B.4", + "identifier": "6b9ed00e-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9ed00e-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "4.OA.B", + "identifier": "6b9cfc85-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9cfc85-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c30352b0-d7cd-11e8-824f-0242ac160002", + "identifier": "c30352b0-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "4.OA.C.5", + "identifier": "6b9f6853-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9f6853-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "4.OA.C", + "identifier": "6b9dfeaf-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9dfeaf-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c30354ee-d7cd-11e8-824f-0242ac160002", + "identifier": "c30354ee-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "5.OA.A.1", + "identifier": "6b9c1d5d-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9c1d5d-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "5.OA.A", + "identifier": "6b9b8aec-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9b8aec-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c3035729-d7cd-11e8-824f-0242ac160002", + "identifier": "c3035729-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "5.OA.A.2", + "identifier": "6b9d5f43-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9d5f43-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "5.OA.A", + "identifier": "6b9b8aec-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9b8aec-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c303596a-d7cd-11e8-824f-0242ac160002", + "identifier": "c303596a-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "5.OA.B.3", + "identifier": "6b9e3939-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9e3939-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "5.OA.B", + "identifier": "6b9d0696-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9d0696-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c3035bad-d7cd-11e8-824f-0242ac160002", + "identifier": "c3035bad-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "K.NBT.A.1", + "identifier": "6b9c9da7-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9c9da7-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "K.NBT.A", + "identifier": "6b9bcf0f-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9bcf0f-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c3035df0-d7cd-11e8-824f-0242ac160002", + "identifier": "c3035df0-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "1.NBT.A.1", + "identifier": "6b9bdbaf-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9bdbaf-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "1.NBT.A", + "identifier": "6b9b3160-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9b3160-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c3036032-d7cd-11e8-824f-0242ac160002", + "identifier": "c3036032-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "1.NBT.B.2", + "identifier": "6b9d22e5-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9d22e5-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "1.NBT.B", + "identifier": "6b9ce809-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9ce809-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c30362a5-d7cd-11e8-824f-0242ac160002", + "identifier": "c30362a5-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "1.NBT.B.3", + "identifier": "6b9e0d8d-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9e0d8d-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "1.NBT.B", + "identifier": "6b9ce809-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9ce809-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c30364f9-d7cd-11e8-824f-0242ac160002", + "identifier": "c30364f9-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "1.NBT.B.2.a", + "identifier": "6ba1012f-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6ba1012f-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "1.NBT.B.2", + "identifier": "6b9d22e5-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9d22e5-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c3036741-d7cd-11e8-824f-0242ac160002", + "identifier": "c3036741-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "1.NBT.B.2.b", + "identifier": "6ba1795a-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6ba1795a-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "1.NBT.B.2", + "identifier": "6b9d22e5-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9d22e5-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c3036985-d7cd-11e8-824f-0242ac160002", + "identifier": "c3036985-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "1.NBT.B.2.c", + "identifier": "6ba1ff7c-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6ba1ff7c-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "1.NBT.B.2", + "identifier": "6b9d22e5-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9d22e5-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c3036bd0-d7cd-11e8-824f-0242ac160002", + "identifier": "c3036bd0-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "2.NBT.A.1", + "identifier": "6b9be86e-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9be86e-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "2.NBT.A", + "identifier": "6b9b4024-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9b4024-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c3036fa9-d7cd-11e8-824f-0242ac160002", + "identifier": "c3036fa9-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "2.NBT.A.2", + "identifier": "6b9d2e64-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9d2e64-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "2.NBT.A", + "identifier": "6b9b4024-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9b4024-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c30371fd-d7cd-11e8-824f-0242ac160002", + "identifier": "c30371fd-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "2.NBT.A.3", + "identifier": "6b9e166e-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9e166e-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "2.NBT.A", + "identifier": "6b9b4024-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9b4024-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c3037442-d7cd-11e8-824f-0242ac160002", + "identifier": "c3037442-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "2.NBT.A.4", + "identifier": "6b9ebf9b-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9ebf9b-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "2.NBT.A", + "identifier": "6b9b4024-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9b4024-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c303768a-d7cd-11e8-824f-0242ac160002", + "identifier": "c303768a-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "2.NBT.A.1.a", + "identifier": "6ba103ab-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6ba103ab-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "2.NBT.A.1", + "identifier": "6b9be86e-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9be86e-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c30378cc-d7cd-11e8-824f-0242ac160002", + "identifier": "c30378cc-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "2.NBT.A.1.b", + "identifier": "6ba17c11-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6ba17c11-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "2.NBT.A.1", + "identifier": "6b9be86e-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9be86e-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c3037b0f-d7cd-11e8-824f-0242ac160002", + "identifier": "c3037b0f-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "1.NBT.C.4", + "identifier": "6b9eb89a-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9eb89a-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "1.NBT.C", + "identifier": "6b9b3443-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9b3443-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c3037d4c-d7cd-11e8-824f-0242ac160002", + "identifier": "c3037d4c-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "1.NBT.C.5", + "identifier": "6b9f4fd0-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9f4fd0-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "1.NBT.C", + "identifier": "6b9b3443-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9b3443-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c3037f92-d7cd-11e8-824f-0242ac160002", + "identifier": "c3037f92-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "1.NBT.C.6", + "identifier": "6b9fd080-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9fd080-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "1.NBT.C", + "identifier": "6b9b3443-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9b3443-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c30381d8-d7cd-11e8-824f-0242ac160002", + "identifier": "c30381d8-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "2.NBT.B.5", + "identifier": "6b9f57e3-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9f57e3-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "2.NBT.B", + "identifier": "6b9b4323-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9b4323-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c3038420-d7cd-11e8-824f-0242ac160002", + "identifier": "c3038420-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "2.NBT.B.6", + "identifier": "6b9fdad9-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9fdad9-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "2.NBT.B", + "identifier": "6b9b4323-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9b4323-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c3038664-d7cd-11e8-824f-0242ac160002", + "identifier": "c3038664-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "2.NBT.B.7", + "identifier": "6ba040da-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6ba040da-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "2.NBT.B", + "identifier": "6b9b4323-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9b4323-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c30388ae-d7cd-11e8-824f-0242ac160002", + "identifier": "c30388ae-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "2.NBT.B.8", + "identifier": "6ba09eb5-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6ba09eb5-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "2.NBT.B", + "identifier": "6b9b4323-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9b4323-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c3038b3a-d7cd-11e8-824f-0242ac160002", + "identifier": "c3038b3a-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "2.NBT.B.9", + "identifier": "6ba0df6b-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6ba0df6b-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "2.NBT.B", + "identifier": "6b9b4323-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9b4323-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c3038d9e-d7cd-11e8-824f-0242ac160002", + "identifier": "c3038d9e-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "3.NBT.A.1", + "identifier": "6b9bf525-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9bf525-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "3.NBT.A", + "identifier": "6b9b537e-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9b537e-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c3038ff0-d7cd-11e8-824f-0242ac160002", + "identifier": "c3038ff0-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "3.NBT.A.2", + "identifier": "6b9d3a38-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9d3a38-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "3.NBT.A", + "identifier": "6b9b537e-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9b537e-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c3039233-d7cd-11e8-824f-0242ac160002", + "identifier": "c3039233-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "3.NBT.A.3", + "identifier": "6b9e1e66-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9e1e66-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "3.NBT.A", + "identifier": "6b9b537e-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9b537e-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c30394fb-d7cd-11e8-824f-0242ac160002", + "identifier": "c30394fb-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "4.NBT.B.4", + "identifier": "6b9ecb67-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9ecb67-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "4.NBT.B", + "identifier": "6b9b6e53-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9b6e53-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c3039754-d7cd-11e8-824f-0242ac160002", + "identifier": "c3039754-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "4.NBT.B.5", + "identifier": "6b9f62c1-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9f62c1-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "4.NBT.B", + "identifier": "6b9b6e53-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9b6e53-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c30399a0-d7cd-11e8-824f-0242ac160002", + "identifier": "c30399a0-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "4.NBT.B.6", + "identifier": "6b9fe69c-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9fe69c-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "4.NBT.B", + "identifier": "6b9b6e53-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9b6e53-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c3039bf2-d7cd-11e8-824f-0242ac160002", + "identifier": "c3039bf2-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "4.NBT.A.1", + "identifier": "6b9c0660-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9c0660-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "4.NBT.A", + "identifier": "6b9b6b4d-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9b6b4d-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c3039e48-d7cd-11e8-824f-0242ac160002", + "identifier": "c3039e48-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "4.NBT.A.2", + "identifier": "6b9d4b33-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9d4b33-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "4.NBT.A", + "identifier": "6b9b6b4d-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9b6b4d-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c303a574-d7cd-11e8-824f-0242ac160002", + "identifier": "c303a574-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "4.NBT.A.3", + "identifier": "6b9e2a5e-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9e2a5e-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "4.NBT.A", + "identifier": "6b9b6b4d-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9b6b4d-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c303a7db-d7cd-11e8-824f-0242ac160002", + "identifier": "c303a7db-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "5.NBT.A.1", + "identifier": "6b9c1708-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9c1708-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "5.NBT.A", + "identifier": "6b9b8077-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9b8077-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c303aa35-d7cd-11e8-824f-0242ac160002", + "identifier": "c303aa35-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "5.NBT.A.2", + "identifier": "6b9d59e4-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9d59e4-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "5.NBT.A", + "identifier": "6b9b8077-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9b8077-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c303ac86-d7cd-11e8-824f-0242ac160002", + "identifier": "c303ac86-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "5.NBT.A.3", + "identifier": "6b9e34fb-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9e34fb-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "5.NBT.A", + "identifier": "6b9b8077-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9b8077-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c303aed8-d7cd-11e8-824f-0242ac160002", + "identifier": "c303aed8-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "5.NBT.A.4", + "identifier": "6b9ed865-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9ed865-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "5.NBT.A", + "identifier": "6b9b8077-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9b8077-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c303b179-d7cd-11e8-824f-0242ac160002", + "identifier": "c303b179-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "5.NBT.A.3.a", + "identifier": "6ba11dd3-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6ba11dd3-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "5.NBT.A.3", + "identifier": "6b9e34fb-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9e34fb-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c303b3d8-d7cd-11e8-824f-0242ac160002", + "identifier": "c303b3d8-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "5.NBT.A.3.b", + "identifier": "6ba19ae2-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6ba19ae2-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "5.NBT.A.3", + "identifier": "6b9e34fb-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9e34fb-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c303b682-d7cd-11e8-824f-0242ac160002", + "identifier": "c303b682-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "5.NBT.B.5", + "identifier": "6b9f6e17-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9f6e17-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "5.NBT.B", + "identifier": "6b9b84de-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9b84de-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c303b8d6-d7cd-11e8-824f-0242ac160002", + "identifier": "c303b8d6-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "5.NBT.B.6", + "identifier": "6b9fed0a-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9fed0a-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "5.NBT.B", + "identifier": "6b9b84de-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9b84de-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c303bb25-d7cd-11e8-824f-0242ac160002", + "identifier": "c303bb25-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "5.NBT.B.7", + "identifier": "6ba050ca-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6ba050ca-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "5.NBT.B", + "identifier": "6b9b84de-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9b84de-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c303bd79-d7cd-11e8-824f-0242ac160002", + "identifier": "c303bd79-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "K.MD.A.1", + "identifier": "6b9c9af3-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9c9af3-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "K.MD.A", + "identifier": "6b9bc8e9-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9bc8e9-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c303bfcf-d7cd-11e8-824f-0242ac160002", + "identifier": "c303bfcf-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "K.MD.A.2", + "identifier": "6b9dce41-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9dce41-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "K.MD.A", + "identifier": "6b9bc8e9-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9bc8e9-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c303c224-d7cd-11e8-824f-0242ac160002", + "identifier": "c303c224-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "K.MD.B.3", + "identifier": "6b9e9181-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9e9181-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "K.MD.B", + "identifier": "6b9bcbfc-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9bcbfc-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c303c478-d7cd-11e8-824f-0242ac160002", + "identifier": "c303c478-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "1.MD.A.1", + "identifier": "6b9bd85b-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9bd85b-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "1.MD.A", + "identifier": "6b9b2e79-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9b2e79-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c303c6d1-d7cd-11e8-824f-0242ac160002", + "identifier": "c303c6d1-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "1.MD.A.2", + "identifier": "6b9d205c-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9d205c-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "1.MD.A", + "identifier": "6b9b2e79-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9b2e79-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c303ca5b-d7cd-11e8-824f-0242ac160002", + "identifier": "c303ca5b-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "1.MD.B.3", + "identifier": "6b9e0b6c-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9e0b6c-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "1.MD.B", + "identifier": "6b9ce596-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9ce596-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c303cd3a-d7cd-11e8-824f-0242ac160002", + "identifier": "c303cd3a-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "1.MD.C.4", + "identifier": "6b9eb642-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9eb642-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "1.MD.C", + "identifier": "6b9deefa-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9deefa-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c303d0df-d7cd-11e8-824f-0242ac160002", + "identifier": "c303d0df-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "2.MD.A.1", + "identifier": "6b9be543-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9be543-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "2.MD.A", + "identifier": "6b9b3cf6-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9b3cf6-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c303d41a-d7cd-11e8-824f-0242ac160002", + "identifier": "c303d41a-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "2.MD.A.2", + "identifier": "6b9d2bdf-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9d2bdf-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "2.MD.A", + "identifier": "6b9b3cf6-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9b3cf6-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c303d70c-d7cd-11e8-824f-0242ac160002", + "identifier": "c303d70c-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "2.MD.A.3", + "identifier": "6b9e1402-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9e1402-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "2.MD.A", + "identifier": "6b9b3cf6-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9b3cf6-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c303da25-d7cd-11e8-824f-0242ac160002", + "identifier": "c303da25-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "2.MD.A.4", + "identifier": "6b9ebd58-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9ebd58-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "2.MD.A", + "identifier": "6b9b3cf6-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9b3cf6-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c303dc9b-d7cd-11e8-824f-0242ac160002", + "identifier": "c303dc9b-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "2.MD.B.5", + "identifier": "6b9f552e-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9f552e-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "2.MD.B", + "identifier": "6b9ceddc-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9ceddc-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c303df11-d7cd-11e8-824f-0242ac160002", + "identifier": "c303df11-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "2.MD.B.6", + "identifier": "6b9fd7e9-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9fd7e9-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "2.MD.B", + "identifier": "6b9ceddc-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9ceddc-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c303e185-d7cd-11e8-824f-0242ac160002", + "identifier": "c303e185-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "2.MD.C.7", + "identifier": "6ba03dbb-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6ba03dbb-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "2.MD.C", + "identifier": "6b9df333-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9df333-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c303e3fd-d7cd-11e8-824f-0242ac160002", + "identifier": "c303e3fd-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "2.MD.C.8", + "identifier": "6ba09ba4-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6ba09ba4-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "2.MD.C", + "identifier": "6b9df333-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9df333-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c303e674-d7cd-11e8-824f-0242ac160002", + "identifier": "c303e674-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "2.MD.D.9", + "identifier": "6ba0dcdd-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6ba0dcdd-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "2.MD.D", + "identifier": "6b9eb3f9-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9eb3f9-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c303e8ec-d7cd-11e8-824f-0242ac160002", + "identifier": "c303e8ec-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "2.MD.D.10", + "identifier": "6b9ca5d9-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9ca5d9-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "2.MD.D", + "identifier": "6b9eb3f9-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9eb3f9-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c303eb66-d7cd-11e8-824f-0242ac160002", + "identifier": "c303eb66-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "3.MD.A.1", + "identifier": "6b9bf1fd-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9bf1fd-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "3.MD.A", + "identifier": "6b9b4c1c-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9b4c1c-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c303ede2-d7cd-11e8-824f-0242ac160002", + "identifier": "c303ede2-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "3.MD.A.2", + "identifier": "6b9d3655-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9d3655-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "3.MD.A", + "identifier": "6b9b4c1c-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9b4c1c-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c303f060-d7cd-11e8-824f-0242ac160002", + "identifier": "c303f060-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "3.MD.B.3", + "identifier": "6b9e1aec-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9e1aec-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "3.MD.B", + "identifier": "6b9cf2d0-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9cf2d0-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c303f2e1-d7cd-11e8-824f-0242ac160002", + "identifier": "c303f2e1-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "3.MD.B.4", + "identifier": "6b9ec473-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9ec473-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "3.MD.B", + "identifier": "6b9cf2d0-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9cf2d0-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c303f564-d7cd-11e8-824f-0242ac160002", + "identifier": "c303f564-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "3.MD.C.5", + "identifier": "6b9f5a86-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9f5a86-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "3.MD.C", + "identifier": "6b9df769-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9df769-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c303f7fb-d7cd-11e8-824f-0242ac160002", + "identifier": "c303f7fb-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "3.MD.C.6", + "identifier": "6b9fddc7-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9fddc7-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "3.MD.C", + "identifier": "6b9df769-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9df769-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c303fa82-d7cd-11e8-824f-0242ac160002", + "identifier": "c303fa82-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "3.MD.C.7", + "identifier": "6ba04403-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6ba04403-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "3.MD.C", + "identifier": "6b9df769-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9df769-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c303fcff-d7cd-11e8-824f-0242ac160002", + "identifier": "c303fcff-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "3.MD.C.5.a", + "identifier": "6ba10673-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6ba10673-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "3.MD.C.5", + "identifier": "6b9f5a86-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9f5a86-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c304004b-d7cd-11e8-824f-0242ac160002", + "identifier": "c304004b-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "3.MD.C.5.b", + "identifier": "6ba17ecd-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6ba17ecd-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "3.MD.C.5", + "identifier": "6b9f5a86-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9f5a86-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c3040314-d7cd-11e8-824f-0242ac160002", + "identifier": "c3040314-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "3.MD.C.7.a", + "identifier": "6ba108fe-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6ba108fe-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "3.MD.C.7", + "identifier": "6ba04403-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6ba04403-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c304059b-d7cd-11e8-824f-0242ac160002", + "identifier": "c304059b-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "3.MD.C.7.b", + "identifier": "6ba1826d-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6ba1826d-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "3.MD.C.7", + "identifier": "6ba04403-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6ba04403-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c3040855-d7cd-11e8-824f-0242ac160002", + "identifier": "c3040855-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "3.MD.C.7.c", + "identifier": "6ba20290-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6ba20290-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "3.MD.C.7", + "identifier": "6ba04403-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6ba04403-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c3040ae4-d7cd-11e8-824f-0242ac160002", + "identifier": "c3040ae4-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "3.MD.C.7.d", + "identifier": "6ba25656-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6ba25656-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "3.MD.C.7", + "identifier": "6ba04403-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6ba04403-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c3040d76-d7cd-11e8-824f-0242ac160002", + "identifier": "c3040d76-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "3.MD.D.8", + "identifier": "6ba0a209-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6ba0a209-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "3.MD.D", + "identifier": "6b9b4f1e-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9b4f1e-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c3041003-d7cd-11e8-824f-0242ac160002", + "identifier": "c3041003-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "4.MD.A.1", + "identifier": "6b9c02b9-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9c02b9-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "4.MD.A", + "identifier": "6b9b632e-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9b632e-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c3041296-d7cd-11e8-824f-0242ac160002", + "identifier": "c3041296-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "4.MD.A.2", + "identifier": "6b9d484a-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9d484a-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "4.MD.A", + "identifier": "6b9b632e-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9b632e-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c3041529-d7cd-11e8-824f-0242ac160002", + "identifier": "c3041529-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "4.MD.A.3", + "identifier": "6b9e283e-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9e283e-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "4.MD.A", + "identifier": "6b9b632e-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9b632e-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c30417b8-d7cd-11e8-824f-0242ac160002", + "identifier": "c30417b8-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "4.MD.B.4", + "identifier": "6b9ec90c-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9ec90c-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "4.MD.B", + "identifier": "6b9cf7a3-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9cf7a3-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c3041a47-d7cd-11e8-824f-0242ac160002", + "identifier": "c3041a47-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "4.MD.C.5", + "identifier": "6b9f6012-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9f6012-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "4.MD.C", + "identifier": "6b9b6712-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9b6712-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c3041cdc-d7cd-11e8-824f-0242ac160002", + "identifier": "c3041cdc-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "4.MD.C.6", + "identifier": "6b9fe3ab-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9fe3ab-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "4.MD.C", + "identifier": "6b9b6712-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9b6712-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c3041f78-d7cd-11e8-824f-0242ac160002", + "identifier": "c3041f78-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "4.MD.C.7", + "identifier": "6ba04a80-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6ba04a80-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "4.MD.C", + "identifier": "6b9b6712-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9b6712-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c3042214-d7cd-11e8-824f-0242ac160002", + "identifier": "c3042214-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "4.MD.C.5.a", + "identifier": "6ba110dd-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6ba110dd-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "4.MD.C.5", + "identifier": "6b9f6012-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9f6012-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c30424ac-d7cd-11e8-824f-0242ac160002", + "identifier": "c30424ac-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "4.MD.C.5.b", + "identifier": "6ba18ab1-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6ba18ab1-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "4.MD.C.5", + "identifier": "6b9f6012-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9f6012-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c3042780-d7cd-11e8-824f-0242ac160002", + "identifier": "c3042780-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "5.MD.A.1", + "identifier": "6b9c13e2-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9c13e2-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "5.MD.A", + "identifier": "6b9b7a7b-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9b7a7b-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c3042a26-d7cd-11e8-824f-0242ac160002", + "identifier": "c3042a26-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "5.MD.B.2", + "identifier": "6b9d5741-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9d5741-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "5.MD.B", + "identifier": "6b9d01b9-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9d01b9-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c3042ccf-d7cd-11e8-824f-0242ac160002", + "identifier": "c3042ccf-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "5.MD.C.3", + "identifier": "6b9e32dc-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9e32dc-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "5.MD.C", + "identifier": "6b9b7d79-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9b7d79-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c3042fbe-d7cd-11e8-824f-0242ac160002", + "identifier": "c3042fbe-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "5.MD.C.4", + "identifier": "6b9ed5fc-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9ed5fc-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "5.MD.C", + "identifier": "6b9b7d79-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9b7d79-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c30432b1-d7cd-11e8-824f-0242ac160002", + "identifier": "c30432b1-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "5.MD.C.5", + "identifier": "6b9f6b11-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9f6b11-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "5.MD.C", + "identifier": "6b9b7d79-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9b7d79-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c3043595-d7cd-11e8-824f-0242ac160002", + "identifier": "c3043595-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "5.MD.C.3.a", + "identifier": "6ba11885-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6ba11885-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "5.MD.C.3", + "identifier": "6b9e32dc-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9e32dc-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c304382f-d7cd-11e8-824f-0242ac160002", + "identifier": "c304382f-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "5.MD.C.3.b", + "identifier": "6ba1938b-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6ba1938b-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "5.MD.C.3", + "identifier": "6b9e32dc-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9e32dc-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c3043ac8-d7cd-11e8-824f-0242ac160002", + "identifier": "c3043ac8-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "5.MD.C.5.a", + "identifier": "6ba11b29-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6ba11b29-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "5.MD.C.5", + "identifier": "6b9f6b11-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9f6b11-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c3043d60-d7cd-11e8-824f-0242ac160002", + "identifier": "c3043d60-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "5.MD.C.5.b", + "identifier": "6ba1965f-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6ba1965f-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "5.MD.C.5", + "identifier": "6b9f6b11-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9f6b11-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c3043ffa-d7cd-11e8-824f-0242ac160002", + "identifier": "c3043ffa-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "5.MD.C.5.c", + "identifier": "6ba20ee1-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6ba20ee1-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "5.MD.C.5", + "identifier": "6b9f6b11-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9f6b11-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c3044295-d7cd-11e8-824f-0242ac160002", + "identifier": "c3044295-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "K.G.A.1", + "identifier": "6b9c9896-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9c9896-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "K.G.A", + "identifier": "6b9bc2c7-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9bc2c7-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c304452f-d7cd-11e8-824f-0242ac160002", + "identifier": "c304452f-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "K.G.A.2", + "identifier": "6b9dcb8a-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9dcb8a-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "K.G.A", + "identifier": "6b9bc2c7-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9bc2c7-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c30447d2-d7cd-11e8-824f-0242ac160002", + "identifier": "c30447d2-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "K.G.A.3", + "identifier": "6b9e8f43-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9e8f43-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "K.G.A", + "identifier": "6b9bc2c7-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9bc2c7-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c3044a72-d7cd-11e8-824f-0242ac160002", + "identifier": "c3044a72-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "K.G.B.4", + "identifier": "6b9f2ef8-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9f2ef8-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "K.G.B", + "identifier": "6b9bc5d7-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9bc5d7-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c3044e09-d7cd-11e8-824f-0242ac160002", + "identifier": "c3044e09-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "K.G.B.5", + "identifier": "6b9fc08e-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9fc08e-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "K.G.B", + "identifier": "6b9bc5d7-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9bc5d7-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c3045113-d7cd-11e8-824f-0242ac160002", + "identifier": "c3045113-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "K.G.B.6", + "identifier": "6ba030d6-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6ba030d6-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "K.G.B", + "identifier": "6b9bc5d7-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9bc5d7-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c3045466-d7cd-11e8-824f-0242ac160002", + "identifier": "c3045466-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "1.G.A.1", + "identifier": "6b9bd535-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9bd535-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "1.G.A", + "identifier": "6b9b2b94-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9b2b94-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c304570e-d7cd-11e8-824f-0242ac160002", + "identifier": "c304570e-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "1.G.A.2", + "identifier": "6b9d1dd5-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9d1dd5-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "1.G.A", + "identifier": "6b9b2b94-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9b2b94-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c30459b7-d7cd-11e8-824f-0242ac160002", + "identifier": "c30459b7-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "1.G.A.3", + "identifier": "6b9e0945-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9e0945-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "1.G.A", + "identifier": "6b9b2b94-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9b2b94-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c3045c63-d7cd-11e8-824f-0242ac160002", + "identifier": "c3045c63-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "2.G.A.1", + "identifier": "6b9be213-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9be213-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "2.G.A", + "identifier": "6b9b3a0d-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9b3a0d-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c3045f12-d7cd-11e8-824f-0242ac160002", + "identifier": "c3045f12-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "2.G.A.2", + "identifier": "6b9d290b-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9d290b-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "2.G.A", + "identifier": "6b9b3a0d-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9b3a0d-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c30461c1-d7cd-11e8-824f-0242ac160002", + "identifier": "c30461c1-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "2.G.A.3", + "identifier": "6b9e11e8-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9e11e8-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "2.G.A", + "identifier": "6b9b3a0d-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9b3a0d-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c3046481-d7cd-11e8-824f-0242ac160002", + "identifier": "c3046481-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "3.G.A.1", + "identifier": "6b9beecd-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9beecd-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "3.G.A", + "identifier": "6b9b491b-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9b491b-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c3046786-d7cd-11e8-824f-0242ac160002", + "identifier": "c3046786-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "3.G.A.2", + "identifier": "6b9d3367-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9d3367-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "3.G.A", + "identifier": "6b9b491b-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9b491b-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c3046a33-d7cd-11e8-824f-0242ac160002", + "identifier": "c3046a33-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "4.G.A.1", + "identifier": "6b9bfea2-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9bfea2-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "4.G.A", + "identifier": "6b9b602d-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9b602d-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c3046d5c-d7cd-11e8-824f-0242ac160002", + "identifier": "c3046d5c-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "4.G.A.2", + "identifier": "6b9d45b3-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9d45b3-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "4.G.A", + "identifier": "6b9b602d-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9b602d-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c3047016-d7cd-11e8-824f-0242ac160002", + "identifier": "c3047016-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "4.G.A.3", + "identifier": "6b9e25bb-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9e25bb-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "4.G.A", + "identifier": "6b9b602d-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9b602d-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c3047316-d7cd-11e8-824f-0242ac160002", + "identifier": "c3047316-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "5.G.A.1", + "identifier": "6b9c10a6-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9c10a6-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "5.G.A", + "identifier": "6b9b7738-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9b7738-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c3047665-d7cd-11e8-824f-0242ac160002", + "identifier": "c3047665-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "5.G.A.2", + "identifier": "6b9d5464-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9d5464-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "5.G.A", + "identifier": "6b9b7738-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9b7738-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c3047928-d7cd-11e8-824f-0242ac160002", + "identifier": "c3047928-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "5.G.B.3", + "identifier": "6b9e30b9-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9e30b9-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "5.G.B", + "identifier": "6b9cfef5-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9cfef5-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c3047c93-d7cd-11e8-824f-0242ac160002", + "identifier": "c3047c93-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "5.G.B.4", + "identifier": "6b9ed262-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9ed262-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "5.G.B", + "identifier": "6b9cfef5-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9cfef5-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c3047f4f-d7cd-11e8-824f-0242ac160002", + "identifier": "c3047f4f-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "6.G.A.1", + "identifier": "6b9c2393-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9c2393-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "6.G.A", + "identifier": "6b9b9457-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9b9457-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c304820d-d7cd-11e8-824f-0242ac160002", + "identifier": "c304820d-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "6.G.A.2", + "identifier": "6b9d6553-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9d6553-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "6.G.A", + "identifier": "6b9b9457-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9b9457-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c30484cf-d7cd-11e8-824f-0242ac160002", + "identifier": "c30484cf-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "6.G.A.3", + "identifier": "6b9e3d90-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9e3d90-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "6.G.A", + "identifier": "6b9b9457-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9b9457-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c30488a7-d7cd-11e8-824f-0242ac160002", + "identifier": "c30488a7-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "6.G.A.4", + "identifier": "6b9edfbc-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9edfbc-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "6.G.A", + "identifier": "6b9b9457-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9b9457-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c3048b90-d7cd-11e8-824f-0242ac160002", + "identifier": "c3048b90-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "7.G.A.1", + "identifier": "6b9c342f-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9c342f-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "7.G.A", + "identifier": "6b9ba698-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9ba698-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c3048e6d-d7cd-11e8-824f-0242ac160002", + "identifier": "c3048e6d-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "7.G.A.2", + "identifier": "6b9d73cd-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9d73cd-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "7.G.A", + "identifier": "6b9ba698-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9ba698-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c3049143-d7cd-11e8-824f-0242ac160002", + "identifier": "c3049143-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "7.G.A.3", + "identifier": "6b9e4885-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9e4885-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "7.G.A", + "identifier": "6b9ba698-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9ba698-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c3049419-d7cd-11e8-824f-0242ac160002", + "identifier": "c3049419-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "7.G.B.4", + "identifier": "6b9eebe1-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9eebe1-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "7.G.B", + "identifier": "6b9d1068-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9d1068-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c304974d-d7cd-11e8-824f-0242ac160002", + "identifier": "c304974d-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "7.G.B.5", + "identifier": "6b9f7d68-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9f7d68-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "7.G.B", + "identifier": "6b9d1068-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9d1068-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c3049ace-d7cd-11e8-824f-0242ac160002", + "identifier": "c3049ace-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "7.G.B.6", + "identifier": "6b9ff914-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9ff914-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "7.G.B", + "identifier": "6b9d1068-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9d1068-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c3049e6f-d7cd-11e8-824f-0242ac160002", + "identifier": "c3049e6f-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "8.G.A.1", + "identifier": "6b9c465b-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9c465b-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "8.G.A", + "identifier": "6b9bb97b-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9bb97b-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c304a14f-d7cd-11e8-824f-0242ac160002", + "identifier": "c304a14f-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "8.G.A.2", + "identifier": "6b9d8424-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9d8424-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "8.G.A", + "identifier": "6b9bb97b-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9bb97b-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c304a42a-d7cd-11e8-824f-0242ac160002", + "identifier": "c304a42a-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "8.G.A.3", + "identifier": "6b9e55c9-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9e55c9-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "8.G.A", + "identifier": "6b9bb97b-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9bb97b-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c304a706-d7cd-11e8-824f-0242ac160002", + "identifier": "c304a706-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "8.G.A.4", + "identifier": "6b9ef5f0-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9ef5f0-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "8.G.A", + "identifier": "6b9bb97b-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9bb97b-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c304a9f0-d7cd-11e8-824f-0242ac160002", + "identifier": "c304a9f0-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "8.G.A.5", + "identifier": "6b9f89a0-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9f89a0-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "8.G.A", + "identifier": "6b9bb97b-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9bb97b-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c304adc6-d7cd-11e8-824f-0242ac160002", + "identifier": "c304adc6-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "8.G.A.1.a", + "identifier": "6ba14dd9-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6ba14dd9-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "8.G.A.1", + "identifier": "6b9c465b-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9c465b-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c304b0b1-d7cd-11e8-824f-0242ac160002", + "identifier": "c304b0b1-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "8.G.A.1.b", + "identifier": "6ba1cd94-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6ba1cd94-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "8.G.A.1", + "identifier": "6b9c465b-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9c465b-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c304b397-d7cd-11e8-824f-0242ac160002", + "identifier": "c304b397-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "8.G.A.1.c", + "identifier": "6ba2342b-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6ba2342b-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "8.G.A.1", + "identifier": "6b9c465b-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9c465b-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c304b67c-d7cd-11e8-824f-0242ac160002", + "identifier": "c304b67c-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "8.G.B.6", + "identifier": "6ba0026f-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6ba0026f-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "8.G.B", + "identifier": "6b9d1b5c-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9d1b5c-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c304b964-d7cd-11e8-824f-0242ac160002", + "identifier": "c304b964-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "8.G.B.7", + "identifier": "6ba063cb-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6ba063cb-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "8.G.B", + "identifier": "6b9d1b5c-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9d1b5c-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c304bc49-d7cd-11e8-824f-0242ac160002", + "identifier": "c304bc49-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "8.G.B.8", + "identifier": "6ba0b50b-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6ba0b50b-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "8.G.B", + "identifier": "6b9d1b5c-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9d1b5c-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c304bf32-d7cd-11e8-824f-0242ac160002", + "identifier": "c304bf32-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "8.G.C.9", + "identifier": "6ba0e7f4-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6ba0e7f4-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "8.G.C", + "identifier": "6b9e072c-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9e072c-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c304c24e-d7cd-11e8-824f-0242ac160002", + "identifier": "c304c24e-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "3.NF.A.1", + "identifier": "6b9bf846-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9bf846-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "3.NF.A", + "identifier": "6b9b568c-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9b568c-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c304c541-d7cd-11e8-824f-0242ac160002", + "identifier": "c304c541-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "3.NF.A.2", + "identifier": "6b9d400d-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9d400d-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "3.NF.A", + "identifier": "6b9b568c-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9b568c-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c304c82f-d7cd-11e8-824f-0242ac160002", + "identifier": "c304c82f-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "3.NF.A.3", + "identifier": "6b9e210d-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9e210d-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "3.NF.A", + "identifier": "6b9b568c-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9b568c-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c304cb20-d7cd-11e8-824f-0242ac160002", + "identifier": "c304cb20-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "3.NF.A.2.a", + "identifier": "6ba10bbf-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6ba10bbf-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "3.NF.A.2", + "identifier": "6b9d400d-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9d400d-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c304cf4c-d7cd-11e8-824f-0242ac160002", + "identifier": "c304cf4c-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "3.NF.A.2.b", + "identifier": "6ba18533-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6ba18533-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "3.NF.A.2", + "identifier": "6b9d400d-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9d400d-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c304d24a-d7cd-11e8-824f-0242ac160002", + "identifier": "c304d24a-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "3.NF.A.3.a", + "identifier": "6ba10e51-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6ba10e51-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "3.NF.A.3", + "identifier": "6b9e210d-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9e210d-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c304d504-d7cd-11e8-824f-0242ac160002", + "identifier": "c304d504-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "3.NF.A.3.b", + "identifier": "6ba187f3-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6ba187f3-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "3.NF.A.3", + "identifier": "6b9e210d-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9e210d-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c304d92e-d7cd-11e8-824f-0242ac160002", + "identifier": "c304d92e-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "3.NF.A.3.c", + "identifier": "6ba205a2-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6ba205a2-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "3.NF.A.3", + "identifier": "6b9e210d-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9e210d-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c304dbe1-d7cd-11e8-824f-0242ac160002", + "identifier": "c304dbe1-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "3.NF.A.3.d", + "identifier": "6ba25aa3-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6ba25aa3-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "3.NF.A.3", + "identifier": "6b9e210d-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9e210d-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c304de9b-d7cd-11e8-824f-0242ac160002", + "identifier": "c304de9b-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "4.NF.A.1", + "identifier": "6b9c09e2-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9c09e2-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "4.NF.A", + "identifier": "6b9b714a-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9b714a-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c304e144-d7cd-11e8-824f-0242ac160002", + "identifier": "c304e144-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "4.NF.A.2", + "identifier": "6b9d4e66-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9d4e66-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "4.NF.A", + "identifier": "6b9b714a-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9b714a-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c304e3db-d7cd-11e8-824f-0242ac160002", + "identifier": "c304e3db-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "4.NF.B.3", + "identifier": "6b9e2c7a-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9e2c7a-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "4.NF.B", + "identifier": "6b9cfa11-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9cfa11-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c304e6fe-d7cd-11e8-824f-0242ac160002", + "identifier": "c304e6fe-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "4.NF.B.4", + "identifier": "6b9ecdc0-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9ecdc0-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "4.NF.B", + "identifier": "6b9cfa11-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9cfa11-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c304e9db-d7cd-11e8-824f-0242ac160002", + "identifier": "c304e9db-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "4.NF.B.3.a", + "identifier": "6ba1136b-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6ba1136b-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "4.NF.B.3", + "identifier": "6b9e2c7a-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9e2c7a-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c304ec87-d7cd-11e8-824f-0242ac160002", + "identifier": "c304ec87-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "4.NF.B.3.b", + "identifier": "6ba18d83-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6ba18d83-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "4.NF.B.3", + "identifier": "6b9e2c7a-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9e2c7a-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c304ef2d-d7cd-11e8-824f-0242ac160002", + "identifier": "c304ef2d-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "4.NF.B.3.c", + "identifier": "6ba208b6-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6ba208b6-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "4.NF.B.3", + "identifier": "6b9e2c7a-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9e2c7a-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c304f1d6-d7cd-11e8-824f-0242ac160002", + "identifier": "c304f1d6-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "4.NF.B.3.d", + "identifier": "6ba25f3e-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6ba25f3e-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "4.NF.B.3", + "identifier": "6b9e2c7a-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9e2c7a-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c304f47c-d7cd-11e8-824f-0242ac160002", + "identifier": "c304f47c-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "4.NF.B.4.a", + "identifier": "6ba115f2-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6ba115f2-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "4.NF.B.4", + "identifier": "6b9ecdc0-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9ecdc0-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c304f729-d7cd-11e8-824f-0242ac160002", + "identifier": "c304f729-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "4.NF.B.4.b", + "identifier": "6ba1905b-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6ba1905b-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "4.NF.B.4", + "identifier": "6b9ecdc0-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9ecdc0-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c304f9d0-d7cd-11e8-824f-0242ac160002", + "identifier": "c304f9d0-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "4.NF.B.4.c", + "identifier": "6ba20bca-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6ba20bca-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "4.NF.B.4", + "identifier": "6b9ecdc0-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9ecdc0-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c304fc7b-d7cd-11e8-824f-0242ac160002", + "identifier": "c304fc7b-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "4.NF.C.5", + "identifier": "6b9f6583-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9f6583-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "4.NF.C", + "identifier": "6b9dfbae-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9dfbae-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c304ff25-d7cd-11e8-824f-0242ac160002", + "identifier": "c304ff25-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "4.NF.C.6", + "identifier": "6b9fea01-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9fea01-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "4.NF.C", + "identifier": "6b9dfbae-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9dfbae-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c30501d6-d7cd-11e8-824f-0242ac160002", + "identifier": "c30501d6-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "4.NF.C.7", + "identifier": "6ba04da6-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6ba04da6-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "4.NF.C", + "identifier": "6b9dfbae-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9dfbae-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c3050485-d7cd-11e8-824f-0242ac160002", + "identifier": "c3050485-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "5.NF.A.1", + "identifier": "6b9c1a30-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9c1a30-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "5.NF.A", + "identifier": "6b9b87e9-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9b87e9-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c3050733-d7cd-11e8-824f-0242ac160002", + "identifier": "c3050733-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "5.NF.A.2", + "identifier": "6b9d5c8c-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9d5c8c-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "5.NF.A", + "identifier": "6b9b87e9-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9b87e9-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c30509e3-d7cd-11e8-824f-0242ac160002", + "identifier": "c30509e3-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "5.NF.B.3", + "identifier": "6b9e3712-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9e3712-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "5.NF.B", + "identifier": "6b9d0429-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9d0429-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c3050c98-d7cd-11e8-824f-0242ac160002", + "identifier": "c3050c98-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "5.NF.B.4", + "identifier": "6b9edad5-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9edad5-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "5.NF.B", + "identifier": "6b9d0429-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9d0429-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c3050f4b-d7cd-11e8-824f-0242ac160002", + "identifier": "c3050f4b-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "5.NF.B.5", + "identifier": "6b9f70d0-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9f70d0-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "5.NF.B", + "identifier": "6b9d0429-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9d0429-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c3051255-d7cd-11e8-824f-0242ac160002", + "identifier": "c3051255-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "5.NF.B.6", + "identifier": "6b9ff014-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9ff014-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "5.NF.B", + "identifier": "6b9d0429-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9d0429-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c3051549-d7cd-11e8-824f-0242ac160002", + "identifier": "c3051549-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "5.NF.B.7", + "identifier": "6ba053e8-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6ba053e8-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "5.NF.B", + "identifier": "6b9d0429-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9d0429-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c3051802-d7cd-11e8-824f-0242ac160002", + "identifier": "c3051802-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "5.NF.B.4.a", + "identifier": "6ba12074-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6ba12074-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "5.NF.B.4", + "identifier": "6b9edad5-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9edad5-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c3051af1-d7cd-11e8-824f-0242ac160002", + "identifier": "c3051af1-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "5.NF.B.4.b", + "identifier": "6ba19dde-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6ba19dde-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "5.NF.B.4", + "identifier": "6b9edad5-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9edad5-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c3051dad-d7cd-11e8-824f-0242ac160002", + "identifier": "c3051dad-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "5.NF.B.5.a", + "identifier": "6ba1231f-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6ba1231f-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "5.NF.B.5", + "identifier": "6b9f70d0-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9f70d0-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c3052064-d7cd-11e8-824f-0242ac160002", + "identifier": "c3052064-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "5.NF.B.5.b", + "identifier": "6ba1a0ce-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6ba1a0ce-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "5.NF.B.5", + "identifier": "6b9f70d0-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9f70d0-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c305231c-d7cd-11e8-824f-0242ac160002", + "identifier": "c305231c-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "5.NF.B.7.a", + "identifier": "6ba125cb-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6ba125cb-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "5.NF.B.7", + "identifier": "6ba053e8-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6ba053e8-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c30525d3-d7cd-11e8-824f-0242ac160002", + "identifier": "c30525d3-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "5.NF.B.7.b", + "identifier": "6ba1a3cc-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6ba1a3cc-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "5.NF.B.7", + "identifier": "6ba053e8-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6ba053e8-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c30528e0-d7cd-11e8-824f-0242ac160002", + "identifier": "c30528e0-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "5.NF.B.7.c", + "identifier": "6ba211ee-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6ba211ee-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "5.NF.B.7", + "identifier": "6ba053e8-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6ba053e8-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c3052ba0-d7cd-11e8-824f-0242ac160002", + "identifier": "c3052ba0-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "6.RP.A.1", + "identifier": "6b9c2b26-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9c2b26-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "6.RP.A", + "identifier": "6b9b9a72-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9b9a72-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c3052e63-d7cd-11e8-824f-0242ac160002", + "identifier": "c3052e63-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "6.RP.A.2", + "identifier": "6b9d6aa3-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9d6aa3-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "6.RP.A", + "identifier": "6b9b9a72-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9b9a72-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c3053123-d7cd-11e8-824f-0242ac160002", + "identifier": "c3053123-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "6.RP.A.3", + "identifier": "6b9e41ee-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9e41ee-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "6.RP.A", + "identifier": "6b9b9a72-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9b9a72-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c30533e2-d7cd-11e8-824f-0242ac160002", + "identifier": "c30533e2-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "6.RP.A.3.a", + "identifier": "6ba1303f-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6ba1303f-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "6.RP.A.3", + "identifier": "6b9e41ee-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9e41ee-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c30536a3-d7cd-11e8-824f-0242ac160002", + "identifier": "c30536a3-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "6.RP.A.3.b", + "identifier": "6ba1afb9-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6ba1afb9-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "6.RP.A.3", + "identifier": "6b9e41ee-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9e41ee-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c30539a7-d7cd-11e8-824f-0242ac160002", + "identifier": "c30539a7-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "6.RP.A.3.c", + "identifier": "6ba21e79-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6ba21e79-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "6.RP.A.3", + "identifier": "6b9e41ee-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9e41ee-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c3053c70-d7cd-11e8-824f-0242ac160002", + "identifier": "c3053c70-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "6.RP.A.3.d", + "identifier": "6ba26661-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6ba26661-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "6.RP.A.3", + "identifier": "6b9e41ee-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9e41ee-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c3053f39-d7cd-11e8-824f-0242ac160002", + "identifier": "c3053f39-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "7.RP.A.1", + "identifier": "6b9c3a21-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9c3a21-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "7.RP.A", + "identifier": "6b9baca3-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9baca3-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c3054244-d7cd-11e8-824f-0242ac160002", + "identifier": "c3054244-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "7.RP.A.2", + "identifier": "6b9d7951-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9d7951-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "7.RP.A", + "identifier": "6b9baca3-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9baca3-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c3054500-d7cd-11e8-824f-0242ac160002", + "identifier": "c3054500-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "7.RP.A.3", + "identifier": "6b9e4d0c-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9e4d0c-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "7.RP.A", + "identifier": "6b9baca3-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9baca3-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c30547b7-d7cd-11e8-824f-0242ac160002", + "identifier": "c30547b7-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "7.RP.A.2.a", + "identifier": "6ba13e2b-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6ba13e2b-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "7.RP.A.2", + "identifier": "6b9d7951-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9d7951-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c30549f3-d7cd-11e8-824f-0242ac160002", + "identifier": "c30549f3-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "7.RP.A.2.b", + "identifier": "6ba1beae-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6ba1beae-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "7.RP.A.2", + "identifier": "6b9d7951-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9d7951-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c3054c31-d7cd-11e8-824f-0242ac160002", + "identifier": "c3054c31-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "7.RP.A.2.c", + "identifier": "6ba22af7-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6ba22af7-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "7.RP.A.2", + "identifier": "6b9d7951-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9d7951-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c3054e63-d7cd-11e8-824f-0242ac160002", + "identifier": "c3054e63-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "7.RP.A.2.d", + "identifier": "6ba27388-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6ba27388-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "7.RP.A.2", + "identifier": "6b9d7951-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9d7951-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c3055086-d7cd-11e8-824f-0242ac160002", + "identifier": "c3055086-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "6.NS.A.1", + "identifier": "6b9c26ca-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9c26ca-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "6.NS.A", + "identifier": "6b9b9763-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9b9763-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c3055324-d7cd-11e8-824f-0242ac160002", + "identifier": "c3055324-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "6.NS.B.2", + "identifier": "6b9d680b-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9d680b-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "6.NS.B", + "identifier": "6b9d0b6d-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9d0b6d-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c3055551-d7cd-11e8-824f-0242ac160002", + "identifier": "c3055551-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "6.NS.B.3", + "identifier": "6b9e3fc3-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9e3fc3-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "6.NS.B", + "identifier": "6b9d0b6d-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9d0b6d-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c305577c-d7cd-11e8-824f-0242ac160002", + "identifier": "c305577c-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "6.NS.B.4", + "identifier": "6b9ee241-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9ee241-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "6.NS.B", + "identifier": "6b9d0b6d-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9d0b6d-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c30559aa-d7cd-11e8-824f-0242ac160002", + "identifier": "c30559aa-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "6.NS.C.5", + "identifier": "6b9f77af-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9f77af-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "6.NS.C", + "identifier": "6b9e00d3-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9e00d3-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c3055bdb-d7cd-11e8-824f-0242ac160002", + "identifier": "c3055bdb-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "6.NS.C.6", + "identifier": "6b9ff611-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9ff611-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "6.NS.C", + "identifier": "6b9e00d3-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9e00d3-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c3055e39-d7cd-11e8-824f-0242ac160002", + "identifier": "c3055e39-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "6.NS.C.7", + "identifier": "6ba05a42-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6ba05a42-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "6.NS.C", + "identifier": "6b9e00d3-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9e00d3-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c3056075-d7cd-11e8-824f-0242ac160002", + "identifier": "c3056075-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "6.NS.C.8", + "identifier": "6ba0ab8d-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6ba0ab8d-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "6.NS.C", + "identifier": "6b9e00d3-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9e00d3-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c30562a8-d7cd-11e8-824f-0242ac160002", + "identifier": "c30562a8-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "6.NS.C.6.a", + "identifier": "6ba12b02-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6ba12b02-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "6.NS.C.6", + "identifier": "6b9ff611-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9ff611-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c30564dc-d7cd-11e8-824f-0242ac160002", + "identifier": "c30564dc-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "6.NS.C.6.b", + "identifier": "6ba1a9ea-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6ba1a9ea-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "6.NS.C.6", + "identifier": "6b9ff611-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9ff611-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c305670e-d7cd-11e8-824f-0242ac160002", + "identifier": "c305670e-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "6.NS.C.6.c", + "identifier": "6ba2181f-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6ba2181f-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "6.NS.C.6", + "identifier": "6b9ff611-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9ff611-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c3056944-d7cd-11e8-824f-0242ac160002", + "identifier": "c3056944-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "6.NS.C.7.a", + "identifier": "6ba12da0-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6ba12da0-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "6.NS.C.7", + "identifier": "6ba05a42-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6ba05a42-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c3056b81-d7cd-11e8-824f-0242ac160002", + "identifier": "c3056b81-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "6.NS.C.7.b", + "identifier": "6ba1acd4-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6ba1acd4-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "6.NS.C.7", + "identifier": "6ba05a42-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6ba05a42-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c3056dbe-d7cd-11e8-824f-0242ac160002", + "identifier": "c3056dbe-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "6.NS.C.7.c", + "identifier": "6ba21b2c-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6ba21b2c-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "6.NS.C.7", + "identifier": "6ba05a42-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6ba05a42-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c3056ff6-d7cd-11e8-824f-0242ac160002", + "identifier": "c3056ff6-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "6.NS.C.7.d", + "identifier": "6ba2632d-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6ba2632d-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "6.NS.C.7", + "identifier": "6ba05a42-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6ba05a42-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c3057230-d7cd-11e8-824f-0242ac160002", + "identifier": "c3057230-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "7.NS.A.1", + "identifier": "6b9c3725-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9c3725-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "7.NS.A", + "identifier": "6b9ba9a3-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9ba9a3-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c305746f-d7cd-11e8-824f-0242ac160002", + "identifier": "c305746f-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "7.NS.A.2", + "identifier": "6b9d769c-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9d769c-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "7.NS.A", + "identifier": "6b9ba9a3-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9ba9a3-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c30576b3-d7cd-11e8-824f-0242ac160002", + "identifier": "c30576b3-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "7.NS.A.3", + "identifier": "6b9e4aa8-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9e4aa8-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "7.NS.A", + "identifier": "6b9ba9a3-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9ba9a3-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c30578f2-d7cd-11e8-824f-0242ac160002", + "identifier": "c30578f2-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "7.NS.A.1.a", + "identifier": "6ba138d5-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6ba138d5-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "7.NS.A.1", + "identifier": "6b9c3725-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9c3725-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c3057b35-d7cd-11e8-824f-0242ac160002", + "identifier": "c3057b35-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "7.NS.A.1.b", + "identifier": "6ba1b8b8-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6ba1b8b8-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "7.NS.A.1", + "identifier": "6b9c3725-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9c3725-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c3057d79-d7cd-11e8-824f-0242ac160002", + "identifier": "c3057d79-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "7.NS.A.1.c", + "identifier": "6ba224e2-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6ba224e2-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "7.NS.A.1", + "identifier": "6b9c3725-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9c3725-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c3057fc1-d7cd-11e8-824f-0242ac160002", + "identifier": "c3057fc1-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "7.NS.A.1.d", + "identifier": "6ba26d02-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6ba26d02-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "7.NS.A.1", + "identifier": "6b9c3725-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9c3725-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c3058208-d7cd-11e8-824f-0242ac160002", + "identifier": "c3058208-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "7.NS.A.2.a", + "identifier": "6ba13b7c-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6ba13b7c-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "7.NS.A.2", + "identifier": "6b9d769c-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9d769c-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c305844e-d7cd-11e8-824f-0242ac160002", + "identifier": "c305844e-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "7.NS.A.2.b", + "identifier": "6ba1bbb1-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6ba1bbb1-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "7.NS.A.2", + "identifier": "6b9d769c-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9d769c-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c30586c8-d7cd-11e8-824f-0242ac160002", + "identifier": "c30586c8-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "7.NS.A.2.c", + "identifier": "6ba227ec-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6ba227ec-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "7.NS.A.2", + "identifier": "6b9d769c-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9d769c-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c305891e-d7cd-11e8-824f-0242ac160002", + "identifier": "c305891e-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "7.NS.A.2.d", + "identifier": "6ba2703e-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6ba2703e-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "7.NS.A.2", + "identifier": "6b9d769c-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9d769c-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c3058b6b-d7cd-11e8-824f-0242ac160002", + "identifier": "c3058b6b-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "8.NS.A.1", + "identifier": "6b9c4a58-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9c4a58-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "8.NS.A", + "identifier": "6b9bbc94-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9bbc94-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c3058db6-d7cd-11e8-824f-0242ac160002", + "identifier": "c3058db6-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "8.NS.A.2", + "identifier": "6b9d86d6-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9d86d6-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "8.NS.A", + "identifier": "6b9bbc94-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9bbc94-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c3059005-d7cd-11e8-824f-0242ac160002", + "identifier": "c3059005-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "6.EE.A.1", + "identifier": "6b9c2095-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9c2095-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "6.EE.A", + "identifier": "6b9b8e2f-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9b8e2f-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c3059258-d7cd-11e8-824f-0242ac160002", + "identifier": "c3059258-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "6.EE.A.2", + "identifier": "6b9d6298-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9d6298-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "6.EE.A", + "identifier": "6b9b8e2f-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9b8e2f-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c30594af-d7cd-11e8-824f-0242ac160002", + "identifier": "c30594af-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "6.EE.A.3", + "identifier": "6b9e3b67-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9e3b67-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "6.EE.A", + "identifier": "6b9b8e2f-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9b8e2f-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c3059704-d7cd-11e8-824f-0242ac160002", + "identifier": "c3059704-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "6.EE.A.4", + "identifier": "6b9edd45-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9edd45-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "6.EE.A", + "identifier": "6b9b8e2f-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9b8e2f-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c305995a-d7cd-11e8-824f-0242ac160002", + "identifier": "c305995a-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "6.EE.A.2.a", + "identifier": "6ba1286a-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6ba1286a-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "6.EE.A.2", + "identifier": "6b9d6298-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9d6298-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c3059bb1-d7cd-11e8-824f-0242ac160002", + "identifier": "c3059bb1-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "6.EE.A.2.b", + "identifier": "6ba1a6b3-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6ba1a6b3-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "6.EE.A.2", + "identifier": "6b9d6298-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9d6298-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c3059e0a-d7cd-11e8-824f-0242ac160002", + "identifier": "c3059e0a-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "6.EE.A.2.c", + "identifier": "6ba21506-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6ba21506-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "6.EE.A.2", + "identifier": "6b9d6298-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9d6298-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c305a062-d7cd-11e8-824f-0242ac160002", + "identifier": "c305a062-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "6.EE.B.5", + "identifier": "6b9f74c0-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9f74c0-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "6.EE.B", + "identifier": "6b9b914e-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9b914e-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c305a2bd-d7cd-11e8-824f-0242ac160002", + "identifier": "c305a2bd-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "6.EE.B.6", + "identifier": "6b9ff310-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9ff310-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "6.EE.B", + "identifier": "6b9b914e-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9b914e-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c305a51b-d7cd-11e8-824f-0242ac160002", + "identifier": "c305a51b-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "6.EE.B.7", + "identifier": "6ba05715-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6ba05715-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "6.EE.B", + "identifier": "6b9b914e-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9b914e-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c305a787-d7cd-11e8-824f-0242ac160002", + "identifier": "c305a787-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "6.EE.B.8", + "identifier": "6ba0a85f-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6ba0a85f-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "6.EE.B", + "identifier": "6b9b914e-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9b914e-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c305a9ec-d7cd-11e8-824f-0242ac160002", + "identifier": "c305a9ec-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "6.EE.C.9", + "identifier": "6ba0e50b-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6ba0e50b-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "6.EE.C", + "identifier": "6b9d0903-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9d0903-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c305aca6-d7cd-11e8-824f-0242ac160002", + "identifier": "c305aca6-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "7.EE.A.1", + "identifier": "6b9c313b-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9c313b-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "7.EE.A", + "identifier": "6b9ba381-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9ba381-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c305af9b-d7cd-11e8-824f-0242ac160002", + "identifier": "c305af9b-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "7.EE.A.2", + "identifier": "6b9d6fe1-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9d6fe1-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "7.EE.A", + "identifier": "6b9ba381-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9ba381-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c305b201-d7cd-11e8-824f-0242ac160002", + "identifier": "c305b201-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "7.EE.B.3", + "identifier": "6b9e464c-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9e464c-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "7.EE.B", + "identifier": "6b9d0dec-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9d0dec-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c305b465-d7cd-11e8-824f-0242ac160002", + "identifier": "c305b465-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "7.EE.B.4", + "identifier": "6b9ee71f-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9ee71f-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "7.EE.B", + "identifier": "6b9d0dec-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9d0dec-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c305b6cf-d7cd-11e8-824f-0242ac160002", + "identifier": "c305b6cf-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "7.EE.B.4.a", + "identifier": "6ba1361d-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6ba1361d-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "7.EE.B.4", + "identifier": "6b9ee71f-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9ee71f-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c305b93c-d7cd-11e8-824f-0242ac160002", + "identifier": "c305b93c-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "7.EE.B.4.b", + "identifier": "6ba1b5b2-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6ba1b5b2-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "7.EE.B.4", + "identifier": "6b9ee71f-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9ee71f-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c305bba2-d7cd-11e8-824f-0242ac160002", + "identifier": "c305bba2-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "8.EE.A.1", + "identifier": "6b9c4078-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9c4078-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "8.EE.A", + "identifier": "6b9bb323-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9bb323-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c305be0d-d7cd-11e8-824f-0242ac160002", + "identifier": "c305be0d-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "8.EE.A.2", + "identifier": "6b9d7eb3-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9d7eb3-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "8.EE.A", + "identifier": "6b9bb323-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9bb323-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c305c07a-d7cd-11e8-824f-0242ac160002", + "identifier": "c305c07a-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "8.EE.A.3", + "identifier": "6b9e5169-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9e5169-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "8.EE.A", + "identifier": "6b9bb323-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9bb323-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c305c2e8-d7cd-11e8-824f-0242ac160002", + "identifier": "c305c2e8-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "8.EE.A.4", + "identifier": "6b9ef0eb-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9ef0eb-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "8.EE.A", + "identifier": "6b9bb323-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9bb323-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c305c555-d7cd-11e8-824f-0242ac160002", + "identifier": "c305c555-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "8.EE.B.5", + "identifier": "6b9f8362-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9f8362-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "8.EE.B", + "identifier": "6b9d165f-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9d165f-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c305c818-d7cd-11e8-824f-0242ac160002", + "identifier": "c305c818-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "8.EE.B.6", + "identifier": "6b9fff6f-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9fff6f-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "8.EE.B", + "identifier": "6b9d165f-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9d165f-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c305ca8f-d7cd-11e8-824f-0242ac160002", + "identifier": "c305ca8f-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "8.EE.C.7", + "identifier": "6ba0609c-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6ba0609c-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "8.EE.C", + "identifier": "6b9e0511-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9e0511-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c305cd06-d7cd-11e8-824f-0242ac160002", + "identifier": "c305cd06-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "8.EE.C.8", + "identifier": "6ba0b1df-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6ba0b1df-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "8.EE.C", + "identifier": "6b9e0511-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9e0511-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c305cf74-d7cd-11e8-824f-0242ac160002", + "identifier": "c305cf74-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "8.EE.C.7.a", + "identifier": "6ba1486b-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6ba1486b-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "8.EE.C.7", + "identifier": "6ba0609c-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6ba0609c-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c305d1e7-d7cd-11e8-824f-0242ac160002", + "identifier": "c305d1e7-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "8.EE.C.7.b", + "identifier": "6ba1c7ad-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6ba1c7ad-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "8.EE.C.7", + "identifier": "6ba0609c-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6ba0609c-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c305d49a-d7cd-11e8-824f-0242ac160002", + "identifier": "c305d49a-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "8.EE.C.8.a", + "identifier": "6ba14b22-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6ba14b22-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "8.EE.C.8", + "identifier": "6ba0b1df-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6ba0b1df-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c305d71e-d7cd-11e8-824f-0242ac160002", + "identifier": "c305d71e-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "8.EE.C.8.b", + "identifier": "6ba1caa3-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6ba1caa3-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "8.EE.C.8", + "identifier": "6ba0b1df-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6ba0b1df-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c305d99b-d7cd-11e8-824f-0242ac160002", + "identifier": "c305d99b-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "8.EE.C.8.c", + "identifier": "6ba23117-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6ba23117-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "8.EE.C.8", + "identifier": "6ba0b1df-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6ba0b1df-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c305dc16-d7cd-11e8-824f-0242ac160002", + "identifier": "c305dc16-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "6.SP.A.1", + "identifier": "6b9c2e34-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9c2e34-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "6.SP.A", + "identifier": "6b9b9d82-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9b9d82-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c305de96-d7cd-11e8-824f-0242ac160002", + "identifier": "c305de96-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "6.SP.A.2", + "identifier": "6b9d6d44-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9d6d44-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "6.SP.A", + "identifier": "6b9b9d82-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9b9d82-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c305e118-d7cd-11e8-824f-0242ac160002", + "identifier": "c305e118-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "6.SP.A.3", + "identifier": "6b9e441c-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9e441c-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "6.SP.A", + "identifier": "6b9b9d82-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9b9d82-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c305e39f-d7cd-11e8-824f-0242ac160002", + "identifier": "c305e39f-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "6.SP.B.4", + "identifier": "6b9ee4bb-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9ee4bb-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "6.SP.B", + "identifier": "6b9ba07e-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9ba07e-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c305e621-d7cd-11e8-824f-0242ac160002", + "identifier": "c305e621-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "6.SP.B.5", + "identifier": "6b9f7a96-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9f7a96-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "6.SP.B", + "identifier": "6b9ba07e-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9ba07e-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c305e8a6-d7cd-11e8-824f-0242ac160002", + "identifier": "c305e8a6-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "6.SP.B.5.a", + "identifier": "6ba1331c-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6ba1331c-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "6.SP.B.5", + "identifier": "6b9f7a96-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9f7a96-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c305eb2c-d7cd-11e8-824f-0242ac160002", + "identifier": "c305eb2c-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "6.SP.B.5.b", + "identifier": "6ba1b2b7-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6ba1b2b7-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "6.SP.B.5", + "identifier": "6b9f7a96-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9f7a96-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c305edb1-d7cd-11e8-824f-0242ac160002", + "identifier": "c305edb1-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "6.SP.B.5.c", + "identifier": "6ba221e0-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6ba221e0-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "6.SP.B.5", + "identifier": "6b9f7a96-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9f7a96-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c305f03c-d7cd-11e8-824f-0242ac160002", + "identifier": "c305f03c-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "6.SP.B.5.d", + "identifier": "6ba26991-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6ba26991-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "6.SP.B.5", + "identifier": "6b9f7a96-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9f7a96-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c305f2cb-d7cd-11e8-824f-0242ac160002", + "identifier": "c305f2cb-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "7.SP.A.1", + "identifier": "6b9c3d7d-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9c3d7d-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "7.SP.A", + "identifier": "6b9bb00d-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9bb00d-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c305f55a-d7cd-11e8-824f-0242ac160002", + "identifier": "c305f55a-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "7.SP.A.2", + "identifier": "6b9d7bf7-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9d7bf7-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "7.SP.A", + "identifier": "6b9bb00d-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9bb00d-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c305f7e7-d7cd-11e8-824f-0242ac160002", + "identifier": "c305f7e7-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "7.SP.B.3", + "identifier": "6b9e4f3a-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9e4f3a-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "7.SP.B", + "identifier": "6b9d1384-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9d1384-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c305faa8-d7cd-11e8-824f-0242ac160002", + "identifier": "c305faa8-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "7.SP.B.4", + "identifier": "6b9eee6f-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9eee6f-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "7.SP.B", + "identifier": "6b9d1384-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9d1384-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c305fd46-d7cd-11e8-824f-0242ac160002", + "identifier": "c305fd46-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "7.SP.C.5", + "identifier": "6b9f803d-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9f803d-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "7.SP.C", + "identifier": "6b9e02f1-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9e02f1-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c305ffde-d7cd-11e8-824f-0242ac160002", + "identifier": "c305ffde-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "7.SP.C.6", + "identifier": "6b9ffc59-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9ffc59-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "7.SP.C", + "identifier": "6b9e02f1-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9e02f1-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c3060273-d7cd-11e8-824f-0242ac160002", + "identifier": "c3060273-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "7.SP.C.7", + "identifier": "6ba05d6e-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6ba05d6e-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "7.SP.C", + "identifier": "6b9e02f1-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9e02f1-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c3060509-d7cd-11e8-824f-0242ac160002", + "identifier": "c3060509-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "7.SP.C.8", + "identifier": "6ba0aeb7-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6ba0aeb7-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "7.SP.C", + "identifier": "6b9e02f1-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9e02f1-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c306079f-d7cd-11e8-824f-0242ac160002", + "identifier": "c306079f-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "7.SP.C.7.a", + "identifier": "6ba141ef-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6ba141ef-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "7.SP.C.7", + "identifier": "6ba05d6e-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6ba05d6e-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c3060a3a-d7cd-11e8-824f-0242ac160002", + "identifier": "c3060a3a-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "7.SP.C.7.b", + "identifier": "6ba1c19b-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6ba1c19b-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "7.SP.C.7", + "identifier": "6ba05d6e-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6ba05d6e-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c3060ce3-d7cd-11e8-824f-0242ac160002", + "identifier": "c3060ce3-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "7.SP.C.8.a", + "identifier": "6ba14563-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6ba14563-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "7.SP.C.8", + "identifier": "6ba0aeb7-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6ba0aeb7-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c3060f87-d7cd-11e8-824f-0242ac160002", + "identifier": "c3060f87-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "7.SP.C.8.b", + "identifier": "6ba1c4a2-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6ba1c4a2-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "7.SP.C.8", + "identifier": "6ba0aeb7-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6ba0aeb7-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c306121c-d7cd-11e8-824f-0242ac160002", + "identifier": "c306121c-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "7.SP.C.8.c", + "identifier": "6ba22e04-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6ba22e04-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "7.SP.C.8", + "identifier": "6ba0aeb7-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6ba0aeb7-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c3061525-d7cd-11e8-824f-0242ac160002", + "identifier": "c3061525-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "8.SP.A.1", + "identifier": "6b9c4d6c-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9c4d6c-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "8.SP.A", + "identifier": "6b9bbfac-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9bbfac-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c30617c3-d7cd-11e8-824f-0242ac160002", + "identifier": "c30617c3-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "8.SP.A.2", + "identifier": "6b9d89d9-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9d89d9-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "8.SP.A", + "identifier": "6b9bbfac-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9bbfac-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c3061a60-d7cd-11e8-824f-0242ac160002", + "identifier": "c3061a60-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "8.SP.A.3", + "identifier": "6b9e5802-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9e5802-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "8.SP.A", + "identifier": "6b9bbfac-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9bbfac-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c3061d67-d7cd-11e8-824f-0242ac160002", + "identifier": "c3061d67-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "8.SP.A.4", + "identifier": "6b9ef861-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9ef861-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "8.SP.A", + "identifier": "6b9bbfac-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9bbfac-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c3062067-d7cd-11e8-824f-0242ac160002", + "identifier": "c3062067-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "8.F.A.1", + "identifier": "6b9c4367-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9c4367-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "8.F.A", + "identifier": "6b9bb669-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9bb669-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c3062343-d7cd-11e8-824f-0242ac160002", + "identifier": "c3062343-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "8.F.A.2", + "identifier": "6b9d816d-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9d816d-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "8.F.A", + "identifier": "6b9bb669-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9bb669-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c30625f2-d7cd-11e8-824f-0242ac160002", + "identifier": "c30625f2-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "8.F.A.3", + "identifier": "6b9e5396-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9e5396-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "8.F.A", + "identifier": "6b9bb669-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9bb669-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c306289e-d7cd-11e8-824f-0242ac160002", + "identifier": "c306289e-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "8.F.B.4", + "identifier": "6b9ef36a-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9ef36a-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "8.F.B", + "identifier": "6b9d18e7-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9d18e7-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c3062d1a-d7cd-11e8-824f-0242ac160002", + "identifier": "c3062d1a-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "8.F.B.5", + "identifier": "6b9f86d5-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9f86d5-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "8.F.B", + "identifier": "6b9d18e7-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9d18e7-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c30630e6-d7cd-11e8-824f-0242ac160002", + "identifier": "c30630e6-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "The Real Number System", + "identifier": "6b9a3274-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9a3274-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "Number and Quantity", + "identifier": "6b9b0e8f-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9b0e8f-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c306333d-d7cd-11e8-824f-0242ac160002", + "identifier": "c306333d-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "Quantities", + "identifier": "6b9a351a-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9a351a-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "Number and Quantity", + "identifier": "6b9b0e8f-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9b0e8f-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c306358c-d7cd-11e8-824f-0242ac160002", + "identifier": "c306358c-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "The Complex Number System", + "identifier": "6b9a3926-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9a3926-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "Number and Quantity", + "identifier": "6b9b0e8f-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9b0e8f-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c30637df-d7cd-11e8-824f-0242ac160002", + "identifier": "c30637df-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "Vector & Matrix Quantities", + "identifier": "6b9a3b91-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9a3b91-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "Number and Quantity", + "identifier": "6b9b0e8f-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9b0e8f-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c3063a29-d7cd-11e8-824f-0242ac160002", + "identifier": "c3063a29-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "HSN-RN.A", + "identifier": "6b9ad8be-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9ad8be-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "The Real Number System", + "identifier": "6b9a3274-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9a3274-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c3063c79-d7cd-11e8-824f-0242ac160002", + "identifier": "c3063c79-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "HSN-RN.B", + "identifier": "6b9adb5b-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9adb5b-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "The Real Number System", + "identifier": "6b9a3274-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9a3274-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c3063ec6-d7cd-11e8-824f-0242ac160002", + "identifier": "c3063ec6-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "HSN-RN.A.1", + "identifier": "6b9c859b-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9c859b-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "HSN-RN.A", + "identifier": "6b9ad8be-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9ad8be-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c3064118-d7cd-11e8-824f-0242ac160002", + "identifier": "c3064118-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "HSN-RN.A.2", + "identifier": "6b9db867-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9db867-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "HSN-RN.A", + "identifier": "6b9ad8be-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9ad8be-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c3064365-d7cd-11e8-824f-0242ac160002", + "identifier": "c3064365-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "HSN-RN.B.3", + "identifier": "6b9e7ef2-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9e7ef2-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "HSN-RN.B", + "identifier": "6b9adb5b-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9adb5b-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c30645b8-d7cd-11e8-824f-0242ac160002", + "identifier": "c30645b8-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "HSN-Q.A", + "identifier": "6b9ad623-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9ad623-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "Quantities", + "identifier": "6b9a351a-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9a351a-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c3064808-d7cd-11e8-824f-0242ac160002", + "identifier": "c3064808-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "HSN-Q.A.1", + "identifier": "6b9c8254-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9c8254-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "HSN-Q.A", + "identifier": "6b9ad623-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9ad623-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c3064a9b-d7cd-11e8-824f-0242ac160002", + "identifier": "c3064a9b-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "HSN-Q.A.2", + "identifier": "6b9db5bb-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9db5bb-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "HSN-Q.A", + "identifier": "6b9ad623-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9ad623-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c3064cee-d7cd-11e8-824f-0242ac160002", + "identifier": "c3064cee-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "HSN-Q.A.3", + "identifier": "6b9e7cc4-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9e7cc4-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "HSN-Q.A", + "identifier": "6b9ad623-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9ad623-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c3064f3f-d7cd-11e8-824f-0242ac160002", + "identifier": "c3064f3f-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "HSN-CN.A", + "identifier": "6b9ace60-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9ace60-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "The Complex Number System", + "identifier": "6b9a3926-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9a3926-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c3065191-d7cd-11e8-824f-0242ac160002", + "identifier": "c3065191-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "HSN-CN.B", + "identifier": "6b9ad0fc-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9ad0fc-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "The Complex Number System", + "identifier": "6b9a3926-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9a3926-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c30654fb-d7cd-11e8-824f-0242ac160002", + "identifier": "c30654fb-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "HSN-CN.C", + "identifier": "6b9ad38b-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9ad38b-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "The Complex Number System", + "identifier": "6b9a3926-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9a3926-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c306582d-d7cd-11e8-824f-0242ac160002", + "identifier": "c306582d-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "HSN-CN.A.1", + "identifier": "6b9c7e76-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9c7e76-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "HSN-CN.A", + "identifier": "6b9ace60-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9ace60-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c3065c3e-d7cd-11e8-824f-0242ac160002", + "identifier": "c3065c3e-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "HSN-CN.A.2", + "identifier": "6b9db316-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9db316-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "HSN-CN.A", + "identifier": "6b9ace60-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9ace60-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c30660a4-d7cd-11e8-824f-0242ac160002", + "identifier": "c30660a4-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "HSN-CN.A.3", + "identifier": "6b9e7a98-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9e7a98-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "HSN-CN.A", + "identifier": "6b9ace60-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9ace60-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c3066389-d7cd-11e8-824f-0242ac160002", + "identifier": "c3066389-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "HSN-CN.B.4", + "identifier": "6b9f1bd7-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9f1bd7-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "HSN-CN.B", + "identifier": "6b9ad0fc-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9ad0fc-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c3066610-d7cd-11e8-824f-0242ac160002", + "identifier": "c3066610-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "HSN-CN.B.5", + "identifier": "6b9fa8da-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9fa8da-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "HSN-CN.B", + "identifier": "6b9ad0fc-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9ad0fc-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c3066896-d7cd-11e8-824f-0242ac160002", + "identifier": "c3066896-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "HSN-CN.B.6", + "identifier": "6ba01ad6-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6ba01ad6-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "HSN-CN.B", + "identifier": "6b9ad0fc-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9ad0fc-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c3066b15-d7cd-11e8-824f-0242ac160002", + "identifier": "c3066b15-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "HSN-CN.C.7", + "identifier": "6ba07db3-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6ba07db3-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "HSN-CN.C", + "identifier": "6b9ad38b-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9ad38b-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c3066d9d-d7cd-11e8-824f-0242ac160002", + "identifier": "c3066d9d-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "HSN-CN.C.8", + "identifier": "6ba0c91e-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6ba0c91e-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "HSN-CN.C", + "identifier": "6b9ad38b-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9ad38b-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c30671b6-d7cd-11e8-824f-0242ac160002", + "identifier": "c30671b6-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "HSN-CN.C.9", + "identifier": "6ba0f6fa-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6ba0f6fa-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "HSN-CN.C", + "identifier": "6b9ad38b-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9ad38b-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c30675dd-d7cd-11e8-824f-0242ac160002", + "identifier": "c30675dd-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "HSN-VM.A", + "identifier": "6b9ade5b-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9ade5b-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "Vector & Matrix Quantities", + "identifier": "6b9a3b91-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9a3b91-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c30678c1-d7cd-11e8-824f-0242ac160002", + "identifier": "c30678c1-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "HSN-VM.B", + "identifier": "6b9ae113-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9ae113-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "Vector & Matrix Quantities", + "identifier": "6b9a3b91-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9a3b91-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c3067bf6-d7cd-11e8-824f-0242ac160002", + "identifier": "c3067bf6-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "HSN-VM.C", + "identifier": "6b9ae3d2-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9ae3d2-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "Vector & Matrix Quantities", + "identifier": "6b9a3b91-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9a3b91-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c3067e86-d7cd-11e8-824f-0242ac160002", + "identifier": "c3067e86-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "HSN-VM.A.1", + "identifier": "6b9c8813-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9c8813-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "HSN-VM.A", + "identifier": "6b9ade5b-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9ade5b-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c306810a-d7cd-11e8-824f-0242ac160002", + "identifier": "c306810a-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "HSN-VM.A.2", + "identifier": "6b9dbb12-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9dbb12-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "HSN-VM.A", + "identifier": "6b9ade5b-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9ade5b-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c306837e-d7cd-11e8-824f-0242ac160002", + "identifier": "c306837e-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "HSN-VM.A.3", + "identifier": "6b9e8132-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9e8132-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "HSN-VM.A", + "identifier": "6b9ade5b-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9ade5b-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c3068675-d7cd-11e8-824f-0242ac160002", + "identifier": "c3068675-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "HSN-VM.B.4", + "identifier": "6b9f1e55-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9f1e55-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "HSN-VM.B", + "identifier": "6b9ae113-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9ae113-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c30688f3-d7cd-11e8-824f-0242ac160002", + "identifier": "c30688f3-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "HSN-VM.B.5", + "identifier": "6b9fabf9-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9fabf9-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "HSN-VM.B", + "identifier": "6b9ae113-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9ae113-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c3068b6d-d7cd-11e8-824f-0242ac160002", + "identifier": "c3068b6d-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "HSN-VM.B.4.a", + "identifier": "6ba16bb7-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6ba16bb7-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "HSN-VM.B.4", + "identifier": "6b9f1e55-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9f1e55-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c3068df0-d7cd-11e8-824f-0242ac160002", + "identifier": "c3068df0-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "HSN-VM.B.4.b", + "identifier": "6ba1ede4-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6ba1ede4-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "HSN-VM.B.4", + "identifier": "6b9f1e55-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9f1e55-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c3069072-d7cd-11e8-824f-0242ac160002", + "identifier": "c3069072-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "HSN-VM.B.4.c", + "identifier": "6ba24865-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6ba24865-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "HSN-VM.B.4", + "identifier": "6b9f1e55-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9f1e55-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c30692f7-d7cd-11e8-824f-0242ac160002", + "identifier": "c30692f7-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "HSN-VM.B.5.a", + "identifier": "6ba16e75-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6ba16e75-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "HSN-VM.B.5", + "identifier": "6b9fabf9-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9fabf9-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c30695d9-d7cd-11e8-824f-0242ac160002", + "identifier": "c30695d9-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "HSN-VM.B.5.b", + "identifier": "6ba1f221-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6ba1f221-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "HSN-VM.B.5", + "identifier": "6b9fabf9-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9fabf9-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c30698b5-d7cd-11e8-824f-0242ac160002", + "identifier": "c30698b5-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "HSN-VM.C.6", + "identifier": "6ba01de0-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6ba01de0-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "HSN-VM.C", + "identifier": "6b9ae3d2-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9ae3d2-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c3069b59-d7cd-11e8-824f-0242ac160002", + "identifier": "c3069b59-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "HSN-VM.C.7", + "identifier": "6ba080f8-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6ba080f8-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "HSN-VM.C", + "identifier": "6b9ae3d2-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9ae3d2-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c3069df2-d7cd-11e8-824f-0242ac160002", + "identifier": "c3069df2-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "HSN-VM.C.8", + "identifier": "6ba0ccae-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6ba0ccae-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "HSN-VM.C", + "identifier": "6b9ae3d2-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9ae3d2-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c306a08b-d7cd-11e8-824f-0242ac160002", + "identifier": "c306a08b-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "HSN-VM.C.9", + "identifier": "6ba0f981-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6ba0f981-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "HSN-VM.C", + "identifier": "6b9ae3d2-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9ae3d2-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c306a329-d7cd-11e8-824f-0242ac160002", + "identifier": "c306a329-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "HSN-VM.C.10", + "identifier": "6b9caf2d-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9caf2d-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "HSN-VM.C", + "identifier": "6b9ae3d2-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9ae3d2-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c306a5cd-d7cd-11e8-824f-0242ac160002", + "identifier": "c306a5cd-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "HSN-VM.C.11", + "identifier": "6b9cb89d-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9cb89d-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "HSN-VM.C", + "identifier": "6b9ae3d2-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9ae3d2-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c306a86e-d7cd-11e8-824f-0242ac160002", + "identifier": "c306a86e-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "HSN-VM.C.12", + "identifier": "6b9cc214-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9cc214-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "HSN-VM.C", + "identifier": "6b9ae3d2-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9ae3d2-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c306ab12-d7cd-11e8-824f-0242ac160002", + "identifier": "c306ab12-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "Seeing Structure in Expressions", + "identifier": "6b9a3dea-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9a3dea-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "Algebra", + "identifier": "6b9cca4c-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9cca4c-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c306adb2-d7cd-11e8-824f-0242ac160002", + "identifier": "c306adb2-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "Arithmetic with Polynomials & Rational Expressions", + "identifier": "6b9a4043-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9a4043-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "Algebra", + "identifier": "6b9cca4c-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9cca4c-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c306b059-d7cd-11e8-824f-0242ac160002", + "identifier": "c306b059-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "Creating Equations", + "identifier": "6b9a429b-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9a429b-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "Algebra", + "identifier": "6b9cca4c-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9cca4c-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c306b2fd-d7cd-11e8-824f-0242ac160002", + "identifier": "c306b2fd-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "Reasoning with Equations & Inequalities", + "identifier": "6b9a44f8-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9a44f8-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "Algebra", + "identifier": "6b9cca4c-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9cca4c-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c306b5aa-d7cd-11e8-824f-0242ac160002", + "identifier": "c306b5aa-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "HSA-SSE.A", + "identifier": "6b9a7e73-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9a7e73-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "Seeing Structure in Expressions", + "identifier": "6b9a3dea-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9a3dea-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c306b855-d7cd-11e8-824f-0242ac160002", + "identifier": "c306b855-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "HSA-SSE.B", + "identifier": "6b9a80dc-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9a80dc-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "Seeing Structure in Expressions", + "identifier": "6b9a3dea-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9a3dea-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c306bb02-d7cd-11e8-824f-0242ac160002", + "identifier": "c306bb02-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "HSA-SSE.A.1", + "identifier": "6b9c5ae5-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9c5ae5-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "HSA-SSE.A", + "identifier": "6b9a7e73-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9a7e73-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c306bde8-d7cd-11e8-824f-0242ac160002", + "identifier": "c306bde8-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "HSA-SSE.A.2", + "identifier": "6b9d9496-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9d9496-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "HSA-SSE.A", + "identifier": "6b9a7e73-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9a7e73-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c306c0a4-d7cd-11e8-824f-0242ac160002", + "identifier": "c306c0a4-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "HSA-SSE.A.1.a", + "identifier": "6ba15328-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6ba15328-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "HSA-SSE.A.1", + "identifier": "6b9c5ae5-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9c5ae5-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c306c359-d7cd-11e8-824f-0242ac160002", + "identifier": "c306c359-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "HSA-SSE.A.1.b", + "identifier": "6ba1d40f-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6ba1d40f-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "HSA-SSE.A.1", + "identifier": "6b9c5ae5-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9c5ae5-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c306c609-d7cd-11e8-824f-0242ac160002", + "identifier": "c306c609-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "HSA-SSE.B.3", + "identifier": "6b9e60fe-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9e60fe-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "HSA-SSE.B", + "identifier": "6b9a80dc-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9a80dc-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c306c8c4-d7cd-11e8-824f-0242ac160002", + "identifier": "c306c8c4-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "HSA-SSE.B.4", + "identifier": "6b9f0232-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9f0232-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "HSA-SSE.B", + "identifier": "6b9a80dc-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9a80dc-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c306cb7d-d7cd-11e8-824f-0242ac160002", + "identifier": "c306cb7d-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "HSA-SSE.B.3.a", + "identifier": "6ba155d1-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6ba155d1-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "HSA-SSE.B.3", + "identifier": "6b9e60fe-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9e60fe-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c306ce35-d7cd-11e8-824f-0242ac160002", + "identifier": "c306ce35-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "HSA-SSE.B.3.b", + "identifier": "6ba1d702-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6ba1d702-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "HSA-SSE.B.3", + "identifier": "6b9e60fe-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9e60fe-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c306d0eb-d7cd-11e8-824f-0242ac160002", + "identifier": "c306d0eb-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "HSA-SSE.B.3.c", + "identifier": "6ba237aa-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6ba237aa-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "HSA-SSE.B.3", + "identifier": "6b9e60fe-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9e60fe-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c306d39f-d7cd-11e8-824f-0242ac160002", + "identifier": "c306d39f-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "HSA-APR.A", + "identifier": "6b9a686d-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9a686d-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "Arithmetic with Polynomials & Rational Expressions", + "identifier": "6b9a4043-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9a4043-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c306d65b-d7cd-11e8-824f-0242ac160002", + "identifier": "c306d65b-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "HSA-APR.B", + "identifier": "6b9a6ad4-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9a6ad4-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "Arithmetic with Polynomials & Rational Expressions", + "identifier": "6b9a4043-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9a4043-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c306d916-d7cd-11e8-824f-0242ac160002", + "identifier": "c306d916-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "HSA-APR.C", + "identifier": "6b9a6d28-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9a6d28-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "Arithmetic with Polynomials & Rational Expressions", + "identifier": "6b9a4043-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9a4043-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c306db8b-d7cd-11e8-824f-0242ac160002", + "identifier": "c306db8b-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "HSA-APR.D", + "identifier": "6b9a6f7c-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9a6f7c-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "Arithmetic with Polynomials & Rational Expressions", + "identifier": "6b9a4043-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9a4043-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c306ddd3-d7cd-11e8-824f-0242ac160002", + "identifier": "c306ddd3-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "HSA-APR.A.1", + "identifier": "6b9c5182-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9c5182-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "HSA-APR.A", + "identifier": "6b9a686d-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9a686d-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c306e021-d7cd-11e8-824f-0242ac160002", + "identifier": "c306e021-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "HSA-APR.B.2", + "identifier": "6b9d8c97-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9d8c97-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "HSA-APR.B", + "identifier": "6b9a6ad4-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9a6ad4-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c306e26c-d7cd-11e8-824f-0242ac160002", + "identifier": "c306e26c-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "HSA-APR.B.3", + "identifier": "6b9e5a39-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9e5a39-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "HSA-APR.B", + "identifier": "6b9a6ad4-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9a6ad4-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c306e4eb-d7cd-11e8-824f-0242ac160002", + "identifier": "c306e4eb-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "HSA-APR.C.4", + "identifier": "6b9efad6-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9efad6-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "HSA-APR.C", + "identifier": "6b9a6d28-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9a6d28-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c306e74f-d7cd-11e8-824f-0242ac160002", + "identifier": "c306e74f-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "HSA-APR.C.5", + "identifier": "6b9f8c74-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9f8c74-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "HSA-APR.C", + "identifier": "6b9a6d28-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9a6d28-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c306e9a1-d7cd-11e8-824f-0242ac160002", + "identifier": "c306e9a1-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "HSA-APR.D.6", + "identifier": "6ba00569-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6ba00569-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "HSA-APR.D", + "identifier": "6b9a6f7c-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9a6f7c-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c306ebe6-d7cd-11e8-824f-0242ac160002", + "identifier": "c306ebe6-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "HSA-APR.D.7", + "identifier": "6ba06702-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6ba06702-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "HSA-APR.D", + "identifier": "6b9a6f7c-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9a6f7c-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c306eeb3-d7cd-11e8-824f-0242ac160002", + "identifier": "c306eeb3-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "HSA-CED.A", + "identifier": "6b9a724e-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9a724e-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "Creating Equations", + "identifier": "6b9a429b-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9a429b-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c306f103-d7cd-11e8-824f-0242ac160002", + "identifier": "c306f103-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "HSA-CED.A.1", + "identifier": "6b9c54a3-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9c54a3-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "HSA-CED.A", + "identifier": "6b9a724e-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9a724e-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c306f34b-d7cd-11e8-824f-0242ac160002", + "identifier": "c306f34b-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "HSA-CED.A.2", + "identifier": "6b9d8f41-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9d8f41-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "HSA-CED.A", + "identifier": "6b9a724e-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9a724e-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c306f5a2-d7cd-11e8-824f-0242ac160002", + "identifier": "c306f5a2-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "HSA-CED.A.3", + "identifier": "6b9e5c5a-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9e5c5a-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "HSA-CED.A", + "identifier": "6b9a724e-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9a724e-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c306f7ef-d7cd-11e8-824f-0242ac160002", + "identifier": "c306f7ef-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "HSA-CED.A.4", + "identifier": "6b9efd43-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9efd43-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "HSA-CED.A", + "identifier": "6b9a724e-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9a724e-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c306fa3c-d7cd-11e8-824f-0242ac160002", + "identifier": "c306fa3c-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "HSA-REI.A", + "identifier": "6b9a74ad-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9a74ad-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "Reasoning with Equations & Inequalities", + "identifier": "6b9a44f8-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9a44f8-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c306fc8f-d7cd-11e8-824f-0242ac160002", + "identifier": "c306fc8f-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "HSA-REI.B", + "identifier": "6b9a7708-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9a7708-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "Reasoning with Equations & Inequalities", + "identifier": "6b9a44f8-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9a44f8-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c306fee3-d7cd-11e8-824f-0242ac160002", + "identifier": "c306fee3-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "HSA-REI.C", + "identifier": "6b9a796b-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9a796b-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "Reasoning with Equations & Inequalities", + "identifier": "6b9a44f8-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9a44f8-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c307020d-d7cd-11e8-824f-0242ac160002", + "identifier": "c307020d-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "HSA-REI.D", + "identifier": "6b9a7c08-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9a7c08-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "Reasoning with Equations & Inequalities", + "identifier": "6b9a44f8-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9a44f8-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c307047b-d7cd-11e8-824f-0242ac160002", + "identifier": "c307047b-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "HSA-REI.A.1", + "identifier": "6b9c57c7-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9c57c7-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "HSA-REI.A", + "identifier": "6b9a74ad-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9a74ad-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c307088c-d7cd-11e8-824f-0242ac160002", + "identifier": "c307088c-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "HSA-REI.A.2", + "identifier": "6b9d91e7-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9d91e7-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "HSA-REI.A", + "identifier": "6b9a74ad-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9a74ad-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c3070af2-d7cd-11e8-824f-0242ac160002", + "identifier": "c3070af2-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "HSA-REI.B.3", + "identifier": "6b9e5ed4-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9e5ed4-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "HSA-REI.B", + "identifier": "6b9a7708-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9a7708-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c3070d8f-d7cd-11e8-824f-0242ac160002", + "identifier": "c3070d8f-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "HSA-REI.B.4", + "identifier": "6b9effbc-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9effbc-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "HSA-REI.B", + "identifier": "6b9a7708-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9a7708-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c3070ff3-d7cd-11e8-824f-0242ac160002", + "identifier": "c3070ff3-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "HSA-REI.B.4.a", + "identifier": "6ba1507e-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6ba1507e-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "HSA-REI.B.4", + "identifier": "6b9effbc-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9effbc-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c3071258-d7cd-11e8-824f-0242ac160002", + "identifier": "c3071258-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "HSA-REI.B.4.b", + "identifier": "6ba1d10e-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6ba1d10e-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "HSA-REI.B.4", + "identifier": "6b9effbc-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9effbc-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c30714b7-d7cd-11e8-824f-0242ac160002", + "identifier": "c30714b7-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "HSA-REI.C.5", + "identifier": "6b9f8f43-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9f8f43-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "HSA-REI.C", + "identifier": "6b9a796b-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9a796b-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c3071715-d7cd-11e8-824f-0242ac160002", + "identifier": "c3071715-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "HSA-REI.C.6", + "identifier": "6ba00873-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6ba00873-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "HSA-REI.C", + "identifier": "6b9a796b-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9a796b-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c30719b6-d7cd-11e8-824f-0242ac160002", + "identifier": "c30719b6-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "HSA-REI.C.7", + "identifier": "6ba06a30-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6ba06a30-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "HSA-REI.C", + "identifier": "6b9a796b-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9a796b-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c3071c0d-d7cd-11e8-824f-0242ac160002", + "identifier": "c3071c0d-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "HSA-REI.C.8", + "identifier": "6ba0b82c-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6ba0b82c-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "HSA-REI.C", + "identifier": "6b9a796b-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9a796b-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c3071f41-d7cd-11e8-824f-0242ac160002", + "identifier": "c3071f41-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "HSA-REI.C.9", + "identifier": "6ba0ea6e-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6ba0ea6e-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "HSA-REI.C", + "identifier": "6b9a796b-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9a796b-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c30721a3-d7cd-11e8-824f-0242ac160002", + "identifier": "c30721a3-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "HSA-REI.D.10", + "identifier": "6b9ca838-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9ca838-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "HSA-REI.D", + "identifier": "6b9a7c08-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9a7c08-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c30723f9-d7cd-11e8-824f-0242ac160002", + "identifier": "c30723f9-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "HSA-REI.D.11", + "identifier": "6b9cb182-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9cb182-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "HSA-REI.D", + "identifier": "6b9a7c08-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9a7c08-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c30726a2-d7cd-11e8-824f-0242ac160002", + "identifier": "c30726a2-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "HSA-REI.D.12", + "identifier": "6b9cbd4d-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9cbd4d-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "HSA-REI.D", + "identifier": "6b9a7c08-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9a7c08-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c3072900-d7cd-11e8-824f-0242ac160002", + "identifier": "c3072900-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "Interpreting Functions", + "identifier": "6b9a4744-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9a4744-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "Functions", + "identifier": "6b9dd712-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9dd712-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c3072b59-d7cd-11e8-824f-0242ac160002", + "identifier": "c3072b59-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "Building Functions", + "identifier": "6b9a4990-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9a4990-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "Functions", + "identifier": "6b9dd712-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9dd712-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c3072db0-d7cd-11e8-824f-0242ac160002", + "identifier": "c3072db0-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "Linear, Quadratic, & Exponential Models", + "identifier": "6b9a4bdf-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9a4bdf-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "Functions", + "identifier": "6b9dd712-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9dd712-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c3073009-d7cd-11e8-824f-0242ac160002", + "identifier": "c3073009-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "Trigonometric Functions", + "identifier": "6b9a4e42-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9a4e42-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "Functions", + "identifier": "6b9dd712-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9dd712-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c307327d-d7cd-11e8-824f-0242ac160002", + "identifier": "c307327d-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "HSF-IF.A", + "identifier": "6b9a888f-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9a888f-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "Interpreting Functions", + "identifier": "6b9a4744-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9a4744-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c307352c-d7cd-11e8-824f-0242ac160002", + "identifier": "c307352c-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "HSF-IF.B", + "identifier": "6b9a8b23-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9a8b23-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "Interpreting Functions", + "identifier": "6b9a4744-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9a4744-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c307379a-d7cd-11e8-824f-0242ac160002", + "identifier": "c307379a-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "HSF-IF.C", + "identifier": "6b9a8eff-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9a8eff-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "Interpreting Functions", + "identifier": "6b9a4744-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9a4744-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c3073a0c-d7cd-11e8-824f-0242ac160002", + "identifier": "c3073a0c-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "HSF-IF.A.1", + "identifier": "6b9c6130-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9c6130-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "HSF-IF.A", + "identifier": "6b9a888f-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9a888f-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c3073c7e-d7cd-11e8-824f-0242ac160002", + "identifier": "c3073c7e-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "HSF-IF.A.2", + "identifier": "6b9d99ff-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9d99ff-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "HSF-IF.A", + "identifier": "6b9a888f-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9a888f-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c3073ee0-d7cd-11e8-824f-0242ac160002", + "identifier": "c3073ee0-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "HSF-IF.A.3", + "identifier": "6b9e656a-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9e656a-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "HSF-IF.A", + "identifier": "6b9a888f-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9a888f-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c3074146-d7cd-11e8-824f-0242ac160002", + "identifier": "c3074146-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "HSF-IF.B.4", + "identifier": "6b9f0737-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9f0737-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "HSF-IF.B", + "identifier": "6b9a8b23-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9a8b23-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c30743a8-d7cd-11e8-824f-0242ac160002", + "identifier": "c30743a8-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "HSF-IF.B.5", + "identifier": "6b9f94e7-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9f94e7-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "HSF-IF.B", + "identifier": "6b9a8b23-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9a8b23-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c307460e-d7cd-11e8-824f-0242ac160002", + "identifier": "c307460e-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "HSF-IF.B.6", + "identifier": "6ba00b75-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6ba00b75-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "HSF-IF.B", + "identifier": "6b9a8b23-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9a8b23-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c3074873-d7cd-11e8-824f-0242ac160002", + "identifier": "c3074873-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "HSF-IF.C.7", + "identifier": "6ba06d60-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6ba06d60-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "HSF-IF.C", + "identifier": "6b9a8eff-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9a8eff-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c3074aea-d7cd-11e8-824f-0242ac160002", + "identifier": "c3074aea-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "HSF-IF.C.8", + "identifier": "6ba0bb4b-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6ba0bb4b-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "HSF-IF.C", + "identifier": "6b9a8eff-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9a8eff-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c3074d57-d7cd-11e8-824f-0242ac160002", + "identifier": "c3074d57-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "HSF-IF.C.9", + "identifier": "6ba0ece8-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6ba0ece8-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "HSF-IF.C", + "identifier": "6b9a8eff-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9a8eff-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c3074fb7-d7cd-11e8-824f-0242ac160002", + "identifier": "c3074fb7-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "HSF-IF.C.7.a", + "identifier": "6ba16016-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6ba16016-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "HSF-IF.C.7", + "identifier": "6ba06d60-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6ba06d60-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c307529b-d7cd-11e8-824f-0242ac160002", + "identifier": "c307529b-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "HSF-IF.C.7.b", + "identifier": "6ba1e033-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6ba1e033-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "HSF-IF.C.7", + "identifier": "6ba06d60-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6ba06d60-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c307550b-d7cd-11e8-824f-0242ac160002", + "identifier": "c307550b-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "HSF-IF.C.7.c", + "identifier": "6ba2416d-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6ba2416d-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "HSF-IF.C.7", + "identifier": "6ba06d60-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6ba06d60-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c3075776-d7cd-11e8-824f-0242ac160002", + "identifier": "c3075776-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "HSF-IF.C.7.d", + "identifier": "6ba27a0c-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6ba27a0c-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "HSF-IF.C.7", + "identifier": "6ba06d60-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6ba06d60-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c3075a17-d7cd-11e8-824f-0242ac160002", + "identifier": "c3075a17-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "HSF-IF.C.7.e", + "identifier": "6ba27db0-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6ba27db0-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "HSF-IF.C.7", + "identifier": "6ba06d60-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6ba06d60-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c3075c95-d7cd-11e8-824f-0242ac160002", + "identifier": "c3075c95-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "HSF-IF.C.8.a", + "identifier": "6ba16344-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6ba16344-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "HSF-IF.C.8", + "identifier": "6ba0bb4b-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6ba0bb4b-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c3075f07-d7cd-11e8-824f-0242ac160002", + "identifier": "c3075f07-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "HSF-IF.C.8.b", + "identifier": "6ba1e33f-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6ba1e33f-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "HSF-IF.C.8", + "identifier": "6ba0bb4b-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6ba0bb4b-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c307617c-d7cd-11e8-824f-0242ac160002", + "identifier": "c307617c-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "HSF-BF.A", + "identifier": "6b9a8346-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9a8346-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "Building Functions", + "identifier": "6b9a4990-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9a4990-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c30763ef-d7cd-11e8-824f-0242ac160002", + "identifier": "c30763ef-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "HSF-BF.B", + "identifier": "6b9a85c7-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9a85c7-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "Building Functions", + "identifier": "6b9a4990-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9a4990-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c30766ac-d7cd-11e8-824f-0242ac160002", + "identifier": "c30766ac-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "HSF-BF.A.1", + "identifier": "6b9c5e16-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9c5e16-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "HSF-BF.A", + "identifier": "6b9a8346-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9a8346-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c3076913-d7cd-11e8-824f-0242ac160002", + "identifier": "c3076913-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "HSF-BF.A.2", + "identifier": "6b9d974a-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9d974a-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "HSF-BF.A", + "identifier": "6b9a8346-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9a8346-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c3076b80-d7cd-11e8-824f-0242ac160002", + "identifier": "c3076b80-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "HSF-BF.A.1.a", + "identifier": "6ba15907-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6ba15907-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "HSF-BF.A.1", + "identifier": "6b9c5e16-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9c5e16-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c3076de9-d7cd-11e8-824f-0242ac160002", + "identifier": "c3076de9-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "HSF-BF.A.1.b", + "identifier": "6ba1da14-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6ba1da14-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "HSF-BF.A.1", + "identifier": "6b9c5e16-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9c5e16-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c3077051-d7cd-11e8-824f-0242ac160002", + "identifier": "c3077051-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "HSF-BF.A.1.c", + "identifier": "6ba23ad5-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6ba23ad5-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "HSF-BF.A.1", + "identifier": "6b9c5e16-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9c5e16-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c30772bd-d7cd-11e8-824f-0242ac160002", + "identifier": "c30772bd-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "HSF-BF.B.3", + "identifier": "6b9e632e-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9e632e-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "HSF-BF.B", + "identifier": "6b9a85c7-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9a85c7-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c307752c-d7cd-11e8-824f-0242ac160002", + "identifier": "c307752c-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "HSF-BF.B.4", + "identifier": "6b9f04ba-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9f04ba-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "HSF-BF.B", + "identifier": "6b9a85c7-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9a85c7-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c307779c-d7cd-11e8-824f-0242ac160002", + "identifier": "c307779c-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "HSF-BF.B.5", + "identifier": "6b9f920f-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9f920f-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "HSF-BF.B", + "identifier": "6b9a85c7-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9a85c7-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c3077a0d-d7cd-11e8-824f-0242ac160002", + "identifier": "c3077a0d-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "HSF-BF.B.4.a", + "identifier": "6ba15bd5-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6ba15bd5-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "HSF-BF.B.4", + "identifier": "6b9f04ba-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9f04ba-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c3077c7c-d7cd-11e8-824f-0242ac160002", + "identifier": "c3077c7c-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "HSF-BF.B.4.b", + "identifier": "6ba1dd29-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6ba1dd29-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "HSF-BF.B.4", + "identifier": "6b9f04ba-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9f04ba-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c3077eee-d7cd-11e8-824f-0242ac160002", + "identifier": "c3077eee-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "HSF-BF.B.4.c", + "identifier": "6ba23ded-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6ba23ded-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "HSF-BF.B.4", + "identifier": "6b9f04ba-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9f04ba-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c30781b3-d7cd-11e8-824f-0242ac160002", + "identifier": "c30781b3-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "HSF-BF.B.4.d", + "identifier": "6ba276c6-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6ba276c6-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "HSF-BF.B.4", + "identifier": "6b9f04ba-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9f04ba-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c3078433-d7cd-11e8-824f-0242ac160002", + "identifier": "c3078433-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "HSF-LE.A", + "identifier": "6b9a929f-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9a929f-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "Linear, Quadratic, & Exponential Models", + "identifier": "6b9a4bdf-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9a4bdf-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c30786ab-d7cd-11e8-824f-0242ac160002", + "identifier": "c30786ab-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "HSF-LE.B", + "identifier": "6b9a951f-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9a951f-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "Linear, Quadratic, & Exponential Models", + "identifier": "6b9a4bdf-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9a4bdf-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c3078925-d7cd-11e8-824f-0242ac160002", + "identifier": "c3078925-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "HSF-LE.A.1", + "identifier": "6b9c644f-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9c644f-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "HSF-LE.A", + "identifier": "6b9a929f-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9a929f-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c3078ba0-d7cd-11e8-824f-0242ac160002", + "identifier": "c3078ba0-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "HSF-LE.A.2", + "identifier": "6b9d9ca7-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9d9ca7-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "HSF-LE.A", + "identifier": "6b9a929f-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9a929f-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c3078e18-d7cd-11e8-824f-0242ac160002", + "identifier": "c3078e18-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "HSF-LE.A.3", + "identifier": "6b9e67a9-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9e67a9-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "HSF-LE.A", + "identifier": "6b9a929f-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9a929f-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c3079090-d7cd-11e8-824f-0242ac160002", + "identifier": "c3079090-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "HSF-LE.A.4", + "identifier": "6b9f09b7-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9f09b7-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "HSF-LE.A", + "identifier": "6b9a929f-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9a929f-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c307930b-d7cd-11e8-824f-0242ac160002", + "identifier": "c307930b-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "HSF-LE.A.1.a", + "identifier": "6ba16606-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6ba16606-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "HSF-LE.A.1", + "identifier": "6b9c644f-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9c644f-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c3079589-d7cd-11e8-824f-0242ac160002", + "identifier": "c3079589-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "HSF-LE.A.1.b", + "identifier": "6ba1e7bb-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6ba1e7bb-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "HSF-LE.A.1", + "identifier": "6b9c644f-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9c644f-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c30798b6-d7cd-11e8-824f-0242ac160002", + "identifier": "c30798b6-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "HSF-LE.A.1.c", + "identifier": "6ba24537-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6ba24537-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "HSF-LE.A.1", + "identifier": "6b9c644f-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9c644f-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c3079b38-d7cd-11e8-824f-0242ac160002", + "identifier": "c3079b38-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "HSF-LE.B.5", + "identifier": "6b9f97c6-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9f97c6-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "HSF-LE.B", + "identifier": "6b9a951f-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9a951f-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c3079dbc-d7cd-11e8-824f-0242ac160002", + "identifier": "c3079dbc-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "HSF-TF.A", + "identifier": "6b9a9793-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9a9793-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "Trigonometric Functions", + "identifier": "6b9a4e42-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9a4e42-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c307a040-d7cd-11e8-824f-0242ac160002", + "identifier": "c307a040-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "HSF-TF.B", + "identifier": "6b9a9a01-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9a9a01-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "Trigonometric Functions", + "identifier": "6b9a4e42-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9a4e42-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c307a2c6-d7cd-11e8-824f-0242ac160002", + "identifier": "c307a2c6-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "HSF-TF.C", + "identifier": "6b9a9c95-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9a9c95-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "Trigonometric Functions", + "identifier": "6b9a4e42-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9a4e42-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c307a54c-d7cd-11e8-824f-0242ac160002", + "identifier": "c307a54c-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "HSF-TF.A.1", + "identifier": "6b9c675d-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9c675d-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "HSF-TF.A", + "identifier": "6b9a9793-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9a9793-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c307a800-d7cd-11e8-824f-0242ac160002", + "identifier": "c307a800-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "HSF-TF.A.2", + "identifier": "6b9d9f54-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9d9f54-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "HSF-TF.A", + "identifier": "6b9a9793-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9a9793-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c307aa9b-d7cd-11e8-824f-0242ac160002", + "identifier": "c307aa9b-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "HSF-TF.A.3", + "identifier": "6b9e6a3a-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9e6a3a-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "HSF-TF.A", + "identifier": "6b9a9793-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9a9793-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c307ace0-d7cd-11e8-824f-0242ac160002", + "identifier": "c307ace0-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "HSF-TF.A.4", + "identifier": "6b9f0c6f-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9f0c6f-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "HSF-TF.A", + "identifier": "6b9a9793-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9a9793-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c307af26-d7cd-11e8-824f-0242ac160002", + "identifier": "c307af26-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "HSF-TF.B.5", + "identifier": "6b9f9a9b-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9f9a9b-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "HSF-TF.B", + "identifier": "6b9a9a01-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9a9a01-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c307b15e-d7cd-11e8-824f-0242ac160002", + "identifier": "c307b15e-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "HSF-TF.B.6", + "identifier": "6ba00e93-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6ba00e93-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "HSF-TF.B", + "identifier": "6b9a9a01-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9a9a01-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c307b38b-d7cd-11e8-824f-0242ac160002", + "identifier": "c307b38b-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "HSF-TF.B.7", + "identifier": "6ba070dd-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6ba070dd-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "HSF-TF.B", + "identifier": "6b9a9a01-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9a9a01-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c307b639-d7cd-11e8-824f-0242ac160002", + "identifier": "c307b639-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "HSF-TF.C.8", + "identifier": "6ba0bf6b-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6ba0bf6b-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "HSF-TF.C", + "identifier": "6b9a9c95-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9a9c95-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c307b872-d7cd-11e8-824f-0242ac160002", + "identifier": "c307b872-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "HSF-TF.C.9", + "identifier": "6ba0ef63-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6ba0ef63-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "HSF-TF.C", + "identifier": "6b9a9c95-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9a9c95-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c307baa8-d7cd-11e8-824f-0242ac160002", + "identifier": "c307baa8-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "Congruence", + "identifier": "6b9a508f-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9a508f-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "Geometry", + "identifier": "6b9e9860-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9e9860-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c307bce1-d7cd-11e8-824f-0242ac160002", + "identifier": "c307bce1-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "Similarity, Right Triangles, & Trigonometry", + "identifier": "6b9a52db-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9a52db-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "Geometry", + "identifier": "6b9e9860-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9e9860-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c307bf1c-d7cd-11e8-824f-0242ac160002", + "identifier": "c307bf1c-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "Circles", + "identifier": "6b9a556b-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9a556b-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "Geometry", + "identifier": "6b9e9860-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9e9860-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c307c160-d7cd-11e8-824f-0242ac160002", + "identifier": "c307c160-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "Expressing Geometric Properties with Equations", + "identifier": "6b9a57c1-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9a57c1-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "Geometry", + "identifier": "6b9e9860-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9e9860-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c307c39c-d7cd-11e8-824f-0242ac160002", + "identifier": "c307c39c-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "Geometric Measurement & Dimension", + "identifier": "6b9a5a10-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9a5a10-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "Geometry", + "identifier": "6b9e9860-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9e9860-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c307c5db-d7cd-11e8-824f-0242ac160002", + "identifier": "c307c5db-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "Modeling with Geometry", + "identifier": "6b9a5c68-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9a5c68-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "Geometry", + "identifier": "6b9e9860-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9e9860-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c307c872-d7cd-11e8-824f-0242ac160002", + "identifier": "c307c872-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "HSG-CO.A", + "identifier": "6b9aa5d8-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9aa5d8-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "Congruence", + "identifier": "6b9a508f-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9a508f-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c307cbff-d7cd-11e8-824f-0242ac160002", + "identifier": "c307cbff-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "HSG-CO.B", + "identifier": "6b9aa882-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9aa882-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "Congruence", + "identifier": "6b9a508f-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9a508f-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c307ce4b-d7cd-11e8-824f-0242ac160002", + "identifier": "c307ce4b-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "HSG-CO.C", + "identifier": "6b9aab84-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9aab84-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "Congruence", + "identifier": "6b9a508f-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9a508f-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c307d0c1-d7cd-11e8-824f-0242ac160002", + "identifier": "c307d0c1-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "HSG-CO.D", + "identifier": "6b9ab04f-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9ab04f-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "Congruence", + "identifier": "6b9a508f-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9a508f-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c307d30b-d7cd-11e8-824f-0242ac160002", + "identifier": "c307d30b-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "HSG-CO.A.1", + "identifier": "6b9c6d88-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9c6d88-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "HSG-CO.A", + "identifier": "6b9aa5d8-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9aa5d8-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c307d550-d7cd-11e8-824f-0242ac160002", + "identifier": "c307d550-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "HSG-CO.A.2", + "identifier": "6b9da4ac-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9da4ac-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "HSG-CO.A", + "identifier": "6b9aa5d8-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9aa5d8-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c307d792-d7cd-11e8-824f-0242ac160002", + "identifier": "c307d792-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "HSG-CO.A.3", + "identifier": "6b9e6ead-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9e6ead-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "HSG-CO.A", + "identifier": "6b9aa5d8-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9aa5d8-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c307d9da-d7cd-11e8-824f-0242ac160002", + "identifier": "c307d9da-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "HSG-CO.A.4", + "identifier": "6b9f119a-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9f119a-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "HSG-CO.A", + "identifier": "6b9aa5d8-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9aa5d8-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c307dc1e-d7cd-11e8-824f-0242ac160002", + "identifier": "c307dc1e-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "HSG-CO.A.5", + "identifier": "6b9fa05a-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9fa05a-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "HSG-CO.A", + "identifier": "6b9aa5d8-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9aa5d8-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c307de60-d7cd-11e8-824f-0242ac160002", + "identifier": "c307de60-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "HSG-CO.B.6", + "identifier": "6ba011a4-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6ba011a4-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "HSG-CO.B", + "identifier": "6b9aa882-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9aa882-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c307e0ab-d7cd-11e8-824f-0242ac160002", + "identifier": "c307e0ab-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "HSG-CO.B.7", + "identifier": "6ba07418-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6ba07418-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "HSG-CO.B", + "identifier": "6b9aa882-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9aa882-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c307e2f3-d7cd-11e8-824f-0242ac160002", + "identifier": "c307e2f3-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "HSG-CO.B.8", + "identifier": "6ba0c2a8-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6ba0c2a8-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "HSG-CO.B", + "identifier": "6b9aa882-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9aa882-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c307e53e-d7cd-11e8-824f-0242ac160002", + "identifier": "c307e53e-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "HSG-CO.C.9", + "identifier": "6ba0f1e1-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6ba0f1e1-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "HSG-CO.C", + "identifier": "6b9aab84-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9aab84-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c307e78b-d7cd-11e8-824f-0242ac160002", + "identifier": "c307e78b-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "HSG-CO.C.10", + "identifier": "6b9caa8d-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9caa8d-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "HSG-CO.C", + "identifier": "6b9aab84-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9aab84-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c307e9d6-d7cd-11e8-824f-0242ac160002", + "identifier": "c307e9d6-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "HSG-CO.C.11", + "identifier": "6b9cb3ef-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9cb3ef-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "HSG-CO.C", + "identifier": "6b9aab84-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9aab84-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c307ec24-d7cd-11e8-824f-0242ac160002", + "identifier": "c307ec24-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "HSG-CO.D.12", + "identifier": "6b9cbfa5-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9cbfa5-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "HSG-CO.D", + "identifier": "6b9ab04f-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9ab04f-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c307ee72-d7cd-11e8-824f-0242ac160002", + "identifier": "c307ee72-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "HSG-CO.D.13", + "identifier": "6b9cc7dc-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9cc7dc-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "HSG-CO.D", + "identifier": "6b9ab04f-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9ab04f-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c307f0bc-d7cd-11e8-824f-0242ac160002", + "identifier": "c307f0bc-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "HSG-SRT.A", + "identifier": "6b9ac2b8-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9ac2b8-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "Similarity, Right Triangles, & Trigonometry", + "identifier": "6b9a52db-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9a52db-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c307f30c-d7cd-11e8-824f-0242ac160002", + "identifier": "c307f30c-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "HSG-SRT.B", + "identifier": "6b9ac54d-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9ac54d-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "Similarity, Right Triangles, & Trigonometry", + "identifier": "6b9a52db-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9a52db-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c307f567-d7cd-11e8-824f-0242ac160002", + "identifier": "c307f567-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "HSG-SRT.C", + "identifier": "6b9ac7e2-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9ac7e2-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "Similarity, Right Triangles, & Trigonometry", + "identifier": "6b9a52db-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9a52db-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c307f7f0-d7cd-11e8-824f-0242ac160002", + "identifier": "c307f7f0-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "HSG-SRT.D", + "identifier": "6b9acbca-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9acbca-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "Similarity, Right Triangles, & Trigonometry", + "identifier": "6b9a52db-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9a52db-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c307fa47-d7cd-11e8-824f-0242ac160002", + "identifier": "c307fa47-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "HSG-SRT.A.1", + "identifier": "6b9c7b3d-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9c7b3d-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "HSG-SRT.A", + "identifier": "6b9ac2b8-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9ac2b8-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c307fc9f-d7cd-11e8-824f-0242ac160002", + "identifier": "c307fc9f-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "HSG-SRT.A.2", + "identifier": "6b9db04d-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9db04d-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "HSG-SRT.A", + "identifier": "6b9ac2b8-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9ac2b8-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c307fef5-d7cd-11e8-824f-0242ac160002", + "identifier": "c307fef5-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "HSG-SRT.A.3", + "identifier": "6b9e7866-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9e7866-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "HSG-SRT.A", + "identifier": "6b9ac2b8-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9ac2b8-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c3080150-d7cd-11e8-824f-0242ac160002", + "identifier": "c3080150-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "HSG-SRT.A.1.a", + "identifier": "6ba168b8-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6ba168b8-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "HSG-SRT.A.1", + "identifier": "6b9c7b3d-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9c7b3d-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c30803a7-d7cd-11e8-824f-0242ac160002", + "identifier": "c30803a7-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "HSG-SRT.A.1.b", + "identifier": "6ba1eada-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6ba1eada-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "HSG-SRT.A.1", + "identifier": "6b9c7b3d-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9c7b3d-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c3080603-d7cd-11e8-824f-0242ac160002", + "identifier": "c3080603-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "HSG-SRT.B.4", + "identifier": "6b9f195e-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9f195e-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "HSG-SRT.B", + "identifier": "6b9ac54d-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9ac54d-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c308085f-d7cd-11e8-824f-0242ac160002", + "identifier": "c308085f-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "HSG-SRT.B.5", + "identifier": "6b9fa609-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9fa609-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "HSG-SRT.B", + "identifier": "6b9ac54d-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9ac54d-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c3080abe-d7cd-11e8-824f-0242ac160002", + "identifier": "c3080abe-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "HSG-SRT.C.6", + "identifier": "6ba017c6-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6ba017c6-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "HSG-SRT.C", + "identifier": "6b9ac7e2-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9ac7e2-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c3080d2a-d7cd-11e8-824f-0242ac160002", + "identifier": "c3080d2a-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "HSG-SRT.C.7", + "identifier": "6ba07a82-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6ba07a82-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "HSG-SRT.C", + "identifier": "6b9ac7e2-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9ac7e2-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c3080f97-d7cd-11e8-824f-0242ac160002", + "identifier": "c3080f97-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "HSG-SRT.C.8", + "identifier": "6ba0c5dc-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6ba0c5dc-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "HSG-SRT.C", + "identifier": "6b9ac7e2-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9ac7e2-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c30811f6-d7cd-11e8-824f-0242ac160002", + "identifier": "c30811f6-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "HSG-SRT.D.9", + "identifier": "6ba0f473-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6ba0f473-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "HSG-SRT.D", + "identifier": "6b9acbca-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9acbca-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c30814da-d7cd-11e8-824f-0242ac160002", + "identifier": "c30814da-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "HSG-SRT.D.10", + "identifier": "6b9cacdd-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9cacdd-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "HSG-SRT.D", + "identifier": "6b9acbca-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9acbca-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c3081744-d7cd-11e8-824f-0242ac160002", + "identifier": "c3081744-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "HSG-SRT.D.11", + "identifier": "6b9cb64c-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9cb64c-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "HSG-SRT.D", + "identifier": "6b9acbca-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9acbca-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c30819a7-d7cd-11e8-824f-0242ac160002", + "identifier": "c30819a7-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "HSG-C.A", + "identifier": "6b9a9f0b-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9a9f0b-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "Circles", + "identifier": "6b9a556b-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9a556b-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c3081c11-d7cd-11e8-824f-0242ac160002", + "identifier": "c3081c11-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "HSG-C.B", + "identifier": "6b9aa2f7-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9aa2f7-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "Circles", + "identifier": "6b9a556b-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9a556b-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c3081eb2-d7cd-11e8-824f-0242ac160002", + "identifier": "c3081eb2-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "HSG-C.A.1", + "identifier": "6b9c6a73-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9c6a73-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "HSG-C.A", + "identifier": "6b9a9f0b-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9a9f0b-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c3082124-d7cd-11e8-824f-0242ac160002", + "identifier": "c3082124-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "HSG-C.A.2", + "identifier": "6b9da1fd-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9da1fd-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "HSG-C.A", + "identifier": "6b9a9f0b-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9a9f0b-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c308238e-d7cd-11e8-824f-0242ac160002", + "identifier": "c308238e-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "HSG-C.A.3", + "identifier": "6b9e6c76-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9e6c76-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "HSG-C.A", + "identifier": "6b9a9f0b-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9a9f0b-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c30825fd-d7cd-11e8-824f-0242ac160002", + "identifier": "c30825fd-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "HSG-C.A.4", + "identifier": "6b9f0f18-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9f0f18-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "HSG-C.A", + "identifier": "6b9a9f0b-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9a9f0b-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c3082870-d7cd-11e8-824f-0242ac160002", + "identifier": "c3082870-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "HSG-C.B.5", + "identifier": "6b9f9d82-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9f9d82-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "HSG-C.B", + "identifier": "6b9aa2f7-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9aa2f7-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c3082b9d-d7cd-11e8-824f-0242ac160002", + "identifier": "c3082b9d-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "HSG-GPE.A", + "identifier": "6b9ab9d5-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9ab9d5-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "Expressing Geometric Properties with Equations", + "identifier": "6b9a57c1-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9a57c1-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c3082e1e-d7cd-11e8-824f-0242ac160002", + "identifier": "c3082e1e-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "HSG-GPE.B", + "identifier": "6b9abd29-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9abd29-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "Expressing Geometric Properties with Equations", + "identifier": "6b9a57c1-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9a57c1-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c3083096-d7cd-11e8-824f-0242ac160002", + "identifier": "c3083096-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "HSG-GPE.A.1", + "identifier": "6b9c73d2-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9c73d2-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "HSG-GPE.A", + "identifier": "6b9ab9d5-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9ab9d5-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c3083313-d7cd-11e8-824f-0242ac160002", + "identifier": "c3083313-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "HSG-GPE.A.2", + "identifier": "6b9daa46-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9daa46-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "HSG-GPE.A", + "identifier": "6b9ab9d5-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9ab9d5-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c3083594-d7cd-11e8-824f-0242ac160002", + "identifier": "c3083594-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "HSG-GPE.A.3", + "identifier": "6b9e7402-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9e7402-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "HSG-GPE.A", + "identifier": "6b9ab9d5-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9ab9d5-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c308380a-d7cd-11e8-824f-0242ac160002", + "identifier": "c308380a-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "HSG-GPE.B.4", + "identifier": "6b9f16e0-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9f16e0-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "HSG-GPE.B", + "identifier": "6b9abd29-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9abd29-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c3083a80-d7cd-11e8-824f-0242ac160002", + "identifier": "c3083a80-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "HSG-GPE.B.5", + "identifier": "6b9fa334-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9fa334-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "HSG-GPE.B", + "identifier": "6b9abd29-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9abd29-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c3083cfa-d7cd-11e8-824f-0242ac160002", + "identifier": "c3083cfa-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "HSG-GPE.B.6", + "identifier": "6ba014b5-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6ba014b5-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "HSG-GPE.B", + "identifier": "6b9abd29-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9abd29-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c3083f75-d7cd-11e8-824f-0242ac160002", + "identifier": "c3083f75-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "HSG-GPE.B.7", + "identifier": "6ba0774a-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6ba0774a-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "HSG-GPE.B", + "identifier": "6b9abd29-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9abd29-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c30841ef-d7cd-11e8-824f-0242ac160002", + "identifier": "c30841ef-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "HSG-GMD.A", + "identifier": "6b9ab469-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9ab469-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "Geometric Measurement & Dimension", + "identifier": "6b9a5a10-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9a5a10-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c30844a2-d7cd-11e8-824f-0242ac160002", + "identifier": "c30844a2-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "HSG-GMD.B", + "identifier": "6b9ab722-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9ab722-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "Geometric Measurement & Dimension", + "identifier": "6b9a5a10-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9a5a10-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c308472b-d7cd-11e8-824f-0242ac160002", + "identifier": "c308472b-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "HSG-GMD.A.1", + "identifier": "6b9c70b3-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9c70b3-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "HSG-GMD.A", + "identifier": "6b9ab469-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9ab469-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c30849ad-d7cd-11e8-824f-0242ac160002", + "identifier": "c30849ad-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "HSG-GMD.A.2", + "identifier": "6b9da784-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9da784-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "HSG-GMD.A", + "identifier": "6b9ab469-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9ab469-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c3084c30-d7cd-11e8-824f-0242ac160002", + "identifier": "c3084c30-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "HSG-GMD.A.3", + "identifier": "6b9e70eb-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9e70eb-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "HSG-GMD.A", + "identifier": "6b9ab469-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9ab469-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c3084eb3-d7cd-11e8-824f-0242ac160002", + "identifier": "c3084eb3-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "HSG-GMD.B.4", + "identifier": "6b9f140d-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9f140d-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "HSG-GMD.B", + "identifier": "6b9ab722-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9ab722-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c308513a-d7cd-11e8-824f-0242ac160002", + "identifier": "c308513a-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "HSG-MG.A", + "identifier": "6b9ac020-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9ac020-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "Modeling with Geometry", + "identifier": "6b9a5c68-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9a5c68-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c30853bf-d7cd-11e8-824f-0242ac160002", + "identifier": "c30853bf-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "HSG-MG.A.1", + "identifier": "6b9c77f2-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9c77f2-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "HSG-MG.A", + "identifier": "6b9ac020-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9ac020-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c3085645-d7cd-11e8-824f-0242ac160002", + "identifier": "c3085645-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "HSG-MG.A.2", + "identifier": "6b9dacf0-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9dacf0-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "HSG-MG.A", + "identifier": "6b9ac020-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9ac020-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c30858cf-d7cd-11e8-824f-0242ac160002", + "identifier": "c30858cf-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "HSG-MG.A.3", + "identifier": "6b9e763a-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9e763a-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "HSG-MG.A", + "identifier": "6b9ac020-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9ac020-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c3085b5d-d7cd-11e8-824f-0242ac160002", + "identifier": "c3085b5d-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "Interpreting Categorical & Quantitative Data", + "identifier": "6b9a5ecd-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9a5ecd-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "Statistics & Probability", + "identifier": "6b9f375c-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9f375c-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c3085de9-d7cd-11e8-824f-0242ac160002", + "identifier": "c3085de9-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "Making Inferences & Justifying Conclusions", + "identifier": "6b9a612d-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9a612d-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "Statistics & Probability", + "identifier": "6b9f375c-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9f375c-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c3086077-d7cd-11e8-824f-0242ac160002", + "identifier": "c3086077-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "Conditional Probability & the Rules of Probability", + "identifier": "6b9a638d-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9a638d-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "Statistics & Probability", + "identifier": "6b9f375c-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9f375c-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c3086304-d7cd-11e8-824f-0242ac160002", + "identifier": "c3086304-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "Using Probability to Make Decisions", + "identifier": "6b9a65f4-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9a65f4-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "Statistics & Probability", + "identifier": "6b9f375c-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9f375c-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c308659a-d7cd-11e8-824f-0242ac160002", + "identifier": "c308659a-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "HSS-ID.A", + "identifier": "6b9af1d2-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9af1d2-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "Interpreting Categorical & Quantitative Data", + "identifier": "6b9a5ecd-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9a5ecd-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c308682e-d7cd-11e8-824f-0242ac160002", + "identifier": "c308682e-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "HSS-ID.B", + "identifier": "6b9af499-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9af499-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "Interpreting Categorical & Quantitative Data", + "identifier": "6b9a5ecd-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9a5ecd-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c3086b41-d7cd-11e8-824f-0242ac160002", + "identifier": "c3086b41-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "HSS-ID.C", + "identifier": "6b9af773-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9af773-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "Interpreting Categorical & Quantitative Data", + "identifier": "6b9a5ecd-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9a5ecd-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c3086de8-d7cd-11e8-824f-0242ac160002", + "identifier": "c3086de8-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "HSS-ID.A.1", + "identifier": "6b9c8faf-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9c8faf-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "HSS-ID.A", + "identifier": "6b9af1d2-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9af1d2-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c3087083-d7cd-11e8-824f-0242ac160002", + "identifier": "c3087083-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "HSS-ID.A.2", + "identifier": "6b9dc322-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9dc322-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "HSS-ID.A", + "identifier": "6b9af1d2-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9af1d2-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c308732b-d7cd-11e8-824f-0242ac160002", + "identifier": "c308732b-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "HSS-ID.A.3", + "identifier": "6b9e87c7-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9e87c7-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "HSS-ID.A", + "identifier": "6b9af1d2-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9af1d2-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c30875ca-d7cd-11e8-824f-0242ac160002", + "identifier": "c30875ca-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "HSS-ID.A.4", + "identifier": "6b9f25df-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9f25df-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "HSS-ID.A", + "identifier": "6b9af1d2-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9af1d2-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c308786d-d7cd-11e8-824f-0242ac160002", + "identifier": "c308786d-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "HSS-ID.B.5", + "identifier": "6b9fb768-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9fb768-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "HSS-ID.B", + "identifier": "6b9af499-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9af499-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c3087b90-d7cd-11e8-824f-0242ac160002", + "identifier": "c3087b90-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "HSS-ID.B.6", + "identifier": "6ba02776-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6ba02776-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "HSS-ID.B", + "identifier": "6b9af499-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9af499-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c3087e44-d7cd-11e8-824f-0242ac160002", + "identifier": "c3087e44-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "HSS-ID.B.6.a", + "identifier": "6ba17134-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6ba17134-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "HSS-ID.B.6", + "identifier": "6ba02776-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6ba02776-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c3088084-d7cd-11e8-824f-0242ac160002", + "identifier": "c3088084-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "HSS-ID.B.6.b", + "identifier": "6ba1f64b-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6ba1f64b-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "HSS-ID.B.6", + "identifier": "6ba02776-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6ba02776-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c30882c0-d7cd-11e8-824f-0242ac160002", + "identifier": "c30882c0-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "HSS-ID.B.6.c", + "identifier": "6ba24be0-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6ba24be0-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "HSS-ID.B.6", + "identifier": "6ba02776-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6ba02776-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c30884f3-d7cd-11e8-824f-0242ac160002", + "identifier": "c30884f3-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "HSS-ID.C.7", + "identifier": "6ba08773-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6ba08773-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "HSS-ID.C", + "identifier": "6b9af773-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9af773-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c3088725-d7cd-11e8-824f-0242ac160002", + "identifier": "c3088725-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "HSS-ID.C.8", + "identifier": "6ba0d319-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6ba0d319-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "HSS-ID.C", + "identifier": "6b9af773-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9af773-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c3088959-d7cd-11e8-824f-0242ac160002", + "identifier": "c3088959-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "HSS-ID.C.9", + "identifier": "6ba0feac-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6ba0feac-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "HSS-ID.C", + "identifier": "6b9af773-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9af773-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c3088b8c-d7cd-11e8-824f-0242ac160002", + "identifier": "c3088b8c-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "HSS-IC.A", + "identifier": "6b9aec0a-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9aec0a-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "Making Inferences & Justifying Conclusions", + "identifier": "6b9a612d-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9a612d-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c3088dbf-d7cd-11e8-824f-0242ac160002", + "identifier": "c3088dbf-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "HSS-IC.B", + "identifier": "6b9aeecb-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9aeecb-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "Making Inferences & Justifying Conclusions", + "identifier": "6b9a612d-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9a612d-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c3088ff3-d7cd-11e8-824f-0242ac160002", + "identifier": "c3088ff3-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "HSS-IC.A.1", + "identifier": "6b9c8d00-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9c8d00-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "HSS-IC.A", + "identifier": "6b9aec0a-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9aec0a-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c3089253-d7cd-11e8-824f-0242ac160002", + "identifier": "c3089253-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "HSS-IC.A.2", + "identifier": "6b9dc070-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9dc070-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "HSS-IC.A", + "identifier": "6b9aec0a-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9aec0a-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c3089499-d7cd-11e8-824f-0242ac160002", + "identifier": "c3089499-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "HSS-IC.B.3", + "identifier": "6b9e8595-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9e8595-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "HSS-IC.B", + "identifier": "6b9aeecb-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9aeecb-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c30896d5-d7cd-11e8-824f-0242ac160002", + "identifier": "c30896d5-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "HSS-IC.B.4", + "identifier": "6b9f235a-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9f235a-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "HSS-IC.B", + "identifier": "6b9aeecb-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9aeecb-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c308990f-d7cd-11e8-824f-0242ac160002", + "identifier": "c308990f-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "HSS-IC.B.5", + "identifier": "6b9fb424-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9fb424-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "HSS-IC.B", + "identifier": "6b9aeecb-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9aeecb-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c3089b4a-d7cd-11e8-824f-0242ac160002", + "identifier": "c3089b4a-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "HSS-IC.B.6", + "identifier": "6ba02461-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6ba02461-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "HSS-IC.B", + "identifier": "6b9aeecb-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9aeecb-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c3089d97-d7cd-11e8-824f-0242ac160002", + "identifier": "c3089d97-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "HSS-CP.A", + "identifier": "6b9ae68a-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9ae68a-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "Conditional Probability & the Rules of Probability", + "identifier": "6b9a638d-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9a638d-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c3089fe5-d7cd-11e8-824f-0242ac160002", + "identifier": "c3089fe5-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "HSS-CP.B", + "identifier": "6b9ae946-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9ae946-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "Conditional Probability & the Rules of Probability", + "identifier": "6b9a638d-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9a638d-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c308a234-d7cd-11e8-824f-0242ac160002", + "identifier": "c308a234-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "HSS-CP.A.1", + "identifier": "6b9c8a61-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9c8a61-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "HSS-CP.A", + "identifier": "6b9ae68a-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9ae68a-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c308a480-d7cd-11e8-824f-0242ac160002", + "identifier": "c308a480-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "HSS-CP.A.2", + "identifier": "6b9dbdbf-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9dbdbf-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "HSS-CP.A", + "identifier": "6b9ae68a-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9ae68a-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c308a6cc-d7cd-11e8-824f-0242ac160002", + "identifier": "c308a6cc-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "HSS-CP.A.3", + "identifier": "6b9e8364-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9e8364-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "HSS-CP.A", + "identifier": "6b9ae68a-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9ae68a-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c308a912-d7cd-11e8-824f-0242ac160002", + "identifier": "c308a912-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "HSS-CP.A.4", + "identifier": "6b9f20d2-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9f20d2-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "HSS-CP.A", + "identifier": "6b9ae68a-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9ae68a-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c308ab52-d7cd-11e8-824f-0242ac160002", + "identifier": "c308ab52-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "HSS-CP.A.5", + "identifier": "6b9faedc-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9faedc-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "HSS-CP.A", + "identifier": "6b9ae68a-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9ae68a-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c308ad98-d7cd-11e8-824f-0242ac160002", + "identifier": "c308ad98-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "HSS-CP.B.6", + "identifier": "6ba0213a-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6ba0213a-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "HSS-CP.B", + "identifier": "6b9ae946-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9ae946-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c308afdd-d7cd-11e8-824f-0242ac160002", + "identifier": "c308afdd-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "HSS-CP.B.7", + "identifier": "6ba08433-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6ba08433-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "HSS-CP.B", + "identifier": "6b9ae946-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9ae946-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c308b220-d7cd-11e8-824f-0242ac160002", + "identifier": "c308b220-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "HSS-CP.B.8", + "identifier": "6ba0cfe5-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6ba0cfe5-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "HSS-CP.B", + "identifier": "6b9ae946-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9ae946-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c308b46a-d7cd-11e8-824f-0242ac160002", + "identifier": "c308b46a-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "HSS-CP.B.9", + "identifier": "6ba0fc13-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6ba0fc13-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "HSS-CP.B", + "identifier": "6b9ae946-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9ae946-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c308b6b4-d7cd-11e8-824f-0242ac160002", + "identifier": "c308b6b4-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "HSS-MD.A", + "identifier": "6b9afa4b-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9afa4b-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "Using Probability to Make Decisions", + "identifier": "6b9a65f4-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9a65f4-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c308b8fc-d7cd-11e8-824f-0242ac160002", + "identifier": "c308b8fc-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "HSS-MD.B", + "identifier": "6b9afd38-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9afd38-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "Using Probability to Make Decisions", + "identifier": "6b9a65f4-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9a65f4-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c308bb7e-d7cd-11e8-824f-0242ac160002", + "identifier": "c308bb7e-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "HSS-MD.A.1", + "identifier": "6b9c93ca-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9c93ca-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "HSS-MD.A", + "identifier": "6b9afa4b-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9afa4b-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c308bdd1-d7cd-11e8-824f-0242ac160002", + "identifier": "c308bdd1-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "HSS-MD.A.2", + "identifier": "6b9dc5cd-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9dc5cd-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "HSS-MD.A", + "identifier": "6b9afa4b-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9afa4b-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c308c0eb-d7cd-11e8-824f-0242ac160002", + "identifier": "c308c0eb-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "HSS-MD.A.3", + "identifier": "6b9e89fc-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9e89fc-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "HSS-MD.A", + "identifier": "6b9afa4b-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9afa4b-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c308c34d-d7cd-11e8-824f-0242ac160002", + "identifier": "c308c34d-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "HSS-MD.A.4", + "identifier": "6b9f286a-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9f286a-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "HSS-MD.A", + "identifier": "6b9afa4b-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9afa4b-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c308c5a8-d7cd-11e8-824f-0242ac160002", + "identifier": "c308c5a8-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "HSS-MD.B.5", + "identifier": "6b9fba47-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9fba47-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "HSS-MD.B", + "identifier": "6b9afd38-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9afd38-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c308c7ff-d7cd-11e8-824f-0242ac160002", + "identifier": "c308c7ff-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "HSS-MD.B.6", + "identifier": "6ba02a8f-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6ba02a8f-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "HSS-MD.B", + "identifier": "6b9afd38-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9afd38-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c308ca55-d7cd-11e8-824f-0242ac160002", + "identifier": "c308ca55-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "HSS-MD.B.7", + "identifier": "6ba08ab7-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6ba08ab7-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "HSS-MD.B", + "identifier": "6b9afd38-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9afd38-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c308ccab-d7cd-11e8-824f-0242ac160002", + "identifier": "c308ccab-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "HSS-MD.B.5.a", + "identifier": "6ba173ea-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6ba173ea-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "HSS-MD.B.5", + "identifier": "6b9fba47-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9fba47-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c308cf09-d7cd-11e8-824f-0242ac160002", + "identifier": "c308cf09-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "HSS-MD.B.5.b", + "identifier": "6ba1f961-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6ba1f961-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "HSS-MD.B.5", + "identifier": "6b9fba47-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9fba47-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c308d175-d7cd-11e8-824f-0242ac160002", + "identifier": "c308d175-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "Standards for Math Content", + "identifier": "6b9cbaef-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9cbaef-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "Common Core State Standards for Math", + "identifier": "c6496676-d7cb-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/c6496676-d7cb-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c308d3d7-d7cd-11e8-824f-0242ac160002", + "identifier": "c308d3d7-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "Standards for HS Math Content", + "identifier": "6b9cc50c-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9cc50c-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "Common Core State Standards for Math", + "identifier": "c6496676-d7cb-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/c6496676-d7cb-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c308d629-d7cd-11e8-824f-0242ac160002", + "identifier": "c308d629-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "Number and Quantity", + "identifier": "6b9b0e8f-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9b0e8f-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "Standards for HS Math Content", + "identifier": "6b9cc50c-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9cc50c-d7cc-11e8-824f-0242ac160002" + }, + "sequenceNumber": 2 + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c308d8e8-d7cd-11e8-824f-0242ac160002", + "identifier": "c308d8e8-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "Algebra", + "identifier": "6b9cca4c-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9cca4c-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "Standards for HS Math Content", + "identifier": "6b9cc50c-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9cc50c-d7cc-11e8-824f-0242ac160002" + }, + "sequenceNumber": 3 + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c308db62-d7cd-11e8-824f-0242ac160002", + "identifier": "c308db62-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "Functions", + "identifier": "6b9dd712-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9dd712-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "Standards for HS Math Content", + "identifier": "6b9cc50c-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9cc50c-d7cc-11e8-824f-0242ac160002" + }, + "sequenceNumber": 4 + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c308ddc7-d7cd-11e8-824f-0242ac160002", + "identifier": "c308ddc7-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "Geometry", + "identifier": "6b9e9860-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9e9860-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "Standards for HS Math Content", + "identifier": "6b9cc50c-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9cc50c-d7cc-11e8-824f-0242ac160002" + }, + "sequenceNumber": 5 + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c308e254-d7cd-11e8-824f-0242ac160002", + "identifier": "c308e254-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "Statistics & Probability", + "identifier": "6b9f375c-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9f375c-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "Standards for HS Math Content", + "identifier": "6b9cc50c-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9cc50c-d7cc-11e8-824f-0242ac160002" + }, + "sequenceNumber": 6 + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c308e647-d7cd-11e8-824f-0242ac160002", + "identifier": "c308e647-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "Kindergarten", + "identifier": "6b9b1161-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9b1161-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "Standards for Math Content", + "identifier": "6b9cbaef-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9cbaef-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c308eb8f-d7cd-11e8-824f-0242ac160002", + "identifier": "c308eb8f-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "Grade 1", + "identifier": "6b9ccf1c-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9ccf1c-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "Standards for Math Content", + "identifier": "6b9cbaef-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9cbaef-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c308ef72-d7cd-11e8-824f-0242ac160002", + "identifier": "c308ef72-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "Grade 2", + "identifier": "6b9ddc4d-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9ddc4d-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "Standards for Math Content", + "identifier": "6b9cbaef-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9cbaef-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c308f340-d7cd-11e8-824f-0242ac160002", + "identifier": "c308f340-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "Grade 3", + "identifier": "6b9e9d1d-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9e9d1d-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "Standards for Math Content", + "identifier": "6b9cbaef-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9cbaef-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c308f67a-d7cd-11e8-824f-0242ac160002", + "identifier": "c308f67a-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "Grade 4", + "identifier": "6b9f3cb3-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9f3cb3-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "Standards for Math Content", + "identifier": "6b9cbaef-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9cbaef-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c308f942-d7cd-11e8-824f-0242ac160002", + "identifier": "c308f942-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "Grade 5", + "identifier": "6b9fcd8e-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9fcd8e-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "Standards for Math Content", + "identifier": "6b9cbaef-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9cbaef-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c308fbaf-d7cd-11e8-824f-0242ac160002", + "identifier": "c308fbaf-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "Grade 6", + "identifier": "6ba03728-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6ba03728-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "Standards for Math Content", + "identifier": "6b9cbaef-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9cbaef-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c308ff29-d7cd-11e8-824f-0242ac160002", + "identifier": "c308ff29-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "Grade 7", + "identifier": "6ba0948b-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6ba0948b-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "Standards for Math Content", + "identifier": "6b9cbaef-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9cbaef-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c30901bf-d7cd-11e8-824f-0242ac160002", + "identifier": "c30901bf-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "Grade 8", + "identifier": "6ba0d99c-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6ba0d99c-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "Standards for Math Content", + "identifier": "6b9cbaef-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9cbaef-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c309043d-d7cd-11e8-824f-0242ac160002", + "identifier": "c309043d-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "Counting & Cardinality", + "identifier": "6b9b0bbe-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9b0bbe-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "Kindergarten", + "identifier": "6b9b1161-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9b1161-d7cc-11e8-824f-0242ac160002" + }, + "sequenceNumber": 2 + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c309078e-d7cd-11e8-824f-0242ac160002", + "identifier": "c309078e-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "Operations & Algebraic Thinking", + "identifier": "6b9cccb8-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9cccb8-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "Kindergarten", + "identifier": "6b9b1161-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9b1161-d7cc-11e8-824f-0242ac160002" + }, + "sequenceNumber": 3 + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c3090a9b-d7cd-11e8-824f-0242ac160002", + "identifier": "c3090a9b-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "K.OA.A", + "identifier": "6b9bd21e-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9bd21e-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "Operations & Algebraic Thinking", + "identifier": "6b9cccb8-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9cccb8-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c3090d3f-d7cd-11e8-824f-0242ac160002", + "identifier": "c3090d3f-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "Number & Operations in Base Ten", + "identifier": "6b9dda33-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9dda33-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "Kindergarten", + "identifier": "6b9b1161-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9b1161-d7cc-11e8-824f-0242ac160002" + }, + "sequenceNumber": 4 + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c3090fe1-d7cd-11e8-824f-0242ac160002", + "identifier": "c3090fe1-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "K.NBT.A", + "identifier": "6b9bcf0f-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9bcf0f-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "Number & Operations in Base Ten", + "identifier": "6b9dda33-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9dda33-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c309127c-d7cd-11e8-824f-0242ac160002", + "identifier": "c309127c-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "Measurement & Data", + "identifier": "6b9e9ad9-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9e9ad9-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "Kindergarten", + "identifier": "6b9b1161-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9b1161-d7cc-11e8-824f-0242ac160002" + }, + "sequenceNumber": 5 + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c309151f-d7cd-11e8-824f-0242ac160002", + "identifier": "c309151f-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "K.MD.B", + "identifier": "6b9bcbfc-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9bcbfc-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "Measurement & Data", + "identifier": "6b9e9ad9-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9e9ad9-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c3091818-d7cd-11e8-824f-0242ac160002", + "identifier": "c3091818-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "K.MD.A", + "identifier": "6b9bc8e9-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9bc8e9-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "Measurement & Data", + "identifier": "6b9e9ad9-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9e9ad9-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c3091abd-d7cd-11e8-824f-0242ac160002", + "identifier": "c3091abd-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "Geometry", + "identifier": "6b9f3a16-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9f3a16-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "Kindergarten", + "identifier": "6b9b1161-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9b1161-d7cc-11e8-824f-0242ac160002" + }, + "sequenceNumber": 6 + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c3091d60-d7cd-11e8-824f-0242ac160002", + "identifier": "c3091d60-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "K.G.A", + "identifier": "6b9bc2c7-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9bc2c7-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "Geometry", + "identifier": "6b9f3a16-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9f3a16-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c3092063-d7cd-11e8-824f-0242ac160002", + "identifier": "c3092063-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "K.G.B", + "identifier": "6b9bc5d7-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9bc5d7-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "Geometry", + "identifier": "6b9f3a16-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9f3a16-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c3092359-d7cd-11e8-824f-0242ac160002", + "identifier": "c3092359-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "Operations & Algebraic Thinking", + "identifier": "6b9b1433-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9b1433-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "Grade 1", + "identifier": "6b9ccf1c-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9ccf1c-d7cc-11e8-824f-0242ac160002" + }, + "sequenceNumber": 2 + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c30925fd-d7cd-11e8-824f-0242ac160002", + "identifier": "c30925fd-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "1.OA.A", + "identifier": "6b9b3728-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9b3728-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "Operations & Algebraic Thinking", + "identifier": "6b9b1433-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9b1433-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c30928a3-d7cd-11e8-824f-0242ac160002", + "identifier": "c30928a3-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "1.OA.B", + "identifier": "6b9cea7f-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9cea7f-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "Operations & Algebraic Thinking", + "identifier": "6b9b1433-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9b1433-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c3092b46-d7cd-11e8-824f-0242ac160002", + "identifier": "c3092b46-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "1.OA.C", + "identifier": "6b9df10d-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9df10d-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "Operations & Algebraic Thinking", + "identifier": "6b9b1433-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9b1433-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c3092e48-d7cd-11e8-824f-0242ac160002", + "identifier": "c3092e48-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "1.OA.D", + "identifier": "6b9eb1a4-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9eb1a4-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "Operations & Algebraic Thinking", + "identifier": "6b9b1433-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9b1433-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c3093196-d7cd-11e8-824f-0242ac160002", + "identifier": "c3093196-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "Operations & Algebraic Thinking", + "identifier": "6b9b1704-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9b1704-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "Grade 2", + "identifier": "6b9ddc4d-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9ddc4d-d7cc-11e8-824f-0242ac160002" + }, + "sequenceNumber": 2 + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c3093444-d7cd-11e8-824f-0242ac160002", + "identifier": "c3093444-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "Operations & Algebraic Thinking", + "identifier": "6b9b1a1b-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9b1a1b-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "Grade 3", + "identifier": "6b9e9d1d-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9e9d1d-d7cc-11e8-824f-0242ac160002" + }, + "sequenceNumber": 2 + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c30936ed-d7cd-11e8-824f-0242ac160002", + "identifier": "c30936ed-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "Operations & Algebraic Thinking", + "identifier": "6b9b1d09-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9b1d09-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "Grade 4", + "identifier": "6b9f3cb3-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9f3cb3-d7cc-11e8-824f-0242ac160002" + }, + "sequenceNumber": 2 + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c3093999-d7cd-11e8-824f-0242ac160002", + "identifier": "c3093999-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "Operations & Algebraic Thinking", + "identifier": "6b9b1ff2-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9b1ff2-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "Grade 5", + "identifier": "6b9fcd8e-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9fcd8e-d7cc-11e8-824f-0242ac160002" + }, + "sequenceNumber": 2 + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c3093c46-d7cd-11e8-824f-0242ac160002", + "identifier": "c3093c46-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "2.OA.A", + "identifier": "6b9b461d-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9b461d-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "Operations & Algebraic Thinking", + "identifier": "6b9b1704-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9b1704-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c3093f51-d7cd-11e8-824f-0242ac160002", + "identifier": "c3093f51-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "2.OA.B", + "identifier": "6b9cf059-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9cf059-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "Operations & Algebraic Thinking", + "identifier": "6b9b1704-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9b1704-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c3094216-d7cd-11e8-824f-0242ac160002", + "identifier": "c3094216-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "2.OA.C", + "identifier": "6b9df54b-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9df54b-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "Operations & Algebraic Thinking", + "identifier": "6b9b1704-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9b1704-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c309452b-d7cd-11e8-824f-0242ac160002", + "identifier": "c309452b-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "3.OA.A", + "identifier": "6b9b59eb-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9b59eb-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "Operations & Algebraic Thinking", + "identifier": "6b9b1a1b-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9b1a1b-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c3094856-d7cd-11e8-824f-0242ac160002", + "identifier": "c3094856-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "3.OA.D", + "identifier": "6b9b5d24-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9b5d24-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "Operations & Algebraic Thinking", + "identifier": "6b9b1a1b-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9b1a1b-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c3094bc1-d7cd-11e8-824f-0242ac160002", + "identifier": "c3094bc1-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "3.OA.B", + "identifier": "6b9cf538-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9cf538-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "Operations & Algebraic Thinking", + "identifier": "6b9b1a1b-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9b1a1b-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c3094f28-d7cd-11e8-824f-0242ac160002", + "identifier": "c3094f28-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "3.OA.C", + "identifier": "6b9df989-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9df989-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "Operations & Algebraic Thinking", + "identifier": "6b9b1a1b-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9b1a1b-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c309526f-d7cd-11e8-824f-0242ac160002", + "identifier": "c309526f-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "4.OA.A", + "identifier": "6b9b7443-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9b7443-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "Operations & Algebraic Thinking", + "identifier": "6b9b1d09-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9b1d09-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c3095543-d7cd-11e8-824f-0242ac160002", + "identifier": "c3095543-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "4.OA.B", + "identifier": "6b9cfc85-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9cfc85-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "Operations & Algebraic Thinking", + "identifier": "6b9b1d09-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9b1d09-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c3095889-d7cd-11e8-824f-0242ac160002", + "identifier": "c3095889-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "4.OA.C", + "identifier": "6b9dfeaf-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9dfeaf-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "Operations & Algebraic Thinking", + "identifier": "6b9b1d09-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9b1d09-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c3095b5e-d7cd-11e8-824f-0242ac160002", + "identifier": "c3095b5e-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "5.OA.A", + "identifier": "6b9b8aec-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9b8aec-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "Operations & Algebraic Thinking", + "identifier": "6b9b1ff2-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9b1ff2-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c3095e32-d7cd-11e8-824f-0242ac160002", + "identifier": "c3095e32-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "5.OA.B", + "identifier": "6b9d0696-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9d0696-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "Operations & Algebraic Thinking", + "identifier": "6b9b1ff2-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9b1ff2-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c3096106-d7cd-11e8-824f-0242ac160002", + "identifier": "c3096106-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "Number & Operations in Base Ten", + "identifier": "6b9cd178-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9cd178-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "Grade 1", + "identifier": "6b9ccf1c-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9ccf1c-d7cc-11e8-824f-0242ac160002" + }, + "sequenceNumber": 3 + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c30963d4-d7cd-11e8-824f-0242ac160002", + "identifier": "c30963d4-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "Number & Operations in Base Ten", + "identifier": "6b9cd3d1-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9cd3d1-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "Grade 2", + "identifier": "6b9ddc4d-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9ddc4d-d7cc-11e8-824f-0242ac160002" + }, + "sequenceNumber": 3 + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c30966a5-d7cd-11e8-824f-0242ac160002", + "identifier": "c30966a5-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "Number & Operations in Base Ten", + "identifier": "6b9cd62f-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9cd62f-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "Grade 3", + "identifier": "6b9e9d1d-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9e9d1d-d7cc-11e8-824f-0242ac160002" + }, + "sequenceNumber": 3 + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c3096984-d7cd-11e8-824f-0242ac160002", + "identifier": "c3096984-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "Number & Operations in Base Ten", + "identifier": "6b9cd88b-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9cd88b-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "Grade 4", + "identifier": "6b9f3cb3-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9f3cb3-d7cc-11e8-824f-0242ac160002" + }, + "sequenceNumber": 3 + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c3096c5f-d7cd-11e8-824f-0242ac160002", + "identifier": "c3096c5f-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "Number & Operations in Base Ten", + "identifier": "6b9cdb04-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9cdb04-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "Grade 5", + "identifier": "6b9fcd8e-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9fcd8e-d7cc-11e8-824f-0242ac160002" + }, + "sequenceNumber": 3 + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c3096f34-d7cd-11e8-824f-0242ac160002", + "identifier": "c3096f34-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "1.NBT.A", + "identifier": "6b9b3160-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9b3160-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "Number & Operations in Base Ten", + "identifier": "6b9cd178-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9cd178-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c309720b-d7cd-11e8-824f-0242ac160002", + "identifier": "c309720b-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "1.NBT.C", + "identifier": "6b9b3443-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9b3443-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "Number & Operations in Base Ten", + "identifier": "6b9cd178-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9cd178-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c30974e9-d7cd-11e8-824f-0242ac160002", + "identifier": "c30974e9-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "1.NBT.B", + "identifier": "6b9ce809-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9ce809-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "Number & Operations in Base Ten", + "identifier": "6b9cd178-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9cd178-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c30977cb-d7cd-11e8-824f-0242ac160002", + "identifier": "c30977cb-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "2.NBT.B", + "identifier": "6b9b4323-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9b4323-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "Number & Operations in Base Ten", + "identifier": "6b9cd3d1-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9cd3d1-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c3097aa7-d7cd-11e8-824f-0242ac160002", + "identifier": "c3097aa7-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "2.NBT.A", + "identifier": "6b9b4024-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9b4024-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "Number & Operations in Base Ten", + "identifier": "6b9cd3d1-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9cd3d1-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c3097dc8-d7cd-11e8-824f-0242ac160002", + "identifier": "c3097dc8-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "3.NBT.A", + "identifier": "6b9b537e-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9b537e-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "Number & Operations in Base Ten", + "identifier": "6b9cd62f-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9cd62f-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c30980b7-d7cd-11e8-824f-0242ac160002", + "identifier": "c30980b7-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "4.NBT.B", + "identifier": "6b9b6e53-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9b6e53-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "Number & Operations in Base Ten", + "identifier": "6b9cd88b-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9cd88b-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c309839f-d7cd-11e8-824f-0242ac160002", + "identifier": "c309839f-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "4.NBT.A", + "identifier": "6b9b6b4d-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9b6b4d-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "Number & Operations in Base Ten", + "identifier": "6b9cd88b-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9cd88b-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c309867c-d7cd-11e8-824f-0242ac160002", + "identifier": "c309867c-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "5.NBT.B", + "identifier": "6b9b84de-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9b84de-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "Number & Operations in Base Ten", + "identifier": "6b9cdb04-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9cdb04-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c3098960-d7cd-11e8-824f-0242ac160002", + "identifier": "c3098960-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "5.NBT.A", + "identifier": "6b9b8077-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9b8077-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "Number & Operations in Base Ten", + "identifier": "6b9cdb04-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9cdb04-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c3098c4e-d7cd-11e8-824f-0242ac160002", + "identifier": "c3098c4e-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "Measurement & Data", + "identifier": "6b9dde61-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9dde61-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "Grade 1", + "identifier": "6b9ccf1c-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9ccf1c-d7cc-11e8-824f-0242ac160002" + }, + "sequenceNumber": 4 + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c3098f39-d7cd-11e8-824f-0242ac160002", + "identifier": "c3098f39-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "Measurement & Data", + "identifier": "6b9de075-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9de075-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "Grade 2", + "identifier": "6b9ddc4d-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9ddc4d-d7cc-11e8-824f-0242ac160002" + }, + "sequenceNumber": 4 + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c3099221-d7cd-11e8-824f-0242ac160002", + "identifier": "c3099221-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "Measurement & Data", + "identifier": "6b9ea3cd-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9ea3cd-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "Grade 3", + "identifier": "6b9e9d1d-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9e9d1d-d7cc-11e8-824f-0242ac160002" + }, + "sequenceNumber": 4 + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c3099507-d7cd-11e8-824f-0242ac160002", + "identifier": "c3099507-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "Measurement & Data", + "identifier": "6b9ea608-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9ea608-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "Grade 4", + "identifier": "6b9f3cb3-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9f3cb3-d7cc-11e8-824f-0242ac160002" + }, + "sequenceNumber": 4 + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c30997f5-d7cd-11e8-824f-0242ac160002", + "identifier": "c30997f5-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "Measurement & Data", + "identifier": "6b9ea846-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9ea846-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "Grade 5", + "identifier": "6b9fcd8e-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9fcd8e-d7cc-11e8-824f-0242ac160002" + }, + "sequenceNumber": 4 + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c3099ae4-d7cd-11e8-824f-0242ac160002", + "identifier": "c3099ae4-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "1.MD.A", + "identifier": "6b9b2e79-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9b2e79-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "Measurement & Data", + "identifier": "6b9dde61-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9dde61-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c3099dcf-d7cd-11e8-824f-0242ac160002", + "identifier": "c3099dcf-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "1.MD.B", + "identifier": "6b9ce596-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9ce596-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "Measurement & Data", + "identifier": "6b9dde61-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9dde61-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c309a0bd-d7cd-11e8-824f-0242ac160002", + "identifier": "c309a0bd-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "1.MD.C", + "identifier": "6b9deefa-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9deefa-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "Measurement & Data", + "identifier": "6b9dde61-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9dde61-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c309a3d8-d7cd-11e8-824f-0242ac160002", + "identifier": "c309a3d8-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "2.MD.A", + "identifier": "6b9b3cf6-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9b3cf6-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "Measurement & Data", + "identifier": "6b9de075-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9de075-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c309a6dc-d7cd-11e8-824f-0242ac160002", + "identifier": "c309a6dc-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "2.MD.B", + "identifier": "6b9ceddc-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9ceddc-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "Measurement & Data", + "identifier": "6b9de075-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9de075-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c309a9d4-d7cd-11e8-824f-0242ac160002", + "identifier": "c309a9d4-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "2.MD.C", + "identifier": "6b9df333-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9df333-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "Measurement & Data", + "identifier": "6b9de075-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9de075-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c309acd6-d7cd-11e8-824f-0242ac160002", + "identifier": "c309acd6-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "2.MD.D", + "identifier": "6b9eb3f9-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9eb3f9-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "Measurement & Data", + "identifier": "6b9de075-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9de075-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c309afcc-d7cd-11e8-824f-0242ac160002", + "identifier": "c309afcc-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "3.MD.A", + "identifier": "6b9b4c1c-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9b4c1c-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "Measurement & Data", + "identifier": "6b9ea3cd-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9ea3cd-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c309b2c8-d7cd-11e8-824f-0242ac160002", + "identifier": "c309b2c8-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "3.MD.D", + "identifier": "6b9b4f1e-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9b4f1e-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "Measurement & Data", + "identifier": "6b9ea3cd-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9ea3cd-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c309b5c6-d7cd-11e8-824f-0242ac160002", + "identifier": "c309b5c6-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "3.MD.B", + "identifier": "6b9cf2d0-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9cf2d0-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "Measurement & Data", + "identifier": "6b9ea3cd-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9ea3cd-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c309b8c1-d7cd-11e8-824f-0242ac160002", + "identifier": "c309b8c1-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "3.MD.C", + "identifier": "6b9df769-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9df769-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "Measurement & Data", + "identifier": "6b9ea3cd-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9ea3cd-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c309bc61-d7cd-11e8-824f-0242ac160002", + "identifier": "c309bc61-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "4.MD.A", + "identifier": "6b9b632e-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9b632e-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "Measurement & Data", + "identifier": "6b9ea608-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9ea608-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c309c15b-d7cd-11e8-824f-0242ac160002", + "identifier": "c309c15b-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "4.MD.C", + "identifier": "6b9b6712-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9b6712-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "Measurement & Data", + "identifier": "6b9ea608-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9ea608-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c309c646-d7cd-11e8-824f-0242ac160002", + "identifier": "c309c646-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "4.MD.B", + "identifier": "6b9cf7a3-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9cf7a3-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "Measurement & Data", + "identifier": "6b9ea608-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9ea608-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c309ca35-d7cd-11e8-824f-0242ac160002", + "identifier": "c309ca35-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "5.MD.C", + "identifier": "6b9b7d79-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9b7d79-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "Measurement & Data", + "identifier": "6b9ea846-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9ea846-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c309ce2f-d7cd-11e8-824f-0242ac160002", + "identifier": "c309ce2f-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "5.MD.A", + "identifier": "6b9b7a7b-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9b7a7b-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "Measurement & Data", + "identifier": "6b9ea846-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9ea846-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c309d14b-d7cd-11e8-824f-0242ac160002", + "identifier": "c309d14b-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "5.MD.B", + "identifier": "6b9d01b9-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9d01b9-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "Measurement & Data", + "identifier": "6b9ea846-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9ea846-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c309d44c-d7cd-11e8-824f-0242ac160002", + "identifier": "c309d44c-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "Geometry", + "identifier": "6b9ea195-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9ea195-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "Grade 2", + "identifier": "6b9ddc4d-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9ddc4d-d7cc-11e8-824f-0242ac160002" + }, + "sequenceNumber": 5 + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c309d751-d7cd-11e8-824f-0242ac160002", + "identifier": "c309d751-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "Geometry", + "identifier": "6b9e9f5d-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9e9f5d-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "Grade 1", + "identifier": "6b9ccf1c-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9ccf1c-d7cc-11e8-824f-0242ac160002" + }, + "sequenceNumber": 5 + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c309da5b-d7cd-11e8-824f-0242ac160002", + "identifier": "c309da5b-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "1.G.A", + "identifier": "6b9b2b94-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9b2b94-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "Geometry", + "identifier": "6b9e9f5d-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9e9f5d-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c309dd68-d7cd-11e8-824f-0242ac160002", + "identifier": "c309dd68-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "2.G.A", + "identifier": "6b9b3a0d-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9b3a0d-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "Geometry", + "identifier": "6b9ea195-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9ea195-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c309e0ee-d7cd-11e8-824f-0242ac160002", + "identifier": "c309e0ee-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "Geometry", + "identifier": "6b9f3f4d-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9f3f4d-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "Grade 3", + "identifier": "6b9e9d1d-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9e9d1d-d7cc-11e8-824f-0242ac160002" + }, + "sequenceNumber": 5 + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c309e3f9-d7cd-11e8-824f-0242ac160002", + "identifier": "c309e3f9-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "3.G.A", + "identifier": "6b9b491b-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9b491b-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "Geometry", + "identifier": "6b9f3f4d-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9f3f4d-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c309e705-d7cd-11e8-824f-0242ac160002", + "identifier": "c309e705-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "Geometry", + "identifier": "6b9f41e4-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9f41e4-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "Grade 4", + "identifier": "6b9f3cb3-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9f3cb3-d7cc-11e8-824f-0242ac160002" + }, + "sequenceNumber": 5 + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c309ea14-d7cd-11e8-824f-0242ac160002", + "identifier": "c309ea14-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "Geometry", + "identifier": "6b9f4474-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9f4474-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "Grade 5", + "identifier": "6b9fcd8e-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9fcd8e-d7cc-11e8-824f-0242ac160002" + }, + "sequenceNumber": 5 + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c309ed20-d7cd-11e8-824f-0242ac160002", + "identifier": "c309ed20-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "4.G.A", + "identifier": "6b9b602d-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9b602d-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "Geometry", + "identifier": "6b9f41e4-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9f41e4-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c309f02c-d7cd-11e8-824f-0242ac160002", + "identifier": "c309f02c-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "5.G.A", + "identifier": "6b9b7738-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9b7738-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "Geometry", + "identifier": "6b9f4474-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9f4474-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c309f37e-d7cd-11e8-824f-0242ac160002", + "identifier": "c309f37e-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "5.G.B", + "identifier": "6b9cfef5-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9cfef5-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "Geometry", + "identifier": "6b9f4474-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9f4474-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c309f6a3-d7cd-11e8-824f-0242ac160002", + "identifier": "c309f6a3-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "Number & Operations—Fractions", + "identifier": "6b9de28e-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9de28e-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "Grade 3", + "identifier": "6b9e9d1d-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9e9d1d-d7cc-11e8-824f-0242ac160002" + }, + "sequenceNumber": 6 + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c309f9b6-d7cd-11e8-824f-0242ac160002", + "identifier": "c309f9b6-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "3.NF.A", + "identifier": "6b9b568c-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9b568c-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "Number & Operations—Fractions", + "identifier": "6b9de28e-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9de28e-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c309fcc7-d7cd-11e8-824f-0242ac160002", + "identifier": "c309fcc7-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "Number & Operations—Fractions", + "identifier": "6b9de49f-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9de49f-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "Grade 4", + "identifier": "6b9f3cb3-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9f3cb3-d7cc-11e8-824f-0242ac160002" + }, + "sequenceNumber": 6 + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c309ffe2-d7cd-11e8-824f-0242ac160002", + "identifier": "c309ffe2-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "Number & Operations—Fractions", + "identifier": "6b9de6b2-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9de6b2-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "Grade 5", + "identifier": "6b9fcd8e-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9fcd8e-d7cc-11e8-824f-0242ac160002" + }, + "sequenceNumber": 6 + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c30a02fa-d7cd-11e8-824f-0242ac160002", + "identifier": "c30a02fa-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "4.NF.A", + "identifier": "6b9b714a-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9b714a-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "Number & Operations—Fractions", + "identifier": "6b9de49f-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9de49f-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c30a0613-d7cd-11e8-824f-0242ac160002", + "identifier": "c30a0613-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "4.NF.B", + "identifier": "6b9cfa11-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9cfa11-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "Number & Operations—Fractions", + "identifier": "6b9de49f-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9de49f-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c30a092c-d7cd-11e8-824f-0242ac160002", + "identifier": "c30a092c-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "4.NF.C", + "identifier": "6b9dfbae-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9dfbae-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "Number & Operations—Fractions", + "identifier": "6b9de49f-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9de49f-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c30a0c4a-d7cd-11e8-824f-0242ac160002", + "identifier": "c30a0c4a-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "5.NF.A", + "identifier": "6b9b87e9-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9b87e9-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "Number & Operations—Fractions", + "identifier": "6b9de6b2-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9de6b2-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c30a0f6a-d7cd-11e8-824f-0242ac160002", + "identifier": "c30a0f6a-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "5.NF.B", + "identifier": "6b9d0429-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9d0429-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "Number & Operations—Fractions", + "identifier": "6b9de6b2-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9de6b2-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c30a1284-d7cd-11e8-824f-0242ac160002", + "identifier": "c30a1284-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "Ratios & Proportional Relationships", + "identifier": "6b9b22d9-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9b22d9-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "Grade 6", + "identifier": "6ba03728-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6ba03728-d7cc-11e8-824f-0242ac160002" + }, + "sequenceNumber": 2 + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c30a15a4-d7cd-11e8-824f-0242ac160002", + "identifier": "c30a15a4-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "Ratios & Proportional Relationships", + "identifier": "6b9b25c5-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9b25c5-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "Grade 7", + "identifier": "6ba0948b-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6ba0948b-d7cc-11e8-824f-0242ac160002" + }, + "sequenceNumber": 2 + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c30a1914-d7cd-11e8-824f-0242ac160002", + "identifier": "c30a1914-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "6.RP.A", + "identifier": "6b9b9a72-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9b9a72-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "Ratios & Proportional Relationships", + "identifier": "6b9b22d9-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9b22d9-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c30a1c5a-d7cd-11e8-824f-0242ac160002", + "identifier": "c30a1c5a-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "7.RP.A", + "identifier": "6b9baca3-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9baca3-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "Ratios & Proportional Relationships", + "identifier": "6b9b25c5-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9b25c5-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c30a1f91-d7cd-11e8-824f-0242ac160002", + "identifier": "c30a1f91-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "The Number System", + "identifier": "6b9cdd6d-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9cdd6d-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "Grade 6", + "identifier": "6ba03728-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6ba03728-d7cc-11e8-824f-0242ac160002" + }, + "sequenceNumber": 3 + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c30a22cb-d7cd-11e8-824f-0242ac160002", + "identifier": "c30a22cb-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "The Number System", + "identifier": "6b9cdfc8-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9cdfc8-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "Grade 7", + "identifier": "6ba0948b-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6ba0948b-d7cc-11e8-824f-0242ac160002" + }, + "sequenceNumber": 3 + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c30a260d-d7cd-11e8-824f-0242ac160002", + "identifier": "c30a260d-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "The Number System", + "identifier": "6b9b28b4-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9b28b4-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "Grade 8", + "identifier": "6ba0d99c-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6ba0d99c-d7cc-11e8-824f-0242ac160002" + }, + "sequenceNumber": 2 + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c30a2965-d7cd-11e8-824f-0242ac160002", + "identifier": "c30a2965-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "6.NS.A", + "identifier": "6b9b9763-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9b9763-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "The Number System", + "identifier": "6b9cdd6d-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9cdd6d-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c30a2c56-d7cd-11e8-824f-0242ac160002", + "identifier": "c30a2c56-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "6.NS.B", + "identifier": "6b9d0b6d-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9d0b6d-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "The Number System", + "identifier": "6b9cdd6d-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9cdd6d-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c30a2f46-d7cd-11e8-824f-0242ac160002", + "identifier": "c30a2f46-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "6.NS.C", + "identifier": "6b9e00d3-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9e00d3-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "The Number System", + "identifier": "6b9cdd6d-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9cdd6d-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c30a323e-d7cd-11e8-824f-0242ac160002", + "identifier": "c30a323e-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "7.NS.A", + "identifier": "6b9ba9a3-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9ba9a3-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "The Number System", + "identifier": "6b9cdfc8-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9cdfc8-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c30a3536-d7cd-11e8-824f-0242ac160002", + "identifier": "c30a3536-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "8.NS.A", + "identifier": "6b9bbc94-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9bbc94-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "The Number System", + "identifier": "6b9b28b4-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9b28b4-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c30a382e-d7cd-11e8-824f-0242ac160002", + "identifier": "c30a382e-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "Expressions & Equations", + "identifier": "6b9de8c5-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9de8c5-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "Grade 6", + "identifier": "6ba03728-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6ba03728-d7cc-11e8-824f-0242ac160002" + }, + "sequenceNumber": 4 + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c30a3d0a-d7cd-11e8-824f-0242ac160002", + "identifier": "c30a3d0a-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "Expressions & Equations", + "identifier": "6b9dead9-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9dead9-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "Grade 7", + "identifier": "6ba0948b-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6ba0948b-d7cc-11e8-824f-0242ac160002" + }, + "sequenceNumber": 4 + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c30a4053-d7cd-11e8-824f-0242ac160002", + "identifier": "c30a4053-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "Expressions & Equations", + "identifier": "6b9ce2d3-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9ce2d3-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "Grade 8", + "identifier": "6ba0d99c-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6ba0d99c-d7cc-11e8-824f-0242ac160002" + }, + "sequenceNumber": 3 + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c30a437b-d7cd-11e8-824f-0242ac160002", + "identifier": "c30a437b-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "6.EE.C", + "identifier": "6b9d0903-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9d0903-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "Expressions & Equations", + "identifier": "6b9de8c5-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9de8c5-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c30a468f-d7cd-11e8-824f-0242ac160002", + "identifier": "c30a468f-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "6.EE.B", + "identifier": "6b9b914e-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9b914e-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "Expressions & Equations", + "identifier": "6b9de8c5-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9de8c5-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c30a498d-d7cd-11e8-824f-0242ac160002", + "identifier": "c30a498d-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "6.EE.A", + "identifier": "6b9b8e2f-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9b8e2f-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "Expressions & Equations", + "identifier": "6b9de8c5-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9de8c5-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c30a4d04-d7cd-11e8-824f-0242ac160002", + "identifier": "c30a4d04-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "7.EE.A", + "identifier": "6b9ba381-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9ba381-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "Expressions & Equations", + "identifier": "6b9dead9-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9dead9-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c30a5003-d7cd-11e8-824f-0242ac160002", + "identifier": "c30a5003-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "7.EE.B", + "identifier": "6b9d0dec-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9d0dec-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "Expressions & Equations", + "identifier": "6b9dead9-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9dead9-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c30a52fe-d7cd-11e8-824f-0242ac160002", + "identifier": "c30a52fe-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "8.EE.A", + "identifier": "6b9bb323-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9bb323-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "Expressions & Equations", + "identifier": "6b9ce2d3-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9ce2d3-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c30a55fc-d7cd-11e8-824f-0242ac160002", + "identifier": "c30a55fc-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "8.EE.B", + "identifier": "6b9d165f-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9d165f-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "Expressions & Equations", + "identifier": "6b9ce2d3-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9ce2d3-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c30a5900-d7cd-11e8-824f-0242ac160002", + "identifier": "c30a5900-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "8.EE.C", + "identifier": "6b9e0511-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9e0511-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "Expressions & Equations", + "identifier": "6b9ce2d3-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9ce2d3-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c30a5c05-d7cd-11e8-824f-0242ac160002", + "identifier": "c30a5c05-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "Geometry", + "identifier": "6b9eaa94-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9eaa94-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "Grade 6", + "identifier": "6ba03728-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6ba03728-d7cc-11e8-824f-0242ac160002" + }, + "sequenceNumber": 5 + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c30a5f0a-d7cd-11e8-824f-0242ac160002", + "identifier": "c30a5f0a-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "Geometry", + "identifier": "6b9eacd9-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9eacd9-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "Grade 7", + "identifier": "6ba0948b-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6ba0948b-d7cc-11e8-824f-0242ac160002" + }, + "sequenceNumber": 5 + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c30a620e-d7cd-11e8-824f-0242ac160002", + "identifier": "c30a620e-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "Geometry", + "identifier": "6b9eaf0c-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9eaf0c-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "Grade 8", + "identifier": "6ba0d99c-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6ba0d99c-d7cc-11e8-824f-0242ac160002" + }, + "sequenceNumber": 4 + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c30a6514-d7cd-11e8-824f-0242ac160002", + "identifier": "c30a6514-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "6.G.A", + "identifier": "6b9b9457-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9b9457-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "Geometry", + "identifier": "6b9eaa94-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9eaa94-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c30a6859-d7cd-11e8-824f-0242ac160002", + "identifier": "c30a6859-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "7.G.A", + "identifier": "6b9ba698-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9ba698-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "Geometry", + "identifier": "6b9eacd9-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9eacd9-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c30a6b6e-d7cd-11e8-824f-0242ac160002", + "identifier": "c30a6b6e-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "7.G.B", + "identifier": "6b9d1068-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9d1068-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "Geometry", + "identifier": "6b9eacd9-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9eacd9-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c30a6e7d-d7cd-11e8-824f-0242ac160002", + "identifier": "c30a6e7d-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "8.G.A", + "identifier": "6b9bb97b-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9bb97b-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "Geometry", + "identifier": "6b9eaf0c-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9eaf0c-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c30a718d-d7cd-11e8-824f-0242ac160002", + "identifier": "c30a718d-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "8.G.B", + "identifier": "6b9d1b5c-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9d1b5c-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "Geometry", + "identifier": "6b9eaf0c-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9eaf0c-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c30a749b-d7cd-11e8-824f-0242ac160002", + "identifier": "c30a749b-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "8.G.C", + "identifier": "6b9e072c-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9e072c-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "Geometry", + "identifier": "6b9eaf0c-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9eaf0c-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c30a77ac-d7cd-11e8-824f-0242ac160002", + "identifier": "c30a77ac-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "Statistics & Probability", + "identifier": "6b9f4709-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9f4709-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "Grade 6", + "identifier": "6ba03728-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6ba03728-d7cc-11e8-824f-0242ac160002" + }, + "sequenceNumber": 6 + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c30a7ac0-d7cd-11e8-824f-0242ac160002", + "identifier": "c30a7ac0-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "Statistics & Probability", + "identifier": "6b9f49a3-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9f49a3-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "Grade 7", + "identifier": "6ba0948b-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6ba0948b-d7cc-11e8-824f-0242ac160002" + }, + "sequenceNumber": 6 + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c30a7dd3-d7cd-11e8-824f-0242ac160002", + "identifier": "c30a7dd3-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "Statistics & Probability", + "identifier": "6b9f4d1b-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9f4d1b-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "Grade 8", + "identifier": "6ba0d99c-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6ba0d99c-d7cc-11e8-824f-0242ac160002" + }, + "sequenceNumber": 5 + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c30a80ea-d7cd-11e8-824f-0242ac160002", + "identifier": "c30a80ea-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "6.SP.B", + "identifier": "6b9ba07e-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9ba07e-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "Statistics & Probability", + "identifier": "6b9f4709-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9f4709-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c30a8407-d7cd-11e8-824f-0242ac160002", + "identifier": "c30a8407-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "6.SP.A", + "identifier": "6b9b9d82-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9b9d82-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "Statistics & Probability", + "identifier": "6b9f4709-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9f4709-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c30a8724-d7cd-11e8-824f-0242ac160002", + "identifier": "c30a8724-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "7.SP.A", + "identifier": "6b9bb00d-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9bb00d-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "Statistics & Probability", + "identifier": "6b9f49a3-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9f49a3-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c30a8a40-d7cd-11e8-824f-0242ac160002", + "identifier": "c30a8a40-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "7.SP.B", + "identifier": "6b9d1384-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9d1384-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "Statistics & Probability", + "identifier": "6b9f49a3-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9f49a3-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c30a8dae-d7cd-11e8-824f-0242ac160002", + "identifier": "c30a8dae-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "7.SP.C", + "identifier": "6b9e02f1-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9e02f1-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "Statistics & Probability", + "identifier": "6b9f49a3-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9f49a3-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c30a915e-d7cd-11e8-824f-0242ac160002", + "identifier": "c30a915e-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "8.SP.A", + "identifier": "6b9bbfac-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9bbfac-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "Statistics & Probability", + "identifier": "6b9f4d1b-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9f4d1b-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c30a9482-d7cd-11e8-824f-0242ac160002", + "identifier": "c30a9482-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "Functions", + "identifier": "6b9deced-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9deced-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "Grade 8", + "identifier": "6ba0d99c-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6ba0d99c-d7cc-11e8-824f-0242ac160002" + }, + "sequenceNumber": 6 + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c30a97b3-d7cd-11e8-824f-0242ac160002", + "identifier": "c30a97b3-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "8.F.A", + "identifier": "6b9bb669-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9bb669-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "Functions", + "identifier": "6b9deced-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9deced-d7cc-11e8-824f-0242ac160002" + } + }, + { + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c30a9adf-d7cd-11e8-824f-0242ac160002", + "identifier": "c30a9adf-d7cd-11e8-824f-0242ac160002", + "lastChangeDateTime": "2018-10-24T20:48:16+00:00", + "originNodeURI": { + "title": "8.F.B", + "identifier": "6b9d18e7-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9d18e7-d7cc-11e8-824f-0242ac160002" + }, + "associationType": "isChildOf", + "destinationNodeURI": { + "title": "Functions", + "identifier": "6b9deced-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9deced-d7cc-11e8-824f-0242ac160002" + } + }, + { + "identifier": "571cb629-6dd3-4359-b95b-10cd73a7002d", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/571cb629-6dd3-4359-b95b-10cd73a7002d", + "associationType": "isChildOf", + "originNodeURI": { + "title": "Standards for Mathem…", + "identifier": "ced70744-4824-4075-b820-690d760aea43", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/ced70744-4824-4075-b820-690d760aea43" + }, + "destinationNodeURI": { + "title": "Kindergarten", + "identifier": "6b9b1161-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9b1161-d7cc-11e8-824f-0242ac160002" + }, + "lastChangeDateTime": "2022-05-09T20:26:54+00:00", + "sequenceNumber": 1 + }, + { + "identifier": "b91dfca9-7e0c-460a-8208-5ce2ba80fab5", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/b91dfca9-7e0c-460a-8208-5ce2ba80fab5", + "associationType": "isChildOf", + "originNodeURI": { + "title": "K.MP1 Make sense of …", + "identifier": "2c535476-9f13-458b-8686-54bec60b88d6", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/2c535476-9f13-458b-8686-54bec60b88d6" + }, + "destinationNodeURI": { + "title": "Standards for Mathem…", + "identifier": "ced70744-4824-4075-b820-690d760aea43", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/ced70744-4824-4075-b820-690d760aea43" + }, + "lastChangeDateTime": "2022-05-09T20:24:55+00:00", + "sequenceNumber": 1 + }, + { + "identifier": "90dc10a7-ef3c-495d-b640-a68112e814d5", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/90dc10a7-ef3c-495d-b640-a68112e814d5", + "associationType": "isChildOf", + "originNodeURI": { + "title": "K.MP2 Reason abstrac…", + "identifier": "b2fafb0e-4ed3-401c-9434-bc7863c78dd6", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/b2fafb0e-4ed3-401c-9434-bc7863c78dd6" + }, + "destinationNodeURI": { + "title": "Standards for Mathem…", + "identifier": "ced70744-4824-4075-b820-690d760aea43", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/ced70744-4824-4075-b820-690d760aea43" + }, + "lastChangeDateTime": "2022-05-09T20:24:55+00:00", + "sequenceNumber": 2 + }, + { + "identifier": "29d79e01-6427-4049-968d-b283302da252", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/29d79e01-6427-4049-968d-b283302da252", + "associationType": "isChildOf", + "originNodeURI": { + "title": "K.MP3 Construct viab…", + "identifier": "669a0367-28e3-4926-bc0b-fcbf31713001", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/669a0367-28e3-4926-bc0b-fcbf31713001" + }, + "destinationNodeURI": { + "title": "Standards for Mathem…", + "identifier": "ced70744-4824-4075-b820-690d760aea43", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/ced70744-4824-4075-b820-690d760aea43" + }, + "lastChangeDateTime": "2022-05-09T20:24:55+00:00", + "sequenceNumber": 3 + }, + { + "identifier": "0345c715-478d-4282-92b1-561e02cdfc1d", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/0345c715-478d-4282-92b1-561e02cdfc1d", + "associationType": "isChildOf", + "originNodeURI": { + "title": "K.MP4 Model with mat…", + "identifier": "0b381fd7-8e97-4642-8a1a-7bb046873b51", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/0b381fd7-8e97-4642-8a1a-7bb046873b51" + }, + "destinationNodeURI": { + "title": "Standards for Mathem…", + "identifier": "ced70744-4824-4075-b820-690d760aea43", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/ced70744-4824-4075-b820-690d760aea43" + }, + "lastChangeDateTime": "2022-05-09T20:24:55+00:00", + "sequenceNumber": 4 + }, + { + "identifier": "7e8dd872-9c2c-46a8-b795-4f615b0c57e7", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/7e8dd872-9c2c-46a8-b795-4f615b0c57e7", + "associationType": "isChildOf", + "originNodeURI": { + "title": "K.MP5 Use appropriat…", + "identifier": "00592483-6bd8-4da8-aca6-947d54afcc7f", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/00592483-6bd8-4da8-aca6-947d54afcc7f" + }, + "destinationNodeURI": { + "title": "Standards for Mathem…", + "identifier": "ced70744-4824-4075-b820-690d760aea43", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/ced70744-4824-4075-b820-690d760aea43" + }, + "lastChangeDateTime": "2022-05-09T20:24:55+00:00", + "sequenceNumber": 5 + }, + { + "identifier": "7813aca7-ed2c-487a-9f9b-326dea9168e2", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/7813aca7-ed2c-487a-9f9b-326dea9168e2", + "associationType": "isChildOf", + "originNodeURI": { + "title": "K.MP6 Attend to prec…", + "identifier": "e6b4d3f5-89c9-41d7-a65b-c4f1390d4abb", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/e6b4d3f5-89c9-41d7-a65b-c4f1390d4abb" + }, + "destinationNodeURI": { + "title": "Standards for Mathem…", + "identifier": "ced70744-4824-4075-b820-690d760aea43", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/ced70744-4824-4075-b820-690d760aea43" + }, + "lastChangeDateTime": "2022-05-09T20:24:55+00:00", + "sequenceNumber": 6 + }, + { + "identifier": "7e28e44f-97fe-4a09-bd1f-9d98a05a966e", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/7e28e44f-97fe-4a09-bd1f-9d98a05a966e", + "associationType": "isChildOf", + "originNodeURI": { + "title": "K.MP7 Look for and m…", + "identifier": "773fa434-1360-4fdc-b784-30b4c5b9ab8b", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/773fa434-1360-4fdc-b784-30b4c5b9ab8b" + }, + "destinationNodeURI": { + "title": "Standards for Mathem…", + "identifier": "ced70744-4824-4075-b820-690d760aea43", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/ced70744-4824-4075-b820-690d760aea43" + }, + "lastChangeDateTime": "2022-05-09T20:24:55+00:00", + "sequenceNumber": 7 + }, + { + "identifier": "e156b51d-9e0e-40b1-b48a-2df6ab9d8892", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/e156b51d-9e0e-40b1-b48a-2df6ab9d8892", + "associationType": "isChildOf", + "originNodeURI": { + "title": "K.MP8 Look for and e…", + "identifier": "7244b236-9bad-4896-8def-68469e20dd9f", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/7244b236-9bad-4896-8def-68469e20dd9f" + }, + "destinationNodeURI": { + "title": "Standards for Mathem…", + "identifier": "ced70744-4824-4075-b820-690d760aea43", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/ced70744-4824-4075-b820-690d760aea43" + }, + "lastChangeDateTime": "2022-05-09T20:24:55+00:00", + "sequenceNumber": 8 + }, + { + "identifier": "13783411-c7ab-4315-8d62-060204e18695", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/13783411-c7ab-4315-8d62-060204e18695", + "associationType": "isChildOf", + "originNodeURI": { + "title": "Standards for Mathem…", + "identifier": "5852d648-2b96-47cc-9736-e6e8ffd541db", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/5852d648-2b96-47cc-9736-e6e8ffd541db" + }, + "destinationNodeURI": { + "title": "Grade 1", + "identifier": "6b9ccf1c-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9ccf1c-d7cc-11e8-824f-0242ac160002" + }, + "lastChangeDateTime": "2022-05-09T20:26:49+00:00", + "sequenceNumber": 1 + }, + { + "identifier": "111b8d32-2114-43d1-9922-78aebc550da1", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/111b8d32-2114-43d1-9922-78aebc550da1", + "associationType": "isChildOf", + "originNodeURI": { + "title": "1.MP1 Make sense of …", + "identifier": "5fbf1c38-c3ad-484c-9346-e83dc3b35590", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/5fbf1c38-c3ad-484c-9346-e83dc3b35590" + }, + "destinationNodeURI": { + "title": "Standards for Mathem…", + "identifier": "5852d648-2b96-47cc-9736-e6e8ffd541db", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/5852d648-2b96-47cc-9736-e6e8ffd541db" + }, + "lastChangeDateTime": "2022-05-09T20:24:55+00:00", + "sequenceNumber": 1 + }, + { + "identifier": "46980397-c001-41d9-b0b2-f5360c61fa69", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/46980397-c001-41d9-b0b2-f5360c61fa69", + "associationType": "isChildOf", + "originNodeURI": { + "title": "1.MP2 Reason abstrac…", + "identifier": "b4b7c6d5-77c3-43c8-8b81-0abb5ab4a25e", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/b4b7c6d5-77c3-43c8-8b81-0abb5ab4a25e" + }, + "destinationNodeURI": { + "title": "Standards for Mathem…", + "identifier": "5852d648-2b96-47cc-9736-e6e8ffd541db", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/5852d648-2b96-47cc-9736-e6e8ffd541db" + }, + "lastChangeDateTime": "2022-05-09T20:24:55+00:00", + "sequenceNumber": 2 + }, + { + "identifier": "aead44c2-17dc-4376-94a6-15de9b36c0e6", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/aead44c2-17dc-4376-94a6-15de9b36c0e6", + "associationType": "isChildOf", + "originNodeURI": { + "title": "1.MP3 Construct viab…", + "identifier": "d781ebb4-b2f9-4704-a51f-5442225bc6d7", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/d781ebb4-b2f9-4704-a51f-5442225bc6d7" + }, + "destinationNodeURI": { + "title": "Standards for Mathem…", + "identifier": "5852d648-2b96-47cc-9736-e6e8ffd541db", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/5852d648-2b96-47cc-9736-e6e8ffd541db" + }, + "lastChangeDateTime": "2022-05-09T20:24:55+00:00", + "sequenceNumber": 3 + }, + { + "identifier": "ad48d9d1-d758-4dc9-b012-670034b3e553", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/ad48d9d1-d758-4dc9-b012-670034b3e553", + "associationType": "isChildOf", + "originNodeURI": { + "title": "1.MP4 Model with mat…", + "identifier": "6699998b-01fa-406d-8827-3b62673f6515", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6699998b-01fa-406d-8827-3b62673f6515" + }, + "destinationNodeURI": { + "title": "Standards for Mathem…", + "identifier": "5852d648-2b96-47cc-9736-e6e8ffd541db", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/5852d648-2b96-47cc-9736-e6e8ffd541db" + }, + "lastChangeDateTime": "2022-05-09T20:24:55+00:00", + "sequenceNumber": 4 + }, + { + "identifier": "713ebc90-8cf2-47e7-8669-c9b41f2cc95c", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/713ebc90-8cf2-47e7-8669-c9b41f2cc95c", + "associationType": "isChildOf", + "originNodeURI": { + "title": "1.MP5 Use appropriat…", + "identifier": "b119a28a-be88-4d86-9263-c785cbe25366", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/b119a28a-be88-4d86-9263-c785cbe25366" + }, + "destinationNodeURI": { + "title": "Standards for Mathem…", + "identifier": "5852d648-2b96-47cc-9736-e6e8ffd541db", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/5852d648-2b96-47cc-9736-e6e8ffd541db" + }, + "lastChangeDateTime": "2022-05-09T20:24:55+00:00", + "sequenceNumber": 5 + }, + { + "identifier": "9b4e90b6-5c04-4996-aab7-a9f576721b58", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/9b4e90b6-5c04-4996-aab7-a9f576721b58", + "associationType": "isChildOf", + "originNodeURI": { + "title": "1.MP6 Attend to prec…", + "identifier": "bc372236-5406-4a40-bd11-8b88eb5ee9be", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/bc372236-5406-4a40-bd11-8b88eb5ee9be" + }, + "destinationNodeURI": { + "title": "Standards for Mathem…", + "identifier": "5852d648-2b96-47cc-9736-e6e8ffd541db", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/5852d648-2b96-47cc-9736-e6e8ffd541db" + }, + "lastChangeDateTime": "2022-05-09T20:24:55+00:00", + "sequenceNumber": 6 + }, + { + "identifier": "511bf663-e685-4e40-9bf0-404e9b749a43", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/511bf663-e685-4e40-9bf0-404e9b749a43", + "associationType": "isChildOf", + "originNodeURI": { + "title": "1.MP7 Look for and m…", + "identifier": "a22476fc-cc30-46c2-a7d5-74aac75ef60b", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/a22476fc-cc30-46c2-a7d5-74aac75ef60b" + }, + "destinationNodeURI": { + "title": "Standards for Mathem…", + "identifier": "5852d648-2b96-47cc-9736-e6e8ffd541db", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/5852d648-2b96-47cc-9736-e6e8ffd541db" + }, + "lastChangeDateTime": "2022-05-09T20:24:55+00:00", + "sequenceNumber": 7 + }, + { + "identifier": "07495af1-a6d9-4b6e-abaa-838af0ffe11c", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/07495af1-a6d9-4b6e-abaa-838af0ffe11c", + "associationType": "isChildOf", + "originNodeURI": { + "title": "1.MP8 Look for and e…", + "identifier": "635a6a3c-f8c7-4083-95dd-91359393257f", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/635a6a3c-f8c7-4083-95dd-91359393257f" + }, + "destinationNodeURI": { + "title": "Standards for Mathem…", + "identifier": "5852d648-2b96-47cc-9736-e6e8ffd541db", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/5852d648-2b96-47cc-9736-e6e8ffd541db" + }, + "lastChangeDateTime": "2022-05-09T20:24:55+00:00", + "sequenceNumber": 8 + }, + { + "identifier": "bcf3fb29-5da3-4741-95f2-36620255f5a2", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/bcf3fb29-5da3-4741-95f2-36620255f5a2", + "associationType": "isChildOf", + "originNodeURI": { + "title": "Standards for Mathem…", + "identifier": "6e113c21-fb9d-44c0-9945-de0d00d74c4d", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6e113c21-fb9d-44c0-9945-de0d00d74c4d" + }, + "destinationNodeURI": { + "title": "Grade 2", + "identifier": "6b9ddc4d-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9ddc4d-d7cc-11e8-824f-0242ac160002" + }, + "lastChangeDateTime": "2022-05-09T20:26:46+00:00", + "sequenceNumber": 1 + }, + { + "identifier": "ee7408bb-1593-41ad-a547-f1c500421868", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/ee7408bb-1593-41ad-a547-f1c500421868", + "associationType": "isChildOf", + "originNodeURI": { + "title": "2.MP1 Make sense of …", + "identifier": "7ef9937f-7e62-4ae2-bb20-4a8345499fc2", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/7ef9937f-7e62-4ae2-bb20-4a8345499fc2" + }, + "destinationNodeURI": { + "title": "Standards for Mathem…", + "identifier": "6e113c21-fb9d-44c0-9945-de0d00d74c4d", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6e113c21-fb9d-44c0-9945-de0d00d74c4d" + }, + "lastChangeDateTime": "2022-05-09T20:24:55+00:00", + "sequenceNumber": 1 + }, + { + "identifier": "f80ba79c-7793-4918-ba1c-0ad91681554a", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/f80ba79c-7793-4918-ba1c-0ad91681554a", + "associationType": "isChildOf", + "originNodeURI": { + "title": "2.MP2 Reason abstrac…", + "identifier": "a140cefc-124c-439d-b450-801bbf1be566", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/a140cefc-124c-439d-b450-801bbf1be566" + }, + "destinationNodeURI": { + "title": "Standards for Mathem…", + "identifier": "6e113c21-fb9d-44c0-9945-de0d00d74c4d", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6e113c21-fb9d-44c0-9945-de0d00d74c4d" + }, + "lastChangeDateTime": "2022-05-09T20:24:55+00:00", + "sequenceNumber": 2 + }, + { + "identifier": "dad81a49-d263-438e-a13b-64761400dcf2", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/dad81a49-d263-438e-a13b-64761400dcf2", + "associationType": "isChildOf", + "originNodeURI": { + "title": "2.MP3 Construct viab…", + "identifier": "1b48179d-e3da-43a5-a2af-2ea90e09138b", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/1b48179d-e3da-43a5-a2af-2ea90e09138b" + }, + "destinationNodeURI": { + "title": "Standards for Mathem…", + "identifier": "6e113c21-fb9d-44c0-9945-de0d00d74c4d", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6e113c21-fb9d-44c0-9945-de0d00d74c4d" + }, + "lastChangeDateTime": "2022-05-09T20:24:55+00:00", + "sequenceNumber": 3 + }, + { + "identifier": "a5ade043-6b16-4f0f-a6c0-ec7feab83205", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/a5ade043-6b16-4f0f-a6c0-ec7feab83205", + "associationType": "isChildOf", + "originNodeURI": { + "title": "2.MP4 Model with mat…", + "identifier": "9afbe749-6c7f-480d-9d10-0e4a0f5b48cf", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/9afbe749-6c7f-480d-9d10-0e4a0f5b48cf" + }, + "destinationNodeURI": { + "title": "Standards for Mathem…", + "identifier": "6e113c21-fb9d-44c0-9945-de0d00d74c4d", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6e113c21-fb9d-44c0-9945-de0d00d74c4d" + }, + "lastChangeDateTime": "2022-05-09T20:24:55+00:00", + "sequenceNumber": 4 + }, + { + "identifier": "42162ac6-3222-4484-80d6-ca227f04013d", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/42162ac6-3222-4484-80d6-ca227f04013d", + "associationType": "isChildOf", + "originNodeURI": { + "title": "2.MP5 Use appropriat…", + "identifier": "592123d6-dda5-483d-9947-b966a5d1cd89", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/592123d6-dda5-483d-9947-b966a5d1cd89" + }, + "destinationNodeURI": { + "title": "Standards for Mathem…", + "identifier": "6e113c21-fb9d-44c0-9945-de0d00d74c4d", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6e113c21-fb9d-44c0-9945-de0d00d74c4d" + }, + "lastChangeDateTime": "2022-05-09T20:24:55+00:00", + "sequenceNumber": 5 + }, + { + "identifier": "c9955787-ddae-42c8-ae45-fd982a806245", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c9955787-ddae-42c8-ae45-fd982a806245", + "associationType": "isChildOf", + "originNodeURI": { + "title": "2.MP6 Attend to prec…", + "identifier": "c111a3b6-286c-409f-9fb4-ec662c5b856f", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/c111a3b6-286c-409f-9fb4-ec662c5b856f" + }, + "destinationNodeURI": { + "title": "Standards for Mathem…", + "identifier": "6e113c21-fb9d-44c0-9945-de0d00d74c4d", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6e113c21-fb9d-44c0-9945-de0d00d74c4d" + }, + "lastChangeDateTime": "2022-05-09T20:24:55+00:00", + "sequenceNumber": 6 + }, + { + "identifier": "bb4271e8-6cfd-4eb1-9d5c-6577e68218b5", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/bb4271e8-6cfd-4eb1-9d5c-6577e68218b5", + "associationType": "isChildOf", + "originNodeURI": { + "title": "2.MP7 Look for and m…", + "identifier": "c7f75e3e-5854-4357-ab76-917c3ccf04b5", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/c7f75e3e-5854-4357-ab76-917c3ccf04b5" + }, + "destinationNodeURI": { + "title": "Standards for Mathem…", + "identifier": "6e113c21-fb9d-44c0-9945-de0d00d74c4d", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6e113c21-fb9d-44c0-9945-de0d00d74c4d" + }, + "lastChangeDateTime": "2022-05-09T20:24:55+00:00", + "sequenceNumber": 7 + }, + { + "identifier": "e2e91c7a-c3db-4bd9-9fd8-0193757c9270", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/e2e91c7a-c3db-4bd9-9fd8-0193757c9270", + "associationType": "isChildOf", + "originNodeURI": { + "title": "2.MP8 Look for and e…", + "identifier": "46caf4e1-5835-4cf8-83ae-1718810e4fa1", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/46caf4e1-5835-4cf8-83ae-1718810e4fa1" + }, + "destinationNodeURI": { + "title": "Standards for Mathem…", + "identifier": "6e113c21-fb9d-44c0-9945-de0d00d74c4d", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6e113c21-fb9d-44c0-9945-de0d00d74c4d" + }, + "lastChangeDateTime": "2022-05-09T20:24:55+00:00", + "sequenceNumber": 8 + }, + { + "identifier": "464cf7cc-78a0-4515-9b1b-3a54e5308c33", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/464cf7cc-78a0-4515-9b1b-3a54e5308c33", + "associationType": "isChildOf", + "originNodeURI": { + "title": "Standards for Mathem…", + "identifier": "6f0bb25b-4587-4888-8cfe-4fd54ce3aefb", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6f0bb25b-4587-4888-8cfe-4fd54ce3aefb" + }, + "destinationNodeURI": { + "title": "Grade 3", + "identifier": "6b9e9d1d-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9e9d1d-d7cc-11e8-824f-0242ac160002" + }, + "lastChangeDateTime": "2022-05-09T20:26:41+00:00", + "sequenceNumber": 1 + }, + { + "identifier": "eeec067e-e0bc-477d-8b84-6b667e8319a4", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/eeec067e-e0bc-477d-8b84-6b667e8319a4", + "associationType": "isChildOf", + "originNodeURI": { + "title": "3.MP1 Make sense of …", + "identifier": "a6243334-bcc0-4659-9898-9d212cce236e", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/a6243334-bcc0-4659-9898-9d212cce236e" + }, + "destinationNodeURI": { + "title": "Standards for Mathem…", + "identifier": "6f0bb25b-4587-4888-8cfe-4fd54ce3aefb", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6f0bb25b-4587-4888-8cfe-4fd54ce3aefb" + }, + "lastChangeDateTime": "2022-05-09T20:24:55+00:00", + "sequenceNumber": 1 + }, + { + "identifier": "6ccd510c-f64f-4138-ac54-8762bd243604", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/6ccd510c-f64f-4138-ac54-8762bd243604", + "associationType": "isChildOf", + "originNodeURI": { + "title": "3.MP2 Reason abstrac…", + "identifier": "679c68f6-5dad-4cfd-b5ae-8b316309fb7f", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/679c68f6-5dad-4cfd-b5ae-8b316309fb7f" + }, + "destinationNodeURI": { + "title": "Standards for Mathem…", + "identifier": "6f0bb25b-4587-4888-8cfe-4fd54ce3aefb", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6f0bb25b-4587-4888-8cfe-4fd54ce3aefb" + }, + "lastChangeDateTime": "2022-05-09T20:24:55+00:00", + "sequenceNumber": 2 + }, + { + "identifier": "7297712e-3045-4178-b028-940e5c90c558", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/7297712e-3045-4178-b028-940e5c90c558", + "associationType": "isChildOf", + "originNodeURI": { + "title": "3.MP3 Construct viab…", + "identifier": "290ba6f3-3b17-496a-8986-0b9dcb22b292", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/290ba6f3-3b17-496a-8986-0b9dcb22b292" + }, + "destinationNodeURI": { + "title": "Standards for Mathem…", + "identifier": "6f0bb25b-4587-4888-8cfe-4fd54ce3aefb", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6f0bb25b-4587-4888-8cfe-4fd54ce3aefb" + }, + "lastChangeDateTime": "2022-05-09T20:24:55+00:00", + "sequenceNumber": 3 + }, + { + "identifier": "e1554ca7-879f-413e-9966-0295deb6fdc4", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/e1554ca7-879f-413e-9966-0295deb6fdc4", + "associationType": "isChildOf", + "originNodeURI": { + "title": "3.MP4 Model with mat…", + "identifier": "7b025668-d9c1-40dc-99f9-8d58a2b647d5", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/7b025668-d9c1-40dc-99f9-8d58a2b647d5" + }, + "destinationNodeURI": { + "title": "Standards for Mathem…", + "identifier": "6f0bb25b-4587-4888-8cfe-4fd54ce3aefb", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6f0bb25b-4587-4888-8cfe-4fd54ce3aefb" + }, + "lastChangeDateTime": "2022-05-09T20:24:55+00:00", + "sequenceNumber": 4 + }, + { + "identifier": "b51c46e2-4e4b-44a6-b050-493c173e3296", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/b51c46e2-4e4b-44a6-b050-493c173e3296", + "associationType": "isChildOf", + "originNodeURI": { + "title": "3.MP5 Use appropriat…", + "identifier": "8bf65d14-d8c2-4abc-b7c5-1f546847125c", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/8bf65d14-d8c2-4abc-b7c5-1f546847125c" + }, + "destinationNodeURI": { + "title": "Standards for Mathem…", + "identifier": "6f0bb25b-4587-4888-8cfe-4fd54ce3aefb", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6f0bb25b-4587-4888-8cfe-4fd54ce3aefb" + }, + "lastChangeDateTime": "2022-05-09T20:24:55+00:00", + "sequenceNumber": 5 + }, + { + "identifier": "62f8a0bc-8df5-47f2-893a-c24a4f6f4310", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/62f8a0bc-8df5-47f2-893a-c24a4f6f4310", + "associationType": "isChildOf", + "originNodeURI": { + "title": "3.MP6 Attend to prec…", + "identifier": "818dc46a-a23c-4ead-b2b9-cd7e2a1a85c6", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/818dc46a-a23c-4ead-b2b9-cd7e2a1a85c6" + }, + "destinationNodeURI": { + "title": "Standards for Mathem…", + "identifier": "6f0bb25b-4587-4888-8cfe-4fd54ce3aefb", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6f0bb25b-4587-4888-8cfe-4fd54ce3aefb" + }, + "lastChangeDateTime": "2022-05-09T20:24:55+00:00", + "sequenceNumber": 6 + }, + { + "identifier": "284edc1c-8b94-474f-9a6e-4b3e3668f86a", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/284edc1c-8b94-474f-9a6e-4b3e3668f86a", + "associationType": "isChildOf", + "originNodeURI": { + "title": "3.MP7 Look for and m…", + "identifier": "81fe2d1a-6d29-4cbd-ab28-e992b250a176", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/81fe2d1a-6d29-4cbd-ab28-e992b250a176" + }, + "destinationNodeURI": { + "title": "Standards for Mathem…", + "identifier": "6f0bb25b-4587-4888-8cfe-4fd54ce3aefb", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6f0bb25b-4587-4888-8cfe-4fd54ce3aefb" + }, + "lastChangeDateTime": "2022-05-09T20:24:55+00:00", + "sequenceNumber": 7 + }, + { + "identifier": "5e726c26-ae4f-45a9-add3-cc39a5416742", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/5e726c26-ae4f-45a9-add3-cc39a5416742", + "associationType": "isChildOf", + "originNodeURI": { + "title": "3.MP8 Look for and e…", + "identifier": "38fddec8-6fab-4015-b864-a0c1d78fae3f", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/38fddec8-6fab-4015-b864-a0c1d78fae3f" + }, + "destinationNodeURI": { + "title": "Standards for Mathem…", + "identifier": "6f0bb25b-4587-4888-8cfe-4fd54ce3aefb", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6f0bb25b-4587-4888-8cfe-4fd54ce3aefb" + }, + "lastChangeDateTime": "2022-05-09T20:24:55+00:00", + "sequenceNumber": 8 + }, + { + "identifier": "06a58186-1cea-48c7-a47c-6b539070afdc", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/06a58186-1cea-48c7-a47c-6b539070afdc", + "associationType": "isChildOf", + "originNodeURI": { + "title": "Standards for Mathem…", + "identifier": "6078f24b-1177-4a80-8a06-01aefa091dd3", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6078f24b-1177-4a80-8a06-01aefa091dd3" + }, + "destinationNodeURI": { + "title": "Grade 4", + "identifier": "6b9f3cb3-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9f3cb3-d7cc-11e8-824f-0242ac160002" + }, + "lastChangeDateTime": "2022-05-09T20:26:37+00:00", + "sequenceNumber": 1 + }, + { + "identifier": "7f0580c0-48d5-4282-984a-aa4e603d927c", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/7f0580c0-48d5-4282-984a-aa4e603d927c", + "associationType": "isChildOf", + "originNodeURI": { + "title": "4.MP1 Make sense of …", + "identifier": "600207bf-3404-4d79-9400-b9cce5b699c7", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/600207bf-3404-4d79-9400-b9cce5b699c7" + }, + "destinationNodeURI": { + "title": "Standards for Mathem…", + "identifier": "6078f24b-1177-4a80-8a06-01aefa091dd3", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6078f24b-1177-4a80-8a06-01aefa091dd3" + }, + "lastChangeDateTime": "2022-05-09T20:24:55+00:00", + "sequenceNumber": 1 + }, + { + "identifier": "7dc6fbd5-4e44-4a01-8ddb-e87237c105ef", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/7dc6fbd5-4e44-4a01-8ddb-e87237c105ef", + "associationType": "isChildOf", + "originNodeURI": { + "title": "4.MP2 Reason abstrac…", + "identifier": "2348c823-5f48-4670-b667-f2a8f8bf7124", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/2348c823-5f48-4670-b667-f2a8f8bf7124" + }, + "destinationNodeURI": { + "title": "Standards for Mathem…", + "identifier": "6078f24b-1177-4a80-8a06-01aefa091dd3", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6078f24b-1177-4a80-8a06-01aefa091dd3" + }, + "lastChangeDateTime": "2022-05-09T20:24:55+00:00", + "sequenceNumber": 2 + }, + { + "identifier": "a6dbbc9a-f29e-4920-ada0-d4ed55e256c9", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/a6dbbc9a-f29e-4920-ada0-d4ed55e256c9", + "associationType": "isChildOf", + "originNodeURI": { + "title": "4.MP3 Construct viab…", + "identifier": "685640a9-93cd-4c8c-b17b-2edc7cc4c26e", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/685640a9-93cd-4c8c-b17b-2edc7cc4c26e" + }, + "destinationNodeURI": { + "title": "Standards for Mathem…", + "identifier": "6078f24b-1177-4a80-8a06-01aefa091dd3", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6078f24b-1177-4a80-8a06-01aefa091dd3" + }, + "lastChangeDateTime": "2022-05-09T20:24:55+00:00", + "sequenceNumber": 3 + }, + { + "identifier": "7a282f24-ed4a-4431-bbd9-36c8d0bf8811", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/7a282f24-ed4a-4431-bbd9-36c8d0bf8811", + "associationType": "isChildOf", + "originNodeURI": { + "title": "4.MP4 Model with mat…", + "identifier": "c59b544d-f3a8-45fe-8ce5-5855d772f5c0", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/c59b544d-f3a8-45fe-8ce5-5855d772f5c0" + }, + "destinationNodeURI": { + "title": "Standards for Mathem…", + "identifier": "6078f24b-1177-4a80-8a06-01aefa091dd3", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6078f24b-1177-4a80-8a06-01aefa091dd3" + }, + "lastChangeDateTime": "2022-05-09T20:24:55+00:00", + "sequenceNumber": 4 + }, + { + "identifier": "237b0af6-0c3f-4969-989b-371379a3d1c6", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/237b0af6-0c3f-4969-989b-371379a3d1c6", + "associationType": "isChildOf", + "originNodeURI": { + "title": "4.MP5 Use appropriat…", + "identifier": "d750e9b5-5498-468e-b8ad-a387d86c8965", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/d750e9b5-5498-468e-b8ad-a387d86c8965" + }, + "destinationNodeURI": { + "title": "Standards for Mathem…", + "identifier": "6078f24b-1177-4a80-8a06-01aefa091dd3", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6078f24b-1177-4a80-8a06-01aefa091dd3" + }, + "lastChangeDateTime": "2022-05-09T20:24:55+00:00", + "sequenceNumber": 5 + }, + { + "identifier": "61451426-e2a7-4a2f-bc00-1557bea733a7", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/61451426-e2a7-4a2f-bc00-1557bea733a7", + "associationType": "isChildOf", + "originNodeURI": { + "title": "4.MP6 Attend to prec…", + "identifier": "dbe409b8-7bb0-4e43-9043-d6736209e781", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/dbe409b8-7bb0-4e43-9043-d6736209e781" + }, + "destinationNodeURI": { + "title": "Standards for Mathem…", + "identifier": "6078f24b-1177-4a80-8a06-01aefa091dd3", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6078f24b-1177-4a80-8a06-01aefa091dd3" + }, + "lastChangeDateTime": "2022-05-09T20:24:55+00:00", + "sequenceNumber": 6 + }, + { + "identifier": "760ea80a-b694-41b5-b414-d3e549326375", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/760ea80a-b694-41b5-b414-d3e549326375", + "associationType": "isChildOf", + "originNodeURI": { + "title": "4.MP7 Look for and m…", + "identifier": "b3ff2e2a-9bfe-44c3-b58d-ea335b92a5de", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/b3ff2e2a-9bfe-44c3-b58d-ea335b92a5de" + }, + "destinationNodeURI": { + "title": "Standards for Mathem…", + "identifier": "6078f24b-1177-4a80-8a06-01aefa091dd3", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6078f24b-1177-4a80-8a06-01aefa091dd3" + }, + "lastChangeDateTime": "2022-05-09T20:24:55+00:00", + "sequenceNumber": 7 + }, + { + "identifier": "57c09128-2ab6-44b1-ae5b-206e76ef7764", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/57c09128-2ab6-44b1-ae5b-206e76ef7764", + "associationType": "isChildOf", + "originNodeURI": { + "title": "4.MP8 Look for and e…", + "identifier": "d76d967c-1f92-4c06-8ff2-e77250ce865c", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/d76d967c-1f92-4c06-8ff2-e77250ce865c" + }, + "destinationNodeURI": { + "title": "Standards for Mathem…", + "identifier": "6078f24b-1177-4a80-8a06-01aefa091dd3", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6078f24b-1177-4a80-8a06-01aefa091dd3" + }, + "lastChangeDateTime": "2022-05-09T20:24:55+00:00", + "sequenceNumber": 8 + }, + { + "identifier": "ecb4196e-954b-49a1-9a5a-fc824c67fd85", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/ecb4196e-954b-49a1-9a5a-fc824c67fd85", + "associationType": "isChildOf", + "originNodeURI": { + "title": "Standards for Mathem…", + "identifier": "c86af86e-0243-498b-b177-da1d3b398ae3", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/c86af86e-0243-498b-b177-da1d3b398ae3" + }, + "destinationNodeURI": { + "title": "Grade 5", + "identifier": "6b9fcd8e-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9fcd8e-d7cc-11e8-824f-0242ac160002" + }, + "lastChangeDateTime": "2022-05-09T20:26:31+00:00", + "sequenceNumber": 1 + }, + { + "identifier": "101c384e-3f70-4ad9-adaa-3f813b76dc46", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/101c384e-3f70-4ad9-adaa-3f813b76dc46", + "associationType": "isChildOf", + "originNodeURI": { + "title": "5.MP1 Make sense of …", + "identifier": "cf2ae260-718c-43dc-acde-19aa1297daff", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/cf2ae260-718c-43dc-acde-19aa1297daff" + }, + "destinationNodeURI": { + "title": "Standards for Mathem…", + "identifier": "c86af86e-0243-498b-b177-da1d3b398ae3", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/c86af86e-0243-498b-b177-da1d3b398ae3" + }, + "lastChangeDateTime": "2022-05-09T20:24:55+00:00", + "sequenceNumber": 1 + }, + { + "identifier": "b444781f-e8b3-4ea3-948d-85360b94fe93", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/b444781f-e8b3-4ea3-948d-85360b94fe93", + "associationType": "isChildOf", + "originNodeURI": { + "title": "5.MP2 Reason abstrac…", + "identifier": "e68059b4-882d-4536-bc11-d35cb8f04b36", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/e68059b4-882d-4536-bc11-d35cb8f04b36" + }, + "destinationNodeURI": { + "title": "Standards for Mathem…", + "identifier": "c86af86e-0243-498b-b177-da1d3b398ae3", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/c86af86e-0243-498b-b177-da1d3b398ae3" + }, + "lastChangeDateTime": "2022-05-09T20:24:55+00:00", + "sequenceNumber": 2 + }, + { + "identifier": "4d40ed7a-781b-4d59-8b8b-80c5929628d5", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/4d40ed7a-781b-4d59-8b8b-80c5929628d5", + "associationType": "isChildOf", + "originNodeURI": { + "title": "5.MP3 Construct viab…", + "identifier": "77fda01e-4a52-42a8-bee2-1bc9a61382b2", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/77fda01e-4a52-42a8-bee2-1bc9a61382b2" + }, + "destinationNodeURI": { + "title": "Standards for Mathem…", + "identifier": "c86af86e-0243-498b-b177-da1d3b398ae3", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/c86af86e-0243-498b-b177-da1d3b398ae3" + }, + "lastChangeDateTime": "2022-05-09T20:24:55+00:00", + "sequenceNumber": 3 + }, + { + "identifier": "85898d2c-df45-463e-a74b-95c6e95f590c", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/85898d2c-df45-463e-a74b-95c6e95f590c", + "associationType": "isChildOf", + "originNodeURI": { + "title": "5.MP4 Model with mat…", + "identifier": "1241dd99-c8f2-4228-adb7-0e4675ed23d4", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/1241dd99-c8f2-4228-adb7-0e4675ed23d4" + }, + "destinationNodeURI": { + "title": "Standards for Mathem…", + "identifier": "c86af86e-0243-498b-b177-da1d3b398ae3", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/c86af86e-0243-498b-b177-da1d3b398ae3" + }, + "lastChangeDateTime": "2022-05-09T20:24:55+00:00", + "sequenceNumber": 4 + }, + { + "identifier": "9562206d-403b-450e-affd-7cdbad959d03", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/9562206d-403b-450e-affd-7cdbad959d03", + "associationType": "isChildOf", + "originNodeURI": { + "title": "5.MP5 Use appropriat…", + "identifier": "a4705798-7e3c-4bab-bca9-26edf2a9e4bf", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/a4705798-7e3c-4bab-bca9-26edf2a9e4bf" + }, + "destinationNodeURI": { + "title": "Standards for Mathem…", + "identifier": "c86af86e-0243-498b-b177-da1d3b398ae3", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/c86af86e-0243-498b-b177-da1d3b398ae3" + }, + "lastChangeDateTime": "2022-05-09T20:24:55+00:00", + "sequenceNumber": 5 + }, + { + "identifier": "b10bf0be-c2a5-4405-896d-a63e04e6a039", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/b10bf0be-c2a5-4405-896d-a63e04e6a039", + "associationType": "isChildOf", + "originNodeURI": { + "title": "5.MP6 Attend to prec…", + "identifier": "7fb11367-5dcf-4ecb-8f0e-f1c4849c734d", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/7fb11367-5dcf-4ecb-8f0e-f1c4849c734d" + }, + "destinationNodeURI": { + "title": "Standards for Mathem…", + "identifier": "c86af86e-0243-498b-b177-da1d3b398ae3", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/c86af86e-0243-498b-b177-da1d3b398ae3" + }, + "lastChangeDateTime": "2022-05-09T20:24:55+00:00", + "sequenceNumber": 6 + }, + { + "identifier": "96874d1c-da5f-4129-92db-a1fc9c1fed1b", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/96874d1c-da5f-4129-92db-a1fc9c1fed1b", + "associationType": "isChildOf", + "originNodeURI": { + "title": "5.MP7 Look for and m…", + "identifier": "3299c99e-0e94-49a0-b180-d466c8ab3a22", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/3299c99e-0e94-49a0-b180-d466c8ab3a22" + }, + "destinationNodeURI": { + "title": "Standards for Mathem…", + "identifier": "c86af86e-0243-498b-b177-da1d3b398ae3", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/c86af86e-0243-498b-b177-da1d3b398ae3" + }, + "lastChangeDateTime": "2022-05-09T20:24:55+00:00", + "sequenceNumber": 7 + }, + { + "identifier": "1bc1e573-5189-4410-953a-a529f2be4340", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/1bc1e573-5189-4410-953a-a529f2be4340", + "associationType": "isChildOf", + "originNodeURI": { + "title": "5.MP8 Look for and e…", + "identifier": "ed17c711-dba6-4d67-937f-fdbf6edb6d6f", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/ed17c711-dba6-4d67-937f-fdbf6edb6d6f" + }, + "destinationNodeURI": { + "title": "Standards for Mathem…", + "identifier": "c86af86e-0243-498b-b177-da1d3b398ae3", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/c86af86e-0243-498b-b177-da1d3b398ae3" + }, + "lastChangeDateTime": "2022-05-09T20:24:55+00:00", + "sequenceNumber": 8 + }, + { + "identifier": "62509aad-d5e9-4105-992f-8865c1641200", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/62509aad-d5e9-4105-992f-8865c1641200", + "associationType": "isChildOf", + "originNodeURI": { + "title": "Standards for Mathem…", + "identifier": "9c74c327-3fab-42c7-849f-7562b81e65f9", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/9c74c327-3fab-42c7-849f-7562b81e65f9" + }, + "destinationNodeURI": { + "title": "Grade 6", + "identifier": "6ba03728-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6ba03728-d7cc-11e8-824f-0242ac160002" + }, + "lastChangeDateTime": "2022-05-09T20:26:26+00:00", + "sequenceNumber": 1 + }, + { + "identifier": "7b3418e9-e260-4ded-a957-9f90d0ab9c9a", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/7b3418e9-e260-4ded-a957-9f90d0ab9c9a", + "associationType": "isChildOf", + "originNodeURI": { + "title": "6.MP1 Make sense of …", + "identifier": "36000f7e-5fa9-47d1-ab6a-9cf93dc0b336", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/36000f7e-5fa9-47d1-ab6a-9cf93dc0b336" + }, + "destinationNodeURI": { + "title": "Standards for Mathem…", + "identifier": "9c74c327-3fab-42c7-849f-7562b81e65f9", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/9c74c327-3fab-42c7-849f-7562b81e65f9" + }, + "lastChangeDateTime": "2022-05-09T20:24:55+00:00", + "sequenceNumber": 1 + }, + { + "identifier": "cb584f5f-52a3-4ab6-b24d-b450d82b810a", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/cb584f5f-52a3-4ab6-b24d-b450d82b810a", + "associationType": "isChildOf", + "originNodeURI": { + "title": "6.MP2 Reason abstrac…", + "identifier": "74381e15-fd87-4b71-9429-aece79dd2d03", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/74381e15-fd87-4b71-9429-aece79dd2d03" + }, + "destinationNodeURI": { + "title": "Standards for Mathem…", + "identifier": "9c74c327-3fab-42c7-849f-7562b81e65f9", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/9c74c327-3fab-42c7-849f-7562b81e65f9" + }, + "lastChangeDateTime": "2022-05-09T20:24:55+00:00", + "sequenceNumber": 2 + }, + { + "identifier": "e5c4efb9-4d2b-457d-ba54-dcb94c420be2", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/e5c4efb9-4d2b-457d-ba54-dcb94c420be2", + "associationType": "isChildOf", + "originNodeURI": { + "title": "6.MP3 Construct viab…", + "identifier": "feb60c25-a92d-43fa-9726-def32ea00b1e", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/feb60c25-a92d-43fa-9726-def32ea00b1e" + }, + "destinationNodeURI": { + "title": "Standards for Mathem…", + "identifier": "9c74c327-3fab-42c7-849f-7562b81e65f9", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/9c74c327-3fab-42c7-849f-7562b81e65f9" + }, + "lastChangeDateTime": "2022-05-09T20:24:55+00:00", + "sequenceNumber": 3 + }, + { + "identifier": "536b151d-3d19-4a1d-bf86-ce3f2f0bb0ba", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/536b151d-3d19-4a1d-bf86-ce3f2f0bb0ba", + "associationType": "isChildOf", + "originNodeURI": { + "title": "6.MP4 Model with mat…", + "identifier": "9bcc0416-1cf0-43fa-a3f1-cd7e730a1dbe", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/9bcc0416-1cf0-43fa-a3f1-cd7e730a1dbe" + }, + "destinationNodeURI": { + "title": "Standards for Mathem…", + "identifier": "9c74c327-3fab-42c7-849f-7562b81e65f9", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/9c74c327-3fab-42c7-849f-7562b81e65f9" + }, + "lastChangeDateTime": "2022-05-09T20:24:55+00:00", + "sequenceNumber": 4 + }, + { + "identifier": "c769b34a-874c-4a29-819c-8063a86a291e", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c769b34a-874c-4a29-819c-8063a86a291e", + "associationType": "isChildOf", + "originNodeURI": { + "title": "6.MP5 Use appropriat…", + "identifier": "1d88548a-3717-46ac-bb9a-5a3b65715325", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/1d88548a-3717-46ac-bb9a-5a3b65715325" + }, + "destinationNodeURI": { + "title": "Standards for Mathem…", + "identifier": "9c74c327-3fab-42c7-849f-7562b81e65f9", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/9c74c327-3fab-42c7-849f-7562b81e65f9" + }, + "lastChangeDateTime": "2022-05-09T20:24:55+00:00", + "sequenceNumber": 5 + }, + { + "identifier": "dd1d172d-555d-44da-bac3-842af7a5630c", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/dd1d172d-555d-44da-bac3-842af7a5630c", + "associationType": "isChildOf", + "originNodeURI": { + "title": "6.MP6 Attend to prec…", + "identifier": "5dac7153-843d-4b8f-b210-e5e5b1267032", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/5dac7153-843d-4b8f-b210-e5e5b1267032" + }, + "destinationNodeURI": { + "title": "Standards for Mathem…", + "identifier": "9c74c327-3fab-42c7-849f-7562b81e65f9", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/9c74c327-3fab-42c7-849f-7562b81e65f9" + }, + "lastChangeDateTime": "2022-05-09T20:24:55+00:00", + "sequenceNumber": 6 + }, + { + "identifier": "400c3ac9-0915-4054-84ea-e39f5b974e66", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/400c3ac9-0915-4054-84ea-e39f5b974e66", + "associationType": "isChildOf", + "originNodeURI": { + "title": "6.MP7 Look for and m…", + "identifier": "cfb61941-38e5-49d1-aa1c-2ee582bf07bd", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/cfb61941-38e5-49d1-aa1c-2ee582bf07bd" + }, + "destinationNodeURI": { + "title": "Standards for Mathem…", + "identifier": "9c74c327-3fab-42c7-849f-7562b81e65f9", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/9c74c327-3fab-42c7-849f-7562b81e65f9" + }, + "lastChangeDateTime": "2022-05-09T20:24:55+00:00", + "sequenceNumber": 7 + }, + { + "identifier": "4a748089-188e-4949-8022-7ce0d8b31e45", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/4a748089-188e-4949-8022-7ce0d8b31e45", + "associationType": "isChildOf", + "originNodeURI": { + "title": "6.MP8 Look for and e…", + "identifier": "4047e759-351a-4225-bebe-fa03868b07e5", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/4047e759-351a-4225-bebe-fa03868b07e5" + }, + "destinationNodeURI": { + "title": "Standards for Mathem…", + "identifier": "9c74c327-3fab-42c7-849f-7562b81e65f9", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/9c74c327-3fab-42c7-849f-7562b81e65f9" + }, + "lastChangeDateTime": "2022-05-09T20:24:55+00:00", + "sequenceNumber": 8 + }, + { + "identifier": "e387652e-58f2-421d-8090-d033261931bd", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/e387652e-58f2-421d-8090-d033261931bd", + "associationType": "isChildOf", + "originNodeURI": { + "title": "Standards for Mathem…", + "identifier": "42e8c484-cb13-4024-9314-bceab47dc614", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/42e8c484-cb13-4024-9314-bceab47dc614" + }, + "destinationNodeURI": { + "title": "Grade 7", + "identifier": "6ba0948b-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6ba0948b-d7cc-11e8-824f-0242ac160002" + }, + "lastChangeDateTime": "2022-05-09T20:26:22+00:00", + "sequenceNumber": 1 + }, + { + "identifier": "f419504c-8c79-48d3-9d02-abd002fa0c02", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/f419504c-8c79-48d3-9d02-abd002fa0c02", + "associationType": "isChildOf", + "originNodeURI": { + "title": "7.MP1 Make sense of …", + "identifier": "09a3410a-85b1-4974-8a05-a5db067eaaac", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/09a3410a-85b1-4974-8a05-a5db067eaaac" + }, + "destinationNodeURI": { + "title": "Standards for Mathem…", + "identifier": "42e8c484-cb13-4024-9314-bceab47dc614", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/42e8c484-cb13-4024-9314-bceab47dc614" + }, + "lastChangeDateTime": "2022-05-09T20:24:55+00:00", + "sequenceNumber": 1 + }, + { + "identifier": "3fef534a-cf0e-48e4-adfe-d5b921830dcc", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/3fef534a-cf0e-48e4-adfe-d5b921830dcc", + "associationType": "isChildOf", + "originNodeURI": { + "title": "7.MP2 Reason abstrac…", + "identifier": "f75089ae-d7b3-4540-be65-13319610d73a", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/f75089ae-d7b3-4540-be65-13319610d73a" + }, + "destinationNodeURI": { + "title": "Standards for Mathem…", + "identifier": "42e8c484-cb13-4024-9314-bceab47dc614", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/42e8c484-cb13-4024-9314-bceab47dc614" + }, + "lastChangeDateTime": "2022-05-09T20:24:55+00:00", + "sequenceNumber": 2 + }, + { + "identifier": "4ceb0e28-ebad-472e-82e3-f2c7a80bac3d", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/4ceb0e28-ebad-472e-82e3-f2c7a80bac3d", + "associationType": "isChildOf", + "originNodeURI": { + "title": "7.MP3 Construct viab…", + "identifier": "98565139-2c4f-4163-8b97-88fc347aec85", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/98565139-2c4f-4163-8b97-88fc347aec85" + }, + "destinationNodeURI": { + "title": "Standards for Mathem…", + "identifier": "42e8c484-cb13-4024-9314-bceab47dc614", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/42e8c484-cb13-4024-9314-bceab47dc614" + }, + "lastChangeDateTime": "2022-05-09T20:24:55+00:00", + "sequenceNumber": 3 + }, + { + "identifier": "dec30c2b-5f53-4716-8808-17195b084422", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/dec30c2b-5f53-4716-8808-17195b084422", + "associationType": "isChildOf", + "originNodeURI": { + "title": "7.MP4 Model with mat…", + "identifier": "87c18c39-c179-40e5-89fa-ecb921735ecc", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/87c18c39-c179-40e5-89fa-ecb921735ecc" + }, + "destinationNodeURI": { + "title": "Standards for Mathem…", + "identifier": "42e8c484-cb13-4024-9314-bceab47dc614", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/42e8c484-cb13-4024-9314-bceab47dc614" + }, + "lastChangeDateTime": "2022-05-09T20:24:55+00:00", + "sequenceNumber": 4 + }, + { + "identifier": "90c9647c-06dc-4891-8828-15c96698446b", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/90c9647c-06dc-4891-8828-15c96698446b", + "associationType": "isChildOf", + "originNodeURI": { + "title": "7.MP5 Use appropriat…", + "identifier": "cf225053-f338-4f08-b0fa-3d23803779eb", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/cf225053-f338-4f08-b0fa-3d23803779eb" + }, + "destinationNodeURI": { + "title": "Standards for Mathem…", + "identifier": "42e8c484-cb13-4024-9314-bceab47dc614", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/42e8c484-cb13-4024-9314-bceab47dc614" + }, + "lastChangeDateTime": "2022-05-09T20:24:55+00:00", + "sequenceNumber": 5 + }, + { + "identifier": "a7037571-2516-4f12-bb04-577e40fae04c", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/a7037571-2516-4f12-bb04-577e40fae04c", + "associationType": "isChildOf", + "originNodeURI": { + "title": "7.MP6 Attend to prec…", + "identifier": "51fe888a-8a2a-40a4-8744-742d3f9af296", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/51fe888a-8a2a-40a4-8744-742d3f9af296" + }, + "destinationNodeURI": { + "title": "Standards for Mathem…", + "identifier": "42e8c484-cb13-4024-9314-bceab47dc614", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/42e8c484-cb13-4024-9314-bceab47dc614" + }, + "lastChangeDateTime": "2022-05-09T20:24:55+00:00", + "sequenceNumber": 6 + }, + { + "identifier": "b1c8a8b7-7866-4f7d-a8e8-bdfe9e5ea2cc", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/b1c8a8b7-7866-4f7d-a8e8-bdfe9e5ea2cc", + "associationType": "isChildOf", + "originNodeURI": { + "title": "7.MP7 Look for and m…", + "identifier": "e00a3a42-5832-4722-913f-c6e9686bf17f", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/e00a3a42-5832-4722-913f-c6e9686bf17f" + }, + "destinationNodeURI": { + "title": "Standards for Mathem…", + "identifier": "42e8c484-cb13-4024-9314-bceab47dc614", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/42e8c484-cb13-4024-9314-bceab47dc614" + }, + "lastChangeDateTime": "2022-05-09T20:24:55+00:00", + "sequenceNumber": 7 + }, + { + "identifier": "8d1e9cdc-7d82-45cc-bfa5-7ab0c48e9bf1", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/8d1e9cdc-7d82-45cc-bfa5-7ab0c48e9bf1", + "associationType": "isChildOf", + "originNodeURI": { + "title": "7.MP8 Look for and e…", + "identifier": "2764a521-9336-40a7-9d10-99a9b557ecd5", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/2764a521-9336-40a7-9d10-99a9b557ecd5" + }, + "destinationNodeURI": { + "title": "Standards for Mathem…", + "identifier": "42e8c484-cb13-4024-9314-bceab47dc614", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/42e8c484-cb13-4024-9314-bceab47dc614" + }, + "lastChangeDateTime": "2022-05-09T20:24:55+00:00", + "sequenceNumber": 8 + }, + { + "identifier": "716244c2-3a29-44ad-9fcc-216089e09a88", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/716244c2-3a29-44ad-9fcc-216089e09a88", + "associationType": "isChildOf", + "originNodeURI": { + "title": "Standards for Mathem…", + "identifier": "603def9b-9696-4721-aaf7-464f4d4cdc48", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/603def9b-9696-4721-aaf7-464f4d4cdc48" + }, + "destinationNodeURI": { + "title": "Grade 8", + "identifier": "6ba0d99c-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6ba0d99c-d7cc-11e8-824f-0242ac160002" + }, + "lastChangeDateTime": "2022-05-09T20:26:17+00:00", + "sequenceNumber": 1 + }, + { + "identifier": "8ff3f90d-5eb8-46ad-997c-50cd249e7272", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/8ff3f90d-5eb8-46ad-997c-50cd249e7272", + "associationType": "isChildOf", + "originNodeURI": { + "title": "8.MP1 Make sense of …", + "identifier": "8fed1d2f-2a46-4cb2-8b40-57bb732e5a33", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/8fed1d2f-2a46-4cb2-8b40-57bb732e5a33" + }, + "destinationNodeURI": { + "title": "Standards for Mathem…", + "identifier": "603def9b-9696-4721-aaf7-464f4d4cdc48", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/603def9b-9696-4721-aaf7-464f4d4cdc48" + }, + "lastChangeDateTime": "2022-05-09T20:24:55+00:00", + "sequenceNumber": 1 + }, + { + "identifier": "1246ac86-7792-4aac-93d2-2e033a097732", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/1246ac86-7792-4aac-93d2-2e033a097732", + "associationType": "isChildOf", + "originNodeURI": { + "title": "8.MP2 Reason abstrac…", + "identifier": "e57ffc4d-badc-4c62-85f8-df6d2599019c", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/e57ffc4d-badc-4c62-85f8-df6d2599019c" + }, + "destinationNodeURI": { + "title": "Standards for Mathem…", + "identifier": "603def9b-9696-4721-aaf7-464f4d4cdc48", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/603def9b-9696-4721-aaf7-464f4d4cdc48" + }, + "lastChangeDateTime": "2022-05-09T20:24:55+00:00", + "sequenceNumber": 2 + }, + { + "identifier": "4839ef55-fe62-4879-8c44-3e6a91e4075b", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/4839ef55-fe62-4879-8c44-3e6a91e4075b", + "associationType": "isChildOf", + "originNodeURI": { + "title": "8.MP3 Construct viab…", + "identifier": "5e5d9d9e-6a24-4499-b6f9-6b9c6c7e0333", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/5e5d9d9e-6a24-4499-b6f9-6b9c6c7e0333" + }, + "destinationNodeURI": { + "title": "Standards for Mathem…", + "identifier": "603def9b-9696-4721-aaf7-464f4d4cdc48", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/603def9b-9696-4721-aaf7-464f4d4cdc48" + }, + "lastChangeDateTime": "2022-05-09T20:24:55+00:00", + "sequenceNumber": 3 + }, + { + "identifier": "c794e5e1-239c-4036-8ef2-7cb0f63ed5fd", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c794e5e1-239c-4036-8ef2-7cb0f63ed5fd", + "associationType": "isChildOf", + "originNodeURI": { + "title": "8.MP4 Model with mat…", + "identifier": "c3a3d5d0-62c5-403a-82b8-508b41ca9590", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/c3a3d5d0-62c5-403a-82b8-508b41ca9590" + }, + "destinationNodeURI": { + "title": "Standards for Mathem…", + "identifier": "603def9b-9696-4721-aaf7-464f4d4cdc48", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/603def9b-9696-4721-aaf7-464f4d4cdc48" + }, + "lastChangeDateTime": "2022-05-09T20:24:55+00:00", + "sequenceNumber": 4 + }, + { + "identifier": "e282bb34-b19f-46ea-a21a-85cf62d7a694", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/e282bb34-b19f-46ea-a21a-85cf62d7a694", + "associationType": "isChildOf", + "originNodeURI": { + "title": "8.MP5 Use appropriat…", + "identifier": "26bb6ade-7f0f-4ee3-bff0-ad7d977c7a26", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/26bb6ade-7f0f-4ee3-bff0-ad7d977c7a26" + }, + "destinationNodeURI": { + "title": "Standards for Mathem…", + "identifier": "603def9b-9696-4721-aaf7-464f4d4cdc48", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/603def9b-9696-4721-aaf7-464f4d4cdc48" + }, + "lastChangeDateTime": "2022-05-09T20:24:55+00:00", + "sequenceNumber": 5 + }, + { + "identifier": "cfaa2913-45d4-464c-996a-6a536e6b4ba8", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/cfaa2913-45d4-464c-996a-6a536e6b4ba8", + "associationType": "isChildOf", + "originNodeURI": { + "title": "8.MP6 Attend to prec…", + "identifier": "36efbbc0-b8fa-4608-b8f9-ef74b24c9c25", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/36efbbc0-b8fa-4608-b8f9-ef74b24c9c25" + }, + "destinationNodeURI": { + "title": "Standards for Mathem…", + "identifier": "603def9b-9696-4721-aaf7-464f4d4cdc48", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/603def9b-9696-4721-aaf7-464f4d4cdc48" + }, + "lastChangeDateTime": "2022-05-09T20:24:55+00:00", + "sequenceNumber": 6 + }, + { + "identifier": "9b58f298-63bf-4b06-a743-934d3c925355", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/9b58f298-63bf-4b06-a743-934d3c925355", + "associationType": "isChildOf", + "originNodeURI": { + "title": "8.MP7 Look for and m…", + "identifier": "3d43e565-fca4-4bb3-8449-c1748f9a0e80", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/3d43e565-fca4-4bb3-8449-c1748f9a0e80" + }, + "destinationNodeURI": { + "title": "Standards for Mathem…", + "identifier": "603def9b-9696-4721-aaf7-464f4d4cdc48", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/603def9b-9696-4721-aaf7-464f4d4cdc48" + }, + "lastChangeDateTime": "2022-05-09T20:24:55+00:00", + "sequenceNumber": 7 + }, + { + "identifier": "bb422264-d9f8-4324-b78b-d7fcd0f10830", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/bb422264-d9f8-4324-b78b-d7fcd0f10830", + "associationType": "isChildOf", + "originNodeURI": { + "title": "8.MP8 Look for and e…", + "identifier": "35743102-a5ef-4b85-93f1-592e35bf0a31", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/35743102-a5ef-4b85-93f1-592e35bf0a31" + }, + "destinationNodeURI": { + "title": "Standards for Mathem…", + "identifier": "603def9b-9696-4721-aaf7-464f4d4cdc48", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/603def9b-9696-4721-aaf7-464f4d4cdc48" + }, + "lastChangeDateTime": "2022-05-09T20:24:55+00:00", + "sequenceNumber": 8 + }, + { + "identifier": "c6abe14c-6adc-4945-a277-61b83b7879e3", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c6abe14c-6adc-4945-a277-61b83b7879e3", + "associationType": "isChildOf", + "originNodeURI": { + "title": "Standards for Mathem…", + "identifier": "1f0ff35c-7ff2-4153-b307-ccb583170227", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/1f0ff35c-7ff2-4153-b307-ccb583170227" + }, + "destinationNodeURI": { + "title": "Standards for HS Mat…", + "identifier": "6b9cc50c-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9cc50c-d7cc-11e8-824f-0242ac160002" + }, + "lastChangeDateTime": "2022-05-09T20:26:11+00:00", + "sequenceNumber": 1 + }, + { + "identifier": "fe082216-a196-450c-af20-260d6a5c9e34", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/fe082216-a196-450c-af20-260d6a5c9e34", + "associationType": "isChildOf", + "originNodeURI": { + "title": "HS.MP1 Make sense of…", + "identifier": "971ece10-7750-41cf-a8e6-26abc66ac507", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/971ece10-7750-41cf-a8e6-26abc66ac507" + }, + "destinationNodeURI": { + "title": "Standards for Mathem…", + "identifier": "1f0ff35c-7ff2-4153-b307-ccb583170227", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/1f0ff35c-7ff2-4153-b307-ccb583170227" + }, + "lastChangeDateTime": "2022-05-09T20:24:55+00:00", + "sequenceNumber": 1 + }, + { + "identifier": "d4aaa39f-8502-45a8-9159-71beb4b349cc", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/d4aaa39f-8502-45a8-9159-71beb4b349cc", + "associationType": "isChildOf", + "originNodeURI": { + "title": "HS.MP2 Reason abstra…", + "identifier": "13978cb3-6231-4836-800e-68e594825c99", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/13978cb3-6231-4836-800e-68e594825c99" + }, + "destinationNodeURI": { + "title": "Standards for Mathem…", + "identifier": "1f0ff35c-7ff2-4153-b307-ccb583170227", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/1f0ff35c-7ff2-4153-b307-ccb583170227" + }, + "lastChangeDateTime": "2022-05-09T20:24:55+00:00", + "sequenceNumber": 2 + }, + { + "identifier": "03de0e71-a640-4c25-b66e-f82f75e88630", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/03de0e71-a640-4c25-b66e-f82f75e88630", + "associationType": "isChildOf", + "originNodeURI": { + "title": "HS.MP3 Construct via…", + "identifier": "590e8d5e-84cd-4b50-97f3-218568e51d61", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/590e8d5e-84cd-4b50-97f3-218568e51d61" + }, + "destinationNodeURI": { + "title": "Standards for Mathem…", + "identifier": "1f0ff35c-7ff2-4153-b307-ccb583170227", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/1f0ff35c-7ff2-4153-b307-ccb583170227" + }, + "lastChangeDateTime": "2022-05-09T20:24:55+00:00", + "sequenceNumber": 3 + }, + { + "identifier": "f4cd8bd8-48b8-4784-9abd-3691822aa354", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/f4cd8bd8-48b8-4784-9abd-3691822aa354", + "associationType": "isChildOf", + "originNodeURI": { + "title": "HS.MP4 Model with ma…", + "identifier": "2b81a18a-9f54-4af5-bc05-b0c1373d4da8", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/2b81a18a-9f54-4af5-bc05-b0c1373d4da8" + }, + "destinationNodeURI": { + "title": "Standards for Mathem…", + "identifier": "1f0ff35c-7ff2-4153-b307-ccb583170227", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/1f0ff35c-7ff2-4153-b307-ccb583170227" + }, + "lastChangeDateTime": "2022-05-09T20:24:55+00:00", + "sequenceNumber": 4 + }, + { + "identifier": "22dc87e2-489c-4c2e-8149-642c68420c36", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/22dc87e2-489c-4c2e-8149-642c68420c36", + "associationType": "isChildOf", + "originNodeURI": { + "title": "HS.MP5 Use appropria…", + "identifier": "d922d8a8-6813-4f48-a67f-6f5310233393", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/d922d8a8-6813-4f48-a67f-6f5310233393" + }, + "destinationNodeURI": { + "title": "Standards for Mathem…", + "identifier": "1f0ff35c-7ff2-4153-b307-ccb583170227", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/1f0ff35c-7ff2-4153-b307-ccb583170227" + }, + "lastChangeDateTime": "2022-05-09T20:24:55+00:00", + "sequenceNumber": 5 + }, + { + "identifier": "febb7770-a5f8-47bb-b3b2-3cd154530fae", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/febb7770-a5f8-47bb-b3b2-3cd154530fae", + "associationType": "isChildOf", + "originNodeURI": { + "title": "HS.MP6 Attend to pre…", + "identifier": "c1d376fb-8824-4089-8600-9b11944cf8d2", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/c1d376fb-8824-4089-8600-9b11944cf8d2" + }, + "destinationNodeURI": { + "title": "Standards for Mathem…", + "identifier": "1f0ff35c-7ff2-4153-b307-ccb583170227", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/1f0ff35c-7ff2-4153-b307-ccb583170227" + }, + "lastChangeDateTime": "2022-05-09T20:24:55+00:00", + "sequenceNumber": 6 + }, + { + "identifier": "0c85c303-3ad9-4718-8878-9c1f5dd35aa9", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/0c85c303-3ad9-4718-8878-9c1f5dd35aa9", + "associationType": "isChildOf", + "originNodeURI": { + "title": "HS.MP7 Look for and …", + "identifier": "0e2a3a6d-e495-4531-9784-aa77ad4c2510", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/0e2a3a6d-e495-4531-9784-aa77ad4c2510" + }, + "destinationNodeURI": { + "title": "Standards for Mathem…", + "identifier": "1f0ff35c-7ff2-4153-b307-ccb583170227", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/1f0ff35c-7ff2-4153-b307-ccb583170227" + }, + "lastChangeDateTime": "2022-05-09T20:24:55+00:00", + "sequenceNumber": 7 + }, + { + "identifier": "e2d799af-03ce-46e3-a4c3-5bbea22dc58c", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/e2d799af-03ce-46e3-a4c3-5bbea22dc58c", + "associationType": "isChildOf", + "originNodeURI": { + "title": "HS.MP8 Look for and …", + "identifier": "0eb54431-361c-4183-8c24-70b487e43073", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/0eb54431-361c-4183-8c24-70b487e43073" + }, + "destinationNodeURI": { + "title": "Standards for Mathem…", + "identifier": "1f0ff35c-7ff2-4153-b307-ccb583170227", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/1f0ff35c-7ff2-4153-b307-ccb583170227" + }, + "lastChangeDateTime": "2022-05-09T20:24:55+00:00", + "sequenceNumber": 8 + }, + { + "identifier": "956a6a78-81bc-41b4-8150-1dad6e9adf2e", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/956a6a78-81bc-41b4-8150-1dad6e9adf2e", + "associationType": "isRelatedTo", + "originNodeURI": { + "title": "Common Core State Standards for Math", + "identifier": "c6496676-d7cb-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/c6496676-d7cb-11e8-824f-0242ac160002" + }, + "destinationNodeURI": { + "title": "WIDA English Language Development Standards Framework, 2020 Edition", + "identifier": "97c883b4-8590-454f-b222-f28298ec9a81", + "uri": "https://standards.wida.us/uri/97c883b4-8590-454f-b222-f28298ec9a81" + }, + "lastChangeDateTime": "2022-05-09T20:29:10+00:00" + }, + { + "identifier": "aa335856-39f5-4de4-9d97-8b3c9f802d97", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/aa335856-39f5-4de4-9d97-8b3c9f802d97", + "associationType": "isRelatedTo", + "originNodeURI": { + "title": "K.MP1 Make sense of problems and persevere in solving them. (:c6496676-d7cb-11e8-824f-0242ac160002:)", + "identifier": "2c535476-9f13-458b-8686-54bec60b88d6", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/2c535476-9f13-458b-8686-54bec60b88d6" + }, + "destinationNodeURI": { + "title": "ELD-MA.K.Inform.Interpretive Multilingual learners will…\nInterpret mathematical informational texts (with prompting and support) by\n* Identifying concept or object\n* Describing quantities and attributes\n (:97c883b4-8590-454f-b222-f28298ec9a81:)", + "identifier": "8a95d57e-26ba-49ed-b2a9-c22ad743532c", + "uri": "https://standards.wida.us/uri/8a95d57e-26ba-49ed-b2a9-c22ad743532c" + }, + "lastChangeDateTime": "2022-05-09T20:29:10+00:00" + }, + { + "identifier": "0ce9cc2d-5b76-4e94-851f-2c5adfaa81be", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/0ce9cc2d-5b76-4e94-851f-2c5adfaa81be", + "associationType": "isRelatedTo", + "originNodeURI": { + "title": "K.MP1 Make sense of problems and persevere in solving them. (:c6496676-d7cb-11e8-824f-0242ac160002:)", + "identifier": "2c535476-9f13-458b-8686-54bec60b88d6", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/2c535476-9f13-458b-8686-54bec60b88d6" + }, + "destinationNodeURI": { + "title": "ELD-MA.K.Inform.Expressive Multilingual learners will… Construct mathematical informational texts (with prompting and support) that\n* Define or classify concept or entity\n* Describe a concept or entity\n* Compare/contrast concepts or entities (:97c883b4-8590-454f-b222-f28298ec9a81:)", + "identifier": "56fc8a8e-8253-4403-8865-8829b19185f3", + "uri": "https://standards.wida.us/uri/56fc8a8e-8253-4403-8865-8829b19185f3" + }, + "lastChangeDateTime": "2022-05-09T20:29:10+00:00" + }, + { + "identifier": "da9dbd09-2ac8-40a2-97ee-e2e73445d7df", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/da9dbd09-2ac8-40a2-97ee-e2e73445d7df", + "associationType": "isRelatedTo", + "originNodeURI": { + "title": "K.MP1 Make sense of problems and persevere in solving them. (:c6496676-d7cb-11e8-824f-0242ac160002:)", + "identifier": "2c535476-9f13-458b-8686-54bec60b88d6", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/2c535476-9f13-458b-8686-54bec60b88d6" + }, + "destinationNodeURI": { + "title": "ELD-SI.K-3.Explain Multilingual learners will…\n* Share initial thinking with others\n* Follow and describe cycles in diagrams, steps in procedures, or causes and effects\n* Compare and contrast objects or concepts\n* Offer ideas and suggestions\n* Act on feedback to revise understandings of how or why something works\n (:97c883b4-8590-454f-b222-f28298ec9a81:)", + "identifier": "6c5fff3a-c798-4671-a227-c89a994497a6", + "uri": "https://standards.wida.us/uri/6c5fff3a-c798-4671-a227-c89a994497a6" + }, + "lastChangeDateTime": "2022-05-09T20:29:10+00:00" + }, + { + "identifier": "8910ff7c-d14d-4e4b-809d-bfb72ab6efe9", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/8910ff7c-d14d-4e4b-809d-bfb72ab6efe9", + "associationType": "isRelatedTo", + "originNodeURI": { + "title": "1.MP1 Make sense of problems and persevere in solving them. (:c6496676-d7cb-11e8-824f-0242ac160002:)", + "identifier": "5fbf1c38-c3ad-484c-9346-e83dc3b35590", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/5fbf1c38-c3ad-484c-9346-e83dc3b35590" + }, + "destinationNodeURI": { + "title": "ELD-MA.1.Inform.Interpretive Multilingual learners will… Interpret mathematical informational texts by\n* Identifying concept __or entity__\n* Describing attributes and __characteristics__ (:97c883b4-8590-454f-b222-f28298ec9a81:)", + "identifier": "ba2b02ea-ee35-442b-a452-dd93cb0073de", + "uri": "https://standards.wida.us/uri/ba2b02ea-ee35-442b-a452-dd93cb0073de" + }, + "lastChangeDateTime": "2022-05-09T20:29:10+00:00" + }, + { + "identifier": "d5bf61b5-a856-4908-8975-3279f3de4108", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/d5bf61b5-a856-4908-8975-3279f3de4108", + "associationType": "isRelatedTo", + "originNodeURI": { + "title": "1.MP1 Make sense of problems and persevere in solving them. (:c6496676-d7cb-11e8-824f-0242ac160002:)", + "identifier": "5fbf1c38-c3ad-484c-9346-e83dc3b35590", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/5fbf1c38-c3ad-484c-9346-e83dc3b35590" + }, + "destinationNodeURI": { + "title": "ELD-MA.1.Inform.Expressive Multilingual learners will… Construct mathematical informational texts that\n* Define or classify concept or entity\n* Describe a concept or entity\n* Compare/contrast concepts or entities (:97c883b4-8590-454f-b222-f28298ec9a81:)", + "identifier": "acb17527-5967-4e98-9b80-d6d1f5f951b2", + "uri": "https://standards.wida.us/uri/acb17527-5967-4e98-9b80-d6d1f5f951b2" + }, + "lastChangeDateTime": "2022-05-09T20:29:10+00:00" + }, + { + "identifier": "681fa4c5-74fb-4477-82ec-9bd3d64c11cf", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/681fa4c5-74fb-4477-82ec-9bd3d64c11cf", + "associationType": "isRelatedTo", + "originNodeURI": { + "title": "1.MP1 Make sense of problems and persevere in solving them. (:c6496676-d7cb-11e8-824f-0242ac160002:)", + "identifier": "5fbf1c38-c3ad-484c-9346-e83dc3b35590", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/5fbf1c38-c3ad-484c-9346-e83dc3b35590" + }, + "destinationNodeURI": { + "title": "ELD-SI.K-3.Explain Multilingual learners will…\n* Share initial thinking with others\n* Follow and describe cycles in diagrams, steps in procedures, or causes and effects\n* Compare and contrast objects or concepts\n* Offer ideas and suggestions\n* Act on feedback to revise understandings of how or why something works\n (:97c883b4-8590-454f-b222-f28298ec9a81:)", + "identifier": "6c5fff3a-c798-4671-a227-c89a994497a6", + "uri": "https://standards.wida.us/uri/6c5fff3a-c798-4671-a227-c89a994497a6" + }, + "lastChangeDateTime": "2022-05-09T20:29:10+00:00" + }, + { + "identifier": "8e8759db-ce83-4df3-b080-f7705f19e32c", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/8e8759db-ce83-4df3-b080-f7705f19e32c", + "associationType": "isRelatedTo", + "originNodeURI": { + "title": "2.MP1 Make sense of problems and persevere in solving them. (:c6496676-d7cb-11e8-824f-0242ac160002:)", + "identifier": "7ef9937f-7e62-4ae2-bb20-4a8345499fc2", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/7ef9937f-7e62-4ae2-bb20-4a8345499fc2" + }, + "destinationNodeURI": { + "title": "ELD-MA.2-3.Explain.Interpretive Multilingual learners will… Interpret mathematical explanations by\n* Identifying concept or entity\n* __Analyzing plan for problem-solving steps__\n* __Evaluating simple pattern or structure__ (:97c883b4-8590-454f-b222-f28298ec9a81:)", + "identifier": "2e261b10-856a-4fee-bedd-54213c90edd1", + "uri": "https://standards.wida.us/uri/2e261b10-856a-4fee-bedd-54213c90edd1" + }, + "lastChangeDateTime": "2022-05-09T20:29:10+00:00" + }, + { + "identifier": "67a4f96f-bc0b-499d-981a-32de25b35fd0", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/67a4f96f-bc0b-499d-981a-32de25b35fd0", + "associationType": "isRelatedTo", + "originNodeURI": { + "title": "2.MP1 Make sense of problems and persevere in solving them. (:c6496676-d7cb-11e8-824f-0242ac160002:)", + "identifier": "7ef9937f-7e62-4ae2-bb20-4a8345499fc2", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/7ef9937f-7e62-4ae2-bb20-4a8345499fc2" + }, + "destinationNodeURI": { + "title": "ELD-MA.2-3.Explain.Expressive Multilingual learners will… Construct mathematical explanations that\n* Introduce concept or entity\n* __Describe solution and steps used to solve problem with others__\n* __State reasoning used to generate solution__ (:97c883b4-8590-454f-b222-f28298ec9a81:)", + "identifier": "a292d38b-ce22-463b-8bde-07d6f5e13917", + "uri": "https://standards.wida.us/uri/a292d38b-ce22-463b-8bde-07d6f5e13917" + }, + "lastChangeDateTime": "2022-05-09T20:29:10+00:00" + }, + { + "identifier": "cec81969-cf6f-4d5e-a9ca-52236d1602d9", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/cec81969-cf6f-4d5e-a9ca-52236d1602d9", + "associationType": "isRelatedTo", + "originNodeURI": { + "title": "2.MP1 Make sense of problems and persevere in solving them. (:c6496676-d7cb-11e8-824f-0242ac160002:)", + "identifier": "7ef9937f-7e62-4ae2-bb20-4a8345499fc2", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/7ef9937f-7e62-4ae2-bb20-4a8345499fc2" + }, + "destinationNodeURI": { + "title": "ELD-SI.K-3.Explain Multilingual learners will…\n* Share initial thinking with others\n* Follow and describe cycles in diagrams, steps in procedures, or causes and effects\n* Compare and contrast objects or concepts\n* Offer ideas and suggestions\n* Act on feedback to revise understandings of how or why something works\n (:97c883b4-8590-454f-b222-f28298ec9a81:)", + "identifier": "6c5fff3a-c798-4671-a227-c89a994497a6", + "uri": "https://standards.wida.us/uri/6c5fff3a-c798-4671-a227-c89a994497a6" + }, + "lastChangeDateTime": "2022-05-09T20:29:10+00:00" + }, + { + "identifier": "48151fb0-37f4-4a72-a45e-8fd02dca68b5", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/48151fb0-37f4-4a72-a45e-8fd02dca68b5", + "associationType": "isRelatedTo", + "originNodeURI": { + "title": "3.MP1 Make sense of problems and persevere in solving them. (:c6496676-d7cb-11e8-824f-0242ac160002:)", + "identifier": "a6243334-bcc0-4659-9898-9d212cce236e", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/a6243334-bcc0-4659-9898-9d212cce236e" + }, + "destinationNodeURI": { + "title": "ELD-MA.2-3.Explain.Interpretive Multilingual learners will… Interpret mathematical explanations by\n* Identifying concept or entity\n* __Analyzing plan for problem-solving steps__\n* __Evaluating simple pattern or structure__ (:97c883b4-8590-454f-b222-f28298ec9a81:)", + "identifier": "2e261b10-856a-4fee-bedd-54213c90edd1", + "uri": "https://standards.wida.us/uri/2e261b10-856a-4fee-bedd-54213c90edd1" + }, + "lastChangeDateTime": "2022-05-09T20:29:10+00:00" + }, + { + "identifier": "8fe516a2-7b47-42a9-a8d5-1abf30513d8e", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/8fe516a2-7b47-42a9-a8d5-1abf30513d8e", + "associationType": "isRelatedTo", + "originNodeURI": { + "title": "3.MP1 Make sense of problems and persevere in solving them. (:c6496676-d7cb-11e8-824f-0242ac160002:)", + "identifier": "a6243334-bcc0-4659-9898-9d212cce236e", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/a6243334-bcc0-4659-9898-9d212cce236e" + }, + "destinationNodeURI": { + "title": "ELD-MA.2-3.Explain.Expressive Multilingual learners will… Construct mathematical explanations that\n* Introduce concept or entity\n* __Describe solution and steps used to solve problem with others__\n* __State reasoning used to generate solution__ (:97c883b4-8590-454f-b222-f28298ec9a81:)", + "identifier": "a292d38b-ce22-463b-8bde-07d6f5e13917", + "uri": "https://standards.wida.us/uri/a292d38b-ce22-463b-8bde-07d6f5e13917" + }, + "lastChangeDateTime": "2022-05-09T20:29:10+00:00" + }, + { + "identifier": "f7b68a4a-d3d2-4bae-925d-036da9d10117", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/f7b68a4a-d3d2-4bae-925d-036da9d10117", + "associationType": "isRelatedTo", + "originNodeURI": { + "title": "3.MP1 Make sense of problems and persevere in solving them. (:c6496676-d7cb-11e8-824f-0242ac160002:)", + "identifier": "a6243334-bcc0-4659-9898-9d212cce236e", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/a6243334-bcc0-4659-9898-9d212cce236e" + }, + "destinationNodeURI": { + "title": "ELD-SI.K-3.Explain Multilingual learners will…\n* Share initial thinking with others\n* Follow and describe cycles in diagrams, steps in procedures, or causes and effects\n* Compare and contrast objects or concepts\n* Offer ideas and suggestions\n* Act on feedback to revise understandings of how or why something works\n (:97c883b4-8590-454f-b222-f28298ec9a81:)", + "identifier": "6c5fff3a-c798-4671-a227-c89a994497a6", + "uri": "https://standards.wida.us/uri/6c5fff3a-c798-4671-a227-c89a994497a6" + }, + "lastChangeDateTime": "2022-05-09T20:29:10+00:00" + }, + { + "identifier": "c3d0c71b-01a0-4c0c-bd66-1829629bae94", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c3d0c71b-01a0-4c0c-bd66-1829629bae94", + "associationType": "isRelatedTo", + "originNodeURI": { + "title": "4.MP1 Make sense of problems and persevere in solving them. (:c6496676-d7cb-11e8-824f-0242ac160002:)", + "identifier": "600207bf-3404-4d79-9400-b9cce5b699c7", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/600207bf-3404-4d79-9400-b9cce5b699c7" + }, + "destinationNodeURI": { + "title": "ELD-MA.4-5.Explain.Interpretive Multilingual learners will… Interpret mathematical explanations by\n* Identifying concept or entity\n* Analyzing problem-solving steps\n* Evaluating a __pattern__ or structure that follows a given rule (:97c883b4-8590-454f-b222-f28298ec9a81:)", + "identifier": "b41b7a96-6061-4d5b-95f8-97a744b4f2de", + "uri": "https://standards.wida.us/uri/b41b7a96-6061-4d5b-95f8-97a744b4f2de" + }, + "lastChangeDateTime": "2022-05-09T20:29:10+00:00" + }, + { + "identifier": "609acd8d-9f2c-4556-ac31-772d6fa921cc", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/609acd8d-9f2c-4556-ac31-772d6fa921cc", + "associationType": "isRelatedTo", + "originNodeURI": { + "title": "4.MP1 Make sense of problems and persevere in solving them. (:c6496676-d7cb-11e8-824f-0242ac160002:)", + "identifier": "600207bf-3404-4d79-9400-b9cce5b699c7", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/600207bf-3404-4d79-9400-b9cce5b699c7" + }, + "destinationNodeURI": { + "title": "ELD-MA.4-5.Explain.Expressive Multilingual learners will…\n\nConstruct mathematical explanations that\n* Introduce concept or entity\n* Share solution __with others__\n* Describe data and/or steps __to solve problem__\n* State reasoning used to generate solution (:97c883b4-8590-454f-b222-f28298ec9a81:)", + "identifier": "b9bd7205-dc82-4577-82bd-adb38360f785", + "uri": "https://standards.wida.us/uri/b9bd7205-dc82-4577-82bd-adb38360f785" + }, + "lastChangeDateTime": "2022-05-09T20:29:10+00:00" + }, + { + "identifier": "93f8a2a8-15c0-446f-8d31-d36199815dc3", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/93f8a2a8-15c0-446f-8d31-d36199815dc3", + "associationType": "isRelatedTo", + "originNodeURI": { + "title": "4.MP1 Make sense of problems and persevere in solving them. (:c6496676-d7cb-11e8-824f-0242ac160002:)", + "identifier": "600207bf-3404-4d79-9400-b9cce5b699c7", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/600207bf-3404-4d79-9400-b9cce5b699c7" + }, + "destinationNodeURI": { + "title": "ELD-SI.4-12.Explain Multilingual learners will…\n* __Generate and convey initial thinking__\n* Follow and describe cycles __and sequences of steps or procedures and their causes and effects__\n* Compare changing __variables, factors, and circumstances__\n* Offer __alternatives to extend or deepen awareness of factors that contribute to particular outcomes__\n* Act on feedback to revise understandings of how or why something is or works __in particular ways__ (:97c883b4-8590-454f-b222-f28298ec9a81:)", + "identifier": "4d380613-fde8-41f9-b3c7-3313a20d813b", + "uri": "https://standards.wida.us/uri/4d380613-fde8-41f9-b3c7-3313a20d813b" + }, + "lastChangeDateTime": "2022-05-09T20:29:10+00:00" + }, + { + "identifier": "37e47db9-90f2-4432-b4af-2a1111ca802b", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/37e47db9-90f2-4432-b4af-2a1111ca802b", + "associationType": "isRelatedTo", + "originNodeURI": { + "title": "5.MP1 Make sense of problems and persevere in solving them. (:c6496676-d7cb-11e8-824f-0242ac160002:)", + "identifier": "cf2ae260-718c-43dc-acde-19aa1297daff", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/cf2ae260-718c-43dc-acde-19aa1297daff" + }, + "destinationNodeURI": { + "title": "ELD-MA.4-5.Explain.Interpretive Multilingual learners will… Interpret mathematical explanations by\n* Identifying concept or entity\n* Analyzing problem-solving steps\n* Evaluating a __pattern__ or structure that follows a given rule (:97c883b4-8590-454f-b222-f28298ec9a81:)", + "identifier": "b41b7a96-6061-4d5b-95f8-97a744b4f2de", + "uri": "https://standards.wida.us/uri/b41b7a96-6061-4d5b-95f8-97a744b4f2de" + }, + "lastChangeDateTime": "2022-05-09T20:29:10+00:00" + }, + { + "identifier": "b305cce0-985f-4c07-b3db-c77d61b2c94b", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/b305cce0-985f-4c07-b3db-c77d61b2c94b", + "associationType": "isRelatedTo", + "originNodeURI": { + "title": "5.MP1 Make sense of problems and persevere in solving them. (:c6496676-d7cb-11e8-824f-0242ac160002:)", + "identifier": "cf2ae260-718c-43dc-acde-19aa1297daff", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/cf2ae260-718c-43dc-acde-19aa1297daff" + }, + "destinationNodeURI": { + "title": "ELD-MA.4-5.Explain.Expressive Multilingual learners will…\n\nConstruct mathematical explanations that\n* Introduce concept or entity\n* Share solution __with others__\n* Describe data and/or steps __to solve problem__\n* State reasoning used to generate solution (:97c883b4-8590-454f-b222-f28298ec9a81:)", + "identifier": "b9bd7205-dc82-4577-82bd-adb38360f785", + "uri": "https://standards.wida.us/uri/b9bd7205-dc82-4577-82bd-adb38360f785" + }, + "lastChangeDateTime": "2022-05-09T20:29:10+00:00" + }, + { + "identifier": "b1ad10ef-a12d-4275-822c-9f9b56badac5", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/b1ad10ef-a12d-4275-822c-9f9b56badac5", + "associationType": "isRelatedTo", + "originNodeURI": { + "title": "5.MP1 Make sense of problems and persevere in solving them. (:c6496676-d7cb-11e8-824f-0242ac160002:)", + "identifier": "cf2ae260-718c-43dc-acde-19aa1297daff", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/cf2ae260-718c-43dc-acde-19aa1297daff" + }, + "destinationNodeURI": { + "title": "ELD-SI.4-12.Explain Multilingual learners will…\n* __Generate and convey initial thinking__\n* Follow and describe cycles __and sequences of steps or procedures and their causes and effects__\n* Compare changing __variables, factors, and circumstances__\n* Offer __alternatives to extend or deepen awareness of factors that contribute to particular outcomes__\n* Act on feedback to revise understandings of how or why something is or works __in particular ways__ (:97c883b4-8590-454f-b222-f28298ec9a81:)", + "identifier": "4d380613-fde8-41f9-b3c7-3313a20d813b", + "uri": "https://standards.wida.us/uri/4d380613-fde8-41f9-b3c7-3313a20d813b" + }, + "lastChangeDateTime": "2022-05-09T20:29:10+00:00" + }, + { + "identifier": "19d24c53-44da-4fb4-b2ee-8ade9928c727", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/19d24c53-44da-4fb4-b2ee-8ade9928c727", + "associationType": "isRelatedTo", + "originNodeURI": { + "title": "6.MP1 Make sense of problems and persevere in solving them. (:c6496676-d7cb-11e8-824f-0242ac160002:)", + "identifier": "36000f7e-5fa9-47d1-ab6a-9cf93dc0b336", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/36000f7e-5fa9-47d1-ab6a-9cf93dc0b336" + }, + "destinationNodeURI": { + "title": "ELD-MA.6-8.Explain.Interpretive Multilingual learners will… Interpret mathematical explanations by\n* Identifying concept or entity\n* Analyzing possible __ways to represent and solve a problem__\n* Evaluating __model and rationale for underlying relationships in selected problem-solving approach__ (:97c883b4-8590-454f-b222-f28298ec9a81:)", + "identifier": "b380aaf9-f435-4b8d-b65e-c92fa5599471", + "uri": "https://standards.wida.us/uri/b380aaf9-f435-4b8d-b65e-c92fa5599471" + }, + "lastChangeDateTime": "2022-05-09T20:29:10+00:00" + }, + { + "identifier": "a1724fa8-18e7-4403-9735-140019b7048f", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/a1724fa8-18e7-4403-9735-140019b7048f", + "associationType": "isRelatedTo", + "originNodeURI": { + "title": "6.MP1 Make sense of problems and persevere in solving them. (:c6496676-d7cb-11e8-824f-0242ac160002:)", + "identifier": "36000f7e-5fa9-47d1-ab6a-9cf93dc0b336", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/36000f7e-5fa9-47d1-ab6a-9cf93dc0b336" + }, + "destinationNodeURI": { + "title": "ELD-MA.6-8.Explain.Expressive Multilingual learners will…\n\nConstruct mathematical explanations that\n* Introduce concept or entity\n* Share solution with others\n* Describe data and/or __problem-solving strategy__\n* State reasoning used to generate solution (:97c883b4-8590-454f-b222-f28298ec9a81:)", + "identifier": "b5f229b5-53d0-4a5e-86b6-cda8d0ac149e", + "uri": "https://standards.wida.us/uri/b5f229b5-53d0-4a5e-86b6-cda8d0ac149e" + }, + "lastChangeDateTime": "2022-05-09T20:29:10+00:00" + }, + { + "identifier": "ddfbc761-3971-4273-8507-4391d7ff0509", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/ddfbc761-3971-4273-8507-4391d7ff0509", + "associationType": "isRelatedTo", + "originNodeURI": { + "title": "6.MP1 Make sense of problems and persevere in solving them. (:c6496676-d7cb-11e8-824f-0242ac160002:)", + "identifier": "36000f7e-5fa9-47d1-ab6a-9cf93dc0b336", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/36000f7e-5fa9-47d1-ab6a-9cf93dc0b336" + }, + "destinationNodeURI": { + "title": "ELD-SI.4-12.Explain Multilingual learners will…\n* __Generate and convey initial thinking__\n* Follow and describe cycles __and sequences of steps or procedures and their causes and effects__\n* Compare changing __variables, factors, and circumstances__\n* Offer __alternatives to extend or deepen awareness of factors that contribute to particular outcomes__\n* Act on feedback to revise understandings of how or why something is or works __in particular ways__ (:97c883b4-8590-454f-b222-f28298ec9a81:)", + "identifier": "4d380613-fde8-41f9-b3c7-3313a20d813b", + "uri": "https://standards.wida.us/uri/4d380613-fde8-41f9-b3c7-3313a20d813b" + }, + "lastChangeDateTime": "2022-05-09T20:29:10+00:00" + }, + { + "identifier": "5dcba436-e160-404e-a206-4669ae2705f0", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/5dcba436-e160-404e-a206-4669ae2705f0", + "associationType": "isRelatedTo", + "originNodeURI": { + "title": "7.MP1 Make sense of problems and persevere in solving them. (:c6496676-d7cb-11e8-824f-0242ac160002:)", + "identifier": "09a3410a-85b1-4974-8a05-a5db067eaaac", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/09a3410a-85b1-4974-8a05-a5db067eaaac" + }, + "destinationNodeURI": { + "title": "ELD-MA.6-8.Explain.Interpretive Multilingual learners will… Interpret mathematical explanations by\n* Identifying concept or entity\n* Analyzing possible __ways to represent and solve a problem__\n* Evaluating __model and rationale for underlying relationships in selected problem-solving approach__ (:97c883b4-8590-454f-b222-f28298ec9a81:)", + "identifier": "b380aaf9-f435-4b8d-b65e-c92fa5599471", + "uri": "https://standards.wida.us/uri/b380aaf9-f435-4b8d-b65e-c92fa5599471" + }, + "lastChangeDateTime": "2022-05-09T20:29:10+00:00" + }, + { + "identifier": "d18e18f0-391a-4f1c-85bc-f0af160b7e38", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/d18e18f0-391a-4f1c-85bc-f0af160b7e38", + "associationType": "isRelatedTo", + "originNodeURI": { + "title": "7.MP1 Make sense of problems and persevere in solving them. (:c6496676-d7cb-11e8-824f-0242ac160002:)", + "identifier": "09a3410a-85b1-4974-8a05-a5db067eaaac", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/09a3410a-85b1-4974-8a05-a5db067eaaac" + }, + "destinationNodeURI": { + "title": "ELD-MA.6-8.Explain.Expressive Multilingual learners will…\n\nConstruct mathematical explanations that\n* Introduce concept or entity\n* Share solution with others\n* Describe data and/or __problem-solving strategy__\n* State reasoning used to generate solution (:97c883b4-8590-454f-b222-f28298ec9a81:)", + "identifier": "b5f229b5-53d0-4a5e-86b6-cda8d0ac149e", + "uri": "https://standards.wida.us/uri/b5f229b5-53d0-4a5e-86b6-cda8d0ac149e" + }, + "lastChangeDateTime": "2022-05-09T20:29:10+00:00" + }, + { + "identifier": "4c41b531-5c03-48a7-99e2-95bb0f2e251b", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/4c41b531-5c03-48a7-99e2-95bb0f2e251b", + "associationType": "isRelatedTo", + "originNodeURI": { + "title": "7.MP1 Make sense of problems and persevere in solving them. (:c6496676-d7cb-11e8-824f-0242ac160002:)", + "identifier": "09a3410a-85b1-4974-8a05-a5db067eaaac", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/09a3410a-85b1-4974-8a05-a5db067eaaac" + }, + "destinationNodeURI": { + "title": "ELD-SI.4-12.Explain Multilingual learners will…\n* __Generate and convey initial thinking__\n* Follow and describe cycles __and sequences of steps or procedures and their causes and effects__\n* Compare changing __variables, factors, and circumstances__\n* Offer __alternatives to extend or deepen awareness of factors that contribute to particular outcomes__\n* Act on feedback to revise understandings of how or why something is or works __in particular ways__ (:97c883b4-8590-454f-b222-f28298ec9a81:)", + "identifier": "4d380613-fde8-41f9-b3c7-3313a20d813b", + "uri": "https://standards.wida.us/uri/4d380613-fde8-41f9-b3c7-3313a20d813b" + }, + "lastChangeDateTime": "2022-05-09T20:29:10+00:00" + }, + { + "identifier": "77114e1b-81a3-44c0-be50-50c44e16d94f", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/77114e1b-81a3-44c0-be50-50c44e16d94f", + "associationType": "isRelatedTo", + "originNodeURI": { + "title": "8.MP1 Make sense of problems and persevere in solving them. (:c6496676-d7cb-11e8-824f-0242ac160002:)", + "identifier": "8fed1d2f-2a46-4cb2-8b40-57bb732e5a33", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/8fed1d2f-2a46-4cb2-8b40-57bb732e5a33" + }, + "destinationNodeURI": { + "title": "ELD-MA.6-8.Explain.Interpretive Multilingual learners will… Interpret mathematical explanations by\n* Identifying concept or entity\n* Analyzing possible __ways to represent and solve a problem__\n* Evaluating __model and rationale for underlying relationships in selected problem-solving approach__ (:97c883b4-8590-454f-b222-f28298ec9a81:)", + "identifier": "b380aaf9-f435-4b8d-b65e-c92fa5599471", + "uri": "https://standards.wida.us/uri/b380aaf9-f435-4b8d-b65e-c92fa5599471" + }, + "lastChangeDateTime": "2022-05-09T20:29:10+00:00" + }, + { + "identifier": "c209251a-72fc-4b6c-b5e7-a98c7ac02edd", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c209251a-72fc-4b6c-b5e7-a98c7ac02edd", + "associationType": "isRelatedTo", + "originNodeURI": { + "title": "8.MP1 Make sense of problems and persevere in solving them. (:c6496676-d7cb-11e8-824f-0242ac160002:)", + "identifier": "8fed1d2f-2a46-4cb2-8b40-57bb732e5a33", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/8fed1d2f-2a46-4cb2-8b40-57bb732e5a33" + }, + "destinationNodeURI": { + "title": "ELD-MA.6-8.Explain.Expressive Multilingual learners will…\n\nConstruct mathematical explanations that\n* Introduce concept or entity\n* Share solution with others\n* Describe data and/or __problem-solving strategy__\n* State reasoning used to generate solution (:97c883b4-8590-454f-b222-f28298ec9a81:)", + "identifier": "b5f229b5-53d0-4a5e-86b6-cda8d0ac149e", + "uri": "https://standards.wida.us/uri/b5f229b5-53d0-4a5e-86b6-cda8d0ac149e" + }, + "lastChangeDateTime": "2022-05-09T20:29:10+00:00" + }, + { + "identifier": "034b87d3-408d-48ae-abc2-b84bc663c806", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/034b87d3-408d-48ae-abc2-b84bc663c806", + "associationType": "isRelatedTo", + "originNodeURI": { + "title": "8.MP1 Make sense of problems and persevere in solving them. (:c6496676-d7cb-11e8-824f-0242ac160002:)", + "identifier": "8fed1d2f-2a46-4cb2-8b40-57bb732e5a33", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/8fed1d2f-2a46-4cb2-8b40-57bb732e5a33" + }, + "destinationNodeURI": { + "title": "ELD-SI.4-12.Explain Multilingual learners will…\n* __Generate and convey initial thinking__\n* Follow and describe cycles __and sequences of steps or procedures and their causes and effects__\n* Compare changing __variables, factors, and circumstances__\n* Offer __alternatives to extend or deepen awareness of factors that contribute to particular outcomes__\n* Act on feedback to revise understandings of how or why something is or works __in particular ways__ (:97c883b4-8590-454f-b222-f28298ec9a81:)", + "identifier": "4d380613-fde8-41f9-b3c7-3313a20d813b", + "uri": "https://standards.wida.us/uri/4d380613-fde8-41f9-b3c7-3313a20d813b" + }, + "lastChangeDateTime": "2022-05-09T20:29:10+00:00" + }, + { + "identifier": "536b5ce7-3c5f-447f-8368-669a1492deef", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/536b5ce7-3c5f-447f-8368-669a1492deef", + "associationType": "isRelatedTo", + "originNodeURI": { + "title": "HS.MP1 Make sense of problems and persevere in solving them. (:c6496676-d7cb-11e8-824f-0242ac160002:)", + "identifier": "971ece10-7750-41cf-a8e6-26abc66ac507", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/971ece10-7750-41cf-a8e6-26abc66ac507" + }, + "destinationNodeURI": { + "title": "ELD-MA.9-12.Explain.Interpretive Multilingual learners will… Interpret mathematical explanations by\n* Identifying concept or entity\n* Analyzing __data and owning problem-solving approaches__\n* Evaluating rationales, models, and/or __interpretations based on evidence and mathematical principles__ (:97c883b4-8590-454f-b222-f28298ec9a81:)", + "identifier": "a165d976-be8b-4b2f-ac8f-dcaffa56b6fd", + "uri": "https://standards.wida.us/uri/a165d976-be8b-4b2f-ac8f-dcaffa56b6fd" + }, + "lastChangeDateTime": "2022-05-09T20:29:10+00:00" + }, + { + "identifier": "f5686f0f-efb6-4197-95b8-5bd38a1f7781", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/f5686f0f-efb6-4197-95b8-5bd38a1f7781", + "associationType": "isRelatedTo", + "originNodeURI": { + "title": "HS.MP1 Make sense of problems and persevere in solving them. (:c6496676-d7cb-11e8-824f-0242ac160002:)", + "identifier": "971ece10-7750-41cf-a8e6-26abc66ac507", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/971ece10-7750-41cf-a8e6-26abc66ac507" + }, + "destinationNodeURI": { + "title": "ELD-MA.9-12.Explain.Expressive Multilingual learners will…\n\nConstruct mathematical explanations that\n* Introduce mathematical concept or entity\n* Share solutions with others\n* Describe data and/or __approach used to solve a problem__\n* State reasoning used to generate __own or alternate solutions__ (:97c883b4-8590-454f-b222-f28298ec9a81:)", + "identifier": "014f1edc-380b-4891-94e8-3a471017fb5e", + "uri": "https://standards.wida.us/uri/014f1edc-380b-4891-94e8-3a471017fb5e" + }, + "lastChangeDateTime": "2022-05-09T20:29:10+00:00" + }, + { + "identifier": "253ece40-819d-4b01-9607-f08a1f7f5b04", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/253ece40-819d-4b01-9607-f08a1f7f5b04", + "associationType": "isRelatedTo", + "originNodeURI": { + "title": "HS.MP1 Make sense of problems and persevere in solving them. (:c6496676-d7cb-11e8-824f-0242ac160002:)", + "identifier": "971ece10-7750-41cf-a8e6-26abc66ac507", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/971ece10-7750-41cf-a8e6-26abc66ac507" + }, + "destinationNodeURI": { + "title": "ELD-SI.4-12.Explain Multilingual learners will…\n* __Generate and convey initial thinking__\n* Follow and describe cycles __and sequences of steps or procedures and their causes and effects__\n* Compare changing __variables, factors, and circumstances__\n* Offer __alternatives to extend or deepen awareness of factors that contribute to particular outcomes__\n* Act on feedback to revise understandings of how or why something is or works __in particular ways__ (:97c883b4-8590-454f-b222-f28298ec9a81:)", + "identifier": "4d380613-fde8-41f9-b3c7-3313a20d813b", + "uri": "https://standards.wida.us/uri/4d380613-fde8-41f9-b3c7-3313a20d813b" + }, + "lastChangeDateTime": "2022-05-09T20:29:10+00:00" + }, + { + "identifier": "51c31b26-a9d0-4e77-94b1-d8dbcd64c4cb", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/51c31b26-a9d0-4e77-94b1-d8dbcd64c4cb", + "associationType": "isRelatedTo", + "originNodeURI": { + "title": "K.MP2 Reason abstractly and quantitatively. (:c6496676-d7cb-11e8-824f-0242ac160002:)", + "identifier": "b2fafb0e-4ed3-401c-9434-bc7863c78dd6", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/b2fafb0e-4ed3-401c-9434-bc7863c78dd6" + }, + "destinationNodeURI": { + "title": "ELD-MA.K.Inform.Interpretive Multilingual learners will…\nInterpret mathematical informational texts (with prompting and support) by\n* Identifying concept or object\n* Describing quantities and attributes\n (:97c883b4-8590-454f-b222-f28298ec9a81:)", + "identifier": "8a95d57e-26ba-49ed-b2a9-c22ad743532c", + "uri": "https://standards.wida.us/uri/8a95d57e-26ba-49ed-b2a9-c22ad743532c" + }, + "lastChangeDateTime": "2022-05-09T20:29:10+00:00" + }, + { + "identifier": "e2f1cee1-2765-45be-a3da-352e5a3abdbd", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/e2f1cee1-2765-45be-a3da-352e5a3abdbd", + "associationType": "isRelatedTo", + "originNodeURI": { + "title": "K.MP2 Reason abstractly and quantitatively. (:c6496676-d7cb-11e8-824f-0242ac160002:)", + "identifier": "b2fafb0e-4ed3-401c-9434-bc7863c78dd6", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/b2fafb0e-4ed3-401c-9434-bc7863c78dd6" + }, + "destinationNodeURI": { + "title": "ELD-MA.K.Inform.Expressive Multilingual learners will… Construct mathematical informational texts (with prompting and support) that\n* Define or classify concept or entity\n* Describe a concept or entity\n* Compare/contrast concepts or entities (:97c883b4-8590-454f-b222-f28298ec9a81:)", + "identifier": "56fc8a8e-8253-4403-8865-8829b19185f3", + "uri": "https://standards.wida.us/uri/56fc8a8e-8253-4403-8865-8829b19185f3" + }, + "lastChangeDateTime": "2022-05-09T20:29:10+00:00" + }, + { + "identifier": "8d76ead4-1276-4f60-8698-9bb7a046f887", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/8d76ead4-1276-4f60-8698-9bb7a046f887", + "associationType": "isRelatedTo", + "originNodeURI": { + "title": "K.MP2 Reason abstractly and quantitatively. (:c6496676-d7cb-11e8-824f-0242ac160002:)", + "identifier": "b2fafb0e-4ed3-401c-9434-bc7863c78dd6", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/b2fafb0e-4ed3-401c-9434-bc7863c78dd6" + }, + "destinationNodeURI": { + "title": "ELD-SI.K-3.Inform Multilingual learners will…\n* Define and classify objects or concepts\n* Describe characteristics, patterns, or behavior\n* Describe parts and wholes\n* Sort, clarify, and summarize ideas\n* Summarize information from interaction with others and from learning experiences\n (:97c883b4-8590-454f-b222-f28298ec9a81:)", + "identifier": "02f34f50-2394-4aa5-a453-3907a2e2d9f3", + "uri": "https://standards.wida.us/uri/02f34f50-2394-4aa5-a453-3907a2e2d9f3" + }, + "lastChangeDateTime": "2022-05-09T20:29:10+00:00" + }, + { + "identifier": "4fa2d017-99a0-44dd-9031-1f425f2f522f", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/4fa2d017-99a0-44dd-9031-1f425f2f522f", + "associationType": "isRelatedTo", + "originNodeURI": { + "title": "1.MP2 Reason abstractly and quantitatively. (:c6496676-d7cb-11e8-824f-0242ac160002:)", + "identifier": "b4b7c6d5-77c3-43c8-8b81-0abb5ab4a25e", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/b4b7c6d5-77c3-43c8-8b81-0abb5ab4a25e" + }, + "destinationNodeURI": { + "title": "ELD-MA.1.Inform.Interpretive Multilingual learners will… Interpret mathematical informational texts by\n* Identifying concept __or entity__\n* Describing attributes and __characteristics__ (:97c883b4-8590-454f-b222-f28298ec9a81:)", + "identifier": "ba2b02ea-ee35-442b-a452-dd93cb0073de", + "uri": "https://standards.wida.us/uri/ba2b02ea-ee35-442b-a452-dd93cb0073de" + }, + "lastChangeDateTime": "2022-05-09T20:29:10+00:00" + }, + { + "identifier": "cd3d648a-13a6-47af-9752-0f69b5e8289d", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/cd3d648a-13a6-47af-9752-0f69b5e8289d", + "associationType": "isRelatedTo", + "originNodeURI": { + "title": "1.MP2 Reason abstractly and quantitatively. (:c6496676-d7cb-11e8-824f-0242ac160002:)", + "identifier": "b4b7c6d5-77c3-43c8-8b81-0abb5ab4a25e", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/b4b7c6d5-77c3-43c8-8b81-0abb5ab4a25e" + }, + "destinationNodeURI": { + "title": "ELD-MA.1.Inform.Expressive Multilingual learners will… Construct mathematical informational texts that\n* Define or classify concept or entity\n* Describe a concept or entity\n* Compare/contrast concepts or entities (:97c883b4-8590-454f-b222-f28298ec9a81:)", + "identifier": "acb17527-5967-4e98-9b80-d6d1f5f951b2", + "uri": "https://standards.wida.us/uri/acb17527-5967-4e98-9b80-d6d1f5f951b2" + }, + "lastChangeDateTime": "2022-05-09T20:29:10+00:00" + }, + { + "identifier": "7c7f5a4a-986b-4c1b-9587-e9bbe66841d3", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/7c7f5a4a-986b-4c1b-9587-e9bbe66841d3", + "associationType": "isRelatedTo", + "originNodeURI": { + "title": "1.MP2 Reason abstractly and quantitatively. (:c6496676-d7cb-11e8-824f-0242ac160002:)", + "identifier": "b4b7c6d5-77c3-43c8-8b81-0abb5ab4a25e", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/b4b7c6d5-77c3-43c8-8b81-0abb5ab4a25e" + }, + "destinationNodeURI": { + "title": "ELD-SI.K-3.Inform Multilingual learners will…\n* Define and classify objects or concepts\n* Describe characteristics, patterns, or behavior\n* Describe parts and wholes\n* Sort, clarify, and summarize ideas\n* Summarize information from interaction with others and from learning experiences\n (:97c883b4-8590-454f-b222-f28298ec9a81:)", + "identifier": "02f34f50-2394-4aa5-a453-3907a2e2d9f3", + "uri": "https://standards.wida.us/uri/02f34f50-2394-4aa5-a453-3907a2e2d9f3" + }, + "lastChangeDateTime": "2022-05-09T20:29:10+00:00" + }, + { + "identifier": "858db9ab-5ea7-42d7-85ca-d73fa6a1d03b", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/858db9ab-5ea7-42d7-85ca-d73fa6a1d03b", + "associationType": "isRelatedTo", + "originNodeURI": { + "title": "2.MP2 Reason abstractly and quantitatively. (:c6496676-d7cb-11e8-824f-0242ac160002:)", + "identifier": "a140cefc-124c-439d-b450-801bbf1be566", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/a140cefc-124c-439d-b450-801bbf1be566" + }, + "destinationNodeURI": { + "title": "ELD-SI.K-3.Inform Multilingual learners will…\n* Define and classify objects or concepts\n* Describe characteristics, patterns, or behavior\n* Describe parts and wholes\n* Sort, clarify, and summarize ideas\n* Summarize information from interaction with others and from learning experiences\n (:97c883b4-8590-454f-b222-f28298ec9a81:)", + "identifier": "02f34f50-2394-4aa5-a453-3907a2e2d9f3", + "uri": "https://standards.wida.us/uri/02f34f50-2394-4aa5-a453-3907a2e2d9f3" + }, + "lastChangeDateTime": "2022-05-09T20:29:10+00:00" + }, + { + "identifier": "50901d2c-9e0f-4dd8-8cba-ccb264e41a58", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/50901d2c-9e0f-4dd8-8cba-ccb264e41a58", + "associationType": "isRelatedTo", + "originNodeURI": { + "title": "3.MP2 Reason abstractly and quantitatively. (:c6496676-d7cb-11e8-824f-0242ac160002:)", + "identifier": "679c68f6-5dad-4cfd-b5ae-8b316309fb7f", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/679c68f6-5dad-4cfd-b5ae-8b316309fb7f" + }, + "destinationNodeURI": { + "title": "ELD-SI.K-3.Inform Multilingual learners will…\n* Define and classify objects or concepts\n* Describe characteristics, patterns, or behavior\n* Describe parts and wholes\n* Sort, clarify, and summarize ideas\n* Summarize information from interaction with others and from learning experiences\n (:97c883b4-8590-454f-b222-f28298ec9a81:)", + "identifier": "02f34f50-2394-4aa5-a453-3907a2e2d9f3", + "uri": "https://standards.wida.us/uri/02f34f50-2394-4aa5-a453-3907a2e2d9f3" + }, + "lastChangeDateTime": "2022-05-09T20:29:10+00:00" + }, + { + "identifier": "19a91366-b099-4ee6-8f99-bc2812ee9dc7", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/19a91366-b099-4ee6-8f99-bc2812ee9dc7", + "associationType": "isRelatedTo", + "originNodeURI": { + "title": "4.MP2 Reason abstractly and quantitatively. (:c6496676-d7cb-11e8-824f-0242ac160002:)", + "identifier": "2348c823-5f48-4670-b667-f2a8f8bf7124", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/2348c823-5f48-4670-b667-f2a8f8bf7124" + }, + "destinationNodeURI": { + "title": "ELD-SI.4-12.Inform Multilingual learners will…\n* Define and classify __facts and interpretations; determine what is known vs. unknown__\n* __Report on explicit and inferred characteristics, patterns, or behavior__\n* Describe the parts and wholes __of a system__\n* Sort, clarify, and summarize __relationships__\n* Summarize __most important aspects of information__ (:97c883b4-8590-454f-b222-f28298ec9a81:)", + "identifier": "2fb8c896-09a1-4dcc-b08f-c0c2f68ba2f5", + "uri": "https://standards.wida.us/uri/2fb8c896-09a1-4dcc-b08f-c0c2f68ba2f5" + }, + "lastChangeDateTime": "2022-05-09T20:29:10+00:00" + }, + { + "identifier": "d0e51907-de1b-432f-a086-5818f8d7f6cb", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/d0e51907-de1b-432f-a086-5818f8d7f6cb", + "associationType": "isRelatedTo", + "originNodeURI": { + "title": "5.MP2 Reason abstractly and quantitatively. (:c6496676-d7cb-11e8-824f-0242ac160002:)", + "identifier": "e68059b4-882d-4536-bc11-d35cb8f04b36", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/e68059b4-882d-4536-bc11-d35cb8f04b36" + }, + "destinationNodeURI": { + "title": "ELD-SI.4-12.Inform Multilingual learners will…\n* Define and classify __facts and interpretations; determine what is known vs. unknown__\n* __Report on explicit and inferred characteristics, patterns, or behavior__\n* Describe the parts and wholes __of a system__\n* Sort, clarify, and summarize __relationships__\n* Summarize __most important aspects of information__ (:97c883b4-8590-454f-b222-f28298ec9a81:)", + "identifier": "2fb8c896-09a1-4dcc-b08f-c0c2f68ba2f5", + "uri": "https://standards.wida.us/uri/2fb8c896-09a1-4dcc-b08f-c0c2f68ba2f5" + }, + "lastChangeDateTime": "2022-05-09T20:29:10+00:00" + }, + { + "identifier": "08803fd7-7ee8-4623-b10e-a1cd42803d38", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/08803fd7-7ee8-4623-b10e-a1cd42803d38", + "associationType": "isRelatedTo", + "originNodeURI": { + "title": "6.MP2 Reason abstractly and quantitatively. (:c6496676-d7cb-11e8-824f-0242ac160002:)", + "identifier": "74381e15-fd87-4b71-9429-aece79dd2d03", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/74381e15-fd87-4b71-9429-aece79dd2d03" + }, + "destinationNodeURI": { + "title": "ELD-SI.4-12.Inform Multilingual learners will…\n* Define and classify __facts and interpretations; determine what is known vs. unknown__\n* __Report on explicit and inferred characteristics, patterns, or behavior__\n* Describe the parts and wholes __of a system__\n* Sort, clarify, and summarize __relationships__\n* Summarize __most important aspects of information__ (:97c883b4-8590-454f-b222-f28298ec9a81:)", + "identifier": "2fb8c896-09a1-4dcc-b08f-c0c2f68ba2f5", + "uri": "https://standards.wida.us/uri/2fb8c896-09a1-4dcc-b08f-c0c2f68ba2f5" + }, + "lastChangeDateTime": "2022-05-09T20:29:10+00:00" + }, + { + "identifier": "8bbdc652-ea49-4a9f-8021-c26d75400ac9", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/8bbdc652-ea49-4a9f-8021-c26d75400ac9", + "associationType": "isRelatedTo", + "originNodeURI": { + "title": "7.MP2 Reason abstractly and quantitatively. (:c6496676-d7cb-11e8-824f-0242ac160002:)", + "identifier": "f75089ae-d7b3-4540-be65-13319610d73a", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/f75089ae-d7b3-4540-be65-13319610d73a" + }, + "destinationNodeURI": { + "title": "ELD-SI.4-12.Inform Multilingual learners will…\n* Define and classify __facts and interpretations; determine what is known vs. unknown__\n* __Report on explicit and inferred characteristics, patterns, or behavior__\n* Describe the parts and wholes __of a system__\n* Sort, clarify, and summarize __relationships__\n* Summarize __most important aspects of information__ (:97c883b4-8590-454f-b222-f28298ec9a81:)", + "identifier": "2fb8c896-09a1-4dcc-b08f-c0c2f68ba2f5", + "uri": "https://standards.wida.us/uri/2fb8c896-09a1-4dcc-b08f-c0c2f68ba2f5" + }, + "lastChangeDateTime": "2022-05-09T20:29:10+00:00" + }, + { + "identifier": "5c01ff0a-9757-4b08-9410-5d68a9fd68b5", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/5c01ff0a-9757-4b08-9410-5d68a9fd68b5", + "associationType": "isRelatedTo", + "originNodeURI": { + "title": "8.MP2 Reason abstractly and quantitatively. (:c6496676-d7cb-11e8-824f-0242ac160002:)", + "identifier": "e57ffc4d-badc-4c62-85f8-df6d2599019c", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/e57ffc4d-badc-4c62-85f8-df6d2599019c" + }, + "destinationNodeURI": { + "title": "ELD-SI.4-12.Inform Multilingual learners will…\n* Define and classify __facts and interpretations; determine what is known vs. unknown__\n* __Report on explicit and inferred characteristics, patterns, or behavior__\n* Describe the parts and wholes __of a system__\n* Sort, clarify, and summarize __relationships__\n* Summarize __most important aspects of information__ (:97c883b4-8590-454f-b222-f28298ec9a81:)", + "identifier": "2fb8c896-09a1-4dcc-b08f-c0c2f68ba2f5", + "uri": "https://standards.wida.us/uri/2fb8c896-09a1-4dcc-b08f-c0c2f68ba2f5" + }, + "lastChangeDateTime": "2022-05-09T20:29:10+00:00" + }, + { + "identifier": "ef23eb2a-a07c-41cf-8daf-e26294ec2be7", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/ef23eb2a-a07c-41cf-8daf-e26294ec2be7", + "associationType": "isRelatedTo", + "originNodeURI": { + "title": "HS.MP2 Reason abstractly and quantitatively. (:c6496676-d7cb-11e8-824f-0242ac160002:)", + "identifier": "13978cb3-6231-4836-800e-68e594825c99", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/13978cb3-6231-4836-800e-68e594825c99" + }, + "destinationNodeURI": { + "title": "ELD-SI.4-12.Inform Multilingual learners will…\n* Define and classify __facts and interpretations; determine what is known vs. unknown__\n* __Report on explicit and inferred characteristics, patterns, or behavior__\n* Describe the parts and wholes __of a system__\n* Sort, clarify, and summarize __relationships__\n* Summarize __most important aspects of information__ (:97c883b4-8590-454f-b222-f28298ec9a81:)", + "identifier": "2fb8c896-09a1-4dcc-b08f-c0c2f68ba2f5", + "uri": "https://standards.wida.us/uri/2fb8c896-09a1-4dcc-b08f-c0c2f68ba2f5" + }, + "lastChangeDateTime": "2022-05-09T20:29:10+00:00" + }, + { + "identifier": "3286549c-db66-4d16-a6d3-1d598c8b7489", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/3286549c-db66-4d16-a6d3-1d598c8b7489", + "associationType": "isRelatedTo", + "originNodeURI": { + "title": "K.MP3 Construct viable arguments and critique the reasoning of others. (:c6496676-d7cb-11e8-824f-0242ac160002:)", + "identifier": "669a0367-28e3-4926-bc0b-fcbf31713001", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/669a0367-28e3-4926-bc0b-fcbf31713001" + }, + "destinationNodeURI": { + "title": "ELD-SI.K-3.Argue Multilingual learners will…\n* Ask questions about others’ opinions\n* Support own opinions with reasons\n* Clarify and elaborate ideas based on feedback\n* Defend change in one’s own thinking\n* Revise one’s own opinions based on new information (:97c883b4-8590-454f-b222-f28298ec9a81:)", + "identifier": "37d4fc94-a76c-4f6a-8574-dcfd168b851c", + "uri": "https://standards.wida.us/uri/37d4fc94-a76c-4f6a-8574-dcfd168b851c" + }, + "lastChangeDateTime": "2022-05-09T20:29:10+00:00" + }, + { + "identifier": "6441ed62-4e30-4bcc-85e4-eccd65d7d2b2", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/6441ed62-4e30-4bcc-85e4-eccd65d7d2b2", + "associationType": "isRelatedTo", + "originNodeURI": { + "title": "1.MP3 Construct viable arguments and critique the reasoning of others. (:c6496676-d7cb-11e8-824f-0242ac160002:)", + "identifier": "d781ebb4-b2f9-4704-a51f-5442225bc6d7", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/d781ebb4-b2f9-4704-a51f-5442225bc6d7" + }, + "destinationNodeURI": { + "title": "ELD-SI.K-3.Argue Multilingual learners will…\n* Ask questions about others’ opinions\n* Support own opinions with reasons\n* Clarify and elaborate ideas based on feedback\n* Defend change in one’s own thinking\n* Revise one’s own opinions based on new information (:97c883b4-8590-454f-b222-f28298ec9a81:)", + "identifier": "37d4fc94-a76c-4f6a-8574-dcfd168b851c", + "uri": "https://standards.wida.us/uri/37d4fc94-a76c-4f6a-8574-dcfd168b851c" + }, + "lastChangeDateTime": "2022-05-09T20:29:10+00:00" + }, + { + "identifier": "8ed3e8b8-a7f1-47d9-b621-e8fa96c8b168", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/8ed3e8b8-a7f1-47d9-b621-e8fa96c8b168", + "associationType": "isRelatedTo", + "originNodeURI": { + "title": "2.MP3 Construct viable arguments and critique the reasoning of others. (:c6496676-d7cb-11e8-824f-0242ac160002:)", + "identifier": "1b48179d-e3da-43a5-a2af-2ea90e09138b", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/1b48179d-e3da-43a5-a2af-2ea90e09138b" + }, + "destinationNodeURI": { + "title": "ELD-MA.2-3.Argue.Interpretive Multilingual learners will… Interpret mathematics arguments by\n* Identifying conjectures about what might be true\n* Distinguishing connections among ideas in justifications\n* Extracting mathematical operations and facts from solution strategies to create generalizations (:97c883b4-8590-454f-b222-f28298ec9a81:)", + "identifier": "eebc3803-3a6c-44eb-8e20-61ba0b1119d7", + "uri": "https://standards.wida.us/uri/eebc3803-3a6c-44eb-8e20-61ba0b1119d7" + }, + "lastChangeDateTime": "2022-05-09T20:29:10+00:00" + }, + { + "identifier": "0606dd91-7b7d-4844-9e0c-81fae0108fce", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/0606dd91-7b7d-4844-9e0c-81fae0108fce", + "associationType": "isRelatedTo", + "originNodeURI": { + "title": "2.MP3 Construct viable arguments and critique the reasoning of others. (:c6496676-d7cb-11e8-824f-0242ac160002:)", + "identifier": "1b48179d-e3da-43a5-a2af-2ea90e09138b", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/1b48179d-e3da-43a5-a2af-2ea90e09138b" + }, + "destinationNodeURI": { + "title": "ELD-MA.2-3.Argue.Expressive Multilingual learners will… Construct mathematics arguments that\n* Create conjecture using definitions\n* Generalize commonalities across cases\n* Justify conclusion steps and strategies in simple patterns\n* Identify and respond to others’ arguments (:97c883b4-8590-454f-b222-f28298ec9a81:)", + "identifier": "054fbfff-049e-4c8f-b423-e18ae0d182f5", + "uri": "https://standards.wida.us/uri/054fbfff-049e-4c8f-b423-e18ae0d182f5" + }, + "lastChangeDateTime": "2022-05-09T20:29:10+00:00" + }, + { + "identifier": "6f25188c-3833-43de-af4f-9ea5e9dd328f", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/6f25188c-3833-43de-af4f-9ea5e9dd328f", + "associationType": "isRelatedTo", + "originNodeURI": { + "title": "2.MP3 Construct viable arguments and critique the reasoning of others. (:c6496676-d7cb-11e8-824f-0242ac160002:)", + "identifier": "1b48179d-e3da-43a5-a2af-2ea90e09138b", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/1b48179d-e3da-43a5-a2af-2ea90e09138b" + }, + "destinationNodeURI": { + "title": "ELD-SI.K-3.Argue Multilingual learners will…\n* Ask questions about others’ opinions\n* Support own opinions with reasons\n* Clarify and elaborate ideas based on feedback\n* Defend change in one’s own thinking\n* Revise one’s own opinions based on new information (:97c883b4-8590-454f-b222-f28298ec9a81:)", + "identifier": "37d4fc94-a76c-4f6a-8574-dcfd168b851c", + "uri": "https://standards.wida.us/uri/37d4fc94-a76c-4f6a-8574-dcfd168b851c" + }, + "lastChangeDateTime": "2022-05-09T20:29:10+00:00" + }, + { + "identifier": "7b6cab14-25b1-4f09-9ae5-31d088be639d", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/7b6cab14-25b1-4f09-9ae5-31d088be639d", + "associationType": "isRelatedTo", + "originNodeURI": { + "title": "3.MP3 Construct viable arguments and critique the reasoning of others. (:c6496676-d7cb-11e8-824f-0242ac160002:)", + "identifier": "290ba6f3-3b17-496a-8986-0b9dcb22b292", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/290ba6f3-3b17-496a-8986-0b9dcb22b292" + }, + "destinationNodeURI": { + "title": "ELD-MA.2-3.Argue.Interpretive Multilingual learners will… Interpret mathematics arguments by\n* Identifying conjectures about what might be true\n* Distinguishing connections among ideas in justifications\n* Extracting mathematical operations and facts from solution strategies to create generalizations (:97c883b4-8590-454f-b222-f28298ec9a81:)", + "identifier": "eebc3803-3a6c-44eb-8e20-61ba0b1119d7", + "uri": "https://standards.wida.us/uri/eebc3803-3a6c-44eb-8e20-61ba0b1119d7" + }, + "lastChangeDateTime": "2022-05-09T20:29:10+00:00" + }, + { + "identifier": "be1d2d92-db0c-4762-82ce-f591dae8cf9e", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/be1d2d92-db0c-4762-82ce-f591dae8cf9e", + "associationType": "isRelatedTo", + "originNodeURI": { + "title": "3.MP3 Construct viable arguments and critique the reasoning of others. (:c6496676-d7cb-11e8-824f-0242ac160002:)", + "identifier": "290ba6f3-3b17-496a-8986-0b9dcb22b292", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/290ba6f3-3b17-496a-8986-0b9dcb22b292" + }, + "destinationNodeURI": { + "title": "ELD-MA.2-3.Argue.Expressive Multilingual learners will… Construct mathematics arguments that\n* Create conjecture using definitions\n* Generalize commonalities across cases\n* Justify conclusion steps and strategies in simple patterns\n* Identify and respond to others’ arguments (:97c883b4-8590-454f-b222-f28298ec9a81:)", + "identifier": "054fbfff-049e-4c8f-b423-e18ae0d182f5", + "uri": "https://standards.wida.us/uri/054fbfff-049e-4c8f-b423-e18ae0d182f5" + }, + "lastChangeDateTime": "2022-05-09T20:29:10+00:00" + }, + { + "identifier": "d4405e65-6e98-45cc-a150-69f8a8120760", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/d4405e65-6e98-45cc-a150-69f8a8120760", + "associationType": "isRelatedTo", + "originNodeURI": { + "title": "3.MP3 Construct viable arguments and critique the reasoning of others. (:c6496676-d7cb-11e8-824f-0242ac160002:)", + "identifier": "290ba6f3-3b17-496a-8986-0b9dcb22b292", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/290ba6f3-3b17-496a-8986-0b9dcb22b292" + }, + "destinationNodeURI": { + "title": "ELD-SI.K-3.Argue Multilingual learners will…\n* Ask questions about others’ opinions\n* Support own opinions with reasons\n* Clarify and elaborate ideas based on feedback\n* Defend change in one’s own thinking\n* Revise one’s own opinions based on new information (:97c883b4-8590-454f-b222-f28298ec9a81:)", + "identifier": "37d4fc94-a76c-4f6a-8574-dcfd168b851c", + "uri": "https://standards.wida.us/uri/37d4fc94-a76c-4f6a-8574-dcfd168b851c" + }, + "lastChangeDateTime": "2022-05-09T20:29:10+00:00" + }, + { + "identifier": "f779a163-3017-4b9b-a8c9-1c4caf242680", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/f779a163-3017-4b9b-a8c9-1c4caf242680", + "associationType": "isRelatedTo", + "originNodeURI": { + "title": "4.MP3 Construct viable arguments and critique the reasoning of others. (:c6496676-d7cb-11e8-824f-0242ac160002:)", + "identifier": "685640a9-93cd-4c8c-b17b-2edc7cc4c26e", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/685640a9-93cd-4c8c-b17b-2edc7cc4c26e" + }, + "destinationNodeURI": { + "title": "ELD-MA.4-5.Argue.Interpretive Multilingual learners will… Interpret mathematics arguments by\n* __Comparing__ conjectures __with patterns, and/or rules__\n* Distinguishing __commonalities and differences__ among ideas in justifications\n* Extracting __patterns or rules from__ solution strategies to create generalizations (:97c883b4-8590-454f-b222-f28298ec9a81:)", + "identifier": "8faa97d7-7e37-405c-ab80-99b310b1c837", + "uri": "https://standards.wida.us/uri/8faa97d7-7e37-405c-ab80-99b310b1c837" + }, + "lastChangeDateTime": "2022-05-09T20:29:10+00:00" + }, + { + "identifier": "4b3b246a-2fb2-4df2-bc4e-5aa6c09f25b4", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/4b3b246a-2fb2-4df2-bc4e-5aa6c09f25b4", + "associationType": "isRelatedTo", + "originNodeURI": { + "title": "4.MP3 Construct viable arguments and critique the reasoning of others. (:c6496676-d7cb-11e8-824f-0242ac160002:)", + "identifier": "685640a9-93cd-4c8c-b17b-2edc7cc4c26e", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/685640a9-93cd-4c8c-b17b-2edc7cc4c26e" + }, + "destinationNodeURI": { + "title": "ELD-MA.4-5.Argue.Expressive Multilingual learners will… Construct mathematics arguments that\n* Create conjecture using definitions, patterns, and rules\n* Generalize commonalities and differences across cases\n* Justify conclusions with patterns or rules\n* Evaluate others’ arguments (:97c883b4-8590-454f-b222-f28298ec9a81:)", + "identifier": "2858fb1f-701c-448f-a78b-0c646b13395e", + "uri": "https://standards.wida.us/uri/2858fb1f-701c-448f-a78b-0c646b13395e" + }, + "lastChangeDateTime": "2022-05-09T20:29:10+00:00" + }, + { + "identifier": "4982b636-af6c-46da-8dca-29eb75b1658b", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/4982b636-af6c-46da-8dca-29eb75b1658b", + "associationType": "isRelatedTo", + "originNodeURI": { + "title": "4.MP3 Construct viable arguments and critique the reasoning of others. (:c6496676-d7cb-11e8-824f-0242ac160002:)", + "identifier": "685640a9-93cd-4c8c-b17b-2edc7cc4c26e", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/685640a9-93cd-4c8c-b17b-2edc7cc4c26e" + }, + "destinationNodeURI": { + "title": "ELD-SI.K-3.Argue Multilingual learners will…\n* Ask questions about others’ opinions\n* Support own opinions with reasons\n* Clarify and elaborate ideas based on feedback\n* Defend change in one’s own thinking\n* Revise one’s own opinions based on new information (:97c883b4-8590-454f-b222-f28298ec9a81:)", + "identifier": "37d4fc94-a76c-4f6a-8574-dcfd168b851c", + "uri": "https://standards.wida.us/uri/37d4fc94-a76c-4f6a-8574-dcfd168b851c" + }, + "lastChangeDateTime": "2022-05-09T20:29:10+00:00" + }, + { + "identifier": "773f0adc-317a-434f-abe9-a7658eb2546d", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/773f0adc-317a-434f-abe9-a7658eb2546d", + "associationType": "isRelatedTo", + "originNodeURI": { + "title": "5.MP3 Construct viable arguments and critique the reasoning of others. (:c6496676-d7cb-11e8-824f-0242ac160002:)", + "identifier": "77fda01e-4a52-42a8-bee2-1bc9a61382b2", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/77fda01e-4a52-42a8-bee2-1bc9a61382b2" + }, + "destinationNodeURI": { + "title": "ELD-MA.4-5.Argue.Interpretive Multilingual learners will… Interpret mathematics arguments by\n* __Comparing__ conjectures __with patterns, and/or rules__\n* Distinguishing __commonalities and differences__ among ideas in justifications\n* Extracting __patterns or rules from__ solution strategies to create generalizations (:97c883b4-8590-454f-b222-f28298ec9a81:)", + "identifier": "8faa97d7-7e37-405c-ab80-99b310b1c837", + "uri": "https://standards.wida.us/uri/8faa97d7-7e37-405c-ab80-99b310b1c837" + }, + "lastChangeDateTime": "2022-05-09T20:29:10+00:00" + }, + { + "identifier": "6958ff3d-1735-4cdc-aa98-a0b46bcd8cd1", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/6958ff3d-1735-4cdc-aa98-a0b46bcd8cd1", + "associationType": "isRelatedTo", + "originNodeURI": { + "title": "5.MP3 Construct viable arguments and critique the reasoning of others. (:c6496676-d7cb-11e8-824f-0242ac160002:)", + "identifier": "77fda01e-4a52-42a8-bee2-1bc9a61382b2", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/77fda01e-4a52-42a8-bee2-1bc9a61382b2" + }, + "destinationNodeURI": { + "title": "ELD-MA.4-5.Argue.Expressive Multilingual learners will… Construct mathematics arguments that\n* Create conjecture using definitions, patterns, and rules\n* Generalize commonalities and differences across cases\n* Justify conclusions with patterns or rules\n* Evaluate others’ arguments (:97c883b4-8590-454f-b222-f28298ec9a81:)", + "identifier": "2858fb1f-701c-448f-a78b-0c646b13395e", + "uri": "https://standards.wida.us/uri/2858fb1f-701c-448f-a78b-0c646b13395e" + }, + "lastChangeDateTime": "2022-05-09T20:29:10+00:00" + }, + { + "identifier": "070e1f3f-f666-4195-9d41-5a65a5e4dfa2", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/070e1f3f-f666-4195-9d41-5a65a5e4dfa2", + "associationType": "isRelatedTo", + "originNodeURI": { + "title": "5.MP3 Construct viable arguments and critique the reasoning of others. (:c6496676-d7cb-11e8-824f-0242ac160002:)", + "identifier": "77fda01e-4a52-42a8-bee2-1bc9a61382b2", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/77fda01e-4a52-42a8-bee2-1bc9a61382b2" + }, + "destinationNodeURI": { + "title": "ELD-SI.K-3.Argue Multilingual learners will…\n* Ask questions about others’ opinions\n* Support own opinions with reasons\n* Clarify and elaborate ideas based on feedback\n* Defend change in one’s own thinking\n* Revise one’s own opinions based on new information (:97c883b4-8590-454f-b222-f28298ec9a81:)", + "identifier": "37d4fc94-a76c-4f6a-8574-dcfd168b851c", + "uri": "https://standards.wida.us/uri/37d4fc94-a76c-4f6a-8574-dcfd168b851c" + }, + "lastChangeDateTime": "2022-05-09T20:29:10+00:00" + }, + { + "identifier": "83490b06-acb1-4872-8297-02d5d6a5544c", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/83490b06-acb1-4872-8297-02d5d6a5544c", + "associationType": "isRelatedTo", + "originNodeURI": { + "title": "6.MP3 Construct viable arguments and critique the reasoning of others. (:c6496676-d7cb-11e8-824f-0242ac160002:)", + "identifier": "feb60c25-a92d-43fa-9726-def32ea00b1e", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/feb60c25-a92d-43fa-9726-def32ea00b1e" + }, + "destinationNodeURI": { + "title": "ELD-MA.6-8.Argue.Interpretive Multilingual learners will… Interpret mathematics arguments by\n* Comparing conjectures __with previously established results__\n* Distinguishing commonalities __among strategies used__\n* __Evaluating relationships between evidence and mathematical facts__ to create generalizations (:97c883b4-8590-454f-b222-f28298ec9a81:)", + "identifier": "b56198d1-8667-4a98-a107-69f84ed10cc7", + "uri": "https://standards.wida.us/uri/b56198d1-8667-4a98-a107-69f84ed10cc7" + }, + "lastChangeDateTime": "2022-05-09T20:29:10+00:00" + }, + { + "identifier": "4a64fdbc-0266-40f1-b847-27f1e3688d71", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/4a64fdbc-0266-40f1-b847-27f1e3688d71", + "associationType": "isRelatedTo", + "originNodeURI": { + "title": "6.MP3 Construct viable arguments and critique the reasoning of others. (:c6496676-d7cb-11e8-824f-0242ac160002:)", + "identifier": "feb60c25-a92d-43fa-9726-def32ea00b1e", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/feb60c25-a92d-43fa-9726-def32ea00b1e" + }, + "destinationNodeURI": { + "title": "ELD-MA.6-8.Argue.Expressive Multilingual learners will… Construct mathematics arguments that\n* Create conjecture, using definitions __and previously established results__\n* Generalize __logic across cases__\n* Justify conclusions __with evidence and mathematical facts__\n* Evaluate __and critique__ others’ arguments (:97c883b4-8590-454f-b222-f28298ec9a81:)", + "identifier": "4d70fa55-e49b-4109-91d4-e014ad1125ca", + "uri": "https://standards.wida.us/uri/4d70fa55-e49b-4109-91d4-e014ad1125ca" + }, + "lastChangeDateTime": "2022-05-09T20:29:10+00:00" + }, + { + "identifier": "665c1db3-5a7c-4fef-ac7e-1e4af23b8c5c", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/665c1db3-5a7c-4fef-ac7e-1e4af23b8c5c", + "associationType": "isRelatedTo", + "originNodeURI": { + "title": "6.MP3 Construct viable arguments and critique the reasoning of others. (:c6496676-d7cb-11e8-824f-0242ac160002:)", + "identifier": "feb60c25-a92d-43fa-9726-def32ea00b1e", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/feb60c25-a92d-43fa-9726-def32ea00b1e" + }, + "destinationNodeURI": { + "title": "ELD-SI.4-12.Argue Multilingual learners will…\n* __Generate questions about different perspectives__\n* Support __or challenge__ an opinion, __premise, or interpretation__\n* Clarify and elaborate ideas based on feedback\n* __Evaluate changes in thinking, identifying trade-offs__\n* Refine __claims and reasoning based on new information or evidence__ (:97c883b4-8590-454f-b222-f28298ec9a81:)", + "identifier": "05fa0120-5bbd-47ee-a0e2-039e65bc7442", + "uri": "https://standards.wida.us/uri/05fa0120-5bbd-47ee-a0e2-039e65bc7442" + }, + "lastChangeDateTime": "2022-05-09T20:29:10+00:00" + }, + { + "identifier": "89329253-1027-4287-9ede-3bdbaaa12c89", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/89329253-1027-4287-9ede-3bdbaaa12c89", + "associationType": "isRelatedTo", + "originNodeURI": { + "title": "7.MP3 Construct viable arguments and critique the reasoning of others. (:c6496676-d7cb-11e8-824f-0242ac160002:)", + "identifier": "98565139-2c4f-4163-8b97-88fc347aec85", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/98565139-2c4f-4163-8b97-88fc347aec85" + }, + "destinationNodeURI": { + "title": "ELD-MA.6-8.Argue.Interpretive Multilingual learners will… Interpret mathematics arguments by\n* Comparing conjectures __with previously established results__\n* Distinguishing commonalities __among strategies used__\n* __Evaluating relationships between evidence and mathematical facts__ to create generalizations (:97c883b4-8590-454f-b222-f28298ec9a81:)", + "identifier": "b56198d1-8667-4a98-a107-69f84ed10cc7", + "uri": "https://standards.wida.us/uri/b56198d1-8667-4a98-a107-69f84ed10cc7" + }, + "lastChangeDateTime": "2022-05-09T20:29:10+00:00" + }, + { + "identifier": "ed32da24-6efc-409a-85ed-b37df25d921e", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/ed32da24-6efc-409a-85ed-b37df25d921e", + "associationType": "isRelatedTo", + "originNodeURI": { + "title": "7.MP3 Construct viable arguments and critique the reasoning of others. (:c6496676-d7cb-11e8-824f-0242ac160002:)", + "identifier": "98565139-2c4f-4163-8b97-88fc347aec85", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/98565139-2c4f-4163-8b97-88fc347aec85" + }, + "destinationNodeURI": { + "title": "ELD-MA.6-8.Argue.Expressive Multilingual learners will… Construct mathematics arguments that\n* Create conjecture, using definitions __and previously established results__\n* Generalize __logic across cases__\n* Justify conclusions __with evidence and mathematical facts__\n* Evaluate __and critique__ others’ arguments (:97c883b4-8590-454f-b222-f28298ec9a81:)", + "identifier": "4d70fa55-e49b-4109-91d4-e014ad1125ca", + "uri": "https://standards.wida.us/uri/4d70fa55-e49b-4109-91d4-e014ad1125ca" + }, + "lastChangeDateTime": "2022-05-09T20:29:10+00:00" + }, + { + "identifier": "313165fa-d756-4d88-af2d-d98a88a20746", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/313165fa-d756-4d88-af2d-d98a88a20746", + "associationType": "isRelatedTo", + "originNodeURI": { + "title": "7.MP3 Construct viable arguments and critique the reasoning of others. (:c6496676-d7cb-11e8-824f-0242ac160002:)", + "identifier": "98565139-2c4f-4163-8b97-88fc347aec85", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/98565139-2c4f-4163-8b97-88fc347aec85" + }, + "destinationNodeURI": { + "title": "ELD-SI.4-12.Argue Multilingual learners will…\n* __Generate questions about different perspectives__\n* Support __or challenge__ an opinion, __premise, or interpretation__\n* Clarify and elaborate ideas based on feedback\n* __Evaluate changes in thinking, identifying trade-offs__\n* Refine __claims and reasoning based on new information or evidence__ (:97c883b4-8590-454f-b222-f28298ec9a81:)", + "identifier": "05fa0120-5bbd-47ee-a0e2-039e65bc7442", + "uri": "https://standards.wida.us/uri/05fa0120-5bbd-47ee-a0e2-039e65bc7442" + }, + "lastChangeDateTime": "2022-05-09T20:29:10+00:00" + }, + { + "identifier": "3ff76f53-ada2-4d43-b83e-e06c9a241262", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/3ff76f53-ada2-4d43-b83e-e06c9a241262", + "associationType": "isRelatedTo", + "originNodeURI": { + "title": "8.MP3 Construct viable arguments and critique the reasoning of others. (:c6496676-d7cb-11e8-824f-0242ac160002:)", + "identifier": "5e5d9d9e-6a24-4499-b6f9-6b9c6c7e0333", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/5e5d9d9e-6a24-4499-b6f9-6b9c6c7e0333" + }, + "destinationNodeURI": { + "title": "ELD-MA.6-8.Argue.Interpretive Multilingual learners will… Interpret mathematics arguments by\n* Comparing conjectures __with previously established results__\n* Distinguishing commonalities __among strategies used__\n* __Evaluating relationships between evidence and mathematical facts__ to create generalizations (:97c883b4-8590-454f-b222-f28298ec9a81:)", + "identifier": "b56198d1-8667-4a98-a107-69f84ed10cc7", + "uri": "https://standards.wida.us/uri/b56198d1-8667-4a98-a107-69f84ed10cc7" + }, + "lastChangeDateTime": "2022-05-09T20:29:10+00:00" + }, + { + "identifier": "2495419c-0af7-417b-ac3c-0ab175d8c7f0", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/2495419c-0af7-417b-ac3c-0ab175d8c7f0", + "associationType": "isRelatedTo", + "originNodeURI": { + "title": "8.MP3 Construct viable arguments and critique the reasoning of others. (:c6496676-d7cb-11e8-824f-0242ac160002:)", + "identifier": "5e5d9d9e-6a24-4499-b6f9-6b9c6c7e0333", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/5e5d9d9e-6a24-4499-b6f9-6b9c6c7e0333" + }, + "destinationNodeURI": { + "title": "ELD-MA.6-8.Argue.Expressive Multilingual learners will… Construct mathematics arguments that\n* Create conjecture, using definitions __and previously established results__\n* Generalize __logic across cases__\n* Justify conclusions __with evidence and mathematical facts__\n* Evaluate __and critique__ others’ arguments (:97c883b4-8590-454f-b222-f28298ec9a81:)", + "identifier": "4d70fa55-e49b-4109-91d4-e014ad1125ca", + "uri": "https://standards.wida.us/uri/4d70fa55-e49b-4109-91d4-e014ad1125ca" + }, + "lastChangeDateTime": "2022-05-09T20:29:10+00:00" + }, + { + "identifier": "3da4725f-acc8-43f9-a622-d7b55ba7e2e2", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/3da4725f-acc8-43f9-a622-d7b55ba7e2e2", + "associationType": "isRelatedTo", + "originNodeURI": { + "title": "8.MP3 Construct viable arguments and critique the reasoning of others. (:c6496676-d7cb-11e8-824f-0242ac160002:)", + "identifier": "5e5d9d9e-6a24-4499-b6f9-6b9c6c7e0333", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/5e5d9d9e-6a24-4499-b6f9-6b9c6c7e0333" + }, + "destinationNodeURI": { + "title": "ELD-SI.4-12.Argue Multilingual learners will…\n* __Generate questions about different perspectives__\n* Support __or challenge__ an opinion, __premise, or interpretation__\n* Clarify and elaborate ideas based on feedback\n* __Evaluate changes in thinking, identifying trade-offs__\n* Refine __claims and reasoning based on new information or evidence__ (:97c883b4-8590-454f-b222-f28298ec9a81:)", + "identifier": "05fa0120-5bbd-47ee-a0e2-039e65bc7442", + "uri": "https://standards.wida.us/uri/05fa0120-5bbd-47ee-a0e2-039e65bc7442" + }, + "lastChangeDateTime": "2022-05-09T20:29:10+00:00" + }, + { + "identifier": "41bace77-46da-42b6-8da7-b62726cb4b02", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/41bace77-46da-42b6-8da7-b62726cb4b02", + "associationType": "isRelatedTo", + "originNodeURI": { + "title": "HS.MP3 Construct viable arguments and critique the reasoning of others. (:c6496676-d7cb-11e8-824f-0242ac160002:)", + "identifier": "590e8d5e-84cd-4b50-97f3-218568e51d61", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/590e8d5e-84cd-4b50-97f3-218568e51d61" + }, + "destinationNodeURI": { + "title": "ELD-MA.9-12.Argue.Interpretive Multilingual learners will… Interpret mathematics arguments by\n* Comparing conjectures with previously established results and __stated assumptions__\n* Distinguishing correct from __flawed logic__\n* Evaluating relationships __among evidence and mathematical principles__ to create generalizations (:97c883b4-8590-454f-b222-f28298ec9a81:)", + "identifier": "ab8acb19-34c6-4030-8ddf-3eae8f9286d6", + "uri": "https://standards.wida.us/uri/ab8acb19-34c6-4030-8ddf-3eae8f9286d6" + }, + "lastChangeDateTime": "2022-05-09T20:29:10+00:00" + }, + { + "identifier": "465b7786-dc35-426a-8e3e-d1ebeea18876", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/465b7786-dc35-426a-8e3e-d1ebeea18876", + "associationType": "isRelatedTo", + "originNodeURI": { + "title": "HS.MP3 Construct viable arguments and critique the reasoning of others. (:c6496676-d7cb-11e8-824f-0242ac160002:)", + "identifier": "590e8d5e-84cd-4b50-97f3-218568e51d61", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/590e8d5e-84cd-4b50-97f3-218568e51d61" + }, + "destinationNodeURI": { + "title": "ELD-MA.9-12.Argue.Expressive Multilingual learners will… Construct mathematics arguments that\n* Create precise conjecture, using definitions, previously established results, __and stated assumptions__\n* Generalize logical relationships across cases\n* Justify __(and refute)__ conclusions with evidence and mathematical __principles__\n* Evaluate __and extend__ others’ arguments (:97c883b4-8590-454f-b222-f28298ec9a81:)", + "identifier": "10a207a0-7e34-4835-b6b6-d0ce359cc7e0", + "uri": "https://standards.wida.us/uri/10a207a0-7e34-4835-b6b6-d0ce359cc7e0" + }, + "lastChangeDateTime": "2022-05-09T20:29:10+00:00" + }, + { + "identifier": "1a5d5410-2d05-4ef1-8edb-92067c50a8c9", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/1a5d5410-2d05-4ef1-8edb-92067c50a8c9", + "associationType": "isRelatedTo", + "originNodeURI": { + "title": "HS.MP3 Construct viable arguments and critique the reasoning of others. (:c6496676-d7cb-11e8-824f-0242ac160002:)", + "identifier": "590e8d5e-84cd-4b50-97f3-218568e51d61", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/590e8d5e-84cd-4b50-97f3-218568e51d61" + }, + "destinationNodeURI": { + "title": "ELD-SI.4-12.Argue Multilingual learners will…\n* __Generate questions about different perspectives__\n* Support __or challenge__ an opinion, __premise, or interpretation__\n* Clarify and elaborate ideas based on feedback\n* __Evaluate changes in thinking, identifying trade-offs__\n* Refine __claims and reasoning based on new information or evidence__ (:97c883b4-8590-454f-b222-f28298ec9a81:)", + "identifier": "05fa0120-5bbd-47ee-a0e2-039e65bc7442", + "uri": "https://standards.wida.us/uri/05fa0120-5bbd-47ee-a0e2-039e65bc7442" + }, + "lastChangeDateTime": "2022-05-09T20:29:10+00:00" + }, + { + "identifier": "13278546-5c50-4da1-82f3-54063bab1a3a", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/13278546-5c50-4da1-82f3-54063bab1a3a", + "associationType": "isRelatedTo", + "originNodeURI": { + "title": "K.MP4 Model with mathematics. (:c6496676-d7cb-11e8-824f-0242ac160002:)", + "identifier": "0b381fd7-8e97-4642-8a1a-7bb046873b51", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/0b381fd7-8e97-4642-8a1a-7bb046873b51" + }, + "destinationNodeURI": { + "title": "ELD-MA.K.Inform.Interpretive Multilingual learners will…\nInterpret mathematical informational texts (with prompting and support) by\n* Identifying concept or object\n* Describing quantities and attributes\n (:97c883b4-8590-454f-b222-f28298ec9a81:)", + "identifier": "8a95d57e-26ba-49ed-b2a9-c22ad743532c", + "uri": "https://standards.wida.us/uri/8a95d57e-26ba-49ed-b2a9-c22ad743532c" + }, + "lastChangeDateTime": "2022-05-09T20:29:10+00:00" + }, + { + "identifier": "f78b62c0-2aa9-4c6f-871e-8fab12a3764d", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/f78b62c0-2aa9-4c6f-871e-8fab12a3764d", + "associationType": "isRelatedTo", + "originNodeURI": { + "title": "K.MP4 Model with mathematics. (:c6496676-d7cb-11e8-824f-0242ac160002:)", + "identifier": "0b381fd7-8e97-4642-8a1a-7bb046873b51", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/0b381fd7-8e97-4642-8a1a-7bb046873b51" + }, + "destinationNodeURI": { + "title": "ELD-MA.K.Inform.Expressive Multilingual learners will… Construct mathematical informational texts (with prompting and support) that\n* Define or classify concept or entity\n* Describe a concept or entity\n* Compare/contrast concepts or entities (:97c883b4-8590-454f-b222-f28298ec9a81:)", + "identifier": "56fc8a8e-8253-4403-8865-8829b19185f3", + "uri": "https://standards.wida.us/uri/56fc8a8e-8253-4403-8865-8829b19185f3" + }, + "lastChangeDateTime": "2022-05-09T20:29:10+00:00" + }, + { + "identifier": "5ddabac9-6544-4ab6-a077-22af605ffbd0", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/5ddabac9-6544-4ab6-a077-22af605ffbd0", + "associationType": "isRelatedTo", + "originNodeURI": { + "title": "K.MP4 Model with mathematics. (:c6496676-d7cb-11e8-824f-0242ac160002:)", + "identifier": "0b381fd7-8e97-4642-8a1a-7bb046873b51", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/0b381fd7-8e97-4642-8a1a-7bb046873b51" + }, + "destinationNodeURI": { + "title": "ELD-SI.K-3.Inform Multilingual learners will…\n* Define and classify objects or concepts\n* Describe characteristics, patterns, or behavior\n* Describe parts and wholes\n* Sort, clarify, and summarize ideas\n* Summarize information from interaction with others and from learning experiences\n (:97c883b4-8590-454f-b222-f28298ec9a81:)", + "identifier": "02f34f50-2394-4aa5-a453-3907a2e2d9f3", + "uri": "https://standards.wida.us/uri/02f34f50-2394-4aa5-a453-3907a2e2d9f3" + }, + "lastChangeDateTime": "2022-05-09T20:29:10+00:00" + }, + { + "identifier": "bf010e15-1d83-484b-b001-8be66d48f59a", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/bf010e15-1d83-484b-b001-8be66d48f59a", + "associationType": "isRelatedTo", + "originNodeURI": { + "title": "K.MP4 Model with mathematics. (:c6496676-d7cb-11e8-824f-0242ac160002:)", + "identifier": "0b381fd7-8e97-4642-8a1a-7bb046873b51", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/0b381fd7-8e97-4642-8a1a-7bb046873b51" + }, + "destinationNodeURI": { + "title": "ELD-SI.K-3.Explain Multilingual learners will…\n* Share initial thinking with others\n* Follow and describe cycles in diagrams, steps in procedures, or causes and effects\n* Compare and contrast objects or concepts\n* Offer ideas and suggestions\n* Act on feedback to revise understandings of how or why something works\n (:97c883b4-8590-454f-b222-f28298ec9a81:)", + "identifier": "6c5fff3a-c798-4671-a227-c89a994497a6", + "uri": "https://standards.wida.us/uri/6c5fff3a-c798-4671-a227-c89a994497a6" + }, + "lastChangeDateTime": "2022-05-09T20:29:10+00:00" + }, + { + "identifier": "aeafc7ab-5092-4519-85cb-26101768de02", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/aeafc7ab-5092-4519-85cb-26101768de02", + "associationType": "isRelatedTo", + "originNodeURI": { + "title": "1.MP4 Model with mathematics. (:c6496676-d7cb-11e8-824f-0242ac160002:)", + "identifier": "6699998b-01fa-406d-8827-3b62673f6515", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6699998b-01fa-406d-8827-3b62673f6515" + }, + "destinationNodeURI": { + "title": "ELD-MA.1.Inform.Interpretive Multilingual learners will… Interpret mathematical informational texts by\n* Identifying concept __or entity__\n* Describing attributes and __characteristics__ (:97c883b4-8590-454f-b222-f28298ec9a81:)", + "identifier": "ba2b02ea-ee35-442b-a452-dd93cb0073de", + "uri": "https://standards.wida.us/uri/ba2b02ea-ee35-442b-a452-dd93cb0073de" + }, + "lastChangeDateTime": "2022-05-09T20:29:10+00:00" + }, + { + "identifier": "d236867b-33d0-4b60-a1e0-0d0a44d4ef48", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/d236867b-33d0-4b60-a1e0-0d0a44d4ef48", + "associationType": "isRelatedTo", + "originNodeURI": { + "title": "1.MP4 Model with mathematics. (:c6496676-d7cb-11e8-824f-0242ac160002:)", + "identifier": "6699998b-01fa-406d-8827-3b62673f6515", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6699998b-01fa-406d-8827-3b62673f6515" + }, + "destinationNodeURI": { + "title": "ELD-MA.1.Inform.Expressive Multilingual learners will… Construct mathematical informational texts that\n* Define or classify concept or entity\n* Describe a concept or entity\n* Compare/contrast concepts or entities (:97c883b4-8590-454f-b222-f28298ec9a81:)", + "identifier": "acb17527-5967-4e98-9b80-d6d1f5f951b2", + "uri": "https://standards.wida.us/uri/acb17527-5967-4e98-9b80-d6d1f5f951b2" + }, + "lastChangeDateTime": "2022-05-09T20:29:10+00:00" + }, + { + "identifier": "bc34ba1c-85c9-4996-bf60-24cad34a4635", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/bc34ba1c-85c9-4996-bf60-24cad34a4635", + "associationType": "isRelatedTo", + "originNodeURI": { + "title": "1.MP4 Model with mathematics. (:c6496676-d7cb-11e8-824f-0242ac160002:)", + "identifier": "6699998b-01fa-406d-8827-3b62673f6515", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6699998b-01fa-406d-8827-3b62673f6515" + }, + "destinationNodeURI": { + "title": "ELD-SI.K-3.Inform Multilingual learners will…\n* Define and classify objects or concepts\n* Describe characteristics, patterns, or behavior\n* Describe parts and wholes\n* Sort, clarify, and summarize ideas\n* Summarize information from interaction with others and from learning experiences\n (:97c883b4-8590-454f-b222-f28298ec9a81:)", + "identifier": "02f34f50-2394-4aa5-a453-3907a2e2d9f3", + "uri": "https://standards.wida.us/uri/02f34f50-2394-4aa5-a453-3907a2e2d9f3" + }, + "lastChangeDateTime": "2022-05-09T20:29:10+00:00" + }, + { + "identifier": "61f24ece-e9b0-478e-ad65-7fd7d0b4e831", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/61f24ece-e9b0-478e-ad65-7fd7d0b4e831", + "associationType": "isRelatedTo", + "originNodeURI": { + "title": "1.MP4 Model with mathematics. (:c6496676-d7cb-11e8-824f-0242ac160002:)", + "identifier": "6699998b-01fa-406d-8827-3b62673f6515", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6699998b-01fa-406d-8827-3b62673f6515" + }, + "destinationNodeURI": { + "title": "ELD-SI.K-3.Explain Multilingual learners will…\n* Share initial thinking with others\n* Follow and describe cycles in diagrams, steps in procedures, or causes and effects\n* Compare and contrast objects or concepts\n* Offer ideas and suggestions\n* Act on feedback to revise understandings of how or why something works\n (:97c883b4-8590-454f-b222-f28298ec9a81:)", + "identifier": "6c5fff3a-c798-4671-a227-c89a994497a6", + "uri": "https://standards.wida.us/uri/6c5fff3a-c798-4671-a227-c89a994497a6" + }, + "lastChangeDateTime": "2022-05-09T20:29:10+00:00" + }, + { + "identifier": "25d0fff5-8433-4206-9bcc-09be41f4e498", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/25d0fff5-8433-4206-9bcc-09be41f4e498", + "associationType": "isRelatedTo", + "originNodeURI": { + "title": "2.MP4 Model with mathematics. (:c6496676-d7cb-11e8-824f-0242ac160002:)", + "identifier": "9afbe749-6c7f-480d-9d10-0e4a0f5b48cf", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/9afbe749-6c7f-480d-9d10-0e4a0f5b48cf" + }, + "destinationNodeURI": { + "title": "ELD-MA.2-3.Explain.Interpretive Multilingual learners will… Interpret mathematical explanations by\n* Identifying concept or entity\n* __Analyzing plan for problem-solving steps__\n* __Evaluating simple pattern or structure__ (:97c883b4-8590-454f-b222-f28298ec9a81:)", + "identifier": "2e261b10-856a-4fee-bedd-54213c90edd1", + "uri": "https://standards.wida.us/uri/2e261b10-856a-4fee-bedd-54213c90edd1" + }, + "lastChangeDateTime": "2022-05-09T20:29:10+00:00" + }, + { + "identifier": "15d6ea2d-13be-49bf-997c-ebff7630707b", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/15d6ea2d-13be-49bf-997c-ebff7630707b", + "associationType": "isRelatedTo", + "originNodeURI": { + "title": "2.MP4 Model with mathematics. (:c6496676-d7cb-11e8-824f-0242ac160002:)", + "identifier": "9afbe749-6c7f-480d-9d10-0e4a0f5b48cf", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/9afbe749-6c7f-480d-9d10-0e4a0f5b48cf" + }, + "destinationNodeURI": { + "title": "ELD-MA.2-3.Explain.Expressive Multilingual learners will… Construct mathematical explanations that\n* Introduce concept or entity\n* __Describe solution and steps used to solve problem with others__\n* __State reasoning used to generate solution__ (:97c883b4-8590-454f-b222-f28298ec9a81:)", + "identifier": "a292d38b-ce22-463b-8bde-07d6f5e13917", + "uri": "https://standards.wida.us/uri/a292d38b-ce22-463b-8bde-07d6f5e13917" + }, + "lastChangeDateTime": "2022-05-09T20:29:10+00:00" + }, + { + "identifier": "1978da89-b71c-43ae-bf0a-2d6732b278d0", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/1978da89-b71c-43ae-bf0a-2d6732b278d0", + "associationType": "isRelatedTo", + "originNodeURI": { + "title": "2.MP4 Model with mathematics. (:c6496676-d7cb-11e8-824f-0242ac160002:)", + "identifier": "9afbe749-6c7f-480d-9d10-0e4a0f5b48cf", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/9afbe749-6c7f-480d-9d10-0e4a0f5b48cf" + }, + "destinationNodeURI": { + "title": "ELD-SI.K-3.Inform Multilingual learners will…\n* Define and classify objects or concepts\n* Describe characteristics, patterns, or behavior\n* Describe parts and wholes\n* Sort, clarify, and summarize ideas\n* Summarize information from interaction with others and from learning experiences\n (:97c883b4-8590-454f-b222-f28298ec9a81:)", + "identifier": "02f34f50-2394-4aa5-a453-3907a2e2d9f3", + "uri": "https://standards.wida.us/uri/02f34f50-2394-4aa5-a453-3907a2e2d9f3" + }, + "lastChangeDateTime": "2022-05-09T20:29:10+00:00" + }, + { + "identifier": "6143e107-8675-4f14-aac1-90e62498f0e0", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/6143e107-8675-4f14-aac1-90e62498f0e0", + "associationType": "isRelatedTo", + "originNodeURI": { + "title": "2.MP4 Model with mathematics. (:c6496676-d7cb-11e8-824f-0242ac160002:)", + "identifier": "9afbe749-6c7f-480d-9d10-0e4a0f5b48cf", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/9afbe749-6c7f-480d-9d10-0e4a0f5b48cf" + }, + "destinationNodeURI": { + "title": "ELD-SI.K-3.Explain Multilingual learners will…\n* Share initial thinking with others\n* Follow and describe cycles in diagrams, steps in procedures, or causes and effects\n* Compare and contrast objects or concepts\n* Offer ideas and suggestions\n* Act on feedback to revise understandings of how or why something works\n (:97c883b4-8590-454f-b222-f28298ec9a81:)", + "identifier": "6c5fff3a-c798-4671-a227-c89a994497a6", + "uri": "https://standards.wida.us/uri/6c5fff3a-c798-4671-a227-c89a994497a6" + }, + "lastChangeDateTime": "2022-05-09T20:29:10+00:00" + }, + { + "identifier": "8d5352c1-ac5f-49f7-af73-0bee6b8947af", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/8d5352c1-ac5f-49f7-af73-0bee6b8947af", + "associationType": "isRelatedTo", + "originNodeURI": { + "title": "3.MP4 Model with mathematics. (:c6496676-d7cb-11e8-824f-0242ac160002:)", + "identifier": "7b025668-d9c1-40dc-99f9-8d58a2b647d5", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/7b025668-d9c1-40dc-99f9-8d58a2b647d5" + }, + "destinationNodeURI": { + "title": "ELD-MA.2-3.Explain.Interpretive Multilingual learners will… Interpret mathematical explanations by\n* Identifying concept or entity\n* __Analyzing plan for problem-solving steps__\n* __Evaluating simple pattern or structure__ (:97c883b4-8590-454f-b222-f28298ec9a81:)", + "identifier": "2e261b10-856a-4fee-bedd-54213c90edd1", + "uri": "https://standards.wida.us/uri/2e261b10-856a-4fee-bedd-54213c90edd1" + }, + "lastChangeDateTime": "2022-05-09T20:29:10+00:00" + }, + { + "identifier": "50f2cf69-1d7f-4749-a9a3-03f5f15d9845", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/50f2cf69-1d7f-4749-a9a3-03f5f15d9845", + "associationType": "isRelatedTo", + "originNodeURI": { + "title": "3.MP4 Model with mathematics. (:c6496676-d7cb-11e8-824f-0242ac160002:)", + "identifier": "7b025668-d9c1-40dc-99f9-8d58a2b647d5", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/7b025668-d9c1-40dc-99f9-8d58a2b647d5" + }, + "destinationNodeURI": { + "title": "ELD-MA.2-3.Explain.Expressive Multilingual learners will… Construct mathematical explanations that\n* Introduce concept or entity\n* __Describe solution and steps used to solve problem with others__\n* __State reasoning used to generate solution__ (:97c883b4-8590-454f-b222-f28298ec9a81:)", + "identifier": "a292d38b-ce22-463b-8bde-07d6f5e13917", + "uri": "https://standards.wida.us/uri/a292d38b-ce22-463b-8bde-07d6f5e13917" + }, + "lastChangeDateTime": "2022-05-09T20:29:10+00:00" + }, + { + "identifier": "560de71b-3c8d-46c0-8bdb-867e6688538d", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/560de71b-3c8d-46c0-8bdb-867e6688538d", + "associationType": "isRelatedTo", + "originNodeURI": { + "title": "3.MP4 Model with mathematics. (:c6496676-d7cb-11e8-824f-0242ac160002:)", + "identifier": "7b025668-d9c1-40dc-99f9-8d58a2b647d5", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/7b025668-d9c1-40dc-99f9-8d58a2b647d5" + }, + "destinationNodeURI": { + "title": "ELD-SI.K-3.Inform Multilingual learners will…\n* Define and classify objects or concepts\n* Describe characteristics, patterns, or behavior\n* Describe parts and wholes\n* Sort, clarify, and summarize ideas\n* Summarize information from interaction with others and from learning experiences\n (:97c883b4-8590-454f-b222-f28298ec9a81:)", + "identifier": "02f34f50-2394-4aa5-a453-3907a2e2d9f3", + "uri": "https://standards.wida.us/uri/02f34f50-2394-4aa5-a453-3907a2e2d9f3" + }, + "lastChangeDateTime": "2022-05-09T20:29:10+00:00" + }, + { + "identifier": "6cd54245-a8d9-451c-8018-15594291e5e4", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/6cd54245-a8d9-451c-8018-15594291e5e4", + "associationType": "isRelatedTo", + "originNodeURI": { + "title": "3.MP4 Model with mathematics. (:c6496676-d7cb-11e8-824f-0242ac160002:)", + "identifier": "7b025668-d9c1-40dc-99f9-8d58a2b647d5", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/7b025668-d9c1-40dc-99f9-8d58a2b647d5" + }, + "destinationNodeURI": { + "title": "ELD-SI.K-3.Explain Multilingual learners will…\n* Share initial thinking with others\n* Follow and describe cycles in diagrams, steps in procedures, or causes and effects\n* Compare and contrast objects or concepts\n* Offer ideas and suggestions\n* Act on feedback to revise understandings of how or why something works\n (:97c883b4-8590-454f-b222-f28298ec9a81:)", + "identifier": "6c5fff3a-c798-4671-a227-c89a994497a6", + "uri": "https://standards.wida.us/uri/6c5fff3a-c798-4671-a227-c89a994497a6" + }, + "lastChangeDateTime": "2022-05-09T20:29:10+00:00" + }, + { + "identifier": "390f5621-403d-4065-a89a-3e5095db75fe", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/390f5621-403d-4065-a89a-3e5095db75fe", + "associationType": "isRelatedTo", + "originNodeURI": { + "title": "4.MP4 Model with mathematics. (:c6496676-d7cb-11e8-824f-0242ac160002:)", + "identifier": "c59b544d-f3a8-45fe-8ce5-5855d772f5c0", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/c59b544d-f3a8-45fe-8ce5-5855d772f5c0" + }, + "destinationNodeURI": { + "title": "ELD-MA.4-5.Explain.Interpretive Multilingual learners will… Interpret mathematical explanations by\n* Identifying concept or entity\n* Analyzing problem-solving steps\n* Evaluating a __pattern__ or structure that follows a given rule (:97c883b4-8590-454f-b222-f28298ec9a81:)", + "identifier": "b41b7a96-6061-4d5b-95f8-97a744b4f2de", + "uri": "https://standards.wida.us/uri/b41b7a96-6061-4d5b-95f8-97a744b4f2de" + }, + "lastChangeDateTime": "2022-05-09T20:29:10+00:00" + }, + { + "identifier": "d32864c4-abed-48ec-a468-6f3a60508ee6", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/d32864c4-abed-48ec-a468-6f3a60508ee6", + "associationType": "isRelatedTo", + "originNodeURI": { + "title": "4.MP4 Model with mathematics. (:c6496676-d7cb-11e8-824f-0242ac160002:)", + "identifier": "c59b544d-f3a8-45fe-8ce5-5855d772f5c0", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/c59b544d-f3a8-45fe-8ce5-5855d772f5c0" + }, + "destinationNodeURI": { + "title": "ELD-MA.4-5.Explain.Expressive Multilingual learners will…\n\nConstruct mathematical explanations that\n* Introduce concept or entity\n* Share solution __with others__\n* Describe data and/or steps __to solve problem__\n* State reasoning used to generate solution (:97c883b4-8590-454f-b222-f28298ec9a81:)", + "identifier": "b9bd7205-dc82-4577-82bd-adb38360f785", + "uri": "https://standards.wida.us/uri/b9bd7205-dc82-4577-82bd-adb38360f785" + }, + "lastChangeDateTime": "2022-05-09T20:29:10+00:00" + }, + { + "identifier": "b118e485-dc1b-428d-83e3-83ea3954d090", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/b118e485-dc1b-428d-83e3-83ea3954d090", + "associationType": "isRelatedTo", + "originNodeURI": { + "title": "4.MP4 Model with mathematics. (:c6496676-d7cb-11e8-824f-0242ac160002:)", + "identifier": "c59b544d-f3a8-45fe-8ce5-5855d772f5c0", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/c59b544d-f3a8-45fe-8ce5-5855d772f5c0" + }, + "destinationNodeURI": { + "title": "ELD-SI.4-12.Inform Multilingual learners will…\n* Define and classify __facts and interpretations; determine what is known vs. unknown__\n* __Report on explicit and inferred characteristics, patterns, or behavior__\n* Describe the parts and wholes __of a system__\n* Sort, clarify, and summarize __relationships__\n* Summarize __most important aspects of information__ (:97c883b4-8590-454f-b222-f28298ec9a81:)", + "identifier": "2fb8c896-09a1-4dcc-b08f-c0c2f68ba2f5", + "uri": "https://standards.wida.us/uri/2fb8c896-09a1-4dcc-b08f-c0c2f68ba2f5" + }, + "lastChangeDateTime": "2022-05-09T20:29:10+00:00" + }, + { + "identifier": "e4a95dfe-45e9-40cc-b68a-066969c65690", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/e4a95dfe-45e9-40cc-b68a-066969c65690", + "associationType": "isRelatedTo", + "originNodeURI": { + "title": "4.MP4 Model with mathematics. (:c6496676-d7cb-11e8-824f-0242ac160002:)", + "identifier": "c59b544d-f3a8-45fe-8ce5-5855d772f5c0", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/c59b544d-f3a8-45fe-8ce5-5855d772f5c0" + }, + "destinationNodeURI": { + "title": "ELD-SI.4-12.Explain Multilingual learners will…\n* __Generate and convey initial thinking__\n* Follow and describe cycles __and sequences of steps or procedures and their causes and effects__\n* Compare changing __variables, factors, and circumstances__\n* Offer __alternatives to extend or deepen awareness of factors that contribute to particular outcomes__\n* Act on feedback to revise understandings of how or why something is or works __in particular ways__ (:97c883b4-8590-454f-b222-f28298ec9a81:)", + "identifier": "4d380613-fde8-41f9-b3c7-3313a20d813b", + "uri": "https://standards.wida.us/uri/4d380613-fde8-41f9-b3c7-3313a20d813b" + }, + "lastChangeDateTime": "2022-05-09T20:29:10+00:00" + }, + { + "identifier": "8f5800b1-ed45-4ad6-85ba-b025cfed2514", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/8f5800b1-ed45-4ad6-85ba-b025cfed2514", + "associationType": "isRelatedTo", + "originNodeURI": { + "title": "5.MP4 Model with mathematics. (:c6496676-d7cb-11e8-824f-0242ac160002:)", + "identifier": "1241dd99-c8f2-4228-adb7-0e4675ed23d4", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/1241dd99-c8f2-4228-adb7-0e4675ed23d4" + }, + "destinationNodeURI": { + "title": "ELD-MA.4-5.Explain.Interpretive Multilingual learners will… Interpret mathematical explanations by\n* Identifying concept or entity\n* Analyzing problem-solving steps\n* Evaluating a __pattern__ or structure that follows a given rule (:97c883b4-8590-454f-b222-f28298ec9a81:)", + "identifier": "b41b7a96-6061-4d5b-95f8-97a744b4f2de", + "uri": "https://standards.wida.us/uri/b41b7a96-6061-4d5b-95f8-97a744b4f2de" + }, + "lastChangeDateTime": "2022-05-09T20:29:10+00:00" + }, + { + "identifier": "7eacce0e-24a0-4208-b2c9-bfffb1de6cae", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/7eacce0e-24a0-4208-b2c9-bfffb1de6cae", + "associationType": "isRelatedTo", + "originNodeURI": { + "title": "5.MP4 Model with mathematics. (:c6496676-d7cb-11e8-824f-0242ac160002:)", + "identifier": "1241dd99-c8f2-4228-adb7-0e4675ed23d4", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/1241dd99-c8f2-4228-adb7-0e4675ed23d4" + }, + "destinationNodeURI": { + "title": "ELD-MA.4-5.Explain.Expressive Multilingual learners will…\n\nConstruct mathematical explanations that\n* Introduce concept or entity\n* Share solution __with others__\n* Describe data and/or steps __to solve problem__\n* State reasoning used to generate solution (:97c883b4-8590-454f-b222-f28298ec9a81:)", + "identifier": "b9bd7205-dc82-4577-82bd-adb38360f785", + "uri": "https://standards.wida.us/uri/b9bd7205-dc82-4577-82bd-adb38360f785" + }, + "lastChangeDateTime": "2022-05-09T20:29:10+00:00" + }, + { + "identifier": "ccceff37-41b6-4db8-afd4-3097ac8c3979", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/ccceff37-41b6-4db8-afd4-3097ac8c3979", + "associationType": "isRelatedTo", + "originNodeURI": { + "title": "5.MP4 Model with mathematics. (:c6496676-d7cb-11e8-824f-0242ac160002:)", + "identifier": "1241dd99-c8f2-4228-adb7-0e4675ed23d4", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/1241dd99-c8f2-4228-adb7-0e4675ed23d4" + }, + "destinationNodeURI": { + "title": "ELD-SI.4-12.Inform Multilingual learners will…\n* Define and classify __facts and interpretations; determine what is known vs. unknown__\n* __Report on explicit and inferred characteristics, patterns, or behavior__\n* Describe the parts and wholes __of a system__\n* Sort, clarify, and summarize __relationships__\n* Summarize __most important aspects of information__ (:97c883b4-8590-454f-b222-f28298ec9a81:)", + "identifier": "2fb8c896-09a1-4dcc-b08f-c0c2f68ba2f5", + "uri": "https://standards.wida.us/uri/2fb8c896-09a1-4dcc-b08f-c0c2f68ba2f5" + }, + "lastChangeDateTime": "2022-05-09T20:29:10+00:00" + }, + { + "identifier": "caed4e0b-2fa9-41ea-bda9-8d3fe760ada1", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/caed4e0b-2fa9-41ea-bda9-8d3fe760ada1", + "associationType": "isRelatedTo", + "originNodeURI": { + "title": "5.MP4 Model with mathematics. (:c6496676-d7cb-11e8-824f-0242ac160002:)", + "identifier": "1241dd99-c8f2-4228-adb7-0e4675ed23d4", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/1241dd99-c8f2-4228-adb7-0e4675ed23d4" + }, + "destinationNodeURI": { + "title": "ELD-SI.4-12.Explain Multilingual learners will…\n* __Generate and convey initial thinking__\n* Follow and describe cycles __and sequences of steps or procedures and their causes and effects__\n* Compare changing __variables, factors, and circumstances__\n* Offer __alternatives to extend or deepen awareness of factors that contribute to particular outcomes__\n* Act on feedback to revise understandings of how or why something is or works __in particular ways__ (:97c883b4-8590-454f-b222-f28298ec9a81:)", + "identifier": "4d380613-fde8-41f9-b3c7-3313a20d813b", + "uri": "https://standards.wida.us/uri/4d380613-fde8-41f9-b3c7-3313a20d813b" + }, + "lastChangeDateTime": "2022-05-09T20:29:10+00:00" + }, + { + "identifier": "7ce6aba0-c19f-4de0-8d2a-65261559034d", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/7ce6aba0-c19f-4de0-8d2a-65261559034d", + "associationType": "isRelatedTo", + "originNodeURI": { + "title": "6.MP4 Model with mathematics. (:c6496676-d7cb-11e8-824f-0242ac160002:)", + "identifier": "9bcc0416-1cf0-43fa-a3f1-cd7e730a1dbe", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/9bcc0416-1cf0-43fa-a3f1-cd7e730a1dbe" + }, + "destinationNodeURI": { + "title": "ELD-MA.6-8.Explain.Interpretive Multilingual learners will… Interpret mathematical explanations by\n* Identifying concept or entity\n* Analyzing possible __ways to represent and solve a problem__\n* Evaluating __model and rationale for underlying relationships in selected problem-solving approach__ (:97c883b4-8590-454f-b222-f28298ec9a81:)", + "identifier": "b380aaf9-f435-4b8d-b65e-c92fa5599471", + "uri": "https://standards.wida.us/uri/b380aaf9-f435-4b8d-b65e-c92fa5599471" + }, + "lastChangeDateTime": "2022-05-09T20:29:10+00:00" + }, + { + "identifier": "a74f3ebf-4a03-4957-b58e-55b335232e7f", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/a74f3ebf-4a03-4957-b58e-55b335232e7f", + "associationType": "isRelatedTo", + "originNodeURI": { + "title": "6.MP4 Model with mathematics. (:c6496676-d7cb-11e8-824f-0242ac160002:)", + "identifier": "9bcc0416-1cf0-43fa-a3f1-cd7e730a1dbe", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/9bcc0416-1cf0-43fa-a3f1-cd7e730a1dbe" + }, + "destinationNodeURI": { + "title": "ELD-MA.6-8.Explain.Expressive Multilingual learners will…\n\nConstruct mathematical explanations that\n* Introduce concept or entity\n* Share solution with others\n* Describe data and/or __problem-solving strategy__\n* State reasoning used to generate solution (:97c883b4-8590-454f-b222-f28298ec9a81:)", + "identifier": "b5f229b5-53d0-4a5e-86b6-cda8d0ac149e", + "uri": "https://standards.wida.us/uri/b5f229b5-53d0-4a5e-86b6-cda8d0ac149e" + }, + "lastChangeDateTime": "2022-05-09T20:29:10+00:00" + }, + { + "identifier": "d5cdd326-2964-4f4d-a050-e03b3f13dcd6", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/d5cdd326-2964-4f4d-a050-e03b3f13dcd6", + "associationType": "isRelatedTo", + "originNodeURI": { + "title": "6.MP4 Model with mathematics. (:c6496676-d7cb-11e8-824f-0242ac160002:)", + "identifier": "9bcc0416-1cf0-43fa-a3f1-cd7e730a1dbe", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/9bcc0416-1cf0-43fa-a3f1-cd7e730a1dbe" + }, + "destinationNodeURI": { + "title": "ELD-SI.4-12.Inform Multilingual learners will…\n* Define and classify __facts and interpretations; determine what is known vs. unknown__\n* __Report on explicit and inferred characteristics, patterns, or behavior__\n* Describe the parts and wholes __of a system__\n* Sort, clarify, and summarize __relationships__\n* Summarize __most important aspects of information__ (:97c883b4-8590-454f-b222-f28298ec9a81:)", + "identifier": "2fb8c896-09a1-4dcc-b08f-c0c2f68ba2f5", + "uri": "https://standards.wida.us/uri/2fb8c896-09a1-4dcc-b08f-c0c2f68ba2f5" + }, + "lastChangeDateTime": "2022-05-09T20:29:10+00:00" + }, + { + "identifier": "de750102-6782-42e0-82a3-a4439b2d736d", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/de750102-6782-42e0-82a3-a4439b2d736d", + "associationType": "isRelatedTo", + "originNodeURI": { + "title": "6.MP4 Model with mathematics. (:c6496676-d7cb-11e8-824f-0242ac160002:)", + "identifier": "9bcc0416-1cf0-43fa-a3f1-cd7e730a1dbe", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/9bcc0416-1cf0-43fa-a3f1-cd7e730a1dbe" + }, + "destinationNodeURI": { + "title": "ELD-SI.4-12.Explain Multilingual learners will…\n* __Generate and convey initial thinking__\n* Follow and describe cycles __and sequences of steps or procedures and their causes and effects__\n* Compare changing __variables, factors, and circumstances__\n* Offer __alternatives to extend or deepen awareness of factors that contribute to particular outcomes__\n* Act on feedback to revise understandings of how or why something is or works __in particular ways__ (:97c883b4-8590-454f-b222-f28298ec9a81:)", + "identifier": "4d380613-fde8-41f9-b3c7-3313a20d813b", + "uri": "https://standards.wida.us/uri/4d380613-fde8-41f9-b3c7-3313a20d813b" + }, + "lastChangeDateTime": "2022-05-09T20:29:10+00:00" + }, + { + "identifier": "38af8bb2-00ee-43df-8101-becce934c866", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/38af8bb2-00ee-43df-8101-becce934c866", + "associationType": "isRelatedTo", + "originNodeURI": { + "title": "7.MP4 Model with mathematics. (:c6496676-d7cb-11e8-824f-0242ac160002:)", + "identifier": "87c18c39-c179-40e5-89fa-ecb921735ecc", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/87c18c39-c179-40e5-89fa-ecb921735ecc" + }, + "destinationNodeURI": { + "title": "ELD-MA.6-8.Explain.Interpretive Multilingual learners will… Interpret mathematical explanations by\n* Identifying concept or entity\n* Analyzing possible __ways to represent and solve a problem__\n* Evaluating __model and rationale for underlying relationships in selected problem-solving approach__ (:97c883b4-8590-454f-b222-f28298ec9a81:)", + "identifier": "b380aaf9-f435-4b8d-b65e-c92fa5599471", + "uri": "https://standards.wida.us/uri/b380aaf9-f435-4b8d-b65e-c92fa5599471" + }, + "lastChangeDateTime": "2022-05-09T20:29:10+00:00" + }, + { + "identifier": "5a602087-9da3-4f2f-98d4-8b843b531e36", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/5a602087-9da3-4f2f-98d4-8b843b531e36", + "associationType": "isRelatedTo", + "originNodeURI": { + "title": "7.MP4 Model with mathematics. (:c6496676-d7cb-11e8-824f-0242ac160002:)", + "identifier": "87c18c39-c179-40e5-89fa-ecb921735ecc", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/87c18c39-c179-40e5-89fa-ecb921735ecc" + }, + "destinationNodeURI": { + "title": "ELD-MA.6-8.Explain.Expressive Multilingual learners will…\n\nConstruct mathematical explanations that\n* Introduce concept or entity\n* Share solution with others\n* Describe data and/or __problem-solving strategy__\n* State reasoning used to generate solution (:97c883b4-8590-454f-b222-f28298ec9a81:)", + "identifier": "b5f229b5-53d0-4a5e-86b6-cda8d0ac149e", + "uri": "https://standards.wida.us/uri/b5f229b5-53d0-4a5e-86b6-cda8d0ac149e" + }, + "lastChangeDateTime": "2022-05-09T20:29:10+00:00" + }, + { + "identifier": "992f517e-675b-4bfc-8592-af8087e0493f", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/992f517e-675b-4bfc-8592-af8087e0493f", + "associationType": "isRelatedTo", + "originNodeURI": { + "title": "7.MP4 Model with mathematics. (:c6496676-d7cb-11e8-824f-0242ac160002:)", + "identifier": "87c18c39-c179-40e5-89fa-ecb921735ecc", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/87c18c39-c179-40e5-89fa-ecb921735ecc" + }, + "destinationNodeURI": { + "title": "ELD-SI.4-12.Inform Multilingual learners will…\n* Define and classify __facts and interpretations; determine what is known vs. unknown__\n* __Report on explicit and inferred characteristics, patterns, or behavior__\n* Describe the parts and wholes __of a system__\n* Sort, clarify, and summarize __relationships__\n* Summarize __most important aspects of information__ (:97c883b4-8590-454f-b222-f28298ec9a81:)", + "identifier": "2fb8c896-09a1-4dcc-b08f-c0c2f68ba2f5", + "uri": "https://standards.wida.us/uri/2fb8c896-09a1-4dcc-b08f-c0c2f68ba2f5" + }, + "lastChangeDateTime": "2022-05-09T20:29:10+00:00" + }, + { + "identifier": "ac7e68e9-86fe-4195-8687-45ffbcf955b4", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/ac7e68e9-86fe-4195-8687-45ffbcf955b4", + "associationType": "isRelatedTo", + "originNodeURI": { + "title": "7.MP4 Model with mathematics. (:c6496676-d7cb-11e8-824f-0242ac160002:)", + "identifier": "87c18c39-c179-40e5-89fa-ecb921735ecc", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/87c18c39-c179-40e5-89fa-ecb921735ecc" + }, + "destinationNodeURI": { + "title": "ELD-SI.4-12.Explain Multilingual learners will…\n* __Generate and convey initial thinking__\n* Follow and describe cycles __and sequences of steps or procedures and their causes and effects__\n* Compare changing __variables, factors, and circumstances__\n* Offer __alternatives to extend or deepen awareness of factors that contribute to particular outcomes__\n* Act on feedback to revise understandings of how or why something is or works __in particular ways__ (:97c883b4-8590-454f-b222-f28298ec9a81:)", + "identifier": "4d380613-fde8-41f9-b3c7-3313a20d813b", + "uri": "https://standards.wida.us/uri/4d380613-fde8-41f9-b3c7-3313a20d813b" + }, + "lastChangeDateTime": "2022-05-09T20:29:10+00:00" + }, + { + "identifier": "e36f25b9-790f-47b0-a92a-a33dd06875e5", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/e36f25b9-790f-47b0-a92a-a33dd06875e5", + "associationType": "isRelatedTo", + "originNodeURI": { + "title": "8.MP4 Model with mathematics. (:c6496676-d7cb-11e8-824f-0242ac160002:)", + "identifier": "c3a3d5d0-62c5-403a-82b8-508b41ca9590", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/c3a3d5d0-62c5-403a-82b8-508b41ca9590" + }, + "destinationNodeURI": { + "title": "ELD-MA.6-8.Explain.Interpretive Multilingual learners will… Interpret mathematical explanations by\n* Identifying concept or entity\n* Analyzing possible __ways to represent and solve a problem__\n* Evaluating __model and rationale for underlying relationships in selected problem-solving approach__ (:97c883b4-8590-454f-b222-f28298ec9a81:)", + "identifier": "b380aaf9-f435-4b8d-b65e-c92fa5599471", + "uri": "https://standards.wida.us/uri/b380aaf9-f435-4b8d-b65e-c92fa5599471" + }, + "lastChangeDateTime": "2022-05-09T20:29:10+00:00" + }, + { + "identifier": "1ebc5cd7-6738-4201-afcc-fe8e4fe8b4a8", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/1ebc5cd7-6738-4201-afcc-fe8e4fe8b4a8", + "associationType": "isRelatedTo", + "originNodeURI": { + "title": "8.MP4 Model with mathematics. (:c6496676-d7cb-11e8-824f-0242ac160002:)", + "identifier": "c3a3d5d0-62c5-403a-82b8-508b41ca9590", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/c3a3d5d0-62c5-403a-82b8-508b41ca9590" + }, + "destinationNodeURI": { + "title": "ELD-MA.6-8.Explain.Expressive Multilingual learners will…\n\nConstruct mathematical explanations that\n* Introduce concept or entity\n* Share solution with others\n* Describe data and/or __problem-solving strategy__\n* State reasoning used to generate solution (:97c883b4-8590-454f-b222-f28298ec9a81:)", + "identifier": "b5f229b5-53d0-4a5e-86b6-cda8d0ac149e", + "uri": "https://standards.wida.us/uri/b5f229b5-53d0-4a5e-86b6-cda8d0ac149e" + }, + "lastChangeDateTime": "2022-05-09T20:29:10+00:00" + }, + { + "identifier": "622e0c17-8ae3-427a-aede-441a42e93383", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/622e0c17-8ae3-427a-aede-441a42e93383", + "associationType": "isRelatedTo", + "originNodeURI": { + "title": "8.MP4 Model with mathematics. (:c6496676-d7cb-11e8-824f-0242ac160002:)", + "identifier": "c3a3d5d0-62c5-403a-82b8-508b41ca9590", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/c3a3d5d0-62c5-403a-82b8-508b41ca9590" + }, + "destinationNodeURI": { + "title": "ELD-SI.4-12.Inform Multilingual learners will…\n* Define and classify __facts and interpretations; determine what is known vs. unknown__\n* __Report on explicit and inferred characteristics, patterns, or behavior__\n* Describe the parts and wholes __of a system__\n* Sort, clarify, and summarize __relationships__\n* Summarize __most important aspects of information__ (:97c883b4-8590-454f-b222-f28298ec9a81:)", + "identifier": "2fb8c896-09a1-4dcc-b08f-c0c2f68ba2f5", + "uri": "https://standards.wida.us/uri/2fb8c896-09a1-4dcc-b08f-c0c2f68ba2f5" + }, + "lastChangeDateTime": "2022-05-09T20:29:10+00:00" + }, + { + "identifier": "746b0cc2-766e-417a-809d-33586a61de97", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/746b0cc2-766e-417a-809d-33586a61de97", + "associationType": "isRelatedTo", + "originNodeURI": { + "title": "8.MP4 Model with mathematics. (:c6496676-d7cb-11e8-824f-0242ac160002:)", + "identifier": "c3a3d5d0-62c5-403a-82b8-508b41ca9590", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/c3a3d5d0-62c5-403a-82b8-508b41ca9590" + }, + "destinationNodeURI": { + "title": "ELD-SI.4-12.Explain Multilingual learners will…\n* __Generate and convey initial thinking__\n* Follow and describe cycles __and sequences of steps or procedures and their causes and effects__\n* Compare changing __variables, factors, and circumstances__\n* Offer __alternatives to extend or deepen awareness of factors that contribute to particular outcomes__\n* Act on feedback to revise understandings of how or why something is or works __in particular ways__ (:97c883b4-8590-454f-b222-f28298ec9a81:)", + "identifier": "4d380613-fde8-41f9-b3c7-3313a20d813b", + "uri": "https://standards.wida.us/uri/4d380613-fde8-41f9-b3c7-3313a20d813b" + }, + "lastChangeDateTime": "2022-05-09T20:29:10+00:00" + }, + { + "identifier": "790ebdf2-9d0d-4cab-a67e-710a337cedbb", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/790ebdf2-9d0d-4cab-a67e-710a337cedbb", + "associationType": "isRelatedTo", + "originNodeURI": { + "title": "HS.MP4 Model with mathematics. (:c6496676-d7cb-11e8-824f-0242ac160002:)", + "identifier": "2b81a18a-9f54-4af5-bc05-b0c1373d4da8", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/2b81a18a-9f54-4af5-bc05-b0c1373d4da8" + }, + "destinationNodeURI": { + "title": "ELD-MA.9-12.Explain.Interpretive Multilingual learners will… Interpret mathematical explanations by\n* Identifying concept or entity\n* Analyzing __data and owning problem-solving approaches__\n* Evaluating rationales, models, and/or __interpretations based on evidence and mathematical principles__ (:97c883b4-8590-454f-b222-f28298ec9a81:)", + "identifier": "a165d976-be8b-4b2f-ac8f-dcaffa56b6fd", + "uri": "https://standards.wida.us/uri/a165d976-be8b-4b2f-ac8f-dcaffa56b6fd" + }, + "lastChangeDateTime": "2022-05-09T20:29:10+00:00" + }, + { + "identifier": "69675605-53aa-4094-95bb-351b39124a93", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/69675605-53aa-4094-95bb-351b39124a93", + "associationType": "isRelatedTo", + "originNodeURI": { + "title": "HS.MP4 Model with mathematics. (:c6496676-d7cb-11e8-824f-0242ac160002:)", + "identifier": "2b81a18a-9f54-4af5-bc05-b0c1373d4da8", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/2b81a18a-9f54-4af5-bc05-b0c1373d4da8" + }, + "destinationNodeURI": { + "title": "ELD-MA.9-12.Explain.Expressive Multilingual learners will…\n\nConstruct mathematical explanations that\n* Introduce mathematical concept or entity\n* Share solutions with others\n* Describe data and/or __approach used to solve a problem__\n* State reasoning used to generate __own or alternate solutions__ (:97c883b4-8590-454f-b222-f28298ec9a81:)", + "identifier": "014f1edc-380b-4891-94e8-3a471017fb5e", + "uri": "https://standards.wida.us/uri/014f1edc-380b-4891-94e8-3a471017fb5e" + }, + "lastChangeDateTime": "2022-05-09T20:29:10+00:00" + }, + { + "identifier": "f418e4f2-8301-44a3-9849-6fbd03e0141f", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/f418e4f2-8301-44a3-9849-6fbd03e0141f", + "associationType": "isRelatedTo", + "originNodeURI": { + "title": "HS.MP4 Model with mathematics. (:c6496676-d7cb-11e8-824f-0242ac160002:)", + "identifier": "2b81a18a-9f54-4af5-bc05-b0c1373d4da8", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/2b81a18a-9f54-4af5-bc05-b0c1373d4da8" + }, + "destinationNodeURI": { + "title": "ELD-SI.4-12.Inform Multilingual learners will…\n* Define and classify __facts and interpretations; determine what is known vs. unknown__\n* __Report on explicit and inferred characteristics, patterns, or behavior__\n* Describe the parts and wholes __of a system__\n* Sort, clarify, and summarize __relationships__\n* Summarize __most important aspects of information__ (:97c883b4-8590-454f-b222-f28298ec9a81:)", + "identifier": "2fb8c896-09a1-4dcc-b08f-c0c2f68ba2f5", + "uri": "https://standards.wida.us/uri/2fb8c896-09a1-4dcc-b08f-c0c2f68ba2f5" + }, + "lastChangeDateTime": "2022-05-09T20:29:10+00:00" + }, + { + "identifier": "a303b273-2532-407f-850b-5dcf3c2284ae", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/a303b273-2532-407f-850b-5dcf3c2284ae", + "associationType": "isRelatedTo", + "originNodeURI": { + "title": "HS.MP4 Model with mathematics. (:c6496676-d7cb-11e8-824f-0242ac160002:)", + "identifier": "2b81a18a-9f54-4af5-bc05-b0c1373d4da8", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/2b81a18a-9f54-4af5-bc05-b0c1373d4da8" + }, + "destinationNodeURI": { + "title": "ELD-SI.4-12.Explain Multilingual learners will…\n* __Generate and convey initial thinking__\n* Follow and describe cycles __and sequences of steps or procedures and their causes and effects__\n* Compare changing __variables, factors, and circumstances__\n* Offer __alternatives to extend or deepen awareness of factors that contribute to particular outcomes__\n* Act on feedback to revise understandings of how or why something is or works __in particular ways__ (:97c883b4-8590-454f-b222-f28298ec9a81:)", + "identifier": "4d380613-fde8-41f9-b3c7-3313a20d813b", + "uri": "https://standards.wida.us/uri/4d380613-fde8-41f9-b3c7-3313a20d813b" + }, + "lastChangeDateTime": "2022-05-09T20:29:10+00:00" + }, + { + "identifier": "ad3df5b6-d732-4c73-bb5a-3efb5cc009a6", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/ad3df5b6-d732-4c73-bb5a-3efb5cc009a6", + "associationType": "isRelatedTo", + "originNodeURI": { + "title": "K.MP6 Attend to precision. (:c6496676-d7cb-11e8-824f-0242ac160002:)", + "identifier": "e6b4d3f5-89c9-41d7-a65b-c4f1390d4abb", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/e6b4d3f5-89c9-41d7-a65b-c4f1390d4abb" + }, + "destinationNodeURI": { + "title": "ELD-MA.K.Inform.Interpretive Multilingual learners will…\nInterpret mathematical informational texts (with prompting and support) by\n* Identifying concept or object\n* Describing quantities and attributes\n (:97c883b4-8590-454f-b222-f28298ec9a81:)", + "identifier": "8a95d57e-26ba-49ed-b2a9-c22ad743532c", + "uri": "https://standards.wida.us/uri/8a95d57e-26ba-49ed-b2a9-c22ad743532c" + }, + "lastChangeDateTime": "2022-05-09T20:29:10+00:00" + }, + { + "identifier": "433340ff-0592-4d5b-b9c9-5518d11fbbaa", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/433340ff-0592-4d5b-b9c9-5518d11fbbaa", + "associationType": "isRelatedTo", + "originNodeURI": { + "title": "K.MP6 Attend to precision. (:c6496676-d7cb-11e8-824f-0242ac160002:)", + "identifier": "e6b4d3f5-89c9-41d7-a65b-c4f1390d4abb", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/e6b4d3f5-89c9-41d7-a65b-c4f1390d4abb" + }, + "destinationNodeURI": { + "title": "ELD-MA.K.Inform.Expressive Multilingual learners will… Construct mathematical informational texts (with prompting and support) that\n* Define or classify concept or entity\n* Describe a concept or entity\n* Compare/contrast concepts or entities (:97c883b4-8590-454f-b222-f28298ec9a81:)", + "identifier": "56fc8a8e-8253-4403-8865-8829b19185f3", + "uri": "https://standards.wida.us/uri/56fc8a8e-8253-4403-8865-8829b19185f3" + }, + "lastChangeDateTime": "2022-05-09T20:29:10+00:00" + }, + { + "identifier": "86ce40f1-7ca4-4865-a20e-418501891c60", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/86ce40f1-7ca4-4865-a20e-418501891c60", + "associationType": "isRelatedTo", + "originNodeURI": { + "title": "K.MP6 Attend to precision. (:c6496676-d7cb-11e8-824f-0242ac160002:)", + "identifier": "e6b4d3f5-89c9-41d7-a65b-c4f1390d4abb", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/e6b4d3f5-89c9-41d7-a65b-c4f1390d4abb" + }, + "destinationNodeURI": { + "title": "ELD-SI.K-3.Inform Multilingual learners will…\n* Define and classify objects or concepts\n* Describe characteristics, patterns, or behavior\n* Describe parts and wholes\n* Sort, clarify, and summarize ideas\n* Summarize information from interaction with others and from learning experiences\n (:97c883b4-8590-454f-b222-f28298ec9a81:)", + "identifier": "02f34f50-2394-4aa5-a453-3907a2e2d9f3", + "uri": "https://standards.wida.us/uri/02f34f50-2394-4aa5-a453-3907a2e2d9f3" + }, + "lastChangeDateTime": "2022-05-09T20:29:10+00:00" + }, + { + "identifier": "1a3ccbe8-8f9e-4dcf-9c31-94c9220ae417", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/1a3ccbe8-8f9e-4dcf-9c31-94c9220ae417", + "associationType": "isRelatedTo", + "originNodeURI": { + "title": "K.MP6 Attend to precision. (:c6496676-d7cb-11e8-824f-0242ac160002:)", + "identifier": "e6b4d3f5-89c9-41d7-a65b-c4f1390d4abb", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/e6b4d3f5-89c9-41d7-a65b-c4f1390d4abb" + }, + "destinationNodeURI": { + "title": "ELD-SI.K-3.Argue Multilingual learners will…\n* Ask questions about others’ opinions\n* Support own opinions with reasons\n* Clarify and elaborate ideas based on feedback\n* Defend change in one’s own thinking\n* Revise one’s own opinions based on new information (:97c883b4-8590-454f-b222-f28298ec9a81:)", + "identifier": "37d4fc94-a76c-4f6a-8574-dcfd168b851c", + "uri": "https://standards.wida.us/uri/37d4fc94-a76c-4f6a-8574-dcfd168b851c" + }, + "lastChangeDateTime": "2022-05-09T20:29:10+00:00" + }, + { + "identifier": "f283e327-61e6-4700-abe6-fd12ec9ad864", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/f283e327-61e6-4700-abe6-fd12ec9ad864", + "associationType": "isRelatedTo", + "originNodeURI": { + "title": "1.MP6 Attend to precision. (:c6496676-d7cb-11e8-824f-0242ac160002:)", + "identifier": "bc372236-5406-4a40-bd11-8b88eb5ee9be", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/bc372236-5406-4a40-bd11-8b88eb5ee9be" + }, + "destinationNodeURI": { + "title": "ELD-MA.1.Inform.Interpretive Multilingual learners will… Interpret mathematical informational texts by\n* Identifying concept __or entity__\n* Describing attributes and __characteristics__ (:97c883b4-8590-454f-b222-f28298ec9a81:)", + "identifier": "ba2b02ea-ee35-442b-a452-dd93cb0073de", + "uri": "https://standards.wida.us/uri/ba2b02ea-ee35-442b-a452-dd93cb0073de" + }, + "lastChangeDateTime": "2022-05-09T20:29:10+00:00" + }, + { + "identifier": "3cf4bd68-2a08-4619-bb61-c9afdda95f58", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/3cf4bd68-2a08-4619-bb61-c9afdda95f58", + "associationType": "isRelatedTo", + "originNodeURI": { + "title": "1.MP6 Attend to precision. (:c6496676-d7cb-11e8-824f-0242ac160002:)", + "identifier": "bc372236-5406-4a40-bd11-8b88eb5ee9be", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/bc372236-5406-4a40-bd11-8b88eb5ee9be" + }, + "destinationNodeURI": { + "title": "ELD-MA.1.Inform.Expressive Multilingual learners will… Construct mathematical informational texts that\n* Define or classify concept or entity\n* Describe a concept or entity\n* Compare/contrast concepts or entities (:97c883b4-8590-454f-b222-f28298ec9a81:)", + "identifier": "acb17527-5967-4e98-9b80-d6d1f5f951b2", + "uri": "https://standards.wida.us/uri/acb17527-5967-4e98-9b80-d6d1f5f951b2" + }, + "lastChangeDateTime": "2022-05-09T20:29:10+00:00" + }, + { + "identifier": "d2d7841e-b3a1-409c-a521-f7109e695c43", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/d2d7841e-b3a1-409c-a521-f7109e695c43", + "associationType": "isRelatedTo", + "originNodeURI": { + "title": "1.MP6 Attend to precision. (:c6496676-d7cb-11e8-824f-0242ac160002:)", + "identifier": "bc372236-5406-4a40-bd11-8b88eb5ee9be", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/bc372236-5406-4a40-bd11-8b88eb5ee9be" + }, + "destinationNodeURI": { + "title": "ELD-SI.K-3.Inform Multilingual learners will…\n* Define and classify objects or concepts\n* Describe characteristics, patterns, or behavior\n* Describe parts and wholes\n* Sort, clarify, and summarize ideas\n* Summarize information from interaction with others and from learning experiences\n (:97c883b4-8590-454f-b222-f28298ec9a81:)", + "identifier": "02f34f50-2394-4aa5-a453-3907a2e2d9f3", + "uri": "https://standards.wida.us/uri/02f34f50-2394-4aa5-a453-3907a2e2d9f3" + }, + "lastChangeDateTime": "2022-05-09T20:29:10+00:00" + }, + { + "identifier": "aecae404-34a6-485d-9c5b-aed747418d29", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/aecae404-34a6-485d-9c5b-aed747418d29", + "associationType": "isRelatedTo", + "originNodeURI": { + "title": "1.MP6 Attend to precision. (:c6496676-d7cb-11e8-824f-0242ac160002:)", + "identifier": "bc372236-5406-4a40-bd11-8b88eb5ee9be", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/bc372236-5406-4a40-bd11-8b88eb5ee9be" + }, + "destinationNodeURI": { + "title": "ELD-SI.K-3.Argue Multilingual learners will…\n* Ask questions about others’ opinions\n* Support own opinions with reasons\n* Clarify and elaborate ideas based on feedback\n* Defend change in one’s own thinking\n* Revise one’s own opinions based on new information (:97c883b4-8590-454f-b222-f28298ec9a81:)", + "identifier": "37d4fc94-a76c-4f6a-8574-dcfd168b851c", + "uri": "https://standards.wida.us/uri/37d4fc94-a76c-4f6a-8574-dcfd168b851c" + }, + "lastChangeDateTime": "2022-05-09T20:29:10+00:00" + }, + { + "identifier": "473fef5d-2489-4ce6-8b1f-821e97c38033", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/473fef5d-2489-4ce6-8b1f-821e97c38033", + "associationType": "isRelatedTo", + "originNodeURI": { + "title": "2.MP6 Attend to precision. (:c6496676-d7cb-11e8-824f-0242ac160002:)", + "identifier": "c111a3b6-286c-409f-9fb4-ec662c5b856f", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/c111a3b6-286c-409f-9fb4-ec662c5b856f" + }, + "destinationNodeURI": { + "title": "ELD-MA.2-3.Argue.Interpretive Multilingual learners will… Interpret mathematics arguments by\n* Identifying conjectures about what might be true\n* Distinguishing connections among ideas in justifications\n* Extracting mathematical operations and facts from solution strategies to create generalizations (:97c883b4-8590-454f-b222-f28298ec9a81:)", + "identifier": "eebc3803-3a6c-44eb-8e20-61ba0b1119d7", + "uri": "https://standards.wida.us/uri/eebc3803-3a6c-44eb-8e20-61ba0b1119d7" + }, + "lastChangeDateTime": "2022-05-09T20:29:10+00:00" + }, + { + "identifier": "2cdbc9bb-6573-4d3a-9047-6a0941826013", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/2cdbc9bb-6573-4d3a-9047-6a0941826013", + "associationType": "isRelatedTo", + "originNodeURI": { + "title": "2.MP6 Attend to precision. (:c6496676-d7cb-11e8-824f-0242ac160002:)", + "identifier": "c111a3b6-286c-409f-9fb4-ec662c5b856f", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/c111a3b6-286c-409f-9fb4-ec662c5b856f" + }, + "destinationNodeURI": { + "title": "ELD-MA.2-3.Argue.Expressive Multilingual learners will… Construct mathematics arguments that\n* Create conjecture using definitions\n* Generalize commonalities across cases\n* Justify conclusion steps and strategies in simple patterns\n* Identify and respond to others’ arguments (:97c883b4-8590-454f-b222-f28298ec9a81:)", + "identifier": "054fbfff-049e-4c8f-b423-e18ae0d182f5", + "uri": "https://standards.wida.us/uri/054fbfff-049e-4c8f-b423-e18ae0d182f5" + }, + "lastChangeDateTime": "2022-05-09T20:29:10+00:00" + }, + { + "identifier": "120c5d13-20d6-4210-be75-4a9c4098f16e", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/120c5d13-20d6-4210-be75-4a9c4098f16e", + "associationType": "isRelatedTo", + "originNodeURI": { + "title": "2.MP6 Attend to precision. (:c6496676-d7cb-11e8-824f-0242ac160002:)", + "identifier": "c111a3b6-286c-409f-9fb4-ec662c5b856f", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/c111a3b6-286c-409f-9fb4-ec662c5b856f" + }, + "destinationNodeURI": { + "title": "ELD-SI.K-3.Inform Multilingual learners will…\n* Define and classify objects or concepts\n* Describe characteristics, patterns, or behavior\n* Describe parts and wholes\n* Sort, clarify, and summarize ideas\n* Summarize information from interaction with others and from learning experiences\n (:97c883b4-8590-454f-b222-f28298ec9a81:)", + "identifier": "02f34f50-2394-4aa5-a453-3907a2e2d9f3", + "uri": "https://standards.wida.us/uri/02f34f50-2394-4aa5-a453-3907a2e2d9f3" + }, + "lastChangeDateTime": "2022-05-09T20:29:10+00:00" + }, + { + "identifier": "7ec117ff-23c6-4083-9b34-6b3185eae4f1", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/7ec117ff-23c6-4083-9b34-6b3185eae4f1", + "associationType": "isRelatedTo", + "originNodeURI": { + "title": "2.MP6 Attend to precision. (:c6496676-d7cb-11e8-824f-0242ac160002:)", + "identifier": "c111a3b6-286c-409f-9fb4-ec662c5b856f", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/c111a3b6-286c-409f-9fb4-ec662c5b856f" + }, + "destinationNodeURI": { + "title": "ELD-SI.K-3.Argue Multilingual learners will…\n* Ask questions about others’ opinions\n* Support own opinions with reasons\n* Clarify and elaborate ideas based on feedback\n* Defend change in one’s own thinking\n* Revise one’s own opinions based on new information (:97c883b4-8590-454f-b222-f28298ec9a81:)", + "identifier": "37d4fc94-a76c-4f6a-8574-dcfd168b851c", + "uri": "https://standards.wida.us/uri/37d4fc94-a76c-4f6a-8574-dcfd168b851c" + }, + "lastChangeDateTime": "2022-05-09T20:29:10+00:00" + }, + { + "identifier": "4d3671e6-beb6-4448-ab9e-5ab8b68f632b", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/4d3671e6-beb6-4448-ab9e-5ab8b68f632b", + "associationType": "isRelatedTo", + "originNodeURI": { + "title": "3.MP6 Attend to precision. (:c6496676-d7cb-11e8-824f-0242ac160002:)", + "identifier": "818dc46a-a23c-4ead-b2b9-cd7e2a1a85c6", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/818dc46a-a23c-4ead-b2b9-cd7e2a1a85c6" + }, + "destinationNodeURI": { + "title": "ELD-MA.2-3.Argue.Interpretive Multilingual learners will… Interpret mathematics arguments by\n* Identifying conjectures about what might be true\n* Distinguishing connections among ideas in justifications\n* Extracting mathematical operations and facts from solution strategies to create generalizations (:97c883b4-8590-454f-b222-f28298ec9a81:)", + "identifier": "eebc3803-3a6c-44eb-8e20-61ba0b1119d7", + "uri": "https://standards.wida.us/uri/eebc3803-3a6c-44eb-8e20-61ba0b1119d7" + }, + "lastChangeDateTime": "2022-05-09T20:29:10+00:00" + }, + { + "identifier": "3c7c668d-eabe-44d3-b5a4-6504b5b9700d", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/3c7c668d-eabe-44d3-b5a4-6504b5b9700d", + "associationType": "isRelatedTo", + "originNodeURI": { + "title": "3.MP6 Attend to precision. (:c6496676-d7cb-11e8-824f-0242ac160002:)", + "identifier": "818dc46a-a23c-4ead-b2b9-cd7e2a1a85c6", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/818dc46a-a23c-4ead-b2b9-cd7e2a1a85c6" + }, + "destinationNodeURI": { + "title": "ELD-MA.2-3.Argue.Expressive Multilingual learners will… Construct mathematics arguments that\n* Create conjecture using definitions\n* Generalize commonalities across cases\n* Justify conclusion steps and strategies in simple patterns\n* Identify and respond to others’ arguments (:97c883b4-8590-454f-b222-f28298ec9a81:)", + "identifier": "054fbfff-049e-4c8f-b423-e18ae0d182f5", + "uri": "https://standards.wida.us/uri/054fbfff-049e-4c8f-b423-e18ae0d182f5" + }, + "lastChangeDateTime": "2022-05-09T20:29:10+00:00" + }, + { + "identifier": "fc2dd1f7-9d79-4535-9529-c1082ecb14aa", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/fc2dd1f7-9d79-4535-9529-c1082ecb14aa", + "associationType": "isRelatedTo", + "originNodeURI": { + "title": "3.MP6 Attend to precision. (:c6496676-d7cb-11e8-824f-0242ac160002:)", + "identifier": "818dc46a-a23c-4ead-b2b9-cd7e2a1a85c6", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/818dc46a-a23c-4ead-b2b9-cd7e2a1a85c6" + }, + "destinationNodeURI": { + "title": "ELD-SI.K-3.Inform Multilingual learners will…\n* Define and classify objects or concepts\n* Describe characteristics, patterns, or behavior\n* Describe parts and wholes\n* Sort, clarify, and summarize ideas\n* Summarize information from interaction with others and from learning experiences\n (:97c883b4-8590-454f-b222-f28298ec9a81:)", + "identifier": "02f34f50-2394-4aa5-a453-3907a2e2d9f3", + "uri": "https://standards.wida.us/uri/02f34f50-2394-4aa5-a453-3907a2e2d9f3" + }, + "lastChangeDateTime": "2022-05-09T20:29:10+00:00" + }, + { + "identifier": "3f0d393d-52b5-4b3e-97fd-6bcf0c6b6177", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/3f0d393d-52b5-4b3e-97fd-6bcf0c6b6177", + "associationType": "isRelatedTo", + "originNodeURI": { + "title": "3.MP6 Attend to precision. (:c6496676-d7cb-11e8-824f-0242ac160002:)", + "identifier": "818dc46a-a23c-4ead-b2b9-cd7e2a1a85c6", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/818dc46a-a23c-4ead-b2b9-cd7e2a1a85c6" + }, + "destinationNodeURI": { + "title": "ELD-SI.K-3.Argue Multilingual learners will…\n* Ask questions about others’ opinions\n* Support own opinions with reasons\n* Clarify and elaborate ideas based on feedback\n* Defend change in one’s own thinking\n* Revise one’s own opinions based on new information (:97c883b4-8590-454f-b222-f28298ec9a81:)", + "identifier": "37d4fc94-a76c-4f6a-8574-dcfd168b851c", + "uri": "https://standards.wida.us/uri/37d4fc94-a76c-4f6a-8574-dcfd168b851c" + }, + "lastChangeDateTime": "2022-05-09T20:29:10+00:00" + }, + { + "identifier": "c89b5b5c-86cf-40e8-b7e8-e288467fecc3", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c89b5b5c-86cf-40e8-b7e8-e288467fecc3", + "associationType": "isRelatedTo", + "originNodeURI": { + "title": "4.MP6 Attend to precision. (:c6496676-d7cb-11e8-824f-0242ac160002:)", + "identifier": "dbe409b8-7bb0-4e43-9043-d6736209e781", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/dbe409b8-7bb0-4e43-9043-d6736209e781" + }, + "destinationNodeURI": { + "title": "ELD-MA.4-5.Argue.Interpretive Multilingual learners will… Interpret mathematics arguments by\n* __Comparing__ conjectures __with patterns, and/or rules__\n* Distinguishing __commonalities and differences__ among ideas in justifications\n* Extracting __patterns or rules from__ solution strategies to create generalizations (:97c883b4-8590-454f-b222-f28298ec9a81:)", + "identifier": "8faa97d7-7e37-405c-ab80-99b310b1c837", + "uri": "https://standards.wida.us/uri/8faa97d7-7e37-405c-ab80-99b310b1c837" + }, + "lastChangeDateTime": "2022-05-09T20:29:10+00:00" + }, + { + "identifier": "97113487-ba21-4d99-9e03-35b1a762b77c", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/97113487-ba21-4d99-9e03-35b1a762b77c", + "associationType": "isRelatedTo", + "originNodeURI": { + "title": "4.MP6 Attend to precision. (:c6496676-d7cb-11e8-824f-0242ac160002:)", + "identifier": "dbe409b8-7bb0-4e43-9043-d6736209e781", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/dbe409b8-7bb0-4e43-9043-d6736209e781" + }, + "destinationNodeURI": { + "title": "ELD-MA.4-5.Argue.Expressive Multilingual learners will… Construct mathematics arguments that\n* Create conjecture using definitions, patterns, and rules\n* Generalize commonalities and differences across cases\n* Justify conclusions with patterns or rules\n* Evaluate others’ arguments (:97c883b4-8590-454f-b222-f28298ec9a81:)", + "identifier": "2858fb1f-701c-448f-a78b-0c646b13395e", + "uri": "https://standards.wida.us/uri/2858fb1f-701c-448f-a78b-0c646b13395e" + }, + "lastChangeDateTime": "2022-05-09T20:29:10+00:00" + }, + { + "identifier": "0c89e44b-d2bc-4a5e-b521-81eeea619645", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/0c89e44b-d2bc-4a5e-b521-81eeea619645", + "associationType": "isRelatedTo", + "originNodeURI": { + "title": "4.MP6 Attend to precision. (:c6496676-d7cb-11e8-824f-0242ac160002:)", + "identifier": "dbe409b8-7bb0-4e43-9043-d6736209e781", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/dbe409b8-7bb0-4e43-9043-d6736209e781" + }, + "destinationNodeURI": { + "title": "ELD-SI.4-12.Inform Multilingual learners will…\n* Define and classify __facts and interpretations; determine what is known vs. unknown__\n* __Report on explicit and inferred characteristics, patterns, or behavior__\n* Describe the parts and wholes __of a system__\n* Sort, clarify, and summarize __relationships__\n* Summarize __most important aspects of information__ (:97c883b4-8590-454f-b222-f28298ec9a81:)", + "identifier": "2fb8c896-09a1-4dcc-b08f-c0c2f68ba2f5", + "uri": "https://standards.wida.us/uri/2fb8c896-09a1-4dcc-b08f-c0c2f68ba2f5" + }, + "lastChangeDateTime": "2022-05-09T20:29:10+00:00" + }, + { + "identifier": "4182c08b-138f-4544-9d26-80808e7a4e83", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/4182c08b-138f-4544-9d26-80808e7a4e83", + "associationType": "isRelatedTo", + "originNodeURI": { + "title": "4.MP6 Attend to precision. (:c6496676-d7cb-11e8-824f-0242ac160002:)", + "identifier": "dbe409b8-7bb0-4e43-9043-d6736209e781", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/dbe409b8-7bb0-4e43-9043-d6736209e781" + }, + "destinationNodeURI": { + "title": "ELD-SI.4-12.Argue Multilingual learners will…\n* __Generate questions about different perspectives__\n* Support __or challenge__ an opinion, __premise, or interpretation__\n* Clarify and elaborate ideas based on feedback\n* __Evaluate changes in thinking, identifying trade-offs__\n* Refine __claims and reasoning based on new information or evidence__ (:97c883b4-8590-454f-b222-f28298ec9a81:)", + "identifier": "05fa0120-5bbd-47ee-a0e2-039e65bc7442", + "uri": "https://standards.wida.us/uri/05fa0120-5bbd-47ee-a0e2-039e65bc7442" + }, + "lastChangeDateTime": "2022-05-09T20:29:10+00:00" + }, + { + "identifier": "605ab233-6ee2-4987-b313-df6e9c8a1ca7", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/605ab233-6ee2-4987-b313-df6e9c8a1ca7", + "associationType": "isRelatedTo", + "originNodeURI": { + "title": "5.MP6 Attend to precision. (:c6496676-d7cb-11e8-824f-0242ac160002:)", + "identifier": "7fb11367-5dcf-4ecb-8f0e-f1c4849c734d", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/7fb11367-5dcf-4ecb-8f0e-f1c4849c734d" + }, + "destinationNodeURI": { + "title": "ELD-MA.4-5.Argue.Interpretive Multilingual learners will… Interpret mathematics arguments by\n* __Comparing__ conjectures __with patterns, and/or rules__\n* Distinguishing __commonalities and differences__ among ideas in justifications\n* Extracting __patterns or rules from__ solution strategies to create generalizations (:97c883b4-8590-454f-b222-f28298ec9a81:)", + "identifier": "8faa97d7-7e37-405c-ab80-99b310b1c837", + "uri": "https://standards.wida.us/uri/8faa97d7-7e37-405c-ab80-99b310b1c837" + }, + "lastChangeDateTime": "2022-05-09T20:29:10+00:00" + }, + { + "identifier": "9a6a9884-651d-4291-b60c-656e72909cc6", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/9a6a9884-651d-4291-b60c-656e72909cc6", + "associationType": "isRelatedTo", + "originNodeURI": { + "title": "5.MP6 Attend to precision. (:c6496676-d7cb-11e8-824f-0242ac160002:)", + "identifier": "7fb11367-5dcf-4ecb-8f0e-f1c4849c734d", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/7fb11367-5dcf-4ecb-8f0e-f1c4849c734d" + }, + "destinationNodeURI": { + "title": "ELD-MA.4-5.Argue.Expressive Multilingual learners will… Construct mathematics arguments that\n* Create conjecture using definitions, patterns, and rules\n* Generalize commonalities and differences across cases\n* Justify conclusions with patterns or rules\n* Evaluate others’ arguments (:97c883b4-8590-454f-b222-f28298ec9a81:)", + "identifier": "2858fb1f-701c-448f-a78b-0c646b13395e", + "uri": "https://standards.wida.us/uri/2858fb1f-701c-448f-a78b-0c646b13395e" + }, + "lastChangeDateTime": "2022-05-09T20:29:10+00:00" + }, + { + "identifier": "3d274036-2a11-4c65-9dce-b85ddb030bd5", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/3d274036-2a11-4c65-9dce-b85ddb030bd5", + "associationType": "isRelatedTo", + "originNodeURI": { + "title": "5.MP6 Attend to precision. (:c6496676-d7cb-11e8-824f-0242ac160002:)", + "identifier": "7fb11367-5dcf-4ecb-8f0e-f1c4849c734d", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/7fb11367-5dcf-4ecb-8f0e-f1c4849c734d" + }, + "destinationNodeURI": { + "title": "ELD-SI.4-12.Inform Multilingual learners will…\n* Define and classify __facts and interpretations; determine what is known vs. unknown__\n* __Report on explicit and inferred characteristics, patterns, or behavior__\n* Describe the parts and wholes __of a system__\n* Sort, clarify, and summarize __relationships__\n* Summarize __most important aspects of information__ (:97c883b4-8590-454f-b222-f28298ec9a81:)", + "identifier": "2fb8c896-09a1-4dcc-b08f-c0c2f68ba2f5", + "uri": "https://standards.wida.us/uri/2fb8c896-09a1-4dcc-b08f-c0c2f68ba2f5" + }, + "lastChangeDateTime": "2022-05-09T20:29:10+00:00" + }, + { + "identifier": "41126da8-f316-4e04-be80-50f3c0b38a17", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/41126da8-f316-4e04-be80-50f3c0b38a17", + "associationType": "isRelatedTo", + "originNodeURI": { + "title": "5.MP6 Attend to precision. (:c6496676-d7cb-11e8-824f-0242ac160002:)", + "identifier": "7fb11367-5dcf-4ecb-8f0e-f1c4849c734d", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/7fb11367-5dcf-4ecb-8f0e-f1c4849c734d" + }, + "destinationNodeURI": { + "title": "ELD-SI.4-12.Argue Multilingual learners will…\n* __Generate questions about different perspectives__\n* Support __or challenge__ an opinion, __premise, or interpretation__\n* Clarify and elaborate ideas based on feedback\n* __Evaluate changes in thinking, identifying trade-offs__\n* Refine __claims and reasoning based on new information or evidence__ (:97c883b4-8590-454f-b222-f28298ec9a81:)", + "identifier": "05fa0120-5bbd-47ee-a0e2-039e65bc7442", + "uri": "https://standards.wida.us/uri/05fa0120-5bbd-47ee-a0e2-039e65bc7442" + }, + "lastChangeDateTime": "2022-05-09T20:29:10+00:00" + }, + { + "identifier": "8d5effa3-794a-4089-84ca-b628aa5e2df4", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/8d5effa3-794a-4089-84ca-b628aa5e2df4", + "associationType": "isRelatedTo", + "originNodeURI": { + "title": "6.MP6 Attend to precision. (:c6496676-d7cb-11e8-824f-0242ac160002:)", + "identifier": "5dac7153-843d-4b8f-b210-e5e5b1267032", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/5dac7153-843d-4b8f-b210-e5e5b1267032" + }, + "destinationNodeURI": { + "title": "ELD-MA.6-8.Argue.Interpretive Multilingual learners will… Interpret mathematics arguments by\n* Comparing conjectures __with previously established results__\n* Distinguishing commonalities __among strategies used__\n* __Evaluating relationships between evidence and mathematical facts__ to create generalizations (:97c883b4-8590-454f-b222-f28298ec9a81:)", + "identifier": "b56198d1-8667-4a98-a107-69f84ed10cc7", + "uri": "https://standards.wida.us/uri/b56198d1-8667-4a98-a107-69f84ed10cc7" + }, + "lastChangeDateTime": "2022-05-09T20:29:10+00:00" + }, + { + "identifier": "77a37b67-304c-418b-93c1-b065fedc1191", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/77a37b67-304c-418b-93c1-b065fedc1191", + "associationType": "isRelatedTo", + "originNodeURI": { + "title": "6.MP6 Attend to precision. (:c6496676-d7cb-11e8-824f-0242ac160002:)", + "identifier": "5dac7153-843d-4b8f-b210-e5e5b1267032", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/5dac7153-843d-4b8f-b210-e5e5b1267032" + }, + "destinationNodeURI": { + "title": "ELD-MA.6-8.Argue.Expressive Multilingual learners will… Construct mathematics arguments that\n* Create conjecture, using definitions __and previously established results__\n* Generalize __logic across cases__\n* Justify conclusions __with evidence and mathematical facts__\n* Evaluate __and critique__ others’ arguments (:97c883b4-8590-454f-b222-f28298ec9a81:)", + "identifier": "4d70fa55-e49b-4109-91d4-e014ad1125ca", + "uri": "https://standards.wida.us/uri/4d70fa55-e49b-4109-91d4-e014ad1125ca" + }, + "lastChangeDateTime": "2022-05-09T20:29:10+00:00" + }, + { + "identifier": "d9845298-a0a1-4bd9-b38b-bcfbd74fe4ad", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/d9845298-a0a1-4bd9-b38b-bcfbd74fe4ad", + "associationType": "isRelatedTo", + "originNodeURI": { + "title": "6.MP6 Attend to precision. (:c6496676-d7cb-11e8-824f-0242ac160002:)", + "identifier": "5dac7153-843d-4b8f-b210-e5e5b1267032", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/5dac7153-843d-4b8f-b210-e5e5b1267032" + }, + "destinationNodeURI": { + "title": "ELD-SI.4-12.Inform Multilingual learners will…\n* Define and classify __facts and interpretations; determine what is known vs. unknown__\n* __Report on explicit and inferred characteristics, patterns, or behavior__\n* Describe the parts and wholes __of a system__\n* Sort, clarify, and summarize __relationships__\n* Summarize __most important aspects of information__ (:97c883b4-8590-454f-b222-f28298ec9a81:)", + "identifier": "2fb8c896-09a1-4dcc-b08f-c0c2f68ba2f5", + "uri": "https://standards.wida.us/uri/2fb8c896-09a1-4dcc-b08f-c0c2f68ba2f5" + }, + "lastChangeDateTime": "2022-05-09T20:29:10+00:00" + }, + { + "identifier": "01a2046c-352b-4c5a-9cd3-75d81dc4ae8d", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/01a2046c-352b-4c5a-9cd3-75d81dc4ae8d", + "associationType": "isRelatedTo", + "originNodeURI": { + "title": "6.MP6 Attend to precision. (:c6496676-d7cb-11e8-824f-0242ac160002:)", + "identifier": "5dac7153-843d-4b8f-b210-e5e5b1267032", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/5dac7153-843d-4b8f-b210-e5e5b1267032" + }, + "destinationNodeURI": { + "title": "ELD-SI.4-12.Argue Multilingual learners will…\n* __Generate questions about different perspectives__\n* Support __or challenge__ an opinion, __premise, or interpretation__\n* Clarify and elaborate ideas based on feedback\n* __Evaluate changes in thinking, identifying trade-offs__\n* Refine __claims and reasoning based on new information or evidence__ (:97c883b4-8590-454f-b222-f28298ec9a81:)", + "identifier": "05fa0120-5bbd-47ee-a0e2-039e65bc7442", + "uri": "https://standards.wida.us/uri/05fa0120-5bbd-47ee-a0e2-039e65bc7442" + }, + "lastChangeDateTime": "2022-05-09T20:29:10+00:00" + }, + { + "identifier": "e15a0225-a0f3-4a78-aeb7-fcaa15f36858", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/e15a0225-a0f3-4a78-aeb7-fcaa15f36858", + "associationType": "isRelatedTo", + "originNodeURI": { + "title": "7.MP6 Attend to precision. (:c6496676-d7cb-11e8-824f-0242ac160002:)", + "identifier": "51fe888a-8a2a-40a4-8744-742d3f9af296", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/51fe888a-8a2a-40a4-8744-742d3f9af296" + }, + "destinationNodeURI": { + "title": "ELD-MA.6-8.Argue.Interpretive Multilingual learners will… Interpret mathematics arguments by\n* Comparing conjectures __with previously established results__\n* Distinguishing commonalities __among strategies used__\n* __Evaluating relationships between evidence and mathematical facts__ to create generalizations (:97c883b4-8590-454f-b222-f28298ec9a81:)", + "identifier": "b56198d1-8667-4a98-a107-69f84ed10cc7", + "uri": "https://standards.wida.us/uri/b56198d1-8667-4a98-a107-69f84ed10cc7" + }, + "lastChangeDateTime": "2022-05-09T20:29:10+00:00" + }, + { + "identifier": "4ee40ad5-2efd-411a-ae8c-a9b835e13638", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/4ee40ad5-2efd-411a-ae8c-a9b835e13638", + "associationType": "isRelatedTo", + "originNodeURI": { + "title": "7.MP6 Attend to precision. (:c6496676-d7cb-11e8-824f-0242ac160002:)", + "identifier": "51fe888a-8a2a-40a4-8744-742d3f9af296", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/51fe888a-8a2a-40a4-8744-742d3f9af296" + }, + "destinationNodeURI": { + "title": "ELD-MA.6-8.Argue.Expressive Multilingual learners will… Construct mathematics arguments that\n* Create conjecture, using definitions __and previously established results__\n* Generalize __logic across cases__\n* Justify conclusions __with evidence and mathematical facts__\n* Evaluate __and critique__ others’ arguments (:97c883b4-8590-454f-b222-f28298ec9a81:)", + "identifier": "4d70fa55-e49b-4109-91d4-e014ad1125ca", + "uri": "https://standards.wida.us/uri/4d70fa55-e49b-4109-91d4-e014ad1125ca" + }, + "lastChangeDateTime": "2022-05-09T20:29:10+00:00" + }, + { + "identifier": "c5a4dde3-c2db-433a-8de7-665f6003cdd5", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c5a4dde3-c2db-433a-8de7-665f6003cdd5", + "associationType": "isRelatedTo", + "originNodeURI": { + "title": "7.MP6 Attend to precision. (:c6496676-d7cb-11e8-824f-0242ac160002:)", + "identifier": "51fe888a-8a2a-40a4-8744-742d3f9af296", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/51fe888a-8a2a-40a4-8744-742d3f9af296" + }, + "destinationNodeURI": { + "title": "ELD-SI.4-12.Inform Multilingual learners will…\n* Define and classify __facts and interpretations; determine what is known vs. unknown__\n* __Report on explicit and inferred characteristics, patterns, or behavior__\n* Describe the parts and wholes __of a system__\n* Sort, clarify, and summarize __relationships__\n* Summarize __most important aspects of information__ (:97c883b4-8590-454f-b222-f28298ec9a81:)", + "identifier": "2fb8c896-09a1-4dcc-b08f-c0c2f68ba2f5", + "uri": "https://standards.wida.us/uri/2fb8c896-09a1-4dcc-b08f-c0c2f68ba2f5" + }, + "lastChangeDateTime": "2022-05-09T20:29:10+00:00" + }, + { + "identifier": "a37b585b-ef00-4ef6-8367-b32f0a84dbdc", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/a37b585b-ef00-4ef6-8367-b32f0a84dbdc", + "associationType": "isRelatedTo", + "originNodeURI": { + "title": "7.MP6 Attend to precision. (:c6496676-d7cb-11e8-824f-0242ac160002:)", + "identifier": "51fe888a-8a2a-40a4-8744-742d3f9af296", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/51fe888a-8a2a-40a4-8744-742d3f9af296" + }, + "destinationNodeURI": { + "title": "ELD-SI.4-12.Argue Multilingual learners will…\n* __Generate questions about different perspectives__\n* Support __or challenge__ an opinion, __premise, or interpretation__\n* Clarify and elaborate ideas based on feedback\n* __Evaluate changes in thinking, identifying trade-offs__\n* Refine __claims and reasoning based on new information or evidence__ (:97c883b4-8590-454f-b222-f28298ec9a81:)", + "identifier": "05fa0120-5bbd-47ee-a0e2-039e65bc7442", + "uri": "https://standards.wida.us/uri/05fa0120-5bbd-47ee-a0e2-039e65bc7442" + }, + "lastChangeDateTime": "2022-05-09T20:29:10+00:00" + }, + { + "identifier": "f88ce48f-617a-4863-9261-53655bc1e2a8", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/f88ce48f-617a-4863-9261-53655bc1e2a8", + "associationType": "isRelatedTo", + "originNodeURI": { + "title": "8.MP6 Attend to precision. (:c6496676-d7cb-11e8-824f-0242ac160002:)", + "identifier": "36efbbc0-b8fa-4608-b8f9-ef74b24c9c25", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/36efbbc0-b8fa-4608-b8f9-ef74b24c9c25" + }, + "destinationNodeURI": { + "title": "ELD-MA.6-8.Argue.Interpretive Multilingual learners will… Interpret mathematics arguments by\n* Comparing conjectures __with previously established results__\n* Distinguishing commonalities __among strategies used__\n* __Evaluating relationships between evidence and mathematical facts__ to create generalizations (:97c883b4-8590-454f-b222-f28298ec9a81:)", + "identifier": "b56198d1-8667-4a98-a107-69f84ed10cc7", + "uri": "https://standards.wida.us/uri/b56198d1-8667-4a98-a107-69f84ed10cc7" + }, + "lastChangeDateTime": "2022-05-09T20:29:10+00:00" + }, + { + "identifier": "5c491663-914a-4f83-904a-a9e8c1d8050b", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/5c491663-914a-4f83-904a-a9e8c1d8050b", + "associationType": "isRelatedTo", + "originNodeURI": { + "title": "8.MP6 Attend to precision. (:c6496676-d7cb-11e8-824f-0242ac160002:)", + "identifier": "36efbbc0-b8fa-4608-b8f9-ef74b24c9c25", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/36efbbc0-b8fa-4608-b8f9-ef74b24c9c25" + }, + "destinationNodeURI": { + "title": "ELD-MA.6-8.Argue.Expressive Multilingual learners will… Construct mathematics arguments that\n* Create conjecture, using definitions __and previously established results__\n* Generalize __logic across cases__\n* Justify conclusions __with evidence and mathematical facts__\n* Evaluate __and critique__ others’ arguments (:97c883b4-8590-454f-b222-f28298ec9a81:)", + "identifier": "4d70fa55-e49b-4109-91d4-e014ad1125ca", + "uri": "https://standards.wida.us/uri/4d70fa55-e49b-4109-91d4-e014ad1125ca" + }, + "lastChangeDateTime": "2022-05-09T20:29:10+00:00" + }, + { + "identifier": "5f8db953-63f1-4dea-9e17-5216f3774605", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/5f8db953-63f1-4dea-9e17-5216f3774605", + "associationType": "isRelatedTo", + "originNodeURI": { + "title": "8.MP6 Attend to precision. (:c6496676-d7cb-11e8-824f-0242ac160002:)", + "identifier": "36efbbc0-b8fa-4608-b8f9-ef74b24c9c25", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/36efbbc0-b8fa-4608-b8f9-ef74b24c9c25" + }, + "destinationNodeURI": { + "title": "ELD-SI.4-12.Inform Multilingual learners will…\n* Define and classify __facts and interpretations; determine what is known vs. unknown__\n* __Report on explicit and inferred characteristics, patterns, or behavior__\n* Describe the parts and wholes __of a system__\n* Sort, clarify, and summarize __relationships__\n* Summarize __most important aspects of information__ (:97c883b4-8590-454f-b222-f28298ec9a81:)", + "identifier": "2fb8c896-09a1-4dcc-b08f-c0c2f68ba2f5", + "uri": "https://standards.wida.us/uri/2fb8c896-09a1-4dcc-b08f-c0c2f68ba2f5" + }, + "lastChangeDateTime": "2022-05-09T20:29:10+00:00" + }, + { + "identifier": "27b6f400-0066-4f05-9b22-9f48359354d6", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/27b6f400-0066-4f05-9b22-9f48359354d6", + "associationType": "isRelatedTo", + "originNodeURI": { + "title": "8.MP6 Attend to precision. (:c6496676-d7cb-11e8-824f-0242ac160002:)", + "identifier": "36efbbc0-b8fa-4608-b8f9-ef74b24c9c25", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/36efbbc0-b8fa-4608-b8f9-ef74b24c9c25" + }, + "destinationNodeURI": { + "title": "ELD-SI.4-12.Argue Multilingual learners will…\n* __Generate questions about different perspectives__\n* Support __or challenge__ an opinion, __premise, or interpretation__\n* Clarify and elaborate ideas based on feedback\n* __Evaluate changes in thinking, identifying trade-offs__\n* Refine __claims and reasoning based on new information or evidence__ (:97c883b4-8590-454f-b222-f28298ec9a81:)", + "identifier": "05fa0120-5bbd-47ee-a0e2-039e65bc7442", + "uri": "https://standards.wida.us/uri/05fa0120-5bbd-47ee-a0e2-039e65bc7442" + }, + "lastChangeDateTime": "2022-05-09T20:29:10+00:00" + }, + { + "identifier": "e55297ed-d3e9-47d1-b5ca-8206630b8966", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/e55297ed-d3e9-47d1-b5ca-8206630b8966", + "associationType": "isRelatedTo", + "originNodeURI": { + "title": "HS.MP6 Attend to precision. (:c6496676-d7cb-11e8-824f-0242ac160002:)", + "identifier": "c1d376fb-8824-4089-8600-9b11944cf8d2", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/c1d376fb-8824-4089-8600-9b11944cf8d2" + }, + "destinationNodeURI": { + "title": "ELD-MA.9-12.Argue.Interpretive Multilingual learners will… Interpret mathematics arguments by\n* Comparing conjectures with previously established results and __stated assumptions__\n* Distinguishing correct from __flawed logic__\n* Evaluating relationships __among evidence and mathematical principles__ to create generalizations (:97c883b4-8590-454f-b222-f28298ec9a81:)", + "identifier": "ab8acb19-34c6-4030-8ddf-3eae8f9286d6", + "uri": "https://standards.wida.us/uri/ab8acb19-34c6-4030-8ddf-3eae8f9286d6" + }, + "lastChangeDateTime": "2022-05-09T20:29:10+00:00" + }, + { + "identifier": "c5fed102-4256-4b45-b62d-54fc7ff00ff9", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c5fed102-4256-4b45-b62d-54fc7ff00ff9", + "associationType": "isRelatedTo", + "originNodeURI": { + "title": "HS.MP6 Attend to precision. (:c6496676-d7cb-11e8-824f-0242ac160002:)", + "identifier": "c1d376fb-8824-4089-8600-9b11944cf8d2", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/c1d376fb-8824-4089-8600-9b11944cf8d2" + }, + "destinationNodeURI": { + "title": "ELD-MA.9-12.Argue.Expressive Multilingual learners will… Construct mathematics arguments that\n* Create precise conjecture, using definitions, previously established results, __and stated assumptions__\n* Generalize logical relationships across cases\n* Justify __(and refute)__ conclusions with evidence and mathematical __principles__\n* Evaluate __and extend__ others’ arguments (:97c883b4-8590-454f-b222-f28298ec9a81:)", + "identifier": "10a207a0-7e34-4835-b6b6-d0ce359cc7e0", + "uri": "https://standards.wida.us/uri/10a207a0-7e34-4835-b6b6-d0ce359cc7e0" + }, + "lastChangeDateTime": "2022-05-09T20:29:10+00:00" + }, + { + "identifier": "5809e6a9-65b0-4863-8971-e22e546952e7", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/5809e6a9-65b0-4863-8971-e22e546952e7", + "associationType": "isRelatedTo", + "originNodeURI": { + "title": "HS.MP6 Attend to precision. (:c6496676-d7cb-11e8-824f-0242ac160002:)", + "identifier": "c1d376fb-8824-4089-8600-9b11944cf8d2", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/c1d376fb-8824-4089-8600-9b11944cf8d2" + }, + "destinationNodeURI": { + "title": "ELD-SI.4-12.Inform Multilingual learners will…\n* Define and classify __facts and interpretations; determine what is known vs. unknown__\n* __Report on explicit and inferred characteristics, patterns, or behavior__\n* Describe the parts and wholes __of a system__\n* Sort, clarify, and summarize __relationships__\n* Summarize __most important aspects of information__ (:97c883b4-8590-454f-b222-f28298ec9a81:)", + "identifier": "2fb8c896-09a1-4dcc-b08f-c0c2f68ba2f5", + "uri": "https://standards.wida.us/uri/2fb8c896-09a1-4dcc-b08f-c0c2f68ba2f5" + }, + "lastChangeDateTime": "2022-05-09T20:29:10+00:00" + }, + { + "identifier": "ea8d8c3c-aab0-4d8e-a8de-2bc694267f02", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/ea8d8c3c-aab0-4d8e-a8de-2bc694267f02", + "associationType": "isRelatedTo", + "originNodeURI": { + "title": "HS.MP6 Attend to precision. (:c6496676-d7cb-11e8-824f-0242ac160002:)", + "identifier": "c1d376fb-8824-4089-8600-9b11944cf8d2", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/c1d376fb-8824-4089-8600-9b11944cf8d2" + }, + "destinationNodeURI": { + "title": "ELD-SI.4-12.Argue Multilingual learners will…\n* __Generate questions about different perspectives__\n* Support __or challenge__ an opinion, __premise, or interpretation__\n* Clarify and elaborate ideas based on feedback\n* __Evaluate changes in thinking, identifying trade-offs__\n* Refine __claims and reasoning based on new information or evidence__ (:97c883b4-8590-454f-b222-f28298ec9a81:)", + "identifier": "05fa0120-5bbd-47ee-a0e2-039e65bc7442", + "uri": "https://standards.wida.us/uri/05fa0120-5bbd-47ee-a0e2-039e65bc7442" + }, + "lastChangeDateTime": "2022-05-09T20:29:10+00:00" + }, + { + "identifier": "763de67f-6425-4ecf-a0b8-01c002570d8e", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/763de67f-6425-4ecf-a0b8-01c002570d8e", + "associationType": "isRelatedTo", + "originNodeURI": { + "title": "K.MP7 Look for and make use of structure. (:c6496676-d7cb-11e8-824f-0242ac160002:)", + "identifier": "773fa434-1360-4fdc-b784-30b4c5b9ab8b", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/773fa434-1360-4fdc-b784-30b4c5b9ab8b" + }, + "destinationNodeURI": { + "title": "ELD-MA.K.Inform.Interpretive Multilingual learners will…\nInterpret mathematical informational texts (with prompting and support) by\n* Identifying concept or object\n* Describing quantities and attributes\n (:97c883b4-8590-454f-b222-f28298ec9a81:)", + "identifier": "8a95d57e-26ba-49ed-b2a9-c22ad743532c", + "uri": "https://standards.wida.us/uri/8a95d57e-26ba-49ed-b2a9-c22ad743532c" + }, + "lastChangeDateTime": "2022-05-09T20:29:10+00:00" + }, + { + "identifier": "2fa6c859-881b-4213-a6d1-a7b9a33dcf7b", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/2fa6c859-881b-4213-a6d1-a7b9a33dcf7b", + "associationType": "isRelatedTo", + "originNodeURI": { + "title": "K.MP7 Look for and make use of structure. (:c6496676-d7cb-11e8-824f-0242ac160002:)", + "identifier": "773fa434-1360-4fdc-b784-30b4c5b9ab8b", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/773fa434-1360-4fdc-b784-30b4c5b9ab8b" + }, + "destinationNodeURI": { + "title": "ELD-MA.K.Inform.Expressive Multilingual learners will… Construct mathematical informational texts (with prompting and support) that\n* Define or classify concept or entity\n* Describe a concept or entity\n* Compare/contrast concepts or entities (:97c883b4-8590-454f-b222-f28298ec9a81:)", + "identifier": "56fc8a8e-8253-4403-8865-8829b19185f3", + "uri": "https://standards.wida.us/uri/56fc8a8e-8253-4403-8865-8829b19185f3" + }, + "lastChangeDateTime": "2022-05-09T20:29:10+00:00" + }, + { + "identifier": "e4dad6b0-5555-4560-bdfb-5d2e1ebc3c24", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/e4dad6b0-5555-4560-bdfb-5d2e1ebc3c24", + "associationType": "isRelatedTo", + "originNodeURI": { + "title": "K.MP7 Look for and make use of structure. (:c6496676-d7cb-11e8-824f-0242ac160002:)", + "identifier": "773fa434-1360-4fdc-b784-30b4c5b9ab8b", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/773fa434-1360-4fdc-b784-30b4c5b9ab8b" + }, + "destinationNodeURI": { + "title": "ELD-SI.K-3.Inform Multilingual learners will…\n* Define and classify objects or concepts\n* Describe characteristics, patterns, or behavior\n* Describe parts and wholes\n* Sort, clarify, and summarize ideas\n* Summarize information from interaction with others and from learning experiences\n (:97c883b4-8590-454f-b222-f28298ec9a81:)", + "identifier": "02f34f50-2394-4aa5-a453-3907a2e2d9f3", + "uri": "https://standards.wida.us/uri/02f34f50-2394-4aa5-a453-3907a2e2d9f3" + }, + "lastChangeDateTime": "2022-05-09T20:29:10+00:00" + }, + { + "identifier": "9e4809f9-bb66-4880-a845-68edf1ae7715", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/9e4809f9-bb66-4880-a845-68edf1ae7715", + "associationType": "isRelatedTo", + "originNodeURI": { + "title": "K.MP7 Look for and make use of structure. (:c6496676-d7cb-11e8-824f-0242ac160002:)", + "identifier": "773fa434-1360-4fdc-b784-30b4c5b9ab8b", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/773fa434-1360-4fdc-b784-30b4c5b9ab8b" + }, + "destinationNodeURI": { + "title": "ELD-SI.K-3.Explain Multilingual learners will…\n* Share initial thinking with others\n* Follow and describe cycles in diagrams, steps in procedures, or causes and effects\n* Compare and contrast objects or concepts\n* Offer ideas and suggestions\n* Act on feedback to revise understandings of how or why something works\n (:97c883b4-8590-454f-b222-f28298ec9a81:)", + "identifier": "6c5fff3a-c798-4671-a227-c89a994497a6", + "uri": "https://standards.wida.us/uri/6c5fff3a-c798-4671-a227-c89a994497a6" + }, + "lastChangeDateTime": "2022-05-09T20:29:10+00:00" + }, + { + "identifier": "d2fadd91-552b-4a2e-aac0-bceadec7962b", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/d2fadd91-552b-4a2e-aac0-bceadec7962b", + "associationType": "isRelatedTo", + "originNodeURI": { + "title": "K.MP7 Look for and make use of structure. (:c6496676-d7cb-11e8-824f-0242ac160002:)", + "identifier": "773fa434-1360-4fdc-b784-30b4c5b9ab8b", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/773fa434-1360-4fdc-b784-30b4c5b9ab8b" + }, + "destinationNodeURI": { + "title": "ELD-SI.K-3.Argue Multilingual learners will…\n* Ask questions about others’ opinions\n* Support own opinions with reasons\n* Clarify and elaborate ideas based on feedback\n* Defend change in one’s own thinking\n* Revise one’s own opinions based on new information (:97c883b4-8590-454f-b222-f28298ec9a81:)", + "identifier": "37d4fc94-a76c-4f6a-8574-dcfd168b851c", + "uri": "https://standards.wida.us/uri/37d4fc94-a76c-4f6a-8574-dcfd168b851c" + }, + "lastChangeDateTime": "2022-05-09T20:29:10+00:00" + }, + { + "identifier": "4cc54367-dbc8-4c21-92d7-d8cfb5836f34", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/4cc54367-dbc8-4c21-92d7-d8cfb5836f34", + "associationType": "isRelatedTo", + "originNodeURI": { + "title": "1.MP7 Look for and make use of structure. (:c6496676-d7cb-11e8-824f-0242ac160002:)", + "identifier": "a22476fc-cc30-46c2-a7d5-74aac75ef60b", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/a22476fc-cc30-46c2-a7d5-74aac75ef60b" + }, + "destinationNodeURI": { + "title": "ELD-MA.1.Inform.Interpretive Multilingual learners will… Interpret mathematical informational texts by\n* Identifying concept __or entity__\n* Describing attributes and __characteristics__ (:97c883b4-8590-454f-b222-f28298ec9a81:)", + "identifier": "ba2b02ea-ee35-442b-a452-dd93cb0073de", + "uri": "https://standards.wida.us/uri/ba2b02ea-ee35-442b-a452-dd93cb0073de" + }, + "lastChangeDateTime": "2022-05-09T20:29:10+00:00" + }, + { + "identifier": "bb17bd25-a591-44c2-b8bb-573b8b5ef3bf", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/bb17bd25-a591-44c2-b8bb-573b8b5ef3bf", + "associationType": "isRelatedTo", + "originNodeURI": { + "title": "1.MP7 Look for and make use of structure. (:c6496676-d7cb-11e8-824f-0242ac160002:)", + "identifier": "a22476fc-cc30-46c2-a7d5-74aac75ef60b", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/a22476fc-cc30-46c2-a7d5-74aac75ef60b" + }, + "destinationNodeURI": { + "title": "ELD-MA.1.Inform.Expressive Multilingual learners will… Construct mathematical informational texts that\n* Define or classify concept or entity\n* Describe a concept or entity\n* Compare/contrast concepts or entities (:97c883b4-8590-454f-b222-f28298ec9a81:)", + "identifier": "acb17527-5967-4e98-9b80-d6d1f5f951b2", + "uri": "https://standards.wida.us/uri/acb17527-5967-4e98-9b80-d6d1f5f951b2" + }, + "lastChangeDateTime": "2022-05-09T20:29:10+00:00" + }, + { + "identifier": "ae182ed3-b59a-4137-94cc-9d8ed2dc27d0", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/ae182ed3-b59a-4137-94cc-9d8ed2dc27d0", + "associationType": "isRelatedTo", + "originNodeURI": { + "title": "1.MP7 Look for and make use of structure. (:c6496676-d7cb-11e8-824f-0242ac160002:)", + "identifier": "a22476fc-cc30-46c2-a7d5-74aac75ef60b", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/a22476fc-cc30-46c2-a7d5-74aac75ef60b" + }, + "destinationNodeURI": { + "title": "ELD-SI.K-3.Inform Multilingual learners will…\n* Define and classify objects or concepts\n* Describe characteristics, patterns, or behavior\n* Describe parts and wholes\n* Sort, clarify, and summarize ideas\n* Summarize information from interaction with others and from learning experiences\n (:97c883b4-8590-454f-b222-f28298ec9a81:)", + "identifier": "02f34f50-2394-4aa5-a453-3907a2e2d9f3", + "uri": "https://standards.wida.us/uri/02f34f50-2394-4aa5-a453-3907a2e2d9f3" + }, + "lastChangeDateTime": "2022-05-09T20:29:10+00:00" + }, + { + "identifier": "bd759181-2d56-4947-958c-cdad35a19871", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/bd759181-2d56-4947-958c-cdad35a19871", + "associationType": "isRelatedTo", + "originNodeURI": { + "title": "1.MP7 Look for and make use of structure. (:c6496676-d7cb-11e8-824f-0242ac160002:)", + "identifier": "a22476fc-cc30-46c2-a7d5-74aac75ef60b", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/a22476fc-cc30-46c2-a7d5-74aac75ef60b" + }, + "destinationNodeURI": { + "title": "ELD-SI.K-3.Explain Multilingual learners will…\n* Share initial thinking with others\n* Follow and describe cycles in diagrams, steps in procedures, or causes and effects\n* Compare and contrast objects or concepts\n* Offer ideas and suggestions\n* Act on feedback to revise understandings of how or why something works\n (:97c883b4-8590-454f-b222-f28298ec9a81:)", + "identifier": "6c5fff3a-c798-4671-a227-c89a994497a6", + "uri": "https://standards.wida.us/uri/6c5fff3a-c798-4671-a227-c89a994497a6" + }, + "lastChangeDateTime": "2022-05-09T20:29:10+00:00" + }, + { + "identifier": "d92088b0-0e9a-4ec6-b3f5-1b8cd05969a2", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/d92088b0-0e9a-4ec6-b3f5-1b8cd05969a2", + "associationType": "isRelatedTo", + "originNodeURI": { + "title": "1.MP7 Look for and make use of structure. (:c6496676-d7cb-11e8-824f-0242ac160002:)", + "identifier": "a22476fc-cc30-46c2-a7d5-74aac75ef60b", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/a22476fc-cc30-46c2-a7d5-74aac75ef60b" + }, + "destinationNodeURI": { + "title": "ELD-SI.K-3.Argue Multilingual learners will…\n* Ask questions about others’ opinions\n* Support own opinions with reasons\n* Clarify and elaborate ideas based on feedback\n* Defend change in one’s own thinking\n* Revise one’s own opinions based on new information (:97c883b4-8590-454f-b222-f28298ec9a81:)", + "identifier": "37d4fc94-a76c-4f6a-8574-dcfd168b851c", + "uri": "https://standards.wida.us/uri/37d4fc94-a76c-4f6a-8574-dcfd168b851c" + }, + "lastChangeDateTime": "2022-05-09T20:29:10+00:00" + }, + { + "identifier": "5cfa7e00-665e-4e91-adf5-ce2644b57f15", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/5cfa7e00-665e-4e91-adf5-ce2644b57f15", + "associationType": "isRelatedTo", + "originNodeURI": { + "title": "2.MP7 Look for and make use of structure. (:c6496676-d7cb-11e8-824f-0242ac160002:)", + "identifier": "c7f75e3e-5854-4357-ab76-917c3ccf04b5", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/c7f75e3e-5854-4357-ab76-917c3ccf04b5" + }, + "destinationNodeURI": { + "title": "ELD-MA.2-3.Explain.Interpretive Multilingual learners will… Interpret mathematical explanations by\n* Identifying concept or entity\n* __Analyzing plan for problem-solving steps__\n* __Evaluating simple pattern or structure__ (:97c883b4-8590-454f-b222-f28298ec9a81:)", + "identifier": "2e261b10-856a-4fee-bedd-54213c90edd1", + "uri": "https://standards.wida.us/uri/2e261b10-856a-4fee-bedd-54213c90edd1" + }, + "lastChangeDateTime": "2022-05-09T20:29:10+00:00" + }, + { + "identifier": "ce8ed754-ad2a-4e17-a0c4-90138d5575c2", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/ce8ed754-ad2a-4e17-a0c4-90138d5575c2", + "associationType": "isRelatedTo", + "originNodeURI": { + "title": "2.MP7 Look for and make use of structure. (:c6496676-d7cb-11e8-824f-0242ac160002:)", + "identifier": "c7f75e3e-5854-4357-ab76-917c3ccf04b5", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/c7f75e3e-5854-4357-ab76-917c3ccf04b5" + }, + "destinationNodeURI": { + "title": "ELD-MA.2-3.Explain.Expressive Multilingual learners will… Construct mathematical explanations that\n* Introduce concept or entity\n* __Describe solution and steps used to solve problem with others__\n* __State reasoning used to generate solution__ (:97c883b4-8590-454f-b222-f28298ec9a81:)", + "identifier": "a292d38b-ce22-463b-8bde-07d6f5e13917", + "uri": "https://standards.wida.us/uri/a292d38b-ce22-463b-8bde-07d6f5e13917" + }, + "lastChangeDateTime": "2022-05-09T20:29:10+00:00" + }, + { + "identifier": "7510e4ea-a3e1-41fa-86a7-def33c487c17", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/7510e4ea-a3e1-41fa-86a7-def33c487c17", + "associationType": "isRelatedTo", + "originNodeURI": { + "title": "2.MP7 Look for and make use of structure. (:c6496676-d7cb-11e8-824f-0242ac160002:)", + "identifier": "c7f75e3e-5854-4357-ab76-917c3ccf04b5", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/c7f75e3e-5854-4357-ab76-917c3ccf04b5" + }, + "destinationNodeURI": { + "title": "ELD-SI.K-3.Inform Multilingual learners will…\n* Define and classify objects or concepts\n* Describe characteristics, patterns, or behavior\n* Describe parts and wholes\n* Sort, clarify, and summarize ideas\n* Summarize information from interaction with others and from learning experiences\n (:97c883b4-8590-454f-b222-f28298ec9a81:)", + "identifier": "02f34f50-2394-4aa5-a453-3907a2e2d9f3", + "uri": "https://standards.wida.us/uri/02f34f50-2394-4aa5-a453-3907a2e2d9f3" + }, + "lastChangeDateTime": "2022-05-09T20:29:10+00:00" + }, + { + "identifier": "952b5c2e-328a-4620-86d4-222dd77ed866", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/952b5c2e-328a-4620-86d4-222dd77ed866", + "associationType": "isRelatedTo", + "originNodeURI": { + "title": "2.MP7 Look for and make use of structure. (:c6496676-d7cb-11e8-824f-0242ac160002:)", + "identifier": "c7f75e3e-5854-4357-ab76-917c3ccf04b5", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/c7f75e3e-5854-4357-ab76-917c3ccf04b5" + }, + "destinationNodeURI": { + "title": "ELD-SI.K-3.Explain Multilingual learners will…\n* Share initial thinking with others\n* Follow and describe cycles in diagrams, steps in procedures, or causes and effects\n* Compare and contrast objects or concepts\n* Offer ideas and suggestions\n* Act on feedback to revise understandings of how or why something works\n (:97c883b4-8590-454f-b222-f28298ec9a81:)", + "identifier": "6c5fff3a-c798-4671-a227-c89a994497a6", + "uri": "https://standards.wida.us/uri/6c5fff3a-c798-4671-a227-c89a994497a6" + }, + "lastChangeDateTime": "2022-05-09T20:29:10+00:00" + }, + { + "identifier": "2e8941dc-145b-4030-9143-ab65bf60b50a", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/2e8941dc-145b-4030-9143-ab65bf60b50a", + "associationType": "isRelatedTo", + "originNodeURI": { + "title": "2.MP7 Look for and make use of structure. (:c6496676-d7cb-11e8-824f-0242ac160002:)", + "identifier": "c7f75e3e-5854-4357-ab76-917c3ccf04b5", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/c7f75e3e-5854-4357-ab76-917c3ccf04b5" + }, + "destinationNodeURI": { + "title": "ELD-SI.K-3.Argue Multilingual learners will…\n* Ask questions about others’ opinions\n* Support own opinions with reasons\n* Clarify and elaborate ideas based on feedback\n* Defend change in one’s own thinking\n* Revise one’s own opinions based on new information (:97c883b4-8590-454f-b222-f28298ec9a81:)", + "identifier": "37d4fc94-a76c-4f6a-8574-dcfd168b851c", + "uri": "https://standards.wida.us/uri/37d4fc94-a76c-4f6a-8574-dcfd168b851c" + }, + "lastChangeDateTime": "2022-05-09T20:29:10+00:00" + }, + { + "identifier": "53055bc5-beaa-4a90-bee0-834a8df3fe1c", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/53055bc5-beaa-4a90-bee0-834a8df3fe1c", + "associationType": "isRelatedTo", + "originNodeURI": { + "title": "3.MP7 Look for and make use of structure. (:c6496676-d7cb-11e8-824f-0242ac160002:)", + "identifier": "81fe2d1a-6d29-4cbd-ab28-e992b250a176", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/81fe2d1a-6d29-4cbd-ab28-e992b250a176" + }, + "destinationNodeURI": { + "title": "ELD-MA.2-3.Explain.Interpretive Multilingual learners will… Interpret mathematical explanations by\n* Identifying concept or entity\n* __Analyzing plan for problem-solving steps__\n* __Evaluating simple pattern or structure__ (:97c883b4-8590-454f-b222-f28298ec9a81:)", + "identifier": "2e261b10-856a-4fee-bedd-54213c90edd1", + "uri": "https://standards.wida.us/uri/2e261b10-856a-4fee-bedd-54213c90edd1" + }, + "lastChangeDateTime": "2022-05-09T20:29:10+00:00" + }, + { + "identifier": "41b51ff7-e39c-4299-8518-790cd637597e", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/41b51ff7-e39c-4299-8518-790cd637597e", + "associationType": "isRelatedTo", + "originNodeURI": { + "title": "3.MP7 Look for and make use of structure. (:c6496676-d7cb-11e8-824f-0242ac160002:)", + "identifier": "81fe2d1a-6d29-4cbd-ab28-e992b250a176", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/81fe2d1a-6d29-4cbd-ab28-e992b250a176" + }, + "destinationNodeURI": { + "title": "ELD-MA.2-3.Explain.Expressive Multilingual learners will… Construct mathematical explanations that\n* Introduce concept or entity\n* __Describe solution and steps used to solve problem with others__\n* __State reasoning used to generate solution__ (:97c883b4-8590-454f-b222-f28298ec9a81:)", + "identifier": "a292d38b-ce22-463b-8bde-07d6f5e13917", + "uri": "https://standards.wida.us/uri/a292d38b-ce22-463b-8bde-07d6f5e13917" + }, + "lastChangeDateTime": "2022-05-09T20:29:10+00:00" + }, + { + "identifier": "9f882022-2237-43cd-850a-c4ec9ce3c1ef", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/9f882022-2237-43cd-850a-c4ec9ce3c1ef", + "associationType": "isRelatedTo", + "originNodeURI": { + "title": "3.MP7 Look for and make use of structure. (:c6496676-d7cb-11e8-824f-0242ac160002:)", + "identifier": "81fe2d1a-6d29-4cbd-ab28-e992b250a176", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/81fe2d1a-6d29-4cbd-ab28-e992b250a176" + }, + "destinationNodeURI": { + "title": "ELD-SI.K-3.Inform Multilingual learners will…\n* Define and classify objects or concepts\n* Describe characteristics, patterns, or behavior\n* Describe parts and wholes\n* Sort, clarify, and summarize ideas\n* Summarize information from interaction with others and from learning experiences\n (:97c883b4-8590-454f-b222-f28298ec9a81:)", + "identifier": "02f34f50-2394-4aa5-a453-3907a2e2d9f3", + "uri": "https://standards.wida.us/uri/02f34f50-2394-4aa5-a453-3907a2e2d9f3" + }, + "lastChangeDateTime": "2022-05-09T20:29:10+00:00" + }, + { + "identifier": "a7d0cf50-7fca-4180-a1a8-28c13fdbe598", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/a7d0cf50-7fca-4180-a1a8-28c13fdbe598", + "associationType": "isRelatedTo", + "originNodeURI": { + "title": "3.MP7 Look for and make use of structure. (:c6496676-d7cb-11e8-824f-0242ac160002:)", + "identifier": "81fe2d1a-6d29-4cbd-ab28-e992b250a176", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/81fe2d1a-6d29-4cbd-ab28-e992b250a176" + }, + "destinationNodeURI": { + "title": "ELD-SI.K-3.Explain Multilingual learners will…\n* Share initial thinking with others\n* Follow and describe cycles in diagrams, steps in procedures, or causes and effects\n* Compare and contrast objects or concepts\n* Offer ideas and suggestions\n* Act on feedback to revise understandings of how or why something works\n (:97c883b4-8590-454f-b222-f28298ec9a81:)", + "identifier": "6c5fff3a-c798-4671-a227-c89a994497a6", + "uri": "https://standards.wida.us/uri/6c5fff3a-c798-4671-a227-c89a994497a6" + }, + "lastChangeDateTime": "2022-05-09T20:29:10+00:00" + }, + { + "identifier": "5ccc5075-b33c-46b4-ad40-50f622224f53", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/5ccc5075-b33c-46b4-ad40-50f622224f53", + "associationType": "isRelatedTo", + "originNodeURI": { + "title": "3.MP7 Look for and make use of structure. (:c6496676-d7cb-11e8-824f-0242ac160002:)", + "identifier": "81fe2d1a-6d29-4cbd-ab28-e992b250a176", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/81fe2d1a-6d29-4cbd-ab28-e992b250a176" + }, + "destinationNodeURI": { + "title": "ELD-SI.K-3.Argue Multilingual learners will…\n* Ask questions about others’ opinions\n* Support own opinions with reasons\n* Clarify and elaborate ideas based on feedback\n* Defend change in one’s own thinking\n* Revise one’s own opinions based on new information (:97c883b4-8590-454f-b222-f28298ec9a81:)", + "identifier": "37d4fc94-a76c-4f6a-8574-dcfd168b851c", + "uri": "https://standards.wida.us/uri/37d4fc94-a76c-4f6a-8574-dcfd168b851c" + }, + "lastChangeDateTime": "2022-05-09T20:29:10+00:00" + }, + { + "identifier": "9f4e6ff5-ff7b-4ea6-8c25-0dd59d1518bc", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/9f4e6ff5-ff7b-4ea6-8c25-0dd59d1518bc", + "associationType": "isRelatedTo", + "originNodeURI": { + "title": "4.MP7 Look for and make use of structure. (:c6496676-d7cb-11e8-824f-0242ac160002:)", + "identifier": "b3ff2e2a-9bfe-44c3-b58d-ea335b92a5de", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/b3ff2e2a-9bfe-44c3-b58d-ea335b92a5de" + }, + "destinationNodeURI": { + "title": "ELD-MA.4-5.Explain.Interpretive Multilingual learners will… Interpret mathematical explanations by\n* Identifying concept or entity\n* Analyzing problem-solving steps\n* Evaluating a __pattern__ or structure that follows a given rule (:97c883b4-8590-454f-b222-f28298ec9a81:)", + "identifier": "b41b7a96-6061-4d5b-95f8-97a744b4f2de", + "uri": "https://standards.wida.us/uri/b41b7a96-6061-4d5b-95f8-97a744b4f2de" + }, + "lastChangeDateTime": "2022-05-09T20:29:10+00:00" + }, + { + "identifier": "4c80974f-99ec-48be-8e1a-2d9699cde4e5", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/4c80974f-99ec-48be-8e1a-2d9699cde4e5", + "associationType": "isRelatedTo", + "originNodeURI": { + "title": "4.MP7 Look for and make use of structure. (:c6496676-d7cb-11e8-824f-0242ac160002:)", + "identifier": "b3ff2e2a-9bfe-44c3-b58d-ea335b92a5de", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/b3ff2e2a-9bfe-44c3-b58d-ea335b92a5de" + }, + "destinationNodeURI": { + "title": "ELD-MA.4-5.Explain.Expressive Multilingual learners will…\n\nConstruct mathematical explanations that\n* Introduce concept or entity\n* Share solution __with others__\n* Describe data and/or steps __to solve problem__\n* State reasoning used to generate solution (:97c883b4-8590-454f-b222-f28298ec9a81:)", + "identifier": "b9bd7205-dc82-4577-82bd-adb38360f785", + "uri": "https://standards.wida.us/uri/b9bd7205-dc82-4577-82bd-adb38360f785" + }, + "lastChangeDateTime": "2022-05-09T20:29:10+00:00" + }, + { + "identifier": "5ff4e943-12da-4eaf-be35-7913c7a8a3d8", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/5ff4e943-12da-4eaf-be35-7913c7a8a3d8", + "associationType": "isRelatedTo", + "originNodeURI": { + "title": "4.MP7 Look for and make use of structure. (:c6496676-d7cb-11e8-824f-0242ac160002:)", + "identifier": "b3ff2e2a-9bfe-44c3-b58d-ea335b92a5de", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/b3ff2e2a-9bfe-44c3-b58d-ea335b92a5de" + }, + "destinationNodeURI": { + "title": "ELD-SI.4-12.Inform Multilingual learners will…\n* Define and classify __facts and interpretations; determine what is known vs. unknown__\n* __Report on explicit and inferred characteristics, patterns, or behavior__\n* Describe the parts and wholes __of a system__\n* Sort, clarify, and summarize __relationships__\n* Summarize __most important aspects of information__ (:97c883b4-8590-454f-b222-f28298ec9a81:)", + "identifier": "2fb8c896-09a1-4dcc-b08f-c0c2f68ba2f5", + "uri": "https://standards.wida.us/uri/2fb8c896-09a1-4dcc-b08f-c0c2f68ba2f5" + }, + "lastChangeDateTime": "2022-05-09T20:29:10+00:00" + }, + { + "identifier": "4a425eee-bfeb-42d6-8f34-793f0ad1856c", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/4a425eee-bfeb-42d6-8f34-793f0ad1856c", + "associationType": "isRelatedTo", + "originNodeURI": { + "title": "4.MP7 Look for and make use of structure. (:c6496676-d7cb-11e8-824f-0242ac160002:)", + "identifier": "b3ff2e2a-9bfe-44c3-b58d-ea335b92a5de", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/b3ff2e2a-9bfe-44c3-b58d-ea335b92a5de" + }, + "destinationNodeURI": { + "title": "ELD-SI.4-12.Explain Multilingual learners will…\n* __Generate and convey initial thinking__\n* Follow and describe cycles __and sequences of steps or procedures and their causes and effects__\n* Compare changing __variables, factors, and circumstances__\n* Offer __alternatives to extend or deepen awareness of factors that contribute to particular outcomes__\n* Act on feedback to revise understandings of how or why something is or works __in particular ways__ (:97c883b4-8590-454f-b222-f28298ec9a81:)", + "identifier": "4d380613-fde8-41f9-b3c7-3313a20d813b", + "uri": "https://standards.wida.us/uri/4d380613-fde8-41f9-b3c7-3313a20d813b" + }, + "lastChangeDateTime": "2022-05-09T20:29:10+00:00" + }, + { + "identifier": "143577d9-8aef-4170-bf82-d429f540b423", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/143577d9-8aef-4170-bf82-d429f540b423", + "associationType": "isRelatedTo", + "originNodeURI": { + "title": "4.MP7 Look for and make use of structure. (:c6496676-d7cb-11e8-824f-0242ac160002:)", + "identifier": "b3ff2e2a-9bfe-44c3-b58d-ea335b92a5de", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/b3ff2e2a-9bfe-44c3-b58d-ea335b92a5de" + }, + "destinationNodeURI": { + "title": "ELD-SI.4-12.Argue Multilingual learners will…\n* __Generate questions about different perspectives__\n* Support __or challenge__ an opinion, __premise, or interpretation__\n* Clarify and elaborate ideas based on feedback\n* __Evaluate changes in thinking, identifying trade-offs__\n* Refine __claims and reasoning based on new information or evidence__ (:97c883b4-8590-454f-b222-f28298ec9a81:)", + "identifier": "05fa0120-5bbd-47ee-a0e2-039e65bc7442", + "uri": "https://standards.wida.us/uri/05fa0120-5bbd-47ee-a0e2-039e65bc7442" + }, + "lastChangeDateTime": "2022-05-09T20:29:10+00:00" + }, + { + "identifier": "36b03611-3128-4b2a-a475-cfa95a723bae", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/36b03611-3128-4b2a-a475-cfa95a723bae", + "associationType": "isRelatedTo", + "originNodeURI": { + "title": "5.MP7 Look for and make use of structure. (:c6496676-d7cb-11e8-824f-0242ac160002:)", + "identifier": "3299c99e-0e94-49a0-b180-d466c8ab3a22", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/3299c99e-0e94-49a0-b180-d466c8ab3a22" + }, + "destinationNodeURI": { + "title": "ELD-MA.4-5.Explain.Interpretive Multilingual learners will… Interpret mathematical explanations by\n* Identifying concept or entity\n* Analyzing problem-solving steps\n* Evaluating a __pattern__ or structure that follows a given rule (:97c883b4-8590-454f-b222-f28298ec9a81:)", + "identifier": "b41b7a96-6061-4d5b-95f8-97a744b4f2de", + "uri": "https://standards.wida.us/uri/b41b7a96-6061-4d5b-95f8-97a744b4f2de" + }, + "lastChangeDateTime": "2022-05-09T20:29:10+00:00" + }, + { + "identifier": "2f1ff19f-1a89-48bc-a3c3-62d268afa0da", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/2f1ff19f-1a89-48bc-a3c3-62d268afa0da", + "associationType": "isRelatedTo", + "originNodeURI": { + "title": "5.MP7 Look for and make use of structure. (:c6496676-d7cb-11e8-824f-0242ac160002:)", + "identifier": "3299c99e-0e94-49a0-b180-d466c8ab3a22", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/3299c99e-0e94-49a0-b180-d466c8ab3a22" + }, + "destinationNodeURI": { + "title": "ELD-MA.4-5.Explain.Expressive Multilingual learners will…\n\nConstruct mathematical explanations that\n* Introduce concept or entity\n* Share solution __with others__\n* Describe data and/or steps __to solve problem__\n* State reasoning used to generate solution (:97c883b4-8590-454f-b222-f28298ec9a81:)", + "identifier": "b9bd7205-dc82-4577-82bd-adb38360f785", + "uri": "https://standards.wida.us/uri/b9bd7205-dc82-4577-82bd-adb38360f785" + }, + "lastChangeDateTime": "2022-05-09T20:29:10+00:00" + }, + { + "identifier": "f49cb572-7510-4c92-85d9-d062a723e123", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/f49cb572-7510-4c92-85d9-d062a723e123", + "associationType": "isRelatedTo", + "originNodeURI": { + "title": "5.MP7 Look for and make use of structure. (:c6496676-d7cb-11e8-824f-0242ac160002:)", + "identifier": "3299c99e-0e94-49a0-b180-d466c8ab3a22", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/3299c99e-0e94-49a0-b180-d466c8ab3a22" + }, + "destinationNodeURI": { + "title": "ELD-SI.4-12.Inform Multilingual learners will…\n* Define and classify __facts and interpretations; determine what is known vs. unknown__\n* __Report on explicit and inferred characteristics, patterns, or behavior__\n* Describe the parts and wholes __of a system__\n* Sort, clarify, and summarize __relationships__\n* Summarize __most important aspects of information__ (:97c883b4-8590-454f-b222-f28298ec9a81:)", + "identifier": "2fb8c896-09a1-4dcc-b08f-c0c2f68ba2f5", + "uri": "https://standards.wida.us/uri/2fb8c896-09a1-4dcc-b08f-c0c2f68ba2f5" + }, + "lastChangeDateTime": "2022-05-09T20:29:10+00:00" + }, + { + "identifier": "b4055d9b-680d-410c-b50e-62adb2910978", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/b4055d9b-680d-410c-b50e-62adb2910978", + "associationType": "isRelatedTo", + "originNodeURI": { + "title": "5.MP7 Look for and make use of structure. (:c6496676-d7cb-11e8-824f-0242ac160002:)", + "identifier": "3299c99e-0e94-49a0-b180-d466c8ab3a22", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/3299c99e-0e94-49a0-b180-d466c8ab3a22" + }, + "destinationNodeURI": { + "title": "ELD-SI.4-12.Explain Multilingual learners will…\n* __Generate and convey initial thinking__\n* Follow and describe cycles __and sequences of steps or procedures and their causes and effects__\n* Compare changing __variables, factors, and circumstances__\n* Offer __alternatives to extend or deepen awareness of factors that contribute to particular outcomes__\n* Act on feedback to revise understandings of how or why something is or works __in particular ways__ (:97c883b4-8590-454f-b222-f28298ec9a81:)", + "identifier": "4d380613-fde8-41f9-b3c7-3313a20d813b", + "uri": "https://standards.wida.us/uri/4d380613-fde8-41f9-b3c7-3313a20d813b" + }, + "lastChangeDateTime": "2022-05-09T20:29:10+00:00" + }, + { + "identifier": "3e93f94a-3734-4329-8c0c-3e65f36f7cb6", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/3e93f94a-3734-4329-8c0c-3e65f36f7cb6", + "associationType": "isRelatedTo", + "originNodeURI": { + "title": "5.MP7 Look for and make use of structure. (:c6496676-d7cb-11e8-824f-0242ac160002:)", + "identifier": "3299c99e-0e94-49a0-b180-d466c8ab3a22", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/3299c99e-0e94-49a0-b180-d466c8ab3a22" + }, + "destinationNodeURI": { + "title": "ELD-SI.4-12.Argue Multilingual learners will…\n* __Generate questions about different perspectives__\n* Support __or challenge__ an opinion, __premise, or interpretation__\n* Clarify and elaborate ideas based on feedback\n* __Evaluate changes in thinking, identifying trade-offs__\n* Refine __claims and reasoning based on new information or evidence__ (:97c883b4-8590-454f-b222-f28298ec9a81:)", + "identifier": "05fa0120-5bbd-47ee-a0e2-039e65bc7442", + "uri": "https://standards.wida.us/uri/05fa0120-5bbd-47ee-a0e2-039e65bc7442" + }, + "lastChangeDateTime": "2022-05-09T20:29:10+00:00" + }, + { + "identifier": "d4b11a39-8162-49cf-938f-887c4bbbed16", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/d4b11a39-8162-49cf-938f-887c4bbbed16", + "associationType": "isRelatedTo", + "originNodeURI": { + "title": "6.MP7 Look for and make use of structure. (:c6496676-d7cb-11e8-824f-0242ac160002:)", + "identifier": "cfb61941-38e5-49d1-aa1c-2ee582bf07bd", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/cfb61941-38e5-49d1-aa1c-2ee582bf07bd" + }, + "destinationNodeURI": { + "title": "ELD-MA.6-8.Explain.Interpretive Multilingual learners will… Interpret mathematical explanations by\n* Identifying concept or entity\n* Analyzing possible __ways to represent and solve a problem__\n* Evaluating __model and rationale for underlying relationships in selected problem-solving approach__ (:97c883b4-8590-454f-b222-f28298ec9a81:)", + "identifier": "b380aaf9-f435-4b8d-b65e-c92fa5599471", + "uri": "https://standards.wida.us/uri/b380aaf9-f435-4b8d-b65e-c92fa5599471" + }, + "lastChangeDateTime": "2022-05-09T20:29:10+00:00" + }, + { + "identifier": "4e84504d-3c3a-4d45-bba1-2ff64bdc3395", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/4e84504d-3c3a-4d45-bba1-2ff64bdc3395", + "associationType": "isRelatedTo", + "originNodeURI": { + "title": "6.MP7 Look for and make use of structure. (:c6496676-d7cb-11e8-824f-0242ac160002:)", + "identifier": "cfb61941-38e5-49d1-aa1c-2ee582bf07bd", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/cfb61941-38e5-49d1-aa1c-2ee582bf07bd" + }, + "destinationNodeURI": { + "title": "ELD-MA.6-8.Explain.Expressive Multilingual learners will…\n\nConstruct mathematical explanations that\n* Introduce concept or entity\n* Share solution with others\n* Describe data and/or __problem-solving strategy__\n* State reasoning used to generate solution (:97c883b4-8590-454f-b222-f28298ec9a81:)", + "identifier": "b5f229b5-53d0-4a5e-86b6-cda8d0ac149e", + "uri": "https://standards.wida.us/uri/b5f229b5-53d0-4a5e-86b6-cda8d0ac149e" + }, + "lastChangeDateTime": "2022-05-09T20:29:10+00:00" + }, + { + "identifier": "e7f41817-ecfc-46f4-963e-0ee8f8709c60", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/e7f41817-ecfc-46f4-963e-0ee8f8709c60", + "associationType": "isRelatedTo", + "originNodeURI": { + "title": "6.MP7 Look for and make use of structure. (:c6496676-d7cb-11e8-824f-0242ac160002:)", + "identifier": "cfb61941-38e5-49d1-aa1c-2ee582bf07bd", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/cfb61941-38e5-49d1-aa1c-2ee582bf07bd" + }, + "destinationNodeURI": { + "title": "ELD-SI.4-12.Inform Multilingual learners will…\n* Define and classify __facts and interpretations; determine what is known vs. unknown__\n* __Report on explicit and inferred characteristics, patterns, or behavior__\n* Describe the parts and wholes __of a system__\n* Sort, clarify, and summarize __relationships__\n* Summarize __most important aspects of information__ (:97c883b4-8590-454f-b222-f28298ec9a81:)", + "identifier": "2fb8c896-09a1-4dcc-b08f-c0c2f68ba2f5", + "uri": "https://standards.wida.us/uri/2fb8c896-09a1-4dcc-b08f-c0c2f68ba2f5" + }, + "lastChangeDateTime": "2022-05-09T20:29:10+00:00" + }, + { + "identifier": "b6901fd3-53c3-4b1a-827d-3a289bf0427c", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/b6901fd3-53c3-4b1a-827d-3a289bf0427c", + "associationType": "isRelatedTo", + "originNodeURI": { + "title": "6.MP7 Look for and make use of structure. (:c6496676-d7cb-11e8-824f-0242ac160002:)", + "identifier": "cfb61941-38e5-49d1-aa1c-2ee582bf07bd", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/cfb61941-38e5-49d1-aa1c-2ee582bf07bd" + }, + "destinationNodeURI": { + "title": "ELD-SI.4-12.Explain Multilingual learners will…\n* __Generate and convey initial thinking__\n* Follow and describe cycles __and sequences of steps or procedures and their causes and effects__\n* Compare changing __variables, factors, and circumstances__\n* Offer __alternatives to extend or deepen awareness of factors that contribute to particular outcomes__\n* Act on feedback to revise understandings of how or why something is or works __in particular ways__ (:97c883b4-8590-454f-b222-f28298ec9a81:)", + "identifier": "4d380613-fde8-41f9-b3c7-3313a20d813b", + "uri": "https://standards.wida.us/uri/4d380613-fde8-41f9-b3c7-3313a20d813b" + }, + "lastChangeDateTime": "2022-05-09T20:29:10+00:00" + }, + { + "identifier": "a4bbf186-859a-4eb9-9bf7-b192ebd777a1", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/a4bbf186-859a-4eb9-9bf7-b192ebd777a1", + "associationType": "isRelatedTo", + "originNodeURI": { + "title": "6.MP7 Look for and make use of structure. (:c6496676-d7cb-11e8-824f-0242ac160002:)", + "identifier": "cfb61941-38e5-49d1-aa1c-2ee582bf07bd", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/cfb61941-38e5-49d1-aa1c-2ee582bf07bd" + }, + "destinationNodeURI": { + "title": "ELD-SI.4-12.Argue Multilingual learners will…\n* __Generate questions about different perspectives__\n* Support __or challenge__ an opinion, __premise, or interpretation__\n* Clarify and elaborate ideas based on feedback\n* __Evaluate changes in thinking, identifying trade-offs__\n* Refine __claims and reasoning based on new information or evidence__ (:97c883b4-8590-454f-b222-f28298ec9a81:)", + "identifier": "05fa0120-5bbd-47ee-a0e2-039e65bc7442", + "uri": "https://standards.wida.us/uri/05fa0120-5bbd-47ee-a0e2-039e65bc7442" + }, + "lastChangeDateTime": "2022-05-09T20:29:10+00:00" + }, + { + "identifier": "f0bbbfaf-a3a5-47df-ba85-50cdf7227f6e", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/f0bbbfaf-a3a5-47df-ba85-50cdf7227f6e", + "associationType": "isRelatedTo", + "originNodeURI": { + "title": "7.MP7 Look for and make use of structure. (:c6496676-d7cb-11e8-824f-0242ac160002:)", + "identifier": "e00a3a42-5832-4722-913f-c6e9686bf17f", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/e00a3a42-5832-4722-913f-c6e9686bf17f" + }, + "destinationNodeURI": { + "title": "ELD-MA.6-8.Explain.Interpretive Multilingual learners will… Interpret mathematical explanations by\n* Identifying concept or entity\n* Analyzing possible __ways to represent and solve a problem__\n* Evaluating __model and rationale for underlying relationships in selected problem-solving approach__ (:97c883b4-8590-454f-b222-f28298ec9a81:)", + "identifier": "b380aaf9-f435-4b8d-b65e-c92fa5599471", + "uri": "https://standards.wida.us/uri/b380aaf9-f435-4b8d-b65e-c92fa5599471" + }, + "lastChangeDateTime": "2022-05-09T20:29:10+00:00" + }, + { + "identifier": "d339e54a-b3f7-47fe-9649-5d5fe3cacad3", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/d339e54a-b3f7-47fe-9649-5d5fe3cacad3", + "associationType": "isRelatedTo", + "originNodeURI": { + "title": "7.MP7 Look for and make use of structure. (:c6496676-d7cb-11e8-824f-0242ac160002:)", + "identifier": "e00a3a42-5832-4722-913f-c6e9686bf17f", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/e00a3a42-5832-4722-913f-c6e9686bf17f" + }, + "destinationNodeURI": { + "title": "ELD-MA.6-8.Explain.Expressive Multilingual learners will…\n\nConstruct mathematical explanations that\n* Introduce concept or entity\n* Share solution with others\n* Describe data and/or __problem-solving strategy__\n* State reasoning used to generate solution (:97c883b4-8590-454f-b222-f28298ec9a81:)", + "identifier": "b5f229b5-53d0-4a5e-86b6-cda8d0ac149e", + "uri": "https://standards.wida.us/uri/b5f229b5-53d0-4a5e-86b6-cda8d0ac149e" + }, + "lastChangeDateTime": "2022-05-09T20:29:10+00:00" + }, + { + "identifier": "80f631cc-3530-4005-b717-905238877ecb", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/80f631cc-3530-4005-b717-905238877ecb", + "associationType": "isRelatedTo", + "originNodeURI": { + "title": "7.MP7 Look for and make use of structure. (:c6496676-d7cb-11e8-824f-0242ac160002:)", + "identifier": "e00a3a42-5832-4722-913f-c6e9686bf17f", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/e00a3a42-5832-4722-913f-c6e9686bf17f" + }, + "destinationNodeURI": { + "title": "ELD-SI.4-12.Inform Multilingual learners will…\n* Define and classify __facts and interpretations; determine what is known vs. unknown__\n* __Report on explicit and inferred characteristics, patterns, or behavior__\n* Describe the parts and wholes __of a system__\n* Sort, clarify, and summarize __relationships__\n* Summarize __most important aspects of information__ (:97c883b4-8590-454f-b222-f28298ec9a81:)", + "identifier": "2fb8c896-09a1-4dcc-b08f-c0c2f68ba2f5", + "uri": "https://standards.wida.us/uri/2fb8c896-09a1-4dcc-b08f-c0c2f68ba2f5" + }, + "lastChangeDateTime": "2022-05-09T20:29:10+00:00" + }, + { + "identifier": "1ac08294-c899-4bbb-b2d0-4d7650859765", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/1ac08294-c899-4bbb-b2d0-4d7650859765", + "associationType": "isRelatedTo", + "originNodeURI": { + "title": "7.MP7 Look for and make use of structure. (:c6496676-d7cb-11e8-824f-0242ac160002:)", + "identifier": "e00a3a42-5832-4722-913f-c6e9686bf17f", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/e00a3a42-5832-4722-913f-c6e9686bf17f" + }, + "destinationNodeURI": { + "title": "ELD-SI.4-12.Explain Multilingual learners will…\n* __Generate and convey initial thinking__\n* Follow and describe cycles __and sequences of steps or procedures and their causes and effects__\n* Compare changing __variables, factors, and circumstances__\n* Offer __alternatives to extend or deepen awareness of factors that contribute to particular outcomes__\n* Act on feedback to revise understandings of how or why something is or works __in particular ways__ (:97c883b4-8590-454f-b222-f28298ec9a81:)", + "identifier": "4d380613-fde8-41f9-b3c7-3313a20d813b", + "uri": "https://standards.wida.us/uri/4d380613-fde8-41f9-b3c7-3313a20d813b" + }, + "lastChangeDateTime": "2022-05-09T20:29:10+00:00" + }, + { + "identifier": "3add7d8e-b912-44b6-9b57-93f6ae7c1817", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/3add7d8e-b912-44b6-9b57-93f6ae7c1817", + "associationType": "isRelatedTo", + "originNodeURI": { + "title": "7.MP7 Look for and make use of structure. (:c6496676-d7cb-11e8-824f-0242ac160002:)", + "identifier": "e00a3a42-5832-4722-913f-c6e9686bf17f", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/e00a3a42-5832-4722-913f-c6e9686bf17f" + }, + "destinationNodeURI": { + "title": "ELD-SI.4-12.Argue Multilingual learners will…\n* __Generate questions about different perspectives__\n* Support __or challenge__ an opinion, __premise, or interpretation__\n* Clarify and elaborate ideas based on feedback\n* __Evaluate changes in thinking, identifying trade-offs__\n* Refine __claims and reasoning based on new information or evidence__ (:97c883b4-8590-454f-b222-f28298ec9a81:)", + "identifier": "05fa0120-5bbd-47ee-a0e2-039e65bc7442", + "uri": "https://standards.wida.us/uri/05fa0120-5bbd-47ee-a0e2-039e65bc7442" + }, + "lastChangeDateTime": "2022-05-09T20:29:10+00:00" + }, + { + "identifier": "3db5467f-be74-4d37-a01c-e258f3a93f95", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/3db5467f-be74-4d37-a01c-e258f3a93f95", + "associationType": "isRelatedTo", + "originNodeURI": { + "title": "8.MP7 Look for and make use of structure. (:c6496676-d7cb-11e8-824f-0242ac160002:)", + "identifier": "3d43e565-fca4-4bb3-8449-c1748f9a0e80", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/3d43e565-fca4-4bb3-8449-c1748f9a0e80" + }, + "destinationNodeURI": { + "title": "ELD-MA.6-8.Explain.Interpretive Multilingual learners will… Interpret mathematical explanations by\n* Identifying concept or entity\n* Analyzing possible __ways to represent and solve a problem__\n* Evaluating __model and rationale for underlying relationships in selected problem-solving approach__ (:97c883b4-8590-454f-b222-f28298ec9a81:)", + "identifier": "b380aaf9-f435-4b8d-b65e-c92fa5599471", + "uri": "https://standards.wida.us/uri/b380aaf9-f435-4b8d-b65e-c92fa5599471" + }, + "lastChangeDateTime": "2022-05-09T20:29:10+00:00" + }, + { + "identifier": "f4eebcb7-99db-45ef-8e80-907f3567b90a", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/f4eebcb7-99db-45ef-8e80-907f3567b90a", + "associationType": "isRelatedTo", + "originNodeURI": { + "title": "8.MP7 Look for and make use of structure. (:c6496676-d7cb-11e8-824f-0242ac160002:)", + "identifier": "3d43e565-fca4-4bb3-8449-c1748f9a0e80", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/3d43e565-fca4-4bb3-8449-c1748f9a0e80" + }, + "destinationNodeURI": { + "title": "ELD-MA.6-8.Explain.Expressive Multilingual learners will…\n\nConstruct mathematical explanations that\n* Introduce concept or entity\n* Share solution with others\n* Describe data and/or __problem-solving strategy__\n* State reasoning used to generate solution (:97c883b4-8590-454f-b222-f28298ec9a81:)", + "identifier": "b5f229b5-53d0-4a5e-86b6-cda8d0ac149e", + "uri": "https://standards.wida.us/uri/b5f229b5-53d0-4a5e-86b6-cda8d0ac149e" + }, + "lastChangeDateTime": "2022-05-09T20:29:10+00:00" + }, + { + "identifier": "eb27fa80-ff77-448a-8771-feee9d4e552a", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/eb27fa80-ff77-448a-8771-feee9d4e552a", + "associationType": "isRelatedTo", + "originNodeURI": { + "title": "8.MP7 Look for and make use of structure. (:c6496676-d7cb-11e8-824f-0242ac160002:)", + "identifier": "3d43e565-fca4-4bb3-8449-c1748f9a0e80", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/3d43e565-fca4-4bb3-8449-c1748f9a0e80" + }, + "destinationNodeURI": { + "title": "ELD-SI.4-12.Inform Multilingual learners will…\n* Define and classify __facts and interpretations; determine what is known vs. unknown__\n* __Report on explicit and inferred characteristics, patterns, or behavior__\n* Describe the parts and wholes __of a system__\n* Sort, clarify, and summarize __relationships__\n* Summarize __most important aspects of information__ (:97c883b4-8590-454f-b222-f28298ec9a81:)", + "identifier": "2fb8c896-09a1-4dcc-b08f-c0c2f68ba2f5", + "uri": "https://standards.wida.us/uri/2fb8c896-09a1-4dcc-b08f-c0c2f68ba2f5" + }, + "lastChangeDateTime": "2022-05-09T20:29:10+00:00" + }, + { + "identifier": "2ce86ad2-3f21-4658-b713-8871415d4a89", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/2ce86ad2-3f21-4658-b713-8871415d4a89", + "associationType": "isRelatedTo", + "originNodeURI": { + "title": "8.MP7 Look for and make use of structure. (:c6496676-d7cb-11e8-824f-0242ac160002:)", + "identifier": "3d43e565-fca4-4bb3-8449-c1748f9a0e80", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/3d43e565-fca4-4bb3-8449-c1748f9a0e80" + }, + "destinationNodeURI": { + "title": "ELD-SI.4-12.Explain Multilingual learners will…\n* __Generate and convey initial thinking__\n* Follow and describe cycles __and sequences of steps or procedures and their causes and effects__\n* Compare changing __variables, factors, and circumstances__\n* Offer __alternatives to extend or deepen awareness of factors that contribute to particular outcomes__\n* Act on feedback to revise understandings of how or why something is or works __in particular ways__ (:97c883b4-8590-454f-b222-f28298ec9a81:)", + "identifier": "4d380613-fde8-41f9-b3c7-3313a20d813b", + "uri": "https://standards.wida.us/uri/4d380613-fde8-41f9-b3c7-3313a20d813b" + }, + "lastChangeDateTime": "2022-05-09T20:29:10+00:00" + }, + { + "identifier": "88a0b5bc-367c-482e-a033-4742fc10e412", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/88a0b5bc-367c-482e-a033-4742fc10e412", + "associationType": "isRelatedTo", + "originNodeURI": { + "title": "8.MP7 Look for and make use of structure. (:c6496676-d7cb-11e8-824f-0242ac160002:)", + "identifier": "3d43e565-fca4-4bb3-8449-c1748f9a0e80", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/3d43e565-fca4-4bb3-8449-c1748f9a0e80" + }, + "destinationNodeURI": { + "title": "ELD-SI.4-12.Argue Multilingual learners will…\n* __Generate questions about different perspectives__\n* Support __or challenge__ an opinion, __premise, or interpretation__\n* Clarify and elaborate ideas based on feedback\n* __Evaluate changes in thinking, identifying trade-offs__\n* Refine __claims and reasoning based on new information or evidence__ (:97c883b4-8590-454f-b222-f28298ec9a81:)", + "identifier": "05fa0120-5bbd-47ee-a0e2-039e65bc7442", + "uri": "https://standards.wida.us/uri/05fa0120-5bbd-47ee-a0e2-039e65bc7442" + }, + "lastChangeDateTime": "2022-05-09T20:29:10+00:00" + }, + { + "identifier": "67046463-79da-464d-8d22-9e28547932cf", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/67046463-79da-464d-8d22-9e28547932cf", + "associationType": "isRelatedTo", + "originNodeURI": { + "title": "HS.MP7 Look for and make use of structure. (:c6496676-d7cb-11e8-824f-0242ac160002:)", + "identifier": "0e2a3a6d-e495-4531-9784-aa77ad4c2510", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/0e2a3a6d-e495-4531-9784-aa77ad4c2510" + }, + "destinationNodeURI": { + "title": "ELD-MA.9-12.Explain.Interpretive Multilingual learners will… Interpret mathematical explanations by\n* Identifying concept or entity\n* Analyzing __data and owning problem-solving approaches__\n* Evaluating rationales, models, and/or __interpretations based on evidence and mathematical principles__ (:97c883b4-8590-454f-b222-f28298ec9a81:)", + "identifier": "a165d976-be8b-4b2f-ac8f-dcaffa56b6fd", + "uri": "https://standards.wida.us/uri/a165d976-be8b-4b2f-ac8f-dcaffa56b6fd" + }, + "lastChangeDateTime": "2022-05-09T20:29:10+00:00" + }, + { + "identifier": "1b10a3e9-98dd-42ea-8753-b287e010a01d", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/1b10a3e9-98dd-42ea-8753-b287e010a01d", + "associationType": "isRelatedTo", + "originNodeURI": { + "title": "HS.MP7 Look for and make use of structure. (:c6496676-d7cb-11e8-824f-0242ac160002:)", + "identifier": "0e2a3a6d-e495-4531-9784-aa77ad4c2510", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/0e2a3a6d-e495-4531-9784-aa77ad4c2510" + }, + "destinationNodeURI": { + "title": "ELD-MA.9-12.Explain.Expressive Multilingual learners will…\n\nConstruct mathematical explanations that\n* Introduce mathematical concept or entity\n* Share solutions with others\n* Describe data and/or __approach used to solve a problem__\n* State reasoning used to generate __own or alternate solutions__ (:97c883b4-8590-454f-b222-f28298ec9a81:)", + "identifier": "014f1edc-380b-4891-94e8-3a471017fb5e", + "uri": "https://standards.wida.us/uri/014f1edc-380b-4891-94e8-3a471017fb5e" + }, + "lastChangeDateTime": "2022-05-09T20:29:10+00:00" + }, + { + "identifier": "8e02f3dd-876a-4784-87c4-885dc7d8b0bd", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/8e02f3dd-876a-4784-87c4-885dc7d8b0bd", + "associationType": "isRelatedTo", + "originNodeURI": { + "title": "HS.MP7 Look for and make use of structure. (:c6496676-d7cb-11e8-824f-0242ac160002:)", + "identifier": "0e2a3a6d-e495-4531-9784-aa77ad4c2510", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/0e2a3a6d-e495-4531-9784-aa77ad4c2510" + }, + "destinationNodeURI": { + "title": "ELD-SI.4-12.Inform Multilingual learners will…\n* Define and classify __facts and interpretations; determine what is known vs. unknown__\n* __Report on explicit and inferred characteristics, patterns, or behavior__\n* Describe the parts and wholes __of a system__\n* Sort, clarify, and summarize __relationships__\n* Summarize __most important aspects of information__ (:97c883b4-8590-454f-b222-f28298ec9a81:)", + "identifier": "2fb8c896-09a1-4dcc-b08f-c0c2f68ba2f5", + "uri": "https://standards.wida.us/uri/2fb8c896-09a1-4dcc-b08f-c0c2f68ba2f5" + }, + "lastChangeDateTime": "2022-05-09T20:29:10+00:00" + }, + { + "identifier": "51118048-dd92-449a-a2d0-53c3ce185c3e", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/51118048-dd92-449a-a2d0-53c3ce185c3e", + "associationType": "isRelatedTo", + "originNodeURI": { + "title": "HS.MP7 Look for and make use of structure. (:c6496676-d7cb-11e8-824f-0242ac160002:)", + "identifier": "0e2a3a6d-e495-4531-9784-aa77ad4c2510", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/0e2a3a6d-e495-4531-9784-aa77ad4c2510" + }, + "destinationNodeURI": { + "title": "ELD-SI.4-12.Explain Multilingual learners will…\n* __Generate and convey initial thinking__\n* Follow and describe cycles __and sequences of steps or procedures and their causes and effects__\n* Compare changing __variables, factors, and circumstances__\n* Offer __alternatives to extend or deepen awareness of factors that contribute to particular outcomes__\n* Act on feedback to revise understandings of how or why something is or works __in particular ways__ (:97c883b4-8590-454f-b222-f28298ec9a81:)", + "identifier": "4d380613-fde8-41f9-b3c7-3313a20d813b", + "uri": "https://standards.wida.us/uri/4d380613-fde8-41f9-b3c7-3313a20d813b" + }, + "lastChangeDateTime": "2022-05-09T20:29:10+00:00" + }, + { + "identifier": "60e089cd-78c0-4ccf-9ca0-710cd0d7522b", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/60e089cd-78c0-4ccf-9ca0-710cd0d7522b", + "associationType": "isRelatedTo", + "originNodeURI": { + "title": "HS.MP7 Look for and make use of structure. (:c6496676-d7cb-11e8-824f-0242ac160002:)", + "identifier": "0e2a3a6d-e495-4531-9784-aa77ad4c2510", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/0e2a3a6d-e495-4531-9784-aa77ad4c2510" + }, + "destinationNodeURI": { + "title": "ELD-SI.4-12.Argue Multilingual learners will…\n* __Generate questions about different perspectives__\n* Support __or challenge__ an opinion, __premise, or interpretation__\n* Clarify and elaborate ideas based on feedback\n* __Evaluate changes in thinking, identifying trade-offs__\n* Refine __claims and reasoning based on new information or evidence__ (:97c883b4-8590-454f-b222-f28298ec9a81:)", + "identifier": "05fa0120-5bbd-47ee-a0e2-039e65bc7442", + "uri": "https://standards.wida.us/uri/05fa0120-5bbd-47ee-a0e2-039e65bc7442" + }, + "lastChangeDateTime": "2022-05-09T20:29:10+00:00" + }, + { + "identifier": "63bc2615-f44f-48c4-a362-e3c39530e0db", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/63bc2615-f44f-48c4-a362-e3c39530e0db", + "associationType": "isRelatedTo", + "originNodeURI": { + "title": "K.MP8 Look for and express regularity in repeated reasoning. (:c6496676-d7cb-11e8-824f-0242ac160002:)", + "identifier": "7244b236-9bad-4896-8def-68469e20dd9f", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/7244b236-9bad-4896-8def-68469e20dd9f" + }, + "destinationNodeURI": { + "title": "ELD-MA.K.Inform.Interpretive Multilingual learners will…\nInterpret mathematical informational texts (with prompting and support) by\n* Identifying concept or object\n* Describing quantities and attributes\n (:97c883b4-8590-454f-b222-f28298ec9a81:)", + "identifier": "8a95d57e-26ba-49ed-b2a9-c22ad743532c", + "uri": "https://standards.wida.us/uri/8a95d57e-26ba-49ed-b2a9-c22ad743532c" + }, + "lastChangeDateTime": "2022-05-09T20:29:10+00:00" + }, + { + "identifier": "517fe5bf-fb70-4a19-9e8b-de49291d48c5", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/517fe5bf-fb70-4a19-9e8b-de49291d48c5", + "associationType": "isRelatedTo", + "originNodeURI": { + "title": "K.MP8 Look for and express regularity in repeated reasoning. (:c6496676-d7cb-11e8-824f-0242ac160002:)", + "identifier": "7244b236-9bad-4896-8def-68469e20dd9f", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/7244b236-9bad-4896-8def-68469e20dd9f" + }, + "destinationNodeURI": { + "title": "ELD-MA.K.Inform.Expressive Multilingual learners will… Construct mathematical informational texts (with prompting and support) that\n* Define or classify concept or entity\n* Describe a concept or entity\n* Compare/contrast concepts or entities (:97c883b4-8590-454f-b222-f28298ec9a81:)", + "identifier": "56fc8a8e-8253-4403-8865-8829b19185f3", + "uri": "https://standards.wida.us/uri/56fc8a8e-8253-4403-8865-8829b19185f3" + }, + "lastChangeDateTime": "2022-05-09T20:29:10+00:00" + }, + { + "identifier": "82a9324d-5c33-4526-8f2c-812cbc9555d4", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/82a9324d-5c33-4526-8f2c-812cbc9555d4", + "associationType": "isRelatedTo", + "originNodeURI": { + "title": "K.MP8 Look for and express regularity in repeated reasoning. (:c6496676-d7cb-11e8-824f-0242ac160002:)", + "identifier": "7244b236-9bad-4896-8def-68469e20dd9f", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/7244b236-9bad-4896-8def-68469e20dd9f" + }, + "destinationNodeURI": { + "title": "ELD-SI.K-3.Explain Multilingual learners will…\n* Share initial thinking with others\n* Follow and describe cycles in diagrams, steps in procedures, or causes and effects\n* Compare and contrast objects or concepts\n* Offer ideas and suggestions\n* Act on feedback to revise understandings of how or why something works\n (:97c883b4-8590-454f-b222-f28298ec9a81:)", + "identifier": "6c5fff3a-c798-4671-a227-c89a994497a6", + "uri": "https://standards.wida.us/uri/6c5fff3a-c798-4671-a227-c89a994497a6" + }, + "lastChangeDateTime": "2022-05-09T20:29:10+00:00" + }, + { + "identifier": "506043d0-3a05-4e99-aa76-3d7ce5857617", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/506043d0-3a05-4e99-aa76-3d7ce5857617", + "associationType": "isRelatedTo", + "originNodeURI": { + "title": "1.MP8 Look for and express regularity in repeated reasoning. (:c6496676-d7cb-11e8-824f-0242ac160002:)", + "identifier": "635a6a3c-f8c7-4083-95dd-91359393257f", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/635a6a3c-f8c7-4083-95dd-91359393257f" + }, + "destinationNodeURI": { + "title": "ELD-MA.1.Inform.Interpretive Multilingual learners will… Interpret mathematical informational texts by\n* Identifying concept __or entity__\n* Describing attributes and __characteristics__ (:97c883b4-8590-454f-b222-f28298ec9a81:)", + "identifier": "ba2b02ea-ee35-442b-a452-dd93cb0073de", + "uri": "https://standards.wida.us/uri/ba2b02ea-ee35-442b-a452-dd93cb0073de" + }, + "lastChangeDateTime": "2022-05-09T20:29:10+00:00" + }, + { + "identifier": "b5eea731-2be4-4433-8cd5-c5842fed1620", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/b5eea731-2be4-4433-8cd5-c5842fed1620", + "associationType": "isRelatedTo", + "originNodeURI": { + "title": "1.MP8 Look for and express regularity in repeated reasoning. (:c6496676-d7cb-11e8-824f-0242ac160002:)", + "identifier": "635a6a3c-f8c7-4083-95dd-91359393257f", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/635a6a3c-f8c7-4083-95dd-91359393257f" + }, + "destinationNodeURI": { + "title": "ELD-MA.1.Inform.Expressive Multilingual learners will… Construct mathematical informational texts that\n* Define or classify concept or entity\n* Describe a concept or entity\n* Compare/contrast concepts or entities (:97c883b4-8590-454f-b222-f28298ec9a81:)", + "identifier": "acb17527-5967-4e98-9b80-d6d1f5f951b2", + "uri": "https://standards.wida.us/uri/acb17527-5967-4e98-9b80-d6d1f5f951b2" + }, + "lastChangeDateTime": "2022-05-09T20:29:10+00:00" + }, + { + "identifier": "547e6e8e-3a81-4a33-b75e-03c1f000f58a", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/547e6e8e-3a81-4a33-b75e-03c1f000f58a", + "associationType": "isRelatedTo", + "originNodeURI": { + "title": "1.MP8 Look for and express regularity in repeated reasoning. (:c6496676-d7cb-11e8-824f-0242ac160002:)", + "identifier": "635a6a3c-f8c7-4083-95dd-91359393257f", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/635a6a3c-f8c7-4083-95dd-91359393257f" + }, + "destinationNodeURI": { + "title": "ELD-SI.K-3.Explain Multilingual learners will…\n* Share initial thinking with others\n* Follow and describe cycles in diagrams, steps in procedures, or causes and effects\n* Compare and contrast objects or concepts\n* Offer ideas and suggestions\n* Act on feedback to revise understandings of how or why something works\n (:97c883b4-8590-454f-b222-f28298ec9a81:)", + "identifier": "6c5fff3a-c798-4671-a227-c89a994497a6", + "uri": "https://standards.wida.us/uri/6c5fff3a-c798-4671-a227-c89a994497a6" + }, + "lastChangeDateTime": "2022-05-09T20:29:10+00:00" + }, + { + "identifier": "ccf6602d-69ef-4713-a052-452e68e56d89", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/ccf6602d-69ef-4713-a052-452e68e56d89", + "associationType": "isRelatedTo", + "originNodeURI": { + "title": "2.MP8 Look for and express regularity in repeated reasoning. (:c6496676-d7cb-11e8-824f-0242ac160002:)", + "identifier": "46caf4e1-5835-4cf8-83ae-1718810e4fa1", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/46caf4e1-5835-4cf8-83ae-1718810e4fa1" + }, + "destinationNodeURI": { + "title": "ELD-MA.2-3.Explain.Interpretive Multilingual learners will… Interpret mathematical explanations by\n* Identifying concept or entity\n* __Analyzing plan for problem-solving steps__\n* __Evaluating simple pattern or structure__ (:97c883b4-8590-454f-b222-f28298ec9a81:)", + "identifier": "2e261b10-856a-4fee-bedd-54213c90edd1", + "uri": "https://standards.wida.us/uri/2e261b10-856a-4fee-bedd-54213c90edd1" + }, + "lastChangeDateTime": "2022-05-09T20:29:10+00:00" + }, + { + "identifier": "e735f854-78bb-4761-a46b-b187feaffa19", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/e735f854-78bb-4761-a46b-b187feaffa19", + "associationType": "isRelatedTo", + "originNodeURI": { + "title": "2.MP8 Look for and express regularity in repeated reasoning. (:c6496676-d7cb-11e8-824f-0242ac160002:)", + "identifier": "46caf4e1-5835-4cf8-83ae-1718810e4fa1", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/46caf4e1-5835-4cf8-83ae-1718810e4fa1" + }, + "destinationNodeURI": { + "title": "ELD-MA.2-3.Explain.Expressive Multilingual learners will… Construct mathematical explanations that\n* Introduce concept or entity\n* __Describe solution and steps used to solve problem with others__\n* __State reasoning used to generate solution__ (:97c883b4-8590-454f-b222-f28298ec9a81:)", + "identifier": "a292d38b-ce22-463b-8bde-07d6f5e13917", + "uri": "https://standards.wida.us/uri/a292d38b-ce22-463b-8bde-07d6f5e13917" + }, + "lastChangeDateTime": "2022-05-09T20:29:10+00:00" + }, + { + "identifier": "ad83b848-0c28-4c57-ac9c-ad09db226333", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/ad83b848-0c28-4c57-ac9c-ad09db226333", + "associationType": "isRelatedTo", + "originNodeURI": { + "title": "2.MP8 Look for and express regularity in repeated reasoning. (:c6496676-d7cb-11e8-824f-0242ac160002:)", + "identifier": "46caf4e1-5835-4cf8-83ae-1718810e4fa1", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/46caf4e1-5835-4cf8-83ae-1718810e4fa1" + }, + "destinationNodeURI": { + "title": "ELD-SI.K-3.Explain Multilingual learners will…\n* Share initial thinking with others\n* Follow and describe cycles in diagrams, steps in procedures, or causes and effects\n* Compare and contrast objects or concepts\n* Offer ideas and suggestions\n* Act on feedback to revise understandings of how or why something works\n (:97c883b4-8590-454f-b222-f28298ec9a81:)", + "identifier": "6c5fff3a-c798-4671-a227-c89a994497a6", + "uri": "https://standards.wida.us/uri/6c5fff3a-c798-4671-a227-c89a994497a6" + }, + "lastChangeDateTime": "2022-05-09T20:29:10+00:00" + }, + { + "identifier": "232113ab-6f6a-48af-9da9-9eebd091d9ac", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/232113ab-6f6a-48af-9da9-9eebd091d9ac", + "associationType": "isRelatedTo", + "originNodeURI": { + "title": "3.MP8 Look for and express regularity in repeated reasoning. (:c6496676-d7cb-11e8-824f-0242ac160002:)", + "identifier": "38fddec8-6fab-4015-b864-a0c1d78fae3f", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/38fddec8-6fab-4015-b864-a0c1d78fae3f" + }, + "destinationNodeURI": { + "title": "ELD-MA.2-3.Explain.Interpretive Multilingual learners will… Interpret mathematical explanations by\n* Identifying concept or entity\n* __Analyzing plan for problem-solving steps__\n* __Evaluating simple pattern or structure__ (:97c883b4-8590-454f-b222-f28298ec9a81:)", + "identifier": "2e261b10-856a-4fee-bedd-54213c90edd1", + "uri": "https://standards.wida.us/uri/2e261b10-856a-4fee-bedd-54213c90edd1" + }, + "lastChangeDateTime": "2022-05-09T20:29:10+00:00" + }, + { + "identifier": "d358e32e-0115-4602-8dff-4fab93883ce0", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/d358e32e-0115-4602-8dff-4fab93883ce0", + "associationType": "isRelatedTo", + "originNodeURI": { + "title": "3.MP8 Look for and express regularity in repeated reasoning. (:c6496676-d7cb-11e8-824f-0242ac160002:)", + "identifier": "38fddec8-6fab-4015-b864-a0c1d78fae3f", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/38fddec8-6fab-4015-b864-a0c1d78fae3f" + }, + "destinationNodeURI": { + "title": "ELD-MA.2-3.Explain.Expressive Multilingual learners will… Construct mathematical explanations that\n* Introduce concept or entity\n* __Describe solution and steps used to solve problem with others__\n* __State reasoning used to generate solution__ (:97c883b4-8590-454f-b222-f28298ec9a81:)", + "identifier": "a292d38b-ce22-463b-8bde-07d6f5e13917", + "uri": "https://standards.wida.us/uri/a292d38b-ce22-463b-8bde-07d6f5e13917" + }, + "lastChangeDateTime": "2022-05-09T20:29:10+00:00" + }, + { + "identifier": "b4563111-f5d7-4a0b-b0a2-f6428326ad08", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/b4563111-f5d7-4a0b-b0a2-f6428326ad08", + "associationType": "isRelatedTo", + "originNodeURI": { + "title": "3.MP8 Look for and express regularity in repeated reasoning. (:c6496676-d7cb-11e8-824f-0242ac160002:)", + "identifier": "38fddec8-6fab-4015-b864-a0c1d78fae3f", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/38fddec8-6fab-4015-b864-a0c1d78fae3f" + }, + "destinationNodeURI": { + "title": "ELD-SI.K-3.Explain Multilingual learners will…\n* Share initial thinking with others\n* Follow and describe cycles in diagrams, steps in procedures, or causes and effects\n* Compare and contrast objects or concepts\n* Offer ideas and suggestions\n* Act on feedback to revise understandings of how or why something works\n (:97c883b4-8590-454f-b222-f28298ec9a81:)", + "identifier": "6c5fff3a-c798-4671-a227-c89a994497a6", + "uri": "https://standards.wida.us/uri/6c5fff3a-c798-4671-a227-c89a994497a6" + }, + "lastChangeDateTime": "2022-05-09T20:29:10+00:00" + }, + { + "identifier": "391b15d7-4c68-48f9-b0b6-df76908bf947", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/391b15d7-4c68-48f9-b0b6-df76908bf947", + "associationType": "isRelatedTo", + "originNodeURI": { + "title": "4.MP8 Look for and express regularity in repeated reasoning. (:c6496676-d7cb-11e8-824f-0242ac160002:)", + "identifier": "d76d967c-1f92-4c06-8ff2-e77250ce865c", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/d76d967c-1f92-4c06-8ff2-e77250ce865c" + }, + "destinationNodeURI": { + "title": "ELD-MA.4-5.Explain.Interpretive Multilingual learners will… Interpret mathematical explanations by\n* Identifying concept or entity\n* Analyzing problem-solving steps\n* Evaluating a __pattern__ or structure that follows a given rule (:97c883b4-8590-454f-b222-f28298ec9a81:)", + "identifier": "b41b7a96-6061-4d5b-95f8-97a744b4f2de", + "uri": "https://standards.wida.us/uri/b41b7a96-6061-4d5b-95f8-97a744b4f2de" + }, + "lastChangeDateTime": "2022-05-09T20:29:10+00:00" + }, + { + "identifier": "703c4a09-bb32-4e13-b54b-25811f93f81d", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/703c4a09-bb32-4e13-b54b-25811f93f81d", + "associationType": "isRelatedTo", + "originNodeURI": { + "title": "4.MP8 Look for and express regularity in repeated reasoning. (:c6496676-d7cb-11e8-824f-0242ac160002:)", + "identifier": "d76d967c-1f92-4c06-8ff2-e77250ce865c", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/d76d967c-1f92-4c06-8ff2-e77250ce865c" + }, + "destinationNodeURI": { + "title": "ELD-MA.4-5.Explain.Expressive Multilingual learners will…\n\nConstruct mathematical explanations that\n* Introduce concept or entity\n* Share solution __with others__\n* Describe data and/or steps __to solve problem__\n* State reasoning used to generate solution (:97c883b4-8590-454f-b222-f28298ec9a81:)", + "identifier": "b9bd7205-dc82-4577-82bd-adb38360f785", + "uri": "https://standards.wida.us/uri/b9bd7205-dc82-4577-82bd-adb38360f785" + }, + "lastChangeDateTime": "2022-05-09T20:29:10+00:00" + }, + { + "identifier": "6bff1329-9a81-4cf9-a7a6-21c4a001f1ed", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/6bff1329-9a81-4cf9-a7a6-21c4a001f1ed", + "associationType": "isRelatedTo", + "originNodeURI": { + "title": "4.MP8 Look for and express regularity in repeated reasoning. (:c6496676-d7cb-11e8-824f-0242ac160002:)", + "identifier": "d76d967c-1f92-4c06-8ff2-e77250ce865c", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/d76d967c-1f92-4c06-8ff2-e77250ce865c" + }, + "destinationNodeURI": { + "title": "ELD-SI.4-12.Explain Multilingual learners will…\n* __Generate and convey initial thinking__\n* Follow and describe cycles __and sequences of steps or procedures and their causes and effects__\n* Compare changing __variables, factors, and circumstances__\n* Offer __alternatives to extend or deepen awareness of factors that contribute to particular outcomes__\n* Act on feedback to revise understandings of how or why something is or works __in particular ways__ (:97c883b4-8590-454f-b222-f28298ec9a81:)", + "identifier": "4d380613-fde8-41f9-b3c7-3313a20d813b", + "uri": "https://standards.wida.us/uri/4d380613-fde8-41f9-b3c7-3313a20d813b" + }, + "lastChangeDateTime": "2022-05-09T20:29:10+00:00" + }, + { + "identifier": "89cde8ec-4db4-4d27-bbf7-8136cc6d8bf7", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/89cde8ec-4db4-4d27-bbf7-8136cc6d8bf7", + "associationType": "isRelatedTo", + "originNodeURI": { + "title": "5.MP8 Look for and express regularity in repeated reasoning. (:c6496676-d7cb-11e8-824f-0242ac160002:)", + "identifier": "ed17c711-dba6-4d67-937f-fdbf6edb6d6f", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/ed17c711-dba6-4d67-937f-fdbf6edb6d6f" + }, + "destinationNodeURI": { + "title": "ELD-MA.4-5.Explain.Interpretive Multilingual learners will… Interpret mathematical explanations by\n* Identifying concept or entity\n* Analyzing problem-solving steps\n* Evaluating a __pattern__ or structure that follows a given rule (:97c883b4-8590-454f-b222-f28298ec9a81:)", + "identifier": "b41b7a96-6061-4d5b-95f8-97a744b4f2de", + "uri": "https://standards.wida.us/uri/b41b7a96-6061-4d5b-95f8-97a744b4f2de" + }, + "lastChangeDateTime": "2022-05-09T20:29:10+00:00" + }, + { + "identifier": "d6f91d2a-fd56-4ca2-bc96-57f6caf94aa7", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/d6f91d2a-fd56-4ca2-bc96-57f6caf94aa7", + "associationType": "isRelatedTo", + "originNodeURI": { + "title": "5.MP8 Look for and express regularity in repeated reasoning. (:c6496676-d7cb-11e8-824f-0242ac160002:)", + "identifier": "ed17c711-dba6-4d67-937f-fdbf6edb6d6f", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/ed17c711-dba6-4d67-937f-fdbf6edb6d6f" + }, + "destinationNodeURI": { + "title": "ELD-MA.4-5.Explain.Expressive Multilingual learners will…\n\nConstruct mathematical explanations that\n* Introduce concept or entity\n* Share solution __with others__\n* Describe data and/or steps __to solve problem__\n* State reasoning used to generate solution (:97c883b4-8590-454f-b222-f28298ec9a81:)", + "identifier": "b9bd7205-dc82-4577-82bd-adb38360f785", + "uri": "https://standards.wida.us/uri/b9bd7205-dc82-4577-82bd-adb38360f785" + }, + "lastChangeDateTime": "2022-05-09T20:29:10+00:00" + }, + { + "identifier": "5ee09d16-085f-4835-8d33-66e4031dba53", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/5ee09d16-085f-4835-8d33-66e4031dba53", + "associationType": "isRelatedTo", + "originNodeURI": { + "title": "5.MP8 Look for and express regularity in repeated reasoning. (:c6496676-d7cb-11e8-824f-0242ac160002:)", + "identifier": "ed17c711-dba6-4d67-937f-fdbf6edb6d6f", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/ed17c711-dba6-4d67-937f-fdbf6edb6d6f" + }, + "destinationNodeURI": { + "title": "ELD-SI.4-12.Explain Multilingual learners will…\n* __Generate and convey initial thinking__\n* Follow and describe cycles __and sequences of steps or procedures and their causes and effects__\n* Compare changing __variables, factors, and circumstances__\n* Offer __alternatives to extend or deepen awareness of factors that contribute to particular outcomes__\n* Act on feedback to revise understandings of how or why something is or works __in particular ways__ (:97c883b4-8590-454f-b222-f28298ec9a81:)", + "identifier": "4d380613-fde8-41f9-b3c7-3313a20d813b", + "uri": "https://standards.wida.us/uri/4d380613-fde8-41f9-b3c7-3313a20d813b" + }, + "lastChangeDateTime": "2022-05-09T20:29:10+00:00" + }, + { + "identifier": "e4ee71c5-eb6a-46e0-946a-d04f9e9ed3e0", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/e4ee71c5-eb6a-46e0-946a-d04f9e9ed3e0", + "associationType": "isRelatedTo", + "originNodeURI": { + "title": "6.MP8 Look for and express regularity in repeated reasoning. (:c6496676-d7cb-11e8-824f-0242ac160002:)", + "identifier": "4047e759-351a-4225-bebe-fa03868b07e5", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/4047e759-351a-4225-bebe-fa03868b07e5" + }, + "destinationNodeURI": { + "title": "ELD-MA.6-8.Explain.Interpretive Multilingual learners will… Interpret mathematical explanations by\n* Identifying concept or entity\n* Analyzing possible __ways to represent and solve a problem__\n* Evaluating __model and rationale for underlying relationships in selected problem-solving approach__ (:97c883b4-8590-454f-b222-f28298ec9a81:)", + "identifier": "b380aaf9-f435-4b8d-b65e-c92fa5599471", + "uri": "https://standards.wida.us/uri/b380aaf9-f435-4b8d-b65e-c92fa5599471" + }, + "lastChangeDateTime": "2022-05-09T20:29:10+00:00" + }, + { + "identifier": "88d96f6b-44be-46a9-afa5-8355adc7ba2b", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/88d96f6b-44be-46a9-afa5-8355adc7ba2b", + "associationType": "isRelatedTo", + "originNodeURI": { + "title": "6.MP8 Look for and express regularity in repeated reasoning. (:c6496676-d7cb-11e8-824f-0242ac160002:)", + "identifier": "4047e759-351a-4225-bebe-fa03868b07e5", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/4047e759-351a-4225-bebe-fa03868b07e5" + }, + "destinationNodeURI": { + "title": "ELD-MA.6-8.Explain.Expressive Multilingual learners will…\n\nConstruct mathematical explanations that\n* Introduce concept or entity\n* Share solution with others\n* Describe data and/or __problem-solving strategy__\n* State reasoning used to generate solution (:97c883b4-8590-454f-b222-f28298ec9a81:)", + "identifier": "b5f229b5-53d0-4a5e-86b6-cda8d0ac149e", + "uri": "https://standards.wida.us/uri/b5f229b5-53d0-4a5e-86b6-cda8d0ac149e" + }, + "lastChangeDateTime": "2022-05-09T20:29:10+00:00" + }, + { + "identifier": "f6218f85-0553-4a2c-afe4-0bd1011de37c", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/f6218f85-0553-4a2c-afe4-0bd1011de37c", + "associationType": "isRelatedTo", + "originNodeURI": { + "title": "6.MP8 Look for and express regularity in repeated reasoning. (:c6496676-d7cb-11e8-824f-0242ac160002:)", + "identifier": "4047e759-351a-4225-bebe-fa03868b07e5", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/4047e759-351a-4225-bebe-fa03868b07e5" + }, + "destinationNodeURI": { + "title": "ELD-SI.4-12.Explain Multilingual learners will…\n* __Generate and convey initial thinking__\n* Follow and describe cycles __and sequences of steps or procedures and their causes and effects__\n* Compare changing __variables, factors, and circumstances__\n* Offer __alternatives to extend or deepen awareness of factors that contribute to particular outcomes__\n* Act on feedback to revise understandings of how or why something is or works __in particular ways__ (:97c883b4-8590-454f-b222-f28298ec9a81:)", + "identifier": "4d380613-fde8-41f9-b3c7-3313a20d813b", + "uri": "https://standards.wida.us/uri/4d380613-fde8-41f9-b3c7-3313a20d813b" + }, + "lastChangeDateTime": "2022-05-09T20:29:10+00:00" + }, + { + "identifier": "5bdcec83-4d3c-44d8-b0c7-1783c6bbe8b8", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/5bdcec83-4d3c-44d8-b0c7-1783c6bbe8b8", + "associationType": "isRelatedTo", + "originNodeURI": { + "title": "7.MP8 Look for and express regularity in repeated reasoning. (:c6496676-d7cb-11e8-824f-0242ac160002:)", + "identifier": "2764a521-9336-40a7-9d10-99a9b557ecd5", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/2764a521-9336-40a7-9d10-99a9b557ecd5" + }, + "destinationNodeURI": { + "title": "ELD-MA.6-8.Explain.Interpretive Multilingual learners will… Interpret mathematical explanations by\n* Identifying concept or entity\n* Analyzing possible __ways to represent and solve a problem__\n* Evaluating __model and rationale for underlying relationships in selected problem-solving approach__ (:97c883b4-8590-454f-b222-f28298ec9a81:)", + "identifier": "b380aaf9-f435-4b8d-b65e-c92fa5599471", + "uri": "https://standards.wida.us/uri/b380aaf9-f435-4b8d-b65e-c92fa5599471" + }, + "lastChangeDateTime": "2022-05-09T20:29:10+00:00" + }, + { + "identifier": "cff81c5c-cec3-4903-a2f9-a38eab262cdb", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/cff81c5c-cec3-4903-a2f9-a38eab262cdb", + "associationType": "isRelatedTo", + "originNodeURI": { + "title": "7.MP8 Look for and express regularity in repeated reasoning. (:c6496676-d7cb-11e8-824f-0242ac160002:)", + "identifier": "2764a521-9336-40a7-9d10-99a9b557ecd5", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/2764a521-9336-40a7-9d10-99a9b557ecd5" + }, + "destinationNodeURI": { + "title": "ELD-MA.6-8.Explain.Expressive Multilingual learners will…\n\nConstruct mathematical explanations that\n* Introduce concept or entity\n* Share solution with others\n* Describe data and/or __problem-solving strategy__\n* State reasoning used to generate solution (:97c883b4-8590-454f-b222-f28298ec9a81:)", + "identifier": "b5f229b5-53d0-4a5e-86b6-cda8d0ac149e", + "uri": "https://standards.wida.us/uri/b5f229b5-53d0-4a5e-86b6-cda8d0ac149e" + }, + "lastChangeDateTime": "2022-05-09T20:29:10+00:00" + }, + { + "identifier": "e0f90ea5-6d34-4649-86c7-6b4f496770a3", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/e0f90ea5-6d34-4649-86c7-6b4f496770a3", + "associationType": "isRelatedTo", + "originNodeURI": { + "title": "7.MP8 Look for and express regularity in repeated reasoning. (:c6496676-d7cb-11e8-824f-0242ac160002:)", + "identifier": "2764a521-9336-40a7-9d10-99a9b557ecd5", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/2764a521-9336-40a7-9d10-99a9b557ecd5" + }, + "destinationNodeURI": { + "title": "ELD-SI.4-12.Explain Multilingual learners will…\n* __Generate and convey initial thinking__\n* Follow and describe cycles __and sequences of steps or procedures and their causes and effects__\n* Compare changing __variables, factors, and circumstances__\n* Offer __alternatives to extend or deepen awareness of factors that contribute to particular outcomes__\n* Act on feedback to revise understandings of how or why something is or works __in particular ways__ (:97c883b4-8590-454f-b222-f28298ec9a81:)", + "identifier": "4d380613-fde8-41f9-b3c7-3313a20d813b", + "uri": "https://standards.wida.us/uri/4d380613-fde8-41f9-b3c7-3313a20d813b" + }, + "lastChangeDateTime": "2022-05-09T20:29:10+00:00" + }, + { + "identifier": "2abb2579-3f29-4f7a-99b3-52ce1797b73f", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/2abb2579-3f29-4f7a-99b3-52ce1797b73f", + "associationType": "isRelatedTo", + "originNodeURI": { + "title": "8.MP8 Look for and express regularity in repeated reasoning. (:c6496676-d7cb-11e8-824f-0242ac160002:)", + "identifier": "35743102-a5ef-4b85-93f1-592e35bf0a31", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/35743102-a5ef-4b85-93f1-592e35bf0a31" + }, + "destinationNodeURI": { + "title": "ELD-MA.6-8.Explain.Interpretive Multilingual learners will… Interpret mathematical explanations by\n* Identifying concept or entity\n* Analyzing possible __ways to represent and solve a problem__\n* Evaluating __model and rationale for underlying relationships in selected problem-solving approach__ (:97c883b4-8590-454f-b222-f28298ec9a81:)", + "identifier": "b380aaf9-f435-4b8d-b65e-c92fa5599471", + "uri": "https://standards.wida.us/uri/b380aaf9-f435-4b8d-b65e-c92fa5599471" + }, + "lastChangeDateTime": "2022-05-09T20:29:10+00:00" + }, + { + "identifier": "20858661-e86e-4d2a-a564-31196e3f1984", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/20858661-e86e-4d2a-a564-31196e3f1984", + "associationType": "isRelatedTo", + "originNodeURI": { + "title": "8.MP8 Look for and express regularity in repeated reasoning. (:c6496676-d7cb-11e8-824f-0242ac160002:)", + "identifier": "35743102-a5ef-4b85-93f1-592e35bf0a31", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/35743102-a5ef-4b85-93f1-592e35bf0a31" + }, + "destinationNodeURI": { + "title": "ELD-MA.6-8.Explain.Expressive Multilingual learners will…\n\nConstruct mathematical explanations that\n* Introduce concept or entity\n* Share solution with others\n* Describe data and/or __problem-solving strategy__\n* State reasoning used to generate solution (:97c883b4-8590-454f-b222-f28298ec9a81:)", + "identifier": "b5f229b5-53d0-4a5e-86b6-cda8d0ac149e", + "uri": "https://standards.wida.us/uri/b5f229b5-53d0-4a5e-86b6-cda8d0ac149e" + }, + "lastChangeDateTime": "2022-05-09T20:29:10+00:00" + }, + { + "identifier": "06eb1c1e-940d-4e50-bb47-6ef03f77e53f", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/06eb1c1e-940d-4e50-bb47-6ef03f77e53f", + "associationType": "isRelatedTo", + "originNodeURI": { + "title": "8.MP8 Look for and express regularity in repeated reasoning. (:c6496676-d7cb-11e8-824f-0242ac160002:)", + "identifier": "35743102-a5ef-4b85-93f1-592e35bf0a31", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/35743102-a5ef-4b85-93f1-592e35bf0a31" + }, + "destinationNodeURI": { + "title": "ELD-SI.4-12.Explain Multilingual learners will…\n* __Generate and convey initial thinking__\n* Follow and describe cycles __and sequences of steps or procedures and their causes and effects__\n* Compare changing __variables, factors, and circumstances__\n* Offer __alternatives to extend or deepen awareness of factors that contribute to particular outcomes__\n* Act on feedback to revise understandings of how or why something is or works __in particular ways__ (:97c883b4-8590-454f-b222-f28298ec9a81:)", + "identifier": "4d380613-fde8-41f9-b3c7-3313a20d813b", + "uri": "https://standards.wida.us/uri/4d380613-fde8-41f9-b3c7-3313a20d813b" + }, + "lastChangeDateTime": "2022-05-09T20:29:10+00:00" + }, + { + "identifier": "2ef0f9d8-b9ea-4bba-b61f-6399cfdadb44", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/2ef0f9d8-b9ea-4bba-b61f-6399cfdadb44", + "associationType": "isRelatedTo", + "originNodeURI": { + "title": "HS.MP8 Look for and express regularity in repeated reasoning. (:c6496676-d7cb-11e8-824f-0242ac160002:)", + "identifier": "0eb54431-361c-4183-8c24-70b487e43073", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/0eb54431-361c-4183-8c24-70b487e43073" + }, + "destinationNodeURI": { + "title": "ELD-MA.9-12.Explain.Interpretive Multilingual learners will… Interpret mathematical explanations by\n* Identifying concept or entity\n* Analyzing __data and owning problem-solving approaches__\n* Evaluating rationales, models, and/or __interpretations based on evidence and mathematical principles__ (:97c883b4-8590-454f-b222-f28298ec9a81:)", + "identifier": "a165d976-be8b-4b2f-ac8f-dcaffa56b6fd", + "uri": "https://standards.wida.us/uri/a165d976-be8b-4b2f-ac8f-dcaffa56b6fd" + }, + "lastChangeDateTime": "2022-05-09T20:29:10+00:00" + }, + { + "identifier": "c027213d-3f28-4766-95f7-7990e202a887", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/c027213d-3f28-4766-95f7-7990e202a887", + "associationType": "isRelatedTo", + "originNodeURI": { + "title": "HS.MP8 Look for and express regularity in repeated reasoning. (:c6496676-d7cb-11e8-824f-0242ac160002:)", + "identifier": "0eb54431-361c-4183-8c24-70b487e43073", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/0eb54431-361c-4183-8c24-70b487e43073" + }, + "destinationNodeURI": { + "title": "ELD-MA.9-12.Explain.Expressive Multilingual learners will…\n\nConstruct mathematical explanations that\n* Introduce mathematical concept or entity\n* Share solutions with others\n* Describe data and/or __approach used to solve a problem__\n* State reasoning used to generate __own or alternate solutions__ (:97c883b4-8590-454f-b222-f28298ec9a81:)", + "identifier": "014f1edc-380b-4891-94e8-3a471017fb5e", + "uri": "https://standards.wida.us/uri/014f1edc-380b-4891-94e8-3a471017fb5e" + }, + "lastChangeDateTime": "2022-05-09T20:29:10+00:00" + }, + { + "identifier": "52a2fe3e-abd7-4e6f-b93d-bfac344426d9", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/52a2fe3e-abd7-4e6f-b93d-bfac344426d9", + "associationType": "isRelatedTo", + "originNodeURI": { + "title": "HS.MP8 Look for and express regularity in repeated reasoning. (:c6496676-d7cb-11e8-824f-0242ac160002:)", + "identifier": "0eb54431-361c-4183-8c24-70b487e43073", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/0eb54431-361c-4183-8c24-70b487e43073" + }, + "destinationNodeURI": { + "title": "ELD-SI.4-12.Explain Multilingual learners will…\n* __Generate and convey initial thinking__\n* Follow and describe cycles __and sequences of steps or procedures and their causes and effects__\n* Compare changing __variables, factors, and circumstances__\n* Offer __alternatives to extend or deepen awareness of factors that contribute to particular outcomes__\n* Act on feedback to revise understandings of how or why something is or works __in particular ways__ (:97c883b4-8590-454f-b222-f28298ec9a81:)", + "identifier": "4d380613-fde8-41f9-b3c7-3313a20d813b", + "uri": "https://standards.wida.us/uri/4d380613-fde8-41f9-b3c7-3313a20d813b" + }, + "lastChangeDateTime": "2022-05-09T20:29:10+00:00" + }, + { + "identifier": "be1d0f4d-2be9-4fc4-b460-f4934b5b3ff1", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/be1d0f4d-2be9-4fc4-b460-f4934b5b3ff1", + "associationType": "isRelatedTo", + "originNodeURI": { + "title": "6.RP.A.1 Understand the concept of a ratio and use ratio language to describe a ratio relationship between two quantities. For example, \"The ratio of wings to beaks in the bird house at the zoo was 2:1, because for every 2 wings there was 1 beak.\" \"For every vote candidate A received, candidate C received nearly three votes.\" (:c6496676-d7cb-11e8-824f-0242ac160002:)", + "identifier": "6b9c2b26-d7cc-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFItems/6b9c2b26-d7cc-11e8-824f-0242ac160002" + }, + "destinationNodeURI": { + "title": "6.NR.4.1 Explain the concept of a ratio, represent ratios, and use ratio language to describe a relationship between two quantities. (:e9dd7229-3558-4df2-85c6-57b8938f6180:)", + "identifier": "5803b65f-afeb-49e5-85e1-0a183674e3e6", + "uri": "https://case.georgiastandards.org/uri/5803b65f-afeb-49e5-85e1-0a183674e3e6" + }, + "lastChangeDateTime": "2024-02-09T18:52:24+00:00" + }, + { + "identifier": "b8c0ec3e-f1d3-4d37-9ee5-86c63c29f16f", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFAssociations/b8c0ec3e-f1d3-4d37-9ee5-86c63c29f16f", + "associationType": "isRelatedTo", + "originNodeURI": { + "title": "Common Core State Standards for Math", + "identifier": "c6496676-d7cb-11e8-824f-0242ac160002", + "uri": "https://casenetwork.imsglobal.org/ims/case/v1p0/CFDocuments/c6496676-d7cb-11e8-824f-0242ac160002" + }, + "destinationNodeURI": { + "title": "Georgia’s K-12 Mathematics Standards (SY2023-2024)", + "identifier": "e9dd7229-3558-4df2-85c6-57b8938f6180", + "uri": "https://case.georgiastandards.org/uri/e9dd7229-3558-4df2-85c6-57b8938f6180" + }, + "lastChangeDateTime": "2024-02-09T18:52:24+00:00" + } + ], + "CFDefinitions": { + "CFConcepts": [ + { + "identifier": "b55602ec-0098-5b60-b0c0-531cc61709e3", + "uri": "https://case.georgiastandards.org/uri/b55602ec-0098-5b60-b0c0-531cc61709e3", + "title": "Products", + "hierarchyCode": "1", + "lastChangeDateTime": "2021-07-03T19:46:07+00:00" + } + ], + "CFSubjects": [ + { + "uri": "https://case.georgiastandards.org/uri/eb8ae273-6667-52ec-a73f-3d8a631bde9f", + "identifier": "eb8ae273-6667-52ec-a73f-3d8a631bde9f", + "lastChangeDateTime": "2016-09-28T21:43:01+00:00", + "title": "Math", + "hierarchyCode": "1" + } + ], + "CFLicenses": [ + { + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFLicenses/9b516ff5-1cd2-41aa-8618-f20eee60b06d", + "identifier": "9b516ff5-1cd2-41aa-8618-f20eee60b06d", + "lastChangeDateTime": "2019-02-06T15:48:37+00:00", + "title": "IMS Global License", + "description": "IMS Global License", + "licenseText": "© 2018-2019 IMS Global Learning Consortium Inc. All Rights Reserved." + } + ], + "CFItemTypes": [ + { + "uri": "https://case.georgiastandards.org/uri/89d67580-f024-5f77-abd7-acfaef39b204", + "identifier": "89d67580-f024-5f77-abd7-acfaef39b204", + "lastChangeDateTime": "2021-07-03T19:38:27+00:00", + "title": "Domain", + "description": "Domain", + "typeCode": "Domain", + "hierarchyCode": "1" + }, + { + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/d77602ec-0098-5b60-b0c0-531cc61709e3", + "identifier": "d77602ec-0098-5b60-b0c0-531cc61709e3", + "lastChangeDateTime": "2021-11-27T00:02:03+00:00", + "title": "Cluster", + "description": "", + "typeCode": "Cluster", + "hierarchyCode": "" + }, + { + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/bb2b7874-ca3b-4a28-bdf9-4ab9b6bdaa3f", + "identifier": "bb2b7874-ca3b-4a28-bdf9-4ab9b6bdaa3f", + "lastChangeDateTime": "2021-07-03T19:46:07+00:00", + "title": "Conceptual Category", + "description": "", + "typeCode": "Conceptual Category", + "hierarchyCode": "" + }, + { + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/8047d85d-6c8e-5231-bd6d-050731684413", + "identifier": "8047d85d-6c8e-5231-bd6d-050731684413", + "lastChangeDateTime": "2021-11-27T00:02:03+00:00", + "title": "Grade Level", + "description": "", + "typeCode": "Grade Level", + "hierarchyCode": "" + }, + { + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/88e14be5-f7f3-4e67-b4a2-d621eaa49d48", + "identifier": "88e14be5-f7f3-4e67-b4a2-d621eaa49d48", + "lastChangeDateTime": "2020-02-06T20:34:03+00:00", + "title": "Standard", + "description": "", + "typeCode": "Standard", + "hierarchyCode": "" + }, + { + "uri": "https://api.standards.isbe.net/server/api/v1/ISBOE/ims/case/v1p0/CFItemTypes/1f1afd62-66cd-51cb-8299-1fe5ced9df16", + "identifier": "1f1afd62-66cd-51cb-8299-1fe5ced9df16", + "lastChangeDateTime": "2021-07-03T19:46:07+00:00", + "title": "Component", + "description": "", + "typeCode": "Component", + "hierarchyCode": "" + } + ], + "CFAssociationGroupings": [ + { + "identifier": "c66602ec-0098-5b60-b0c0-531cc61709e3", + "uri": "https://case.georgiastandards.org/uri/c66602ec-0098-5b60-b0c0-531cc61709e3", + "title": "Products Grouping", + "description": "This is a grouping of product concepts.", + "lastChangeDateTime": "2021-07-03T19:46:07+00:00" + } + ] + } +} \ No newline at end of file diff --git a/Data/Interactions.csv b/Data/Interactions.csv new file mode 100644 index 0000000000000000000000000000000000000000..0e97e310761da5faaf8706cd8c816f8303a9b33d --- /dev/null +++ b/Data/Interactions.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:671e97d320d0cf9b7e2bd75830d531cfbd95d307a1a9a590531934ad0d3d8ba4 +size 245145636 diff --git a/Data/Math_Standards1.pdf b/Data/Math_Standards1.pdf new file mode 100644 index 0000000000000000000000000000000000000000..b03d165d0ebd997899f5cba53601f54677a09d01 --- /dev/null +++ b/Data/Math_Standards1.pdf @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2d28ded26c7394f55525550e32bb96786da2e9a3276ccca8873e80ebcdebab11 +size 1242082 diff --git a/Data/Problems.csv b/Data/Problems.csv new file mode 100644 index 0000000000000000000000000000000000000000..4ab1a9093e6dd03af808c0fd5a8e6473c1de8e90 --- /dev/null +++ b/Data/Problems.csv @@ -0,0 +1,18211 @@ +Problem Set Id,Problem Part,Problem Type,Answer Types,Problem Body,Fill-in Options,Fill-in Answers,Multiple Choice Options,Multiple Choice Answers,problem_id +PSB6N4,1,Fill-in-the-blank(s),Numeric,"

28 is 7 times what number?

+

 

+

",4,4,,,151389 +PSBM5G,2,Fill-in-the-blank(s),Numeric,"

Evaluate 103.

+

 

+

","1,000","1,000",,,58180 +PSBM5G,1,Fill-in-the-blank(s),Numeric,"

Evaluate 53 ⋅ 23.

+

 

+

","1,000","1,000",,,58041 +PSBB9,1,Fill-in-the-blank(s),Numeric,"

There are 12 inches in 1 foot and 5,280 feet in 1 mile. Jada ran 314 miles.

+

 

+

How many feet is that?  

+

 

+

feet

",17160,17160,,,95 +PSBCC,1,Fill-in-the-blank(s),Numeric,"

Given the equation y = 3x + 2.5:

+

 

+

When x is 1, what value of y makes the equation true?

+
 
+

 

+

y =

",-0.5,-0.5,,,93 +PSBFF,1,Fill-in-the-blank(s),Drop Down,"

Diego has $11 and begins saving $5 each week toward buying a new phone. At the same time that Diego begins saving, Lin has $60 and begins spending $2 per week on supplies for her art class.

+

 

+

Is there a week when they have the same amount of money? 

+

 

+

","

No

,

Yes

",

Yes

,,,253 +PRABQMA9,1,Fill-in-the-blank(s),Numeric,"

Divide.

+

 

+

49÷815

+

 

+

",6-May,6-May,,,320140 +PSBXG,2,Fill-in-the-blank(s),Numeric,"

What is the scale factor?

+

 

+

",3,3,,,2532 +PRABG43A,1,Fill-in-the-blank(s),Algebraic Expression,"

Factor to write an equivalent expression: 26a-10

+

 

+

If you get stuck, use a diagram to organize your work.

+

 

+

",2(13a-5),2(13a-5),,,3056 +PSBB5WF,3,Fill-in-the-blank(s),Numeric,"

Lin’s second pan has a length of 83 inches, a width of 154 inches, and a height of 32 inches. What is the volume of the second pan?  

+

 

+

 cubic inches

",15,15,,,319193 +PSBBEUD,3,Fill-in-the-blank(s),Numeric,"

How many days of the week is Noah considering?

+

 

+

days of the week

+

 

+

",3,3,,,195315 +PSBYY,4,Fill-in-the-blank(s),Numeric,"

Evaluate the expression.

+

 

+

6.08 + 2.02

+

 

+

",8.1,8.1,,,3036 +PSBYY,5,Fill-in-the-blank(s),Numeric,"

Evaluate the expression.

+

 

+

35 - 0.02

+

 

+

",34.98,34.98,,,3201 +PSBYY,2,Fill-in-the-blank(s),Numeric,"

Evaluate the expression.

+

 

+

7 - 0.18

+

 

+

",6.82,6.82,,,2812 +PSBYY,3,Fill-in-the-blank(s),Numeric,"

Evaluate the expression.

+

 

+

13.23 + 2.67

+

 

+

",15.9,15.9,,,2930 +PSBYY,1,Fill-in-the-blank(s),Numeric,"

Evaluate the expression.

+

 

+

11 - 4.9 

+

 

+

",6.1,6.1,,,2695 +PSB4G,1,Fill-in-the-blank(s),Numeric,"

Andre is reviewing proportional relationships. He wants to practice using a graph that goes through a point so that each coordinate is between 1 and 10.

+

 

+

For the point, how many outcomes are in the sample space?

+

 

+

",100,100,,,3566 +PSB4G,2,Fill-in-the-blank(s),Numeric,"

For how many outcomes are the x-coordinate and the y-coordinate the same number?

+

 

+

",10,10,,,3705 +PRABG429,1,Fill-in-the-blank(s),Algebraic Expression,"

Expand to write an equivalent expression: -12(-2x+4y)

+

 

+

If you get stuck, use a diagram to organize your work.

+

 

+

",x-2y,x-2y,,,2894 +PSBBEUD,2,Fill-in-the-blank(s),Numeric,"

How many locations is Noah considering?

+

 

+

locations

+

 

+

",2,2,,,194852 +PSB25V,3,Fill-in-the-blank(s),Numeric,"

Divide 412 by the following unit fraction.

+

 

+

16

+

 

+

",27,27,,,131506 +PRABFCKF,1,Order / Sort,Ordering,

Order from smallest to largest:

,"Number of slices of bread in a stack that is 1 ft high, Number of books in a stack that is 1 ft high, Number of dollar bills in a stack that is 1 ft high, Number of pennies in a stack that is 1 ft high","Number of slices of bread in a stack that is 1 ft high, Number of books in a stack that is 1 ft high, Number of dollar bills in a stack that is 1 ft high, Number of pennies in a stack that is 1 ft high",,,238362 +PRABFG5X,1,Order / Sort,Ordering,"

The table shows five states and the lowest point in each state.

+

 

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
StateLowest Elevation (feet)
California-282
Colorado3,350
Louisiana-8
New Mexico2,842
Wyoming3,099
+

 

+

Put the states in order by their lowest elevation, from least (1) to greatest (5).

","California, Louisiana, Wyoming, New Mexico, Colorado","California, Louisiana, Wyoming, New Mexico, Colorado",,,5669 +PSBBFD5,1,Fill-in-the-blank(s),Numeric,"

Find the value of 2425÷45.

+

 

+

 

+

",5-Jun,5-Jun,,,199749 +PSBRQK,2,Fill-in-the-blank(s),Numeric,"

Find the quotient.

+

 

+

5÷310

+

 

+

","16 2/3, 50/3","16 2/3, 50/3",,,76591 +PSBRQK,3,Fill-in-the-blank(s),Numeric,"

Find the quotient.

+

 

+

5÷910

+

 

+

","50/9, 5 5/9","50/9, 5 5/9",,,76716 +PSBDP4S,1,Fill-in-the-blank(s),Numeric,"

Find 12÷35. Try not to use a diagram, if possible. 

+

 

+

",20,20,,,594494 +PSBG4B,2,Fill-in-the-blank(s),Numeric,"

A rectangular bathroom floor is covered with square tiles that are 112 feet by 112 feet. The length of the bathroom floor is 1012 feet and the width is 612 feet.

+

 

+

How many tiles does it take to cover the width of the floor?

+

 

+

  tiles

+

Express your answer in fraction form.

",4 1/3,4 1/3,,,36911 +PSBCY9G,2,Fill-in-the-blank(s),Numeric,"

Find the correct quotient.

+

 

+

",15-Aug,15-Aug,,,469563 +PSB222,1,Fill-in-the-blank(s),Numeric,"

Find the value of 154 ÷ 58.

+

 

+

",6,6,,,130932 +PSB25V,1,Fill-in-the-blank(s),Numeric,"

Divide 412 by the following unit fraction.

+

18

+

 

+

",36,36,,,131258 +PSB25V,2,Fill-in-the-blank(s),Numeric,"

Divide 412 by the following unit fraction.

+

 

+

 14

+

 

+

",18,18,,,131386 +PSBBT7,1,Fill-in-the-blank(s),Numeric,"

Han found a way to compute complicated expressions more easily. Since ⋅ 5=10, he looks for pairings of 2s and 5s that he knows equal 10. For example,

+

3 · 24 · 55 3 · 24 · 54 · (3 · 5) · (2 · 5)4 15 · 104 150,000.

+

 

+

Use Han's technique to compute the following:

+

 

+

24 · 5 · (3 · 5)3

+

 

+

 

+

",270000,270000,,,7635 +PSBBT7,2,Fill-in-the-blank(s),Numeric,"

Han found a way to compute complicated expressions more easily. Since ⋅ 5=10, he looks for pairings of 2s and 5s that he knows equal 10. For example,

+

3 · 24 · 55 3 · 24 · 54 · (3 · 5) · (2 · 5)4 15 · 104 150,000.

+

 

+

Use Han's technique to compute the following:

+

 

+

+

 

+

",180000,180000,,,7829 +PSBGZP,2,Fill-in-the-blank(s),Numeric,"

A zookeeper is 614 feet tall. A young giraffe in his care is 938 feet tall.

+

 

+

What fraction of the giraffe’s height is the zookeeper’s height?  

+

 

+

+

Express your answer in fraction form.

",3-Feb,3-Feb,,,36501 +PSBDK49,1,Fill-in-the-blank(s),Numeric,"

Here is a right triangle. What is its area?

+

 

+

cm2

+

 

+

",8-Mar,8-Mar,,,577269 +PRABJCHV,1,Fill-in-the-blank(s),Numeric,"

A train moves at constant speed and travels 6 miles in 4 minutes. What is its speed in miles per minute?

+

 

+

 miles per minute

",2-Mar,2-Mar,,,9567 +PRABJCHW,1,Fill-in-the-blank(s),Numeric,"

A car moves at a constant speed of 50 miles per hour. How long does it take the car to go 200 miles?

+

 

+

hours

",4,4,,,9673 +PSBB8W,4,Fill-in-the-blank(s),Numeric,"

If you are standing on a beach right next to the ocean, what is your elevation?

+

 

+

",0,0,,,9946 +PSBBPYX,2,Fill-in-the-blank(s),Numeric,"

The area of a rectangle is 1712 in2 and its shorter side is 312 in.

+

 

+

What is the length of the longer side?  

+

 

+

in

",5,5,,,242315 +PSBBP6G,1,Fill-in-the-blank(s),Numeric,"

Find the value of 532÷254

+

 

+

",Jan-40,Jan-40,,,243107 +PSBCAR,3,Fill-in-the-blank(s),Numeric,"

Use Priya’s method to calculate 0.0015 · 0.024.

+

 

+

",0.000036,0.000036,,,10585 +PSB2GF,2,Fill-in-the-blank(s),Numeric,"

A bucket contains 1123 gallons of water and is 56 full. How many gallons of water would be in a full bucket? 

+

 

+

Find the answer.

+

 

+

gallons

",14,14,,,127330 +PSBB72,3,Fill-in-the-blank(s),Numeric,"

What is the measure of angle AEB?

+

 

+

°

",60,60,,,10007 +PSBCCG,1,Fill-in-the-blank(s),Numeric,"

The scale of a map says that 8 cm represents 5 km.

+


What distance on the map (in centimeters) represents an actual distance of 8 kilometers?  

+

 

+

centimeters

",12.8,12.8,,,10706 +PSBCBU,1,Fill-in-the-blank(s),Algebraic Expression,"

A right triangle has side lengths of a, b, and c units. The longest side has a length of c units. Complete the equations to show three relations among  a, b, and c.

+

 

+

c2=

+

 

+

Use the ^ symbol to represent an exponent.

+

For example: 52 should be typed as 5^2

+

 

",a^2+b^2,a^2+b^2,,,10412 +PSBV2W,2,Fill-in-the-blank(s),Numeric,"

A sixth-grade science club needs $180 to pay for the tickets to a science museum. All tickets cost the same amount.

+

 

+

Find the quotient.

+

 

+

",12,12,,,102028 +PSBBEUD,5,Fill-in-the-blank(s),Numeric,"

How many different possible outcomes are in the sample space?

+

 

+

possible outcomes

+

 

+

",18,18,,,196019 +PSBWAZ,2,Fill-in-the-blank(s),Numeric,"

Find a value for a that makes the statement true.

+

 

+

a ÷ 6 is equal to 1

+

 

+

",6,6,,,103383 +PSBCMS,2,Fill-in-the-blank(s),Numeric,"

Evaluate:

+

 

+

12-3

+

 

+

",8,8,,,12381 +PRABQAC2,1,Fill-in-the-blank(s),Numeric,"

 

+

Find the sum without a calculator.

+

+

 

+

",0,0,,,14063 +PSBC62,2,Fill-in-the-blank(s),Numeric,"

A gas company’s delivery truck has a cylindrical tank that is 14 feet in diameter and 40 feet long.

+

 

+

How much gas can fit in the tank? 

+

 

+

cubic feet

+

Use 3.14 as an approximation for pi.  Round your answer to the nearest whole.

+

 

+

 

","6154, 6158","6154, 6158",,,15627 +PSBC6R,4,Fill-in-the-blank(s),Numeric,"

A child’s pass costs $15. How many dollars does an adult pass cost? 

+

 

+

$

",24,24,,,15569 +PSBC2Q,1,Fill-in-the-blank(s),Numeric,"

Calculate the product. If you get stuck, draw an area diagram to help.

+

 

+

(5.6⋅ (1.8)

+

 

+

",10.08,10.08,,,14749 +PSBC39,1,Fill-in-the-blank(s),Numeric,"

Calculate the product. If you get stuck, draw an area diagram to help.

+

 

+

(0.008⋅ (7.2)

+

 

+

",0.0576,0.0576,,,15038 +PRABHX6P,1,Fill-in-the-blank(s),Numeric,"

A salesperson sold a car for $18,250 and their commission is $693.50. What percentage of the sale price is their commission?

+

 

+

%

",3.8,3.8,,,15760 +PSBC4Z,3,Fill-in-the-blank(s),Numeric,"

Three cylinders have a volume of 2826 cm3.

+

Cylinder A has a height of 900 cm.

+

Cylinder B has a height of 225 cm.

+

Cylinder C has a height of 100 cm.

+

Find the radius of the cylinder. Use 3.14 as an approximation for π.

+

 

+

Cylinder C has a radius of cm

",3,3,,,15234 +PSBD8C,4,Fill-in-the-blank(s),Algebraic Expression,"

How much will a car be worth after one year if its initial value was x dollars? If you get stuck, consider using diagrams or a table to organize your work.

+

 

+

dollars

+

Use x as your variable.

",0.85x,0.85x,,,21347 +PSBEBS,1,Fill-in-the-blank(s),Exact Match,"

Write the expression with fewer terms. 

+

 

+

10x − 2x

+
 
+

 

+

",8x,8x,,,21711 +PSBEEZ,2,Fill-in-the-blank(s),Numeric,"

How far are the hurdles from one another? 

+

 

+

 

+

meters

",9.14,9.14,,,22078 +PSBEGN,1,Fill-in-the-blank(s),Numeric,"

Evaluate the expression:

+

 

+

(-1) · 2 · 3

+

 

+

",-6,-6,,,22023 +PSBEED,1,Order / Sort,Ordering,"

Here are some scenarios:

+
    +
  • According to market research, a business has a 75% chance of making money in the first 3 years.
  • +
  • According to lab testing,  of a certain kind of experimental light bulb will work after 3 years.
  • +
  • According to experts, the likelihood of a car needing major repairs in the first 3 years is 0.7.
  • +
+


Order the scenarios in order of likelihood from least (1) to greatest (3) after three years.

","the business makes money, the light bulb still works, the car needs major repairs","the business makes money, the light bulb still works, the car needs major repairs",,,22103 +PSBEGN,2,Fill-in-the-blank(s),Numeric,"

Evaluate the expression:

+

 

+

+

 

+

",6,6,,,22322 +PSBEGN,3,Fill-in-the-blank(s),Numeric,"

Evaluate the expression:

+

 

+

+

 

+

",-6,-6,,,22552 +PSBESA,2,Fill-in-the-blank(s),Numeric,"

The equation d = 3t represents the relationship between the distance (d) in inches that a snail is from a certain rock and the time (t) in minutes.

+

 

+

How many minutes does it take the snail to get 9 inches from the rock?  

+

 

+

minutes

",3,3,,,23822 +PRABTS95,1,Fill-in-the-blank(s),Numeric,"

Find the area of the rectangle with the following side lengths.

+

 

+

 

+

76 in and 67in

+

 

+

 

+

square inch

",1,1,,,25949 +PRABEV4K,1,Fill-in-the-blank(s),Numeric,"

A random sample of people were asked which hand they prefer to write with.

+

l means they prefer to use their left hand.

+

r means they prefer to use their right hand.

+

 

+

l     r     r     r     r     r     r     r     r     r     l     r     r     r     r

+

 

+

Based on this sample, estimate the proportion of the population that prefers to write with their left hand.

+

 

+

 

+

",15-Feb,15-Feb,,,24873 +PRABMSEU,1,Fill-in-the-blank(s),Numeric,"

Find the value of the expression.

+

 

+

-25 · -34

+

 

+

",10-Mar,10-Mar,,,26005 +PRABESKQ,1,Fill-in-the-blank(s),Numeric,"

The graph of a proportional relationship contains the point with coordinates (3, 12). What is the constant of proportionality of the relationship?

+

 

+

",4,4,,,25520 +PSBEXG,3,Fill-in-the-blank(s),Numeric,"

What is the constant of proportionality?  

+

 

+

 sale dollars per original dollar

",0.8,0.8,,,24963 +PRABMSEV,1,Fill-in-the-blank(s),Numeric,"

Find the value of the expression.

+

 

+

83 · -42

+

 

+

",-112,-112,,,26296 +PSBFCE,4,Fill-in-the-blank(s),Numeric,"

What is the value of c?

+

 

+

",4,4,,,27276 +PSBFCE,1,Fill-in-the-blank(s),Numeric,"

All of the points in the picture are on the same line.

+

 

+

+

 

+

Find the slope of the line.

+

 

+

",3,3,,,27019 +PSBC9S5,1,Fill-in-the-blank(s),Numeric,"

What is 56 ÷ 112?

+

 

+

",10,10,,,517656 +PSBGGY,1,Fill-in-the-blank(s),Numeric,"

Solve the problem below.

+

 

+

21 is what percentage of 30?  

+

 

+

%

",70,70,,,33653 +PSBCBEC,2,Fill-in-the-blank(s),Numeric,"

Find the answer. Draw a diagram, if needed.

+

 

+

A set of books that are each 1.5 inches wide are being organized on a bookshelf that is 36 inches wide. How many books can fit on the shelf?

+

 

+

books

",24,24,,,351353 +PRABEGMJ,1,Fill-in-the-blank(s),Numeric,"

A cone has volume 12π cubic inches. Its height is 4 inches. What is its radius?

+

 

+

inches

",3,3,,,27930 +PSBFVZ,1,Fill-in-the-blank(s),Numeric,"

Diego made 6 boxes of spaghetti to feed 20 people who attended his dinner party. Next time, 50 people are coming! How many boxes of spaghetti should Diego buy to feed all those people?  

+

 

+

boxes of spaghetti

",15,15,,,30276 +PSBFYQ,2,Fill-in-the-blank(s),Numeric,"

Elena bought 8 tokens for $4.40. At this rate:

+

 

+

How much do 19 tokens cost?

+

 

+

$

",10.45,10.45,,,30779 +PSBFYQ,1,Fill-in-the-blank(s),Numeric,"

Elena bought 8 tokens for $4.40. At this rate:

+

 

+

How many tokens could she buy with $6.05?  

+

 

+

tokens

",11,11,,,30604 +PSBDNUV,1,Fill-in-the-blank(s),Numeric,"

What is 34÷18?

+

 

+

",6,6,,,587537 +PRABQMPS,1,Fill-in-the-blank(s),Numeric,"

Compute 4,803 · 95.

+

 

+

","456,285","456,285",,,284725 +PSBF75,1,Fill-in-the-blank(s),Numeric,"

Solve the problem below.

+

 

+

What is 25% of 160?

+

 

+

",40,40,,,32069 +PSBF26,1,Fill-in-the-blank(s),Numeric,"

A snail travels 10 cm in 4 minutes. At this rate:

+

 

+

How long will it take the snail to travel 24 cm?

+

 

+

minutes

",9.6,9.6,,,31058 +PSBGBH,1,Fill-in-the-blank(s),Numeric,"

Solve the problem below.

+

 

+

What is 150% of 32?

+

 

+

",48,48,,,32696 +PSBF9P,1,Fill-in-the-blank(s),Numeric,"

Solve the problem below.

+

 

+

What is 39% of 200?

+

 

+

",78,78,,,32378 +PSBGC8,1,Fill-in-the-blank(s),Numeric,"

Solve the problem below.

+

 

+

13 is 50% of what number?

+

 

+

",26,26,,,33021 +PSBGGX,2,Fill-in-the-blank(s),Numeric,"

What is the slope of the line you graphed?

+

 

+

",-1,-1,,,33513 +PSBGE8,1,Fill-in-the-blank(s),Numeric,"

Solve the problem below.

+

 

+

18 is 120% of what number?

+

 

+

",15,15,,,33334 +PRABQKZE,1,Fill-in-the-blank(s),Numeric,"

Compute 3,902·85.

+

 

+

",331670,331670,,,457114 +PSBG2Q,2,Fill-in-the-blank(s),Algebraic Expression,"

What is the volume of the cone? Express your answer in terms of π.

+

 

+

cubic units

+

Use pi to represent the π symbol. For example: 32π would be typed as 32pi

",36pi,36pi,,,36673 +PSBG69,2,Fill-in-the-blank(s),Numeric,"

What fraction of the daily recommended value of iron is in 1 cup of oatmeal?

+

 

+

 

+

 

+

",15-Feb,15-Feb,,,37276 +PSBBZUE,1,Fill-in-the-blank(s),Exact Fraction,"

A teacher asked all the students in one class how many minutes it takes them to get to school. Here is a table of their responses:

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
2010158515105
2051510310185
2555121030510
+

 

+

 

+

What fraction of the students in this class say it takes them 5 minutes to get to school?

+

 

+

",24-Jul,24-Jul,,,297138 +PSB3AD,3,Fill-in-the-blank(s),Numeric,"

A line contains the points (-3, -2) and (7, 2).

+

 

+

Calculate the slope of the line.

+
 
+

 

+

",5-Feb,5-Feb,,,132337 +PSBG89,2,Fill-in-the-blank(s),Exact Fraction,"

What fraction of  is ?

+

 

+

 

+

Enter your answer as an exact fraction.

+

 

+

",3-Feb,3-Feb,,,37735 +PSBBWH7,2,Fill-in-the-blank(s),Numeric,"

A stack of 500 pieces of paper is 1.875 inches tall.

+

 

+

Compute the thickness of each piece of paper.

+

 

+

inches

",0.00375,0.00375,,,277925 +PRABHHQY,1,Fill-in-the-blank(s),Numeric,"

The two triangles shown are similar. Find the value of .

+

+
 
+

 

+

","3/2, 1.5","3/2, 1.5",,,37464 +PRABMSG5,1,Fill-in-the-blank(s),Numeric,"

Evaluate the expression. If the answer is not a whole number, write your answer as a fraction.

+

 

+

43 ÷ -24

+

 

+

",-0.055555556,-0.055555556,,,38766 +PSBHTM,2,Fill-in-the-blank(s),Algebraic Expression,"

Correct the error. What should the line actually be?

+

 

+

",4x-1,4x-1,,,40512 +PSBBZUE,2,Fill-in-the-blank(s),Exact Fraction,"

A teacher asked all the students in one class how many minutes it takes them to get to school. Here is a table of their responses:

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
2010158515105
2051510310185
2555121030510
+

 

+

 

+

What fraction of the students in this class say it takes them more than 10 minutes to get to school?

+

 

+

","9/24, 3/8","9/24, 3/8",,,297237 +PSBHPP,3,Fill-in-the-blank(s),Numeric,"

Strawberries cost $3.00 per pound. 

+

 

+

How many pounds of strawberries can you buy for $11.00?  

+

 

+

pounds of strawberries

",3-Nov,3-Nov,,,39959 +PSBHTH,1,Fill-in-the-blank(s),Numeric,"

An area of 6 square yards is equal to 54 square feet. 9 square yards is equal to how many square feet?  

+

 

+

square feet

",81,81,,,40656 +PSBH52,1,Fill-in-the-blank(s),Numeric,"

Another temperature scale frequently used in science is the Kelvin scale. In this scale, 0 is the lowest possible temperature of anything in the universe, and it is -273.15 degrees in the Celsius scale. Each 1 K is the same as 1°C so 10 K is the same as -263.15°C.

+

 

+

Water boils at 100°C. What is this temperature in K?

+

 

+

K

",373.15,373.15,,,42388 +PSBJDX,2,Order / Sort,Ordering,

Add the new set of cards to the first set so that all of the cards are ordered from least likely to most likely.

,"
+
+
+
+

The probability that a certain medical test gives the right result is 0.95. The chance that this medical test is correct for a random patient.

+
+
+
+
,
+
+
+
+

A fishbowl contains 5 balls where each one has an even number from 2 to 10 written on it and you choose one. The chance that you draw out of ball with the number 3 on it.

+
+
+
+
,

10% of people are left handed. The chance that a randomly chosen person is left handed.

,
+
+
+
+

In general English usage, 45 of words begin

+

with the letter T. The chance that a randomly chosen word in a novel begins with the letter T.

+
+
+
+
,

The weather report says there is a 20% chance of rain tomorrow. The chance of rain tomorrow.

,
+
+
+
+

The chance that your opponent will play rock first in a game of paper, rock, scissors.

+
+
+
+
,
+
+
+
+

2 out of every 5 dentists recommend a certain brand of toothpaste. The chance that a random dentist recommends the toothpaste.

+
+
+
+
,

Half of the cards in a deck are red and half are black. Shuffle the cards and select the first card. The chance that the card is red.

,

The offspring of two fruit flies in a science experiment have a 75% chance of having redeyes. The chance that the first fly to hatch has red eyes.

,
+
+
+
+

A pile contains 6 square pattern blocks and you choose one. The chance that the block you choose has 4 sides of the same length.

+
+
+
+
","
+
+
+
+

The probability that a certain medical test gives the right result is 0.95. The chance that this medical test is correct for a random patient.

+
+
+
+
,
+
+
+
+

A fishbowl contains 5 balls where each one has an even number from 2 to 10 written on it and you choose one. The chance that you draw out of ball with the number 3 on it.

+
+
+
+
,

10% of people are left handed. The chance that a randomly chosen person is left handed.

,
+
+
+
+

In general English usage, 45 of words begin

+

with the letter T. The chance that a randomly chosen word in a novel begins with the letter T.

+
+
+
+
,

The weather report says there is a 20% chance of rain tomorrow. The chance of rain tomorrow.

,
+
+
+
+

The chance that your opponent will play rock first in a game of paper, rock, scissors.

+
+
+
+
,
+
+
+
+

2 out of every 5 dentists recommend a certain brand of toothpaste. The chance that a random dentist recommends the toothpaste.

+
+
+
+
,

Half of the cards in a deck are red and half are black. Shuffle the cards and select the first card. The chance that the card is red.

,

The offspring of two fruit flies in a science experiment have a 75% chance of having redeyes. The chance that the first fly to hatch has red eyes.

,
+
+
+
+

A pile contains 6 square pattern blocks and you choose one. The chance that the block you choose has 4 sides of the same length.

+
+
+
+
",,,43887 +PSBJBR,1,Fill-in-the-blank(s),Numeric,"

Andre picks blocks out of a bag 60 times and notes that 43 of them were green.

+

 

+

What should Andre estimate for the probability of picking out a green block from this bag?

+

 

+

",43/60,43/60,,,43208 +PRABFERH,1,Fill-in-the-blank(s),Numeric,"

How many 15-liter glasses can Lin fill with a 112-liter bottle of water?

+

 

+

glasses

",7 1/2,7 1/2,,,275212 +PRABGJXG,1,Fill-in-the-blank(s),Numeric,"

Calculate the sum.

+

 

+

0.401 + 9.28

+

 

+

",9.681,9.681,,,9184 +PRABGJRS,1,Fill-in-the-blank(s),Numeric,"

How many 112-liter bottles of water does it take to fill a 16-liter jug? 

+

 

+

bottles of water

+

Express your answer in fraction form.

",10 2/3,10 2/3,,,275405 +PSBJQT,1,Fill-in-the-blank(s),Numeric,"

Answer the question below.

+

 

+

35% of f is 14. What is f?

+

 

+

",40,40,,,45372 +PRABD8HP,1,Fill-in-the-blank(s),Numeric,"

A restaurant offers delivery for their pizzas. The total cost is a delivery fee added to the price of the pizzas. One customer pays $25 to have 2 pizzas delivered. Another customer pays $58 for 5 pizzas. How many pizzas are delivered to a customer who pays $80?

+

 

+

pizzas

",7,7,,,43417 +PSBBVNT,3,Fill-in-the-blank(s),Numeric,"

Tickets to a show cost $5.50 for adults and $4.25 for students. A family is purchasing 2 adult tickets and 3 student tickets.  

+

 

+

If the family pays $25, what is the exact amount of change they should receive? 

+

 

+

$

",1.25,1.25,,,273269 +PSBSNF,3,Fill-in-the-blank(s),Numeric,"

A roll of ribbon was 12 meters long. Diego cut 9 pieces of ribbon that were 0.4 meter each to tie some presents. He then used the remaining ribbon to make some wreaths. Each wreath required 0.6 meter.  

+

 

+

How many wreaths could Diego make with the available ribbon?

+

 

+

wreaths

",14,14,,,81543 +PSBJNV,1,Fill-in-the-blank(s),Numeric,"

Answer the question below.

+

 

+

125% of e is 30. What is e?

+

 

+

",24,24,,,45043 +PSBJFK,2,Fill-in-the-blank(s),Algebraic Expression,"

Tyler needs some extra calories each day during his sports season. He wants to know how many servings he can have each day if all the extra calories come from the fruit snack. Write an equation that shows the number of servings, n, in terms of the number of calories, c.

+

 

+

n =

+

Use c as your variable.

",c/90,c/90,,,44015 +PRABMQK7,1,Fill-in-the-blank(s),Numeric,"

Noah enlarged a photograph by a scale factor of 6. The area of the enlarged photo is how many times as large as the area of the original?

+

 

+

times as many

",36,36,,,44380 +PSBJGY,3,Fill-in-the-blank(s),Numeric,"

A textbook has 428 pages numbered in order starting with 1. You flip to a random page in the book in a way that it is equally likely to stop at any of the pages.

+

 

+

What is the probability that you turn to an even numbered page?

+

 

+

",214/428,214/428,,,44248 +PSBJM9,3,Fill-in-the-blank(s),Numeric,"

Now solve:  You need 34 yard of ribbon for one gift box. You have 3 yards of ribbon. How many gift boxes do you have ribbon for?  

+

 

+

gift boxes

",4,4,,,45097 +PSBJJW,3,Fill-in-the-blank(s),Numeric,"

How many times around the park did he ride?

+

 

+

 

+

",2,2,,,44687 +PSBJTA,2,Fill-in-the-blank(s),Numeric,"

How many of the values in this data set are between the first quartile and the median?

+

 

+

",5,5,,,45802 +PRABTTMR,1,Fill-in-the-blank(s),Numeric,"

Evaluate the expression when x is 4 and y is 6.

+

 

+

+

 

+

 

+

",4,4,,,46539 +PRABFG36,1,Fill-in-the-blank(s),Numeric,"

Evaluate the expression below.

+

 

+

+

 

+

 

+

",15,15,,,46338 +PRABFG4A,1,Fill-in-the-blank(s),Numeric,"

Evaluate the expression below.

+

 

+

+

 

+

",72,72,,,46909 +PRABTTMM,1,Fill-in-the-blank(s),Numeric,"

Evaluate the expression when x is 4 and y is 6.

+

 

+

+

 

+

",66,66,,,46425 +PRABFG38,1,Fill-in-the-blank(s),Numeric,"

Evaluate the expression below.

+

 

+

+

 

+

 

+

",4,4,,,46711 +PRABTTMQ,1,Fill-in-the-blank(s),Numeric,"

Evaluate the expression when x is 4 and y is 6.

+

 

+

+

 

+

",1,1,,,46924 +PRABFG37,1,Fill-in-the-blank(s),Numeric,"

Evaluate the expression below.

+

 

+

+

 

+

",27,27,,,46527 +PRABTTMP,1,Fill-in-the-blank(s),Numeric,"

Evaluate the expression when x is 4 and y is 6.

+

 

+

+

 

+

",17,17,,,46811 +PRABTTMN,1,Fill-in-the-blank(s),Numeric,"

Evaluate the expression when x is 4 and y is 6.

+

 

+

+

 

+

",16-Jan,16-Jan,,,46683 +PRABFG4B,1,Fill-in-the-blank(s),Numeric,"

Evaluate the expression below.

+

 

+

+

 

+

",9,9,,,47289 +PRABFG4C,1,Fill-in-the-blank(s),Numeric,"

Evaluate the expression below.

+

 

+

+

 

+

",1,1,,,47479 +PRABFK8X,1,Fill-in-the-blank(s),Numeric,"

There are 20 pennies in a jar. If 16% of the coins in the jar are pennies, how many coins are there in the jar?

+

 

+

coins

",125,125,,,47523 +PRABFG39,1,Fill-in-the-blank(s),Numeric,"

Evaluate the expression below.

+

 

+

+

 

+

",2,2,,,47109 +PSBUGJ,1,Fill-in-the-blank(s),Numeric,"

Use long division to find the quotient. Write your answer as a decimal.

+

99 ÷ 12

+

 

+

",8.25,8.25,,,92124 +PSBKEG,2,Fill-in-the-blank(s),Numeric,"

What value of d makes the equation true?

+

 

+

12+d=-4.8

+

 

+

d =

",-16.8,-16.8,,,48612 +PRABGZF4,1,Fill-in-the-blank(s),Numeric,"

A cube has side length of  10 inches. What is its volume?  

+

 

+

 

+

cubic inches

","1,000","1,000",,,48762 +PSBKG8,4,Fill-in-the-blank(s),Numeric,"

What value makes sense for the slope of the line that represents the amounts on Han’s fare card in July?

+

 

+

",0,0,,,49232 +PRABFG5C,1,Fill-in-the-blank(s),Numeric,"

Solve the equation.

+

 

+

15 = 23x

+

 

+

x =

+

If necessary, express your answer in fraction form.

",10-Mar,10-Mar,,,50865 +PSBSNF,1,Fill-in-the-blank(s),Numeric,"

A roll of ribbon was 12 meters long. Diego cut 9 pieces of ribbon that were 0.4 meter each to tie some presents. He then used the remaining ribbon to make some wreaths. Each wreath required 0.6 meter.  

+

 

+

How many meters of ribbon were available for making wreaths?

+

 

+

meters

",8.4,8.4,,,81261 +PSBK75,3,Fill-in-the-blank(s),Numeric,"

How many triangles can you fit together at one vertex? 

+

 

+

Do not include units (triangles) in your answer.

+

 

+

",6,6,,,53019 +PSBK75,1,Fill-in-the-blank(s),Numeric,"

 What is the measure of each angle in an equilateral triangle? 

+

 

+

Do not include units (degrees) in your answer.

+

 

+

",60,60,,,52844 +PSBMBT,4,Fill-in-the-blank(s),Numeric,"

Use any method to find the value for y that makes the equation true.

+

 

+

y=

",20,20,,,54008 +PSBMFR,4,Fill-in-the-blank(s),Numeric,"

How many students are in the school in 63 of them are sixth graders?

+

 

+

 students

",147,147,,,54666 +PSBBRP,1,Fill-in-the-blank(s),Numeric,"

Calculate the difference. 

+

 

+

13.2  1.78   

+

 

+

",11.42,11.42,,,7369 +PSBMFR,2,Fill-in-the-blank(s),Numeric,"

How many sixth graders are there if the school has 28 students?  

+

 

+

 sixth graders

",12,12,,,54441 +PSBMFR,3,Fill-in-the-blank(s),Algebraic Expression,"

If the school has x students, write an expression for the number of sixth graders in terms of x.  

+

 

+

","(3/7)x, 3x/7","(3/7)x, 3x/7",,,54562 +PSBBVU,1,Fill-in-the-blank(s),Numeric,"

Calculate the difference. 

+
 
+
0.90.245
+

 

+

",0.655,0.655,,,8064 +PSBBRFG,3,Fill-in-the-blank(s),Numeric,"

Calculate the sum vertically.

+

 

+

0.137+0.284.

+

 

+

",0.421,0.421,,,249867 +PSBBWPJ,1,Fill-in-the-blank(s),Numeric,"

A rectangular prism measures 712 cm by 12 cm by 1512 cm.

+

 

+

Calculate the number of cubes with edge length 12 cm that fit in this prism.

+

 

+

cubes

","11,160","11,160",,,278504 +PSBBWPJ,2,Fill-in-the-blank(s),Numeric,"

A rectangular prism measures 712 cm by 12 cm by 1512 cm.

+

 

+

What is the volume of the prism in cm3?   If you are stuck, think about how many cubes with 12-cm edge lengths fit into 1 cm3.

+

 

+

cm3

",1395,1395,,,278648 +PSBM6G,1,Fill-in-the-blank(s),Numeric,"

. How many other whole numbers can you raise to a power and get 4,096?

+

 

+

 

+

",5,5,,,58258 +PSBNAB,3,Fill-in-the-blank(s),Algebraic Expression,"

A cone fits snugly inside a hemisphere, and they share a radius of 5.

+

 

+

+

 

+

What is the volume of the cone?

+

 

+

cubic units

+

Use pi to represent the π symbol. For example: 32π would be typed as 32pi

",125/3pi,125/3pi,,,58785 +PSBNQS,3,Fill-in-the-blank(s),Numeric,"

Find the value of the expression below.

+

 

+

+

 

+

",110,110,,,60862 +PRABGJXF,1,Fill-in-the-blank(s),Numeric,"

Calculate the sum.

+

 

+

1.075 + 27.105

+

 

+

",28.18,28.18,,,9017 +PSBNQS,4,Fill-in-the-blank(s),Numeric,"

Find the value of the expression below.

+

 

+

-22 ÷ 5

+
 
+

 

+

",-4.4,-4.4,,,61160 +PRABETNG,1,Fill-in-the-blank(s),Numeric,"

A shopper bought a watermelon, a pack of napkins, and some paper plates. In his state, there is no tax on food. The tax rate on non-food items is 5%. The total for the three items he bought was $8.25 before tax, and he paid $0.19 in tax. How much did the watermelon cost?

+

 

+

$

",4.45,4.45,,,62350 +PRABFFDZ,1,Fill-in-the-blank(s),Numeric,"

Calculate the sum.

+

 

+

33.1 + 1.95

+

 

+

",35.05,35.05,,,8869 +PSBBTU,1,Fill-in-the-blank(s),Numeric,"

Calculate the difference. 

+
 
+
23.110.376
+

 

+

",22.734,22.734,,,7710 +PSBPBA,2,Fill-in-the-blank(s),Numeric,"

Solve the equation to find their starting altitude.

+

 

+

feet

",-11,-11,,,64354 +PRABMSH6,1,Fill-in-the-blank(s),Numeric,"

Find the product.

+

 

+

(-0.2) • (-0.3)

+

 

+

",0.06,0.06,,,65369 +PRABFJZP,1,Fill-in-the-blank(s),Numeric,"

Solve the equation.

+

 

+

3a = 12

+

 

+

a =

+

 

",4,4,,,64054 +PSBCAR,2,Fill-in-the-blank(s),Numeric,"

Use Priya’s method to calculate 1.05 · 2.8. You can use the fact that105 · 28 = 2,940.

+

 

+

",2.94,2.94,,,10467 +PSBCMQV,1,Fill-in-the-blank(s),Numeric,"

Find the product.

+

 

+

(0.64)(0.81)

+

 

+

",0.5184,0.5184,,,403777 +PSB66B,2,Fill-in-the-blank(s),Numeric,"

There are 90 kids in the band. 20% of the kids own their own instruments, and the rest rent them.

+

 

+

How many kids rent instruments?  

+

 

+

kids

",72,72,,,153894 +PSBQMK,1,Fill-in-the-blank(s),Numeric,"

Find the difference. 

+

 

+

+

 

+

",1.7,1.7,,,70629 +PSBQJD,1,Fill-in-the-blank(s),Numeric,"

Find the difference. 

+

 

+

+

 

+

",0.25,0.25,,,70299 +PSBQRA,1,Fill-in-the-blank(s),Numeric,"

Find the difference. 

+

 

+

+

 

+

",0.013,0.013,,,71223 +PSBQPM,1,Fill-in-the-blank(s),Numeric,"

Find the difference. 

+

 

+

+

 

+

",0.97,0.97,,,70912 +PRABG6YN,1,Fill-in-the-blank(s),Numeric,"

Evaluate mentally: 

+

 

+

",1.4,1.4,,,71526 +PRABQBQM,1,Fill-in-the-blank(s),Numeric Expression,"

Another stack of books is 43 inches tall. Each book is -inch thick. 

+

 

+

Write an expression that represents the number of books in the stack.

+

 

+

",43/.5,43/.5,,,80072 +PRABFF2C,1,Fill-in-the-blank(s),Numeric,"

Find the product.

+

 

+

(2.05)·(0.004)

+

 

+

",0.0082,0.0082,,,75309 +PSBRQK,1,Fill-in-the-blank(s),Numeric,"

Find the quotient.

+

 

+

5÷110

+

 

+

",50,50,,,76458 +PSBRUP,1,Fill-in-the-blank(s),Numeric,"

Compute the product using the equation 21 ⋅ 47 = 987 and what you know about fractions, decimals, and place value.

+

 

+

 (2.1⋅ (4.7)

+

 

+

",9.87,9.87,,,77299 +PSBRUJ,1,Fill-in-the-blank(s),Numeric,"

A scale drawing of a school bus has a scale of 12 inches to 5 feet. If the length of the school bus is 412 inches on the scale drawing, what is the actual length of the bus?

+

 

+

  feet

",45,45,,,77198 +PSBRWA,1,Fill-in-the-blank(s),Numeric,"

Compute the product using the equation 21 ⋅ 47 987 and what you know about fractions, decimals, and place value.

+

 

+

21 ⋅ (0.047)

+

 

+

",0.987,0.987,,,77578 +PSBR2P,1,Fill-in-the-blank(s),Numeric,"

Find the value of 36.8 ÷ 2.3.

+

 

+

",16,16,,,78269 +PSBRX3,1,Fill-in-the-blank(s),Numeric,"

Compute the product using the equation 21 ⋅ 47 987 and what you know about fractions, decimals, and place value.

+

 

+

(0.021) ⋅ (4.7)

+

 

+

",0.0987,0.0987,,,77861 +PSBRYP,1,Fill-in-the-blank(s),Numeric,"

A farm lets you pick 3 pints of raspberries for $12.00.

+

 

+

What is the cost per pint? 

+

 

+

$

",4,4,,,77528 +PSBRWS,1,Fill-in-the-blank(s),Numeric,"

A box contains  pounds of pancake mix. Jada used  pound for a recipe. What fraction of the pancake mix in the box did she use?

+

 

+

 

+

",2-Jan,2-Jan,,,77616 +PSBR72,2,Fill-in-the-blank(s),Numeric,"

Use the diagram to help you find (0.04⋅ (0.02)

+

 

+

",0.0008,0.0008,,,79155 +PRABHHJ4,1,Fill-in-the-blank(s),Exact Fraction,"

Find the quotient. Write your answer as a fraction or a mixed number.

+

 

+

+

 

+

","2 1/35, 71/35","2 1/35, 71/35",,,81337 +PRABHHJ3,1,Fill-in-the-blank(s),Exact Fraction,"

Find the quotient. Write your answer as a fraction or a mixed number.

+

 

+

+

 

+

","25/8, 3 1/8","25/8, 3 1/8",,,81228 +PRABHNCG,1,Fill-in-the-blank(s),Numeric,"

A large bucket holds 5 gallons of water, which is about the same as 19 liters of water. 

+

 

+

A small bucket holds 2 gallons of water. About how many liters does it hold?

+

 

+

liters

",7.6,7.6,,,57665 +PSBTEW,1,Fill-in-the-blank(s),Numeric,"

A fence is being built around a rectangular garden that is  812 feet by  613 feet. Fencing comes in panels.  Each panel is 23 of a foot wide. How many panels are needed? 

+

 

+

 

+

panels

","45, 46","45, 46",,,86400 +PSBTTV,4,Fill-in-the-blank(s),Numeric,"

What is the slope of the graph between 0 and 10?

+

 

+

",10,10,,,87931 +PSBBH,1,Fill-in-the-blank(s),Numeric,"

Calculate (1.6) · (0.215).

+

 

+

",0.344,0.344,,,88 +PSBTT4,2,Fill-in-the-blank(s),Numeric,"

How many circles of radius 1 can you fit inside a circle of radius 3 units so that they do not overlap?

+

 

+

 

+
+

If you get stuck, consider using coins or other circular objects.

+
+

 

+

",7,7,,,88453 +PSBTUK,1,Fill-in-the-blank(s),Numeric,"

In her English class, Mai’s teacher gives 4 quizzes each worth 5 points. After 3 quizzes, she has the scores 4, 3, and 4. What does she need to get on the last quiz to have a mean score of 4?

+

 

+

",5,5,,,88478 +PSBTT4,1,Fill-in-the-blank(s),Numeric,"

How many circles of radius 1 can you fit inside a circle of radius 2 units so that they do not overlap?

+

 

+
+

If you get stuck, consider using coins or other circular objects.

+
+

 

+

",2,2,,,88342 +PSBTT4,3,Fill-in-the-blank(s),Numeric,"

How many circles of radius 1 can you fit inside a circle of radius 4 units so that they do not overlap?

+

 

+
+

If you get stuck, consider using coins or other circular objects.

+
+

 

+

",11,11,,,88561 +PSBTTV,6,Fill-in-the-blank(s),Numeric,"

What is the slope of the graph between 11 and 15?

+

 

+

",9,9,,,88244 +PRABKA6Z,1,Fill-in-the-blank(s),Numeric,"

What is the value of the expression?

+

 

+
+

 

+

",1,1,,,91640 +PSBUDU,3,Fill-in-the-blank(s),Numeric,"

Based on the information in the table, what do you think the inventory will be at on Saturday morning? Explain your reasoning.

+

 

+

",18,18,,,91688 +PSBUDU,4,Fill-in-the-blank(s),Numeric,"

What is the difference between greatest and least inventory?

+

 

+

",20,20,,,91790 +PSBUMJ,1,Fill-in-the-blank(s),Numeric,"

Find the product of 12 and 8.

+

 

+

",96,96,,,92205 +PSBUJG,1,Fill-in-the-blank(s),Numeric,"

Use long division to find the quotient. Write your answer as a decimal.

+

 

+

216 ÷ 5

+

 

+

",43.2,43.2,,,92479 +PSBUMJ,3,Fill-in-the-blank(s),Numeric,"

Find the least common multiple of 12 and 8.

+

 

+

",24,24,,,92518 +PSBUMJ,2,Fill-in-the-blank(s),Numeric,"

Find the greatest common factor of 12 and 8.

+

 

+

",4,4,,,92361 +PSBUMJ,4,Fill-in-the-blank(s),Numeric,"

Find the product of the greatest common factor and the least common multiple of 12 and 8.

+

 

+

",96,96,,,92677 +PSBU8Y,2,Fill-in-the-blank(s),Numeric,"

What is the probability the computer produces the first letter of your first name?

+

 

+

",26-Jan,26-Jan,,,96902 +PSBU9K,2,Fill-in-the-blank(s),Numeric,"

Find the area of each parallelogram.

+

 

+

+

 

+

 

+

Parallelogram B: square units.

",6,6,,,97230 +PSBVBE,2,Fill-in-the-blank(s),Numeric,"

The store bought a table for $200 and sold it for $350. What percentage was the markup?

+

 

+

 %

",75,75,,,97533 +PRABEUB8,1,Fill-in-the-blank(s),Numeric,"

What is the probability of selecting a random month of the year and getting a month that starts with the letter “J?”  If you get stuck, consider listing the sample space.

+

 

+

",12-Mar,12-Mar,,,97915 +PRABQN7G,1,Fill-in-the-blank(s),Numeric,"

A practice field is 250 feet long. The game field is 40% longer than the practice field. How long is the game field?  

+

 

+

feet

",350,350,,,98095 +PSBVQX,1,Fill-in-the-blank(s),Numeric,"

A school’s art club holds a bake sale on Fridays to raise money for art supplies. Here are the number of cookies they sold each week in the fall and in the spring:

+

 

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
fall20262524292019192424
spring19272921252226212525
+

 

+

Find the mean number of cookies sold in the fall.

+

 

+

",23,23,,,99247 +PSBJWY,3,Fill-in-the-blank(s),Numeric,"

What is the third quartile (Q3)?  

+

",8,8,,,46235 +PSBVQX,3,Fill-in-the-blank(s),Numeric,"

The MAD for the fall data is 2.8 cookies. The MAD for the spring data is 2.6 cookies. Express the difference in means as a multiple of the larger MAD.

+

 

+

Round your answer to the hundredth place.

+

 

+

",0.36,0.36,,,99939 +PRABEU7C,1,Fill-in-the-blank(s),Numeric,"

If 6 coins are flipped, find the probability that there is at least 1 heads.

+
 
+

 

+

",63/64,63/64,,,100714 +PSBVQX,2,Fill-in-the-blank(s),Numeric,"

Find the mean number of cookies sold in the spring.

+

 

+

",24,24,,,99606 +PRABHUGD,1,Fill-in-the-blank(s),Numeric," + + + + + + +
+

A cereal box says that now it contains 20% more. Originally, it came with 18.5 ounces of cereal. How much cereal does the box come with now?

+

 

+

ounces of cereal

+
",22.2,22.2,,,100544 +PSBVWT,4,Fill-in-the-blank(s),Numeric,"

Here are several recipes for sparkling lemonade. For each recipe, describe how many tablespoons of lemonade mix it takes per cup of sparkling water.

+

 

+

12 tablespoon of lemonade mix and 34 cups of sparkling water.

+

 

+

tablespoons lemonade mix per cup of sparkling water

+

Write your answer as a fraction.

",3-Feb,3-Feb,,,101254 +PSBWMQ,1,Fill-in-the-blank(s),Numeric,"

Tyler wonders what proportion of students at his school would dye their hair blue if their parents would let them. He surveyed a random sample of 10 students at his school, and 2 of them said they would. Kiran didn’t think Tyler’s estimate was very accurate, so he surveyed a random sample of 100 students, and 17 of them said they would.

+

 

+

Based on Tyler's sample, what proportion of the students would dye their hair blue?

+

 

+

",10-Feb,10-Feb,,,104881 +PSBWJZ,4,Fill-in-the-blank(s),Numeric,"

Use the graph to determine how much total rain fell on Tuesday.

+

 

+

cm 

",10,10,,,105377 +PRABTVKN,1,Fill-in-the-blank(s),Numeric,"

Un funcionario de tren analiza la ruta de un viaje y registra la distancia que recorre el tren en ciertos intervalos de tiempo.

+

 

+ + + + + + + + + + + + + + + + + + + +
tiempo (horas)distancia (millas)
0.522.5
145
1.567.5
+

 

+

 

+

El tren viaja a una rapidez constante. ¿Cuál es su rapidez?

+

 

+

 

+

millas por hora

",45,45,,,320443 +PRABJDMS,1,Fill-in-the-blank(s),Numeric,"

The population of city B was approximately 7,150,000, and it increased by 0.8% in one year. What was the new population?

+

 

+

Approximately people

","7207200, 7210000 ","7207200, 7210000 ",,,318309 +PSBEB6,2,Fill-in-the-blank(s),Numeric,"

What percentage of the students have more than one child in the family?

+

 

+

%

+

 

+

",75,75,,,21866 +PRABTVKQ,1,Fill-in-the-blank(s),Numeric,"

Noah y Andre están a 15 millas de distancia por un camino y comienzan a andar en bicicleta el uno hacia el otro. Noah pedalea a una rapidez constante de 4 millas por hora y Andre a una rapidez constante de 2 millas por hora. ¿Cuánto tiempo tardan en encontrarse?

+

 

+

horas

",2.5,2.5,,,320538 +PSBW4V,2,Fill-in-the-blank(s),Numeric,"

What value could you write in after 3x that would make the equation true for all values of x?

+

 

+

3x + 8 = 3x +  

+

 

+

",8,8,,,108574 +PRABHKBS,1,Fill-in-the-blank(s),Exact Fraction,"

Find the value of 

+

 

+

","21/4, 5 1/4","21/4, 5 1/4",,,111092 +PSBXC8,2,Fill-in-the-blank(s),Numeric,"

After how many months will the bamboo plant be 66 inches tall? months

",18,18,,,110017 +PSBXTM,2,Fill-in-the-blank(s),Numeric,"

Calculate the value of the expression below.

+

 

+

+

 

+

","16/3, 5 1/3","16/3, 5 1/3",,,112497 +PSBXTM,1,Fill-in-the-blank(s),Numeric,"

Calculate the value of the expression below.

+

 

+

+
 
+

 

+

","-16/3, -5 1/3","-16/3, -5 1/3",,,112290 +PSBXTM,4,Fill-in-the-blank(s),Numeric,"

Calculate the value of the expression below.

+

 

+

 

+

 

+

",-6,-6,,,112797 +PSBXSP,2,Fill-in-the-blank(s),Numeric,"

What is the coefficient of the variable?

+

 

+

",2,2,,,112511 +PSBYB5,6,Fill-in-the-blank(s),Numeric,"

Use the sample space to determine the probability that a fifth person would get the same outcome as person 1.

+

 

+

",15-Jan,15-Jan,,,115723 +PSBX7V,3,Fill-in-the-blank(s),Numeric,"

Teachers held a basketball shooting contest. Their goal was to make 60 baskets. For the teacher, determine what percentage of the goal they achieved.

+

 

+

Teacher C made 66 baskets.

+

 

+

%

",110,110,,,114889 +PSBX7V,4,Fill-in-the-blank(s),Numeric,"

Teachers held a basketball shooting contest. Their goal was to make 60 baskets. For the teacher, determine what percentage of the goal they achieved.

+

 

+

Teacher D made 9 baskets.  

+

 

+

%

",15,15,,,115027 +PSBYAA,2,Fill-in-the-blank(s),Numeric,"

What is the height of the 500 ml mark? Recall that 1 liter (L) is equal to 1000 milliliters (ml), and that 1 liter (L) is equal to 1,000 cm3.

+

 

+

cm

",12,12,,,115187 +PSBYTP,1,Order / Sort,Ordering,

Order the following pairs of coordinates from closest to farthest apart. Be prepared to explain your reasoning.

,"(7, 0) and (7, -9), (-3, 6) and (5, 6), (2, 4) and (2, 10), (1, -10) and (-4, -10), (-12, -12) and (-12, -1)","(7, 0) and (7, -9), (-3, 6) and (5, 6), (2, 4) and (2, 10), (1, -10) and (-4, -10), (-12, -12) and (-12, -1)",,,117898 +PSBYQW,2,Fill-in-the-blank(s),Numeric,"

What is the common value?

+

 

+

",50,50,,,117528 +PSBYTD,3,Fill-in-the-blank(s),Numeric Expression,"

Calculate the quotient of 109.2 ÷ 6 using any method of your choice.

+

 

+

",18.2,18.2,,,117994 +PSBYUC,7,Fill-in-the-blank(s),Numeric,"

The machine must be emptied to be serviced. If there are 40 bottles in the machine when it is to be serviced, what number will go in the second column in the table?

+

 

+

",-40,-40,,,118176 +PSBYX9,2,Fill-in-the-blank(s),Numeric Expression,"

Find the value of 61.12 ÷ 3.2.

+

 

+

",19.1,19.1,,,118786 +PSBY5V,3,Fill-in-the-blank(s),Numeric,"

At a school, 460 of the students walk to school. 

+

 

+

The number of students who ride the school bus is 110% of the number of students who walk. How many students ride the school bus?

+

 

+

students

",506,506,,,119945 +PRABETC2,1,Fill-in-the-blank(s),Numeric,"

It takes an ant farm 3 days to consume 12 of an apple. At that rate, in how many days will the ant farm consume 3 apples?  

+

 

+

days

",18,18,,,121533 +PSBZRX,1,Fill-in-the-blank(s),Numeric,"

Figures R, S, and T are all scaled copies of one another. Figure S is a scaled copy of R using a scale factor of 3. Figure T is a scaled copy of S using a scale factor of 2.

+

 

+

Find the scale factor from T to S.

+

 

+

",2-Jan,2-Jan,,,122745 +PSBZRX,3,Fill-in-the-blank(s),Numeric,"

Find the scale factor from R to T.

+

 

+

",6,6,,,123335 +PSBZRX,4,Fill-in-the-blank(s),Numeric,"

Find the scale factor from T to R.

+

 

+

",6-Jan,6-Jan,,,123444 +PSBZT4,2,Fill-in-the-blank(s),Numeric,"

What is the constant of proportionality?

+

 

+

 wheels per bus

",6,6,,,123500 +PSB2MF,1,Fill-in-the-blank(s),Numeric Expression,"

A cube has edge length 11 inches.

+

 

+

 

+

Write an expression for its volume.

+

 

+

V =

",11^3,11^3,,,128141 +PSBZWG,2,Fill-in-the-blank(s),Numeric,"

You spin the spinner 80 times. About how many times do you expect it will land on something other than A?

+

 

+

times

",60,60,,,124041 +PRABEQD2,1,Fill-in-the-blank(s),Numeric,"

Polygon B is a scaled copy of Polygon A using a scale factor of 5. Polygon A’s area is what fraction of Polygon B’s area?

+

 

+

",25-Jan,25-Jan,,,124672 +PSBZRX,2,Fill-in-the-blank(s),Numeric,"

Find the scale factor from S to R.

+

 

+

",3-Jan,3-Jan,,,123193 +PSBZ6U,2,Fill-in-the-blank(s),Numeric,"

After the discount, how much would the book cost? 

+

 

+

$

",15.3,15.3,,,125385 +PRABESEN,1,Fill-in-the-blank(s),Numeric,"

Noah was assigned to make 64 cookies for the bake sale. He made 125% of that number. 90% of the cookies he made were sold. How many of Noah's cookies were left after the bake sale?  

+

 

+

 

+

cookies

",8,8,,,123995 +PSB2CK,6,Fill-in-the-blank(s),Numeric,"

What is its answer?

+

 

+

",2.64,2.64,,,126628 +PSB2FK,2,Fill-in-the-blank(s),Numeric,"

What is the probability Mai will win the game? 

+

 

+

",3-Jan,3-Jan,,,126669 +PSB2CK,2,Fill-in-the-blank(s),Numeric,"

What is its answer?

+

 

+

",264,264,,,126091 +PSB2CK,4,Fill-in-the-blank(s),Numeric,"

What is its answer?

+

 

+

",26.4,26.4,,,126362 +PSB2CN,3,Fill-in-the-blank(s),Numeric,"

What value did Lin find for 62 ÷ 5?

+

 

+

",12.4,12.4,,,126648 +PRABFF2B,1,Fill-in-the-blank(s),Numeric,"

Find the product.

+

 

+

(21.2)·(0.02)

+
 
+

 

+

",0.424,0.424,,,75189 +PSB2HQ,2,Fill-in-the-blank(s),Numeric,"

What percentage remains?  

",50,50,,,127791 +PSB2J8,1,Fill-in-the-blank(s),Numeric,"

Noah wants to save $60 so that he can purchase a concert ticket. If he has saved $45 so far, what percentage of his goal has he saved? 

+

 

+

%

",75,75,,,128001 +PSB2MG,2,Fill-in-the-blank(s),Numeric,"

 How many pages are in the book?

+

 

+

pages

",175,175,,,128305 +PSB2UR,5,Fill-in-the-blank(s),Algebraic Expression,"

Write an equation representing this relationship. Use c for cups and t for tablespoons.

+

 

+

c =

+

Use t as your variable.

",(1/16)t,(1/16)t,,,129738 +PSB26A,1,Fill-in-the-blank(s),Numeric,"

The temperature in degrees Fahrenheit, F, is related to the temperature in degrees Celsius, C, by the equation F=95C+32,

+

 

+

In the Sahara desert, temperatures often reach 50 degrees Celsius. How many degrees Fahrenheit is this?

+

 

+

degrees Fahrenheit

",122,122,,,131112 +PSB2UR,4,Fill-in-the-blank(s),Numeric,"

What is the constant of proportionality for this relationship?

+

 

+

  cups per tablespoon

",16-Jan,16-Jan,,,129451 +PSB2WS,1,Fill-in-the-blank(s),Numeric,"

Find (4.2) · (1.6) by drawing an area diagram or using another method.

+

 

+

",6.72,6.72,,,130191 +PSBXSP,1,Fill-in-the-blank(s),Exact Match,"

For the equation 2n3=7

+


What is the variable?

+

 

+

",n,n,,,112350 +PSB2Z9,2,Fill-in-the-blank(s),Numeric,"

Now find x when y = 2.

+

 

+

y = 6x + 8

+

 

+

x =

",-1,-1,,,130824 +PSB3A4,1,Fill-in-the-blank(s),Numeric,"

Tyler orders a meal that costs $15. 

+

 

+

If the tax rate is 6.6%, how much will the sales tax be on Tyler’s meal? 

+

 

+

$

",0.99,0.99,,,131934 +PSB3BJ,2,Fill-in-the-blank(s),Numeric,"

Now find x when y = 2.

+

 

+

y = 34x - 212

+

 

+

x =

",6,6,,,132416 +PSB3BX,2,Fill-in-the-blank(s),Numeric,"

At a used book sale, 5 books cost $15.  

+

 

+

At this rate, how many books can you buy for $21?  

+

 

+

books

",7,7,,,132567 +PSB3BJ,1,Fill-in-the-blank(s),Numeric,"

For the following equation, find y when x=-3.

+

 

+

y = 34x - 212

+

 

+

y =

",-4.75,-4.75,,,132200 +PSB3CC,1,Fill-in-the-blank(s),Numeric,"

Find 1.8 ÷ 0.004. If you get stuck, think about what equivalent division expression you could write.

+

 

+

",450,450,,,132551 +PSB3EU,1,Fill-in-the-blank(s),Numeric,"

For the following equation, find y when x = -3.

+

 

+

y = 1.5x + 11

+

 

+

y =

",6.5,6.5,,,132688 +PRABG2SM,1,Fill-in-the-blank(s),Numeric,"

Find the quotient mentally.

+

 

+

246 ÷ 12

+

 

+

",20.5,20.5,,,133100 +PRABQKSH,1,Order / Sort,Ordering,

Order these numbers from least to greatest.

,"

1

,

49100

,

113

,

89

,

12

,

1120

,

0

","

1

,

49100

,

113

,

89

,

12

,

1120

,

0

",,,133338 +PSB3SQ,1,Order / Sort,Ordering,"

Without calculating, order the quotients of these expressions from least to greatest.

","42.6 ÷ 70, 42.6 ÷ 0.07, 42.6 ÷ 0.7, 426 ÷ 70","42.6 ÷ 70, 42.6 ÷ 0.07, 42.6 ÷ 0.7, 426 ÷ 70",,,134784 +PSB3SQ,3,Fill-in-the-blank(s),Numeric,"

Use this answer to find the quotient of one of the previous expressions.

+

 

+

","6.08571, 0.608571, 60.8571, 608.571","6.08571, 0.608571, 60.8571, 608.571",,,135051 +PSB35V,7,Fill-in-the-blank(s),Numeric,"

Copy and paste the formula to check your prediction.

+

 

+

What number does cell D2 display?

+

 

+

",15.3,15.3,,,137401 +PSB3X8,4,Fill-in-the-blank(s),Numeric,"

What is the value of |1.8|?

+

 

+

",1.8,1.8,,,136203 +PSB3X8,2,Fill-in-the-blank(s),Numeric,"

What is the value of |-7|?

+

 

+

",7,7,,,135943 +PSBBP4J,2,Fill-in-the-blank(s),Numeric,"

Find the area of the triangle.

+

 

+

square units.

+

 

+

",11,11,,,242640 +PSBBP4J,2,Fill-in-the-blank(s),Numeric,"

Find the area of the triangle.

+

 

+

square units.

+

 

+

",11,11,,,242640 +PRABGKQY,1,Fill-in-the-blank(s),Numeric,"

Find the quotient.

+

 

+

0.24 ÷ 0.015

+

 

+

",16,16,,,137016 +PSB35V,3,Fill-in-the-blank(s),Numeric,"

Type in the formula, and press enter to check your prediction.

+

 

+

What number does cell C2 display?

+

 

+

",16,16,,,137056 +PSB35V,5,Fill-in-the-blank(s),Numeric,"

Replace the formula with the number, and press enter to check your prediction.

+

 

+

What number does cell C2 now display?

+

 

+

",200,200,,,137232 +PSB4DY,3,Fill-in-the-blank(s),Numeric,"

What is the area of the triangle?  

+

 

+

square units

",3,3,,,138605 +PSB4FT,5,Fill-in-the-blank(s),Numeric,"

At this rate, how much would Lin be paid for 2.1 hours of work? 

+

 

+

$

",37.8,37.8,,,139112 +PSB4C3,2,Fill-in-the-blank(s),Numeric,"

Another cone has quadruple the radius, and the same height. How many times larger is the new cone’s volume?

+

 

+

times larger

",16,16,,,138533 +PSB4CN,1,Fill-in-the-blank(s),Numeric,"

Use the table to help you solve the following problems. 

+

 

+ + + + + + + + + + + + + + + + + + + + + + + + + + + +
number of tacosprice in dollars
  
  
  
  
  
+

 

+

Noah bought 4 tacos and paid $6. At this rate, how many tacos could he buy for $15?

+

 

+

",10,10,,,138263 +PSBMJG,2,Fill-in-the-blank(s),Numeric,"

Find the surface area of the polyhedron in square centimeters.

+

 

+

+

 

+

 square centimeters

",84,84,,,54974 +PSBEWK,1,Fill-in-the-blank(s),Numeric,"

Find the area of the shape.

+

 

+

+

 

+

square units

",19,19,,,24929 +PSB5NC,2,Order / Sort,Ordering,

Order the people from greatest to least in terms of how fast they checked the comments.

,"Person 4, Person 1, Person 3, Person 2","Person 4, Person 1, Person 3, Person 2",,,146150 +PSB5NC,1,Order / Sort,Ordering,"

A company is hiring people to read through all the comments posted on their website to make sure they are appropriate. Four people applied for the job and were given one day to show how quickly they could check comments.

+

 

+
    +
  • Person 1 worked for 210 minutes and checked a total of 50,000 comments.
  • +
  • Person 2 worked for 200 minutes and checked 1,325 comments every 5 minutes.
  • +
  • Person 3 worked for 120 minutes, at a rate represented by 331t,
    where c is the number of comments checked and t is the time in minutes.
  • +
  • Person 4 worked for 150 minutes, at a rate represented by 
  • +
+

 

+

Order the people from greatest to least in terms of total number of comments checked.

","Person 1, Person 2, Person 4, Person 3","Person 1, Person 2, Person 4, Person 3",,,146018 +PSBXNS,2,Fill-in-the-blank(s),Numeric,"

Use your equation to find x.

+

 

+

x =  

",65,65,,,111728 +PSB3DP,1,Fill-in-the-blank(s),Numeric,"

Neon bracelets cost $1 for 4.

+

 

+

What is the cost per bracelet? 

+

 

+

$

+

 

+

",0.25,0.25,,,132758 +PSB6N4,3,Fill-in-the-blank(s),Numeric,"

4000 is 4 times what number?

+

 

+

",1000,1000,,,151647 +PSB6N4,2,Fill-in-the-blank(s),Numeric,"

8 is 32 times what number?

+

 

+

",4-Jan,4-Jan,,,151533 +PRABG42R,1,Fill-in-the-blank(s),Numeric,"

Solve the equation. If you get stuck, try using a diagram.

+

 

+

5x + 14 = 614

+

 

+

x =

",3,3,,,153281 +PRABG4ZF,1,Fill-in-the-blank(s),Numeric,"
+
+
+

Find the sum.

+

 

+
+
+
+

-5.7 + (-4.2) 

+

 

+

",-9.9,-9.9,,,154547 +PRABMSJP,1,Fill-in-the-blank(s),Numeric,"

Solve the equation.

+

 

+

-3d + 7 = 1

+

 

+

d =

",2,2,,,155769 +PRABMT58,1,Fill-in-the-blank(s),Numeric,"

Solve the equation and check your solution.

+

 

+

4w7=6w+31

+

 

+

w=

",-19,-19,,,155730 +PSB7T9,4,Fill-in-the-blank(s),Numeric,"

What is the slope of this line? 

+

 

+

",-1,-1,,,157579 +PSBBVMH,1,Fill-in-the-blank(s),Numeric,"

Find the area of triangle MOQ in square units. 

+

 

+

 

+

+

 

+

 

+

square units

",20,20,,,272768 +PSBBVP2,1,Fill-in-the-blank(s),Numeric,"

Find the area of this shape. 

+

 

+

+

 

+

square units

",15,15,,,273241 +PRABQP5X,1,Fill-in-the-blank(s),Numeric,"

A population of red ants was 640. After a season of heavy rainfall, the ant population decreased by 50%. In the following dry season, the population increased by 5%. What is the ant population after the increase?

+

 

+

red ants

",336,336,,,156692 +PSBYW,2,Fill-in-the-blank(s),Numeric,"

The two triangles displayed are scaled copies of one another.

+

 

+

+

 

+

 

+

What is the value of x?

+

 

+

x=units

",10,10,,,3216 +PRABTGFK,1,Fill-in-the-blank(s),Numeric,"

Evaluate the expression if x is 25, y is -4, and z is -0.2.

+

 

+

2x - z

+

 

+

",1,1,,,158652 +PSB74P,1,Fill-in-the-blank(s),Numeric,"

Each square on a grid represents 1 unit on each side.

+

 

+

+

 

+

Calculate the slope of graph D.

+

 

+

",-4,-4,,,158484 +PSB74P,3,Fill-in-the-blank(s),Numeric,"

Each square on a grid represents 1 unit on each side.

+

 

+

+

 

+

Calculate the slope of graph E. 

+

 

+

",0,0,,,158769 +PSB76J,3,Fill-in-the-blank(s),Numeric,"

How many possible solutions make both inequalities true? 

+

 

+

",6,6,,,159292 +PSB75K,2,Fill-in-the-blank(s),Numeric,"

A plane travels at a constant speed. It takes 6 hours to travel 3,360 miles.

+

 

+

At this rate, how many miles can it travel in 10 hours?  

+

 

+

miles

","5,600","5,600",,,159196 +PRABG44E,1,Fill-in-the-blank(s),Numeric,"

Lin plays a game that involves a standard number cube and a deck of ten cards numbered 1 through 10. If both the cube and card have the same number, Lin gets another turn. Otherwise, play continues with the next player.

+

 

+

What is the probability that Lin gets another turn?

+

 

+

",Jun-60,Jun-60,,,159519 +PRABFGZ7,1,Fill-in-the-blank(s),Numeric,"

Solve the equation.

+

 

+

100d = 13.71

+

 

+

d =

",0.1371,0.1371,,,298615 +PSB9AY,4,Fill-in-the-blank(s),Exact Fraction,"

Calculate the slope of this line.

+

 

+

",-1.285714286,-1.285714286,,,165287 +PRABFGZ4,1,Fill-in-the-blank(s),Numeric,"

Solve the equation.

+

 

+

a - 2.01 = 5.5

+

 

+

a =

",7.51,7.51,,,298057 +PRABFGZ6,1,Fill-in-the-blank(s),Numeric,"

Solve the equation.

+

 

+

10c = 13.71

+

 

+

c =

",1.371,1.371,,,298444 +PRABFGZ5,1,Fill-in-the-blank(s),Numeric,"

Solve the equation.

+

 

+

b + 2.01 = 5.5

+

 

+

b =

",3.49,3.49,,,298258 +PRABHN3P,1,Fill-in-the-blank(s),Numeric,"

Find the value of k so that the line passing through the pair of points has the given slope.

+

 

+

(35) and (k9), slope = 

+

 

+

",11,11,,,165778 +PRABEHK3,1,Fill-in-the-blank(s),Numeric,"

A scoop of ice cream has a 3-inch diameter. How tall should the ice cream cone of the same diameter be in order to contain all of the ice cream inside the cone?

+

 

+

inches

",6,6,,,165245 +PRABHN3Q,1,Fill-in-the-blank(s),Numeric,"

Find the value of k so that the line passing through the pair of points has the given slope.

+

(-1, 4) and (-3, k), slope =

+

 

+

",5,5,,,165896 +PRABHN3N,1,Fill-in-the-blank(s),Numeric,"

Find the value of k so that the line passing through the pair of points has the given slope.

+

 

+

(1, k) and (4, 1), slope = -2

+

 

+

",7,7,,,165645 +PRABHN3M,1,Fill-in-the-blank(s),Numeric,"

Find the value of k so that the line passing through the pair of points has the given slope.

+

 

+

(k, 2) and (11, 14), slope = 2

+

 

+

",5,5,,,165535 +PSB94Q,2,Fill-in-the-blank(s),Numeric,"

What is the value for the median for the data in the dot plot?

+

 

+

",2,2,,,169437 +PSBC8G,2,Fill-in-the-blank(s),Numeric,"

Jada reads 5 pages every 20 minutes. At this rate, how many pages can she read in 1 hour?

+

 

+

Use a table to find the answer.

+

 

+ + + + + + + + + + + + + + + + + + + +
Pages ReadTime in Minutes
520
  
  
+

 

+

Jada read pages.

",15,15,,,15930 +PSBBADX,1,Fill-in-the-blank(s),Numeric,"

Here is a tape diagram that shows how far two students walked.

+

 

+

 

+ + + + + + + + + + +
  Priya's distance (km) + + + + + + + + + +
+ + + + + + + + + + +
22222
+
+ + + + + + + + + +
2222
+
+
  Tyler's distance (km)
+

 

+

 

+

What percentage of Priya’s distance did Tyler walk?  %

",80,80,,,171639 +PSBJNT,1,Fill-in-the-blank(s),Numeric,"

Find (12.34) · (0.7).

+

 

+

",8.638,8.638,,,45068 +PSBJQG,2,Fill-in-the-blank(s),Numeric,"

Now find the quotient.

+

 

+

302.1÷.0.5

+

 

+

",604.2,604.2,,,45439 +PSBBAB5,1,Fill-in-the-blank(s),Numeric,"

At a sandwich shop, any sandwich costs $4.50, plus $0.25 for each extra topping.

+

 

+

How much does a sandwich cost with 3 extra toppings?

+

 

+

$

",5.25,5.25,,,171459 +PSBJSY,2,Fill-in-the-blank(s),Numeric,"

Now find the quotient.

+
 
+

 

+

12.15÷0.02

+

 

+

",607.5,607.5,,,45750 +PSBJUZ,2,Fill-in-the-blank(s),Numeric,"

Now find the quotient.

+
 
+

 

+

1.375÷0.11

+

 

+

",12.5,12.5,,,46049 +PSBBAK8,2,Fill-in-the-blank(s),Numeric,"

For radius and diameter of a circle, what is the constant of proportionality?

+

 

+

","1/2, 2","1/2, 2",,,172418 +PSBBABF,1,Fill-in-the-blank(s),Numeric,"

The bike store marks up the wholesale cost of all of the bikes they sell by 30%.

+

 

+

Andre wants to buy a bike that has a price tag of $125, what was the wholesale cost of this bike? 

+

 

+

$

",96.15,96.15,,,171238 +PRABHG8P,1,Fill-in-the-blank(s),Numeric,"

Parallel lines l and m are cut by two transversals which intersect l in the same point. Two angles are marked in the figure. Find the measure x of the third angle.

+

 

+

x =°

+

 

+

",65,65,,,174309 +PSBBBKT,2,Fill-in-the-blank(s),Numeric,"

Evaluate the expression:

+

 

+

-12 · (-13)

+

 

+

",4,4,,,177679 +PSBBBY4,5,Fill-in-the-blank(s),Numeric,"

What is the value of the other variable?

+

 

+

",4,4,,,180476 +PSBBBY4,3,Fill-in-the-blank(s),Numeric,"

What value of a would work with the given value for b?

+

 

+

",6,6,,,180143 +PSBBCP7,1,Fill-in-the-blank(s),Numeric,"

 

+

Find the value of the expression without a calculator.

+

 

+

(2)(-30) + (-3)(-20) + (-6)(-10) - (2)(3)(10) 

+

 

+

",0,0,,,184690 +PSBBCQT,2,Fill-in-the-blank(s),Numeric,"

What is the slope of this line?

+

 

+

+

",2,2,,,184366 +PSBBCNR,2,Fill-in-the-blank(s),Numeric,"

How many kilowatt-hours did they use?

+

 

+

About kilowatt-hours

+

Round your answer to the nearest whole number. 

",684,684,,,184392 +PSBBCQF,1,Fill-in-the-blank(s),Algebraic Expression,"

Use the distributive property to write an expression that is equivalent to 12 4x.

+

 

+

",4(3+x),4(3+x),,,184709 +PRABG4R9,1,Fill-in-the-blank(s),Exact Match,"

Kiran read for x minutes, and Andre read for 58 more than that. Write an equation that relates the number of minutes Kiran read with y, the number of minutes that Andre read. Use decimals in your equation.

+

 

+

y =

",1.625x,1.625x,,,202480 +PRABET5M,1,Fill-in-the-blank(s),Numeric,"

Evaluate the expression if x is 25, y is -4, and z is -0.2.

+

 

+
+

x + y

+
+

 

+

",-3 3/5,-3 3/5,,,158297 +PSBBC95,1,Fill-in-the-blank(s),Numeric,"

Noah's parents are interested in moving to another part of town. They look up all the prices of the homes for sale and record them in thousands of dollars.

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Neighborhood 1805580120609060805570
Neighborhood 2110120160110100110140150120120
+

 

+

+

 

+

Find the mean of neighborhood 1.

+

 

+

 

+

",75,75,,,187130 +PSBBC95,2,Fill-in-the-blank(s),Numeric,"

Find the MAD (mean absolute deviation) of neighborhood 1.

+

 

+

 

+

",15,15,,,187306 +PSBBC95,4,Fill-in-the-blank(s),Numeric,"

Find the MAD (mean absolute deviation) of neighborhood 2.

+

 

+

 

+

",15.6,15.6,,,187602 +PSBBC95,3,Fill-in-the-blank(s),Numeric,"

Find the mean of neighborhood 2.

+

 

+

",124,124,,,187451 +PSBBDGB,2,Fill-in-the-blank(s),Algebraic Expression,"

Write an expression equivalent to  6 - 2x + 5 + 4x that only has two terms. 

+

 

+

",2x+11,2x+11,,,188812 +PSBD56Z,1,Fill-in-the-blank(s),Numeric,"

Andre set up a lemonade stand last weekend. It cost him $0.15 to make each cup of lemonade, and he sold each cup for $0.35.

+

 

+

If Andre collects $9.80, how many cups did he sell? 

+

 

+

cups

",28,28,,,677527 +PSBBEDV,3,Fill-in-the-blank(s),Numeric,"

How many solutions are there?

+

 

+

",1,1,,,194106 +PRABTTEG,1,Fill-in-the-blank(s),Numeric,"

Solve the equation below.

+

 

+

13s=7

+

 

+

s =

",21,21,,,194802 +PRABTTEK,1,Fill-in-the-blank(s),Numeric,"

Solve the equation below.

+

 

+

6v = 9

+

 

+

v =

",-1.5,-1.5,,,195078 +PRABKC63,1,Fill-in-the-blank(s),Numeric,"

What is the value of 34?

+

 

+

",81,81,,,198429 +PSBBFAS,1,Fill-in-the-blank(s),Numeric,"

Find a four-digit number using only the digits 0, 1, 2, or 3 where:

+
    +
  • the first digit tells you how many zeros are in the number,

  • +
  • the second digit tells you how many ones are in the number,

  • +
  • the third digit tells you how many twos are in the number, and

  • +
  • the fourth digit tells you how many threes are in the number.
  • +
+

The number 2,100 is close, but doesn’t quite work. The first digit is 2, and there are 2 zeros. The second digit is 1, and there is 1 one. The fourth digit is 0, and there are no threes. But the third digit, which is supposed to count the number of 2’s, is zero.

+

 

+

","2020, 1210","2020, 1210",,,198955 +PRABKC64,1,Fill-in-the-blank(s),Numeric,"

How many times bigger is 315 compared to 312

+

 

+

times bigger

",27,27,,,198552 +PRABEUZ2,1,Fill-in-the-blank(s),Numeric,"

A simulation is done to represent kicking 5 field goals in a single game with a 72% probability of making each one. A 1 represents making the kick and a 0 represents missing the kick.

+

 

+ + + + + + + + + + + + + + + + + + + + + + + + + + + +
trial result
110101
211010
300011
411111
510011
+

 

+

 

+

Based on these results, estimate the probability that 3 or more kicks are made.

+

 

+

",5-Apr,5-Apr,,,198767 +PSBBFAS,3,Fill-in-the-blank(s),Numeric,"

How many solutions are there to this problem?

+

 

+

",2,2,,,199191 +PRABG5ZJ,1,Fill-in-the-blank(s),Numeric,"

Answer the following question.  If you get stuck, consider using pattern blocks.

+

 

+

How many s are in 2?

+

 

+

",3,3,,,201709 +PRABG5ZK,1,Fill-in-the-blank(s),Numeric,"

Answer the following question.  If you get stuck, consider using pattern blocks.

+

 

+

How many s are in ?

+

 

+

",9,9,,,201829 +PRABG5ZH,1,Fill-in-the-blank(s),Numeric,"

Answer the following question.  If you get stuck, consider using pattern blocks.

+

 

+

How many s are in 4?

+

 

+

",8,8,,,201571 +PSBBGGE,2,Fill-in-the-blank(s),Numeric,"

If an employee sells a family pass for $135, what is the amount of the commission they get to keep?

+

 

+

$

",21.6,21.6,,,205959 +PSBBGN8,3,Fill-in-the-blank(s),Numeric,"

How many dogs weigh at least 120 and less than 160 pounds?

+

 

+

dogs

",8,8,,,206824 +PSBBG4V,2,Fill-in-the-blank(s),Numeric,"

+

What is the distance between P and R?   units

",6,6,,,208077 +PSBES8,2,Fill-in-the-blank(s),Numeric,"

What is the area of the parallelogram?

+

 

+

square units

+

 

+

",45,45,,,24293 +PSB6EK,1,Fill-in-the-blank(s),Numeric,"

Find the area of the shaded region.

+

 

+

+

 

+

cm2

",96,96,,,150161 +PSB6CP,1,Fill-in-the-blank(s),Numeric,"

Find the area of the shaded region. 

+

 

+

+

 

+

cm2

",34,34,,,149829 +PSBBHYP,1,Order / Sort,Ordering,

Use the data from Station 4 to put the units of weight and mass in order from smallest to largest. 

,"Gram, Kilogram, Pound, Ounce","Gram, Kilogram, Pound, Ounce",,,213954 +PRABE3GY,1,Fill-in-the-blank(s),Numeric,"

The Dockland Building in Hamburg, Germany is shaped like a parallelogram.

+

 

+ + + + + + + +
If the length of the building is 86 meters and its height is 55 meters, what is the area of this face of the building?
+

 

+

square meters

","4,730","4,730",,,503982 +PSBCP64,1,Fill-in-the-blank(s),Numeric,"

For the triangle, a base and its corresponding height are labeled.

+

Find the area of the triangle.

+

 

+

+

 

+

square units

",12,12,,,417861 +PSBBPYN,1,Fill-in-the-blank(s),Numeric,"

Find the area of this trapezoid.

+

 

+

+

 

+

square units

",18,18,,,242072 +PSBBPYN,1,Fill-in-the-blank(s),Numeric,"

Find the area of this trapezoid.

+

 

+

+

 

+

square units

",18,18,,,242072 +PRABTTEJ,1,Fill-in-the-blank(s),Numeric,"

Solve the equation below.

+

 

+

79 + u = 65

+

 

+

u =

",-14,-14,,,194986 +PSBBH5N,2,Fill-in-the-blank(s),Numeric,"

A sea bird is 28 meters above the surface of the ocean. What is its elevation?

+


meters

",28,28,,,214460 +PRABFFGN,1,Fill-in-the-blank(s),Numeric,"

Use the partial quotients method to find 1,032 ÷ 43.

+

 

+

",24,24,,,215013 +PSBBJB3,1,Fill-in-the-blank(s),Numeric,"

A chemical engineer is trying to increase the amount of the useful product in a reaction. She performs the reaction with her new equipment 10 times and gets the following amounts of the useful product:

+ + + + + + + + + + + + + + + +
47.148.248.347.548.548.147.248.248.448.3
+

 

+

What proportion of the reactions were above the 48 grams threshold?

+

 

+

",0.7,0.7,,,215871 +PRABMTZU,1,Fill-in-the-blank(s),Numeric,"

Evaluate:

+

 

+

+

 

+

",1,1,,,221966 +PRABMTZV,1,Fill-in-the-blank(s),Numeric,"

Evaluate:

+

 

+

102 + 101 + 100

+

 

+

",111,111,,,222136 +PRABEH5H,1,Fill-in-the-blank(s),Numeric,"

Evaluate:

+

 

+

100

+

 

+

",1,1,,,221748 +PRABTTCZ,1,Fill-in-the-blank(s),Numeric,"

Find the value of the expression.

+
 
+

+
 
+

 

+

",-25,-25,,,223225 +PRABTTC3,1,Fill-in-the-blank(s),Numeric,"

Find the value of the expression.

+
 
+

+

 

+

",-1.5,-1.5,,,223453 +PRABTTCY,1,Fill-in-the-blank(s),Numeric,"

Find the value of the expression.

+
 
+

+

 

+

",-11,-11,,,223087 +PRABTTC2,1,Fill-in-the-blank(s),Numeric,"

Find the value of the expression.

+
 
+

+
 
+

 

+

",43,43,,,223345 +PSBBK3R,1,Fill-in-the-blank(s),Numeric,"

What is the smallest number that has a remainder of 1, 2, and 3 when divided by 2, 3, and 4, respectively?

+

 

+

",11,11,,,226035 +PSBBKZ8,1,Fill-in-the-blank(s),Numeric,"

A toaster has 4 slots for bread. Once the toaster is warmed up, it takes 35 seconds to make 4 slices of toast, 70 seconds to make 8 slices, and 105 seconds to make 10 slices.

+

 

+

How long do you think it will take to make 20 slices?

+

 

+

seconds

",175,175,,,225766 +PSBBK68,1,Fill-in-the-blank(s),Numeric,"

A landscape architect is designing a pool that has this top view:

+

 

+

+

 

+

How much water will be needed to fill this pool 4 feet deep?

+

 

+

feet3

",486,486,,,226249 +PSBBMGT,3,Fill-in-the-blank(s),Numeric,"

Last Sunday 1,575 people visited the amusement park. 56% of the visitors were adults, 16% were teenagers, and 28% were children ages 12 and under.

+

 

+

Find the number of children that visited the park.

+

 

+

children

",441,441,,,228454 +PSBBMT8,1,Fill-in-the-blank(s),Numeric,"

In a basketball game, Elena scores twice as many points as Tyler. Tyler scores four points fewer than Noah, and Noah scores three times as many points as Mai. If Mai scores 5 points, how many points did Elena score? 

+

 

+

points

",22,22,,,230038 +PSBBM4Q,2,Fill-in-the-blank(s),Numeric,"

What is 4.4% of 625?

+

 

+

",27.5,27.5,,,231535 +PSBBM4Q,1,Fill-in-the-blank(s),Numeric,"

Find 44% of 625 using the facts that 40% of 625 is 250 and 4% of 625 is 25.

+

 

+

",275,275,,,231330 +PSBBM4Q,3,Fill-in-the-blank(s),Numeric,"

What is 0.44% of 625?

+

 

+

",2.75,2.75,,,231744 +PSBBMXK,3,Fill-in-the-blank(s),Numeric,"

Use the sample to estimate the measure of center that you chose for all the reviews.

+

 

+

",90,90,,,230731 +PSBBM3M,1,Fill-in-the-blank(s),Numeric,"

What is the last digit of 31000?

+
 
+

 

+

",1,1,,,231607 +PRABECCS,1,Fill-in-the-blank(s),Numeric,"

Clare asks Andre to play the following number puzzle:

+
+
+
+
+
+
+
    +
  • +

    Pick a number

    +
  • +
  • +

    Add 2

    +
  • +
  • +

    Multiply by 3

    +
  • +
  • +

    Subtract 7

    +
  • +
  • +

    Add your original number

    +
  • +
+

Andre’s final result is 27. Which number did he start with?

+
+
+
+
+
+
+

 

+

",7,7,,,231522 +PRABD526,1,Fill-in-the-blank(s),Numeric,"

The two triangles shown are similar.

+

 

+

+

 

+

Find the value of .

+

 

+

 

+

 

+

Write your answer as a fraction.

+

 

+

","0.83, 0.833, 5/6","0.83, 0.833, 5/6",,,232166 +PRABMTHB,1,Fill-in-the-blank(s),Numeric,"

For the pair of points, find the slope of the line that passes through both points.

+

If you get stuck, try plotting the points on graph paper and drawing the line through them with a ruler.

+

 

+

(1,1) and (5,7)

+

 

+

",2-Mar,2-Mar,,,236767 +PSBBNC8,2,Fill-in-the-blank(s),Algebraic Expression,"

A cone has a volume V, radius r, and a height of 12 cm.

+

 

+

A cone has the same height and 3 times the radius of the original cone. Write an expression for its volume.

+

 

+

",9V,9V,,,233520 +PRABMTHC,1,Fill-in-the-blank(s),Numeric,"

For the pair of points, find the slope of the line that passes through both points.

+

If you get stuck, try plotting the points on graph paper and drawing the line through them with a ruler.

+

 

+

(2,5) and (-1,2)

+

 

+

",1,1,,,236954 +PRABD5BN,1,Fill-in-the-blank(s),Numeric,"

For the pair of points, find the slope of the line that passes through both points.

+

If you get stuck, try plotting the points on graph paper and drawing the line through them with a ruler.

+

 

+

(1,1) and (7,5)

+

 

+

",3-Feb,3-Feb,,,236549 +PSBBN4D,1,Fill-in-the-blank(s),Numeric,"

Diego has 90 songs on his playlist. How many songs are there for the given genre?

+

 

+

40% rock

+

 

+

songs

",36,36,,,237164 +PRABMTHD,1,Fill-in-the-blank(s),Numeric,"

For the pair of points, find the slope of the line that passes through both points.

+

If you get stuck, try plotting the points on graph paper and drawing the line through them with a ruler.

+

 

+

(2,5) and (-7,-4)

+

 

+

",1,1,,,237129 +PRABTSUT,1,Fill-in-the-blank(s),Numeric,"

Find the product. 

+

 

+

25 · -34 =

",-0.3,-0.3,,,279032 +PRABG4SB,1,Fill-in-the-blank(s),Numeric,"

A company claims that their new bottle holds 25% more laundry soap. If their original container held 53 fluid ounces of soap, how much does the new container hold?  

+

 

+

 

+

fluid ounces

",66.25,66.25,,,238173 +PSBBPBT,1,Fill-in-the-blank(s),Numeric,"

What is the least common multiple of 6 and 9?

+

 

+

",18,18,,,238849 +PSBBRMP,1,Fill-in-the-blank(s),Numeric,"

The other day, you wrote the sample space for spinning each of these spinners once.

+

+

 

+
+
+
+
+

What is the probability of getting:

+

 

+

Green and 3?

+
+
+
+
+

 

+

",20-Jan,20-Jan,,,250608 +PSBBRMP,3,Fill-in-the-blank(s),Numeric,"

What is the probability of getting:

+

 

+

Any color other than red and any number other than 2?

+

 

+

",20-Dec,20-Dec,,,250867 +PSBBRMP,2,Fill-in-the-blank(s),Numeric,"

What is the probability of getting:

+

 

+

Blue and any odd number?

+

 

+

",20-Mar,20-Mar,,,250727 +PSBBRT6,2,Fill-in-the-blank(s),Numeric,"

Find the exact value of a+b+c by reasoning about the diagram.

+

 

+

°

",90,90,,,252146 +PSBBRWG,1,Fill-in-the-blank(s),Numeric,"

The mean of four numbers is 7. Three of the numbers are 5, 7, and 7. What is the fourth number? 

+

 

+

",9,9,,,252396 +PSBBSCK,4,Fill-in-the-blank(s),Numeric,"

Evaluate the expression.

+

 

+

+

 

+

","6.0, 6, 6.00","6.0, 6, 6.00",,,254589 +PSB6Q9,1,Fill-in-the-blank(s),Exact Fraction,"

Here is a number line:

+
+

Write the number at A as a fraction.

+

 

+

A= 

",4-Jan,4-Jan,,,151911 +PSBBXEP,1,Fill-in-the-blank(s),Numeric,"

A car travels at a constant speed, as shown on the double number line.

+

 

+

 

+

+

 

+

 

+

How far does the car travel in 14 hours?

+

 

+

kilometers

",980,980,,,282992 +PSBBXG7,2,Fill-in-the-blank(s),Numeric,"

At a school recess, there needs to be a ratio of 2 adults for every 24 children on the playground. The double number line represents the number of adults and children on the playground at recess.

+

 

+

+

 

+

 

+

How many adults are needed if there are 72 children?  

+

 

+

adults

",6,6,,,283575 +PSBBS9U,1,Fill-in-the-blank(s),Exact Fraction,"

Here is a number line:

+

 

+

+

 

+

Write the number at as a fraction.

+

 

+

A=

","2/6, 1/3","2/6, 1/3",,,259422 +PSBBFFH,1,Fill-in-the-blank(s),Numeric,"

A recipe for 1 batch of spice mix says, “Combine 3 teaspoons of mustard seeds, 5 teaspoons of chili powder, and 1 teaspoon of salt.” How many batches are represented by the diagram? 

+

 

+

batches

+

 

+

",3,3,,,199800 +PSBBS8B,1,Fill-in-the-blank(s),Numeric,"

42 is 6 times what number?

+

 

+

",7,7,,,258849 +PSBRWT,1,Fill-in-the-blank(s),Numeric,"

Find the area of the triangle. If you get stuck, consider drawing a rectangle around the triangle.

+

 

+

+

 

+

square units

",9.5,9.5,,,77648 +PSBBS8B,3,Fill-in-the-blank(s),Numeric,"

700 is 7 times what number?

+

 

+

",100,100,,,259128 +PSBBS8M,2,Fill-in-the-blank(s),Numeric,"

How many different triangles are there?

+

 

+

different triangles

",3,3,,,259177 +PSBBTKT,1,Fill-in-the-blank(s),Numeric,"

What is the greatest common factor of 24 and 64?

+

 

+

",8,8,,,261290 +PSBBS8B,2,Fill-in-the-blank(s),Numeric,"

4 is 28 times what number?

+

 

+

",7-Jan,7-Jan,,,258984 +PSBBTGY,2,Fill-in-the-blank(s),Numeric,"

What is the furthest their phone could be from them?

+

 

+

feet

",70,70,,,260726 +PSBBTRH,2,Fill-in-the-blank(s),Numeric,"

Mai has $36 to spend on movie tickets. Each movie ticket costs $4.50. How many tickets can she buy?

+

 

+

Find the answer.  Draw a diagram, if needed.

+

 

+

movie tickets

",8,8,,,262087 +PSBBTW4,2,Fill-in-the-blank(s),Numeric,"

Find the answer.

+

 

+

 How many groups of 2 are in 7?

+

 

+

",3.5,3.5,,,263156 +PRABE93H,1,Fill-in-the-blank(s),Numeric,"

A cargo ship traveled 150 nautical miles in 6 hours at a constant speed. How far did the cargo ship travel in one hour?

+

 

+

+

 

+

 

+

nautical miles

",25,25,,,67685 +PSBBTX3,3,Fill-in-the-blank(s),Numeric,"

Decide what power of 10 to put on the label for the rightmost tick mark of this number line so that all three countries’ populations can be distinguished.

+

 

+

 

+

 

+

",8,8,,,263239 +PSBBTVE,2,Fill-in-the-blank(s),Numeric,"

Find the answer.

+

 

+

How many groups of s are in 10?

+

 

+

",4,4,,,262837 +PSBBTY8,3,Fill-in-the-blank(s),Numeric,"

Find the answer.

+

How many s are in 1?

+

 

+

",3-Apr,3-Apr,,,263570 +PSBBT24,3,Fill-in-the-blank(s),Numeric,"

Find the answer.

+

How many s are in 3?

+

 

+

",2-Sep,2-Sep,,,263960 +PSBBT4X,3,Fill-in-the-blank(s),Numeric,"

Find the answer. 

+

How many s are in 5?

+

 

+

",3-Oct,3-Oct,,,264344 +PSBBN4D,3,Fill-in-the-blank(s),Numeric,"

Diego has 90 songs on his playlist. How many songs are there for the given genre?

+

 

+

30% hip-hop

+

 

+

songs

",27,27,,,237456 +PSBBUDT,7,Fill-in-the-blank(s),Numeric,"

Let's look at why the values tend to not change much after doing the simulation many times.

+

 

+

After doing the simulation 4 times, a group finds that Diego had to wait 3 times. What is an estimate for the probability Diego has to wait based on these results?

+

 

+

",4-Mar,4-Mar,,,265593 +PSBBT5X,3,Fill-in-the-blank(s),Numeric,"

Find the answer to your question:  If you get stuck, draw a diagram.

+

 

+

",3-Apr,3-Apr,,,264456 +PSBNJ6,1,Fill-in-the-blank(s),Numeric,"

In this cube, each small square has side length 1 unit. 

+

 

+

+

 

+

 

+

What is the surface area of this cube?

+

 

+

square units

",54,54,,,60186 +PSBCQR6,3,Fill-in-the-blank(s),Exact Match,"

Divide. Express your answer as a decimal.

+

 

+

50 ÷ 4

+

 

+

","12.5, 12.50","12.5, 12.50",,,421448 +PRABFAHA,1,Fill-in-the-blank(s),Numeric,"

Kiran reads 5 pages in 20 minutes. He spends the same amount of time per page. How long will it take him to read 11 pages? If you get stuck, consider using the table.

+

 

+

minutes

+

 

+ + + + + + + + + + + + + + + + + + + +
Time in MinutesNumber of Pages
205
 1
 11
",44,44,,,147031 +PSBBUDT,11,Fill-in-the-blank(s),Numeric,"

After doing the simulation 20 times, this group finds that Diego had to wait 15 times. What is an estimate for the probability Diego has to wait based on these results?

+

 

+

",15/20,15/20,,,265967 +PSBBYA9,1,Fill-in-the-blank(s),Numeric,"

A cashier worked an 8-hour day, and earned $58.00. The double number line shows the amount she earned for working different numbers of hours.

+

 

+

+

 

+

How much does the cashier earn per hour? 

+

 

+

$ 

",7.25,7.25,,,287601 +PSBBVCZ,2,Fill-in-the-blank(s),Numeric,"

Elena has some bottles of water that each holds 17 fluid ounces.

+

 

+

How much water is in 51 bottles?  

+

 

+

ounces

",867,867,,,271051 +PSBBVBU,2,Fill-in-the-blank(s),Numeric,"

80% of x is equal to 100. 

+

 

+

Use your equation to find the value of x.

+

 

+

x =

",125,125,,,271394 +PSBBVCY,2,Fill-in-the-blank(s),Numeric,"

The usual price of a sweatshirt is $18, what is its sale price?

+

 

+

$

",15.3,15.3,,,271538 +PSBBVFW,3,Fill-in-the-blank(s),Numeric,"

The distance from the tip of a slice of pizza to the crust is 7 in.

+

 

+

Estimate the circumference of the circle: 

+

 

+

inches

+

Use  3.14 for π.  

+

Round your answer to the nearest whole number.

",44,44,,,272056 +PSBBVHN,1,Fill-in-the-blank(s),Numeric,"

Elena is 56 inches tall. 

+

 

+

What is her height in centimeters? (Note: 100 inches = 254 centimeters)

+

 

+

centimeters

+

Round your answer to two decimal places.

",142.24,142.24,,,272220 +PSBBVT3,1,Fill-in-the-blank(s),Numeric,"

Chicken costs $3.20 per pound, and beef costs $4.59 per pound.  What is the exact cost of 3 pounds of chicken?

+

 

+

$

",9.6,9.6,,,273482 +PSBCRGJ,2,Fill-in-the-blank(s),Numeric,"

Here is an expression: 3 · 2t

+

 

+

Find the value of the expression when t is 4.

+

 

+

",48,48,,,425926 +PSBBWD2,1,Fill-in-the-blank(s),Numeric,"

Find the length of a side of a square if its area is 81 square inches.

+

 

+

inches

",9,9,,,276705 +PRABFBPA,1,Fill-in-the-blank(s),Numeric,"

Priya’s family exchanged 250 dollars for 4,250 pesos. Priya bought a sweater for 510 pesos. How many dollars did the sweater cost?

+

 

+

$

+

 

+ + + + + + + + + + + + + + + + + + + + + + + + + + + +
PesosDollars
4,250250
 25
 1
 3
510 
",30,30,,,42715 +PRABEU2C,1,Fill-in-the-blank(s),Numeric,"

A vending machine has 5 colors (white, red, green, blue, and yellow) of gumballs and an equal chance of dispensing each. A second machine has 4 different animal-shaped rubber bands (lion, elephant, horse, and alligator) and an equal chance of dispensing each. If you buy one item from each machine, what is the probability of getting a yellow gumball and a lion band?

+

 

+

",20-Jan,20-Jan,,,279365 +PSBC64M,2,Fill-in-the-blank(s),Numeric,"

What is the surface area of the polyhedron?

+

 

+

 cm2

+

 

+

",72,72,,,502515 +PRABEU2D,1,Fill-in-the-blank(s),Numeric,"

The numbers 1 through 10 are put in one bag, and the numbers 5 through 14 are put in another bag. When you pick one number from each bag, what is the probability you get the same number?

+

 

+

",6/100,6/100,,,279742 +PSBBMNU,2,Fill-in-the-blank(s),Numeric,"

On a field trip, there are 3 chaperones for every 20 students. There are 92 people on the trip.

+

 

+

How many children are there?  If you get stuck, consider using a tape diagram.

+

 

+

children

",80,80,,,229328 +PSBBYAG,2,Fill-in-the-blank(s),Numeric,"

What fraction of the teacher’s height is the student’s height?

+

 

+

",17-Dec,17-Dec,,,288005 +PSBBYDW,1,Fill-in-the-blank(s),Numeric,"

Find the quotient.

+

 

+

+

 

+

",2.5,2.5,,,288530 +PSBBYAG,1,Fill-in-the-blank(s),Numeric,"

A second-grade student is 4 feet tall. Her teacher is feet tall.

+

 

+

How many times as tall as the student is the teacher?

+

 

+

",17/12,17/12,,,287888 +PSBBYB9,1,Fill-in-the-blank(s),Numeric,"

Find the quotient.

+

 

+

+
 
+

 

+

",15,15,,,288230 +PSBBYD8,3,Fill-in-the-blank(s),Numeric,"

Find the mean. 

+

 

+

",2.4,2.4,,,288503 +PRABG6KV,1,Fill-in-the-blank(s),Numeric,"

Find the product mentally.

+

 

+

19 ⋅ 14

+

 

+

",266,266,,,289975 +PSBBYFM,1,Fill-in-the-blank(s),Numeric,"

Here is the data set on numbers of siblings from an earlier activity.

+ + + + + + + + + + + + + + + +
10217020110
+

 

+

Sort the data from least to greatest, and then find the median.

+
 
+

 

+

",1,1,,,288926 +PSBBZNB,2,Fill-in-the-blank(s),Numeric,"

 is equal to 1,024.

+

 

+

Evaluate the expression below.

+

 

+

44

+

 

+

 

+

",256,256,,,295883 +PSBBZNB,1,Fill-in-the-blank(s),Numeric,"

 is equal to 1,024.

+

 

+

Evaluate the expression below.

+

 

+

 

+
 
+

 

+

",4096,4096,,,295642 +PSBBZNB,3,Fill-in-the-blank(s),Numeric,"

 is equal to 1,024.

+

 

+

Evaluate the expression below.

+

 

+

4342

+

 

+

 

+

",1024,1024,,,296064 +PSBBZZP,2,Fill-in-the-blank(s),Numeric,"

If there are 2,024 dedicated readers of The Adventures of Super Sam, estimate the number of readers who want the new hero to fly.

+

 

+

",810,810,,,298063 +PSBBZQT,2,Fill-in-the-blank(s),Numeric,"

A computer program found that the line c=2t-89 is a good fit for the data. Use this equation to predict how many cups of lemonade Lin might sell on a day when the high temperature is 74 degrees.

+

 

+

cups of lemonade

",59,59,,,296489 +PSBBZZP,1,Fill-in-the-blank(s),Numeric,"

Here are the results of a survey of 20 people who read The Adventures of Super Sam regarding what special ability they think the new hero should have.

+

 

+ + + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
responsewhat new ability?
1fly
2freeze
3freeze
4fly
5fly
6freeze
7fly
8super strength
9freeze
10fly
+

 

+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
responsewhat new ability?
11freeze
12freeze
13fly
14invisibility
15freeze
16fly
17freeze
18fly
19super strength
20freeze
+

 

+
+

What proportion of this sample want the new hero to have the ability to fly?

+

 

+

",20-Aug,20-Aug,,,297976 +PSBC5ZP,2,Fill-in-the-blank(s),Numeric,"

Then solve the problem.

+

 

+

48 is what percent of 80?  

+

 

+

%

+

 

+

",28,28,,,496936 +PSBB2KM,2,Fill-in-the-blank(s),Exact Fraction,"

Triangle DEF is a scaled copy of triangle ABC with what scale factor?

+

 

+

",3-Feb,3-Feb,,,301410 +PRABMSJZ,1,Fill-in-the-blank(s),Numeric,"

Solve the equation.

+

 

+

 57(e-9)=25

+

 

+

e =

",44,44,,,369146 +PSBCH75,2,Fill-in-the-blank(s),Numeric,"

Calculate its area. 

+

 

+

square centimeters

+

 

+

",88,88,,,390139 +PSBB2XS,3,Fill-in-the-blank(s),Numeric,"

How many customers would you seat at table C?

+

 

+

Do not include units (customers) in your answer

+

 

+

","4, 5","4, 5",,,303219 +PSBB2XS,1,Fill-in-the-blank(s),Numeric,"

Restaurant owners say it is good for each customer to have about 300 in2 of space at their table. How many customers would you seat at each table?

+

 

+

+

 

+

How many customers would you seat at table A?

+

 

+

Do not include units (customers) in your answer

+

 

+

 

+

",3,3,,,303079 +PSBB2R3,3,Fill-in-the-blank(s),Numeric,"

If the wire picture frame were stretched out to make one complete circle, what would its radius be?

+

 

+

inches

",10,10,,,302327 +PRABFG26,1,Fill-in-the-blank(s),Numeric,"

What is the volume of a cube with edge lengths of 23 units?

+

 

+

cubic units

+

Express your answer in fraction form.

",27-Aug,27-Aug,,,87339 +PSBB2XS,2,Fill-in-the-blank(s),Numeric,"

How many customers would you seat at table B?

+

 

+

Do not include units (customers) in your answer

+

 

+

","3, 4","3, 4",,,303155 +PSBB3M6,2,Fill-in-the-blank(s),Numeric,"

Use the fact that is a solution to the equation to find a decimal approximation of whose square is between 2.9 and 3.1.

+

 

+

",1.73,1.73,,,307502 +PSBBCG3,2,Fill-in-the-blank(s),Numeric,"

What fraction of 212 is 45?

+

 

+

Find the answer.

+

 

+

",25-Aug,25-Aug,,,183482 +PSBBJWZ,2,Fill-in-the-blank(s),Numeric,"

3 tickets to the museum cost $12.75. At this rate, what is the cost of 5 tickets?

+

 

+

$

",21.25,21.25,,,219244 +PSBC5,2,Fill-in-the-blank(s),Numeric,"

A builder was building a fence. In the morning, he worked for 25 of an hour. In the afternoon, he worked for 910 of an hour. How many times as long as in the morning did he work in the afternoon? 

+

 

+

Answer the question. 

+

 

+

times as long

",2 1/4,2 1/4,,,311 +PSBBV76,1,Fill-in-the-blank(s),Numeric,"

A school club sold 300 shirts. 31% were sold to fifth graders, 52% were sold to sixth graders, and the rest were sold to teachers. How many shirts were sold to fifth graders?

+

 

+

shirts

+

 

",93,93,,,275754 +PRABFEUM,1,Fill-in-the-blank(s),Numeric,"

At a constant speed, a car travels 75 miles in 60 minutes.

+

 

+

How far does the car travel in 18 minutes? If you get stuck, consider using the table.

+

 

+

miles

+

 

+ + + + + + + + + + + + + + + + + + + +
MinutesDistance in Miles
6075
6 
18 
",22.5,22.5,,,279063 +PSBB4KW,1,Fill-in-the-blank(s),Numeric,"

Elena notices a beaker in science class says it has a diameter of 9 cm and measures its circumference to be 28.3 cm.

+

 

+

What value do you get for  using these values and the equation for circumference, ?

+

 

+

",3.14,3.14,,,311896 +PSBB4KW,2,Fill-in-the-blank(s),Numeric,"

Diego learned that one of the space shuttle fuel tanks had a diameter of 840 cm and a circumference of 2,639 cm.

+

 

+

What value do you get for  using these values and the equation for circumference, ?

+

 

+

",3.1416,3.1416,,,312048 +PRABFFHT,1,Fill-in-the-blank(s),Numeric,"

Find the quotient.

+

12924   

",77,77,,,204768 +PSBB4YA,4,Fill-in-the-blank(s),Numeric,"

How much money will be left after buying the purchase? 

+

 

+

$

",0.14,0.14,,,314324 +PSBB5GF,3,Fill-in-the-blank(s),Numeric,"

20% of 5,000 is 1,000 and 21% of 5,000 is 1,050. Find each percentage of 5,000 and be prepared to explain your reasoning. If you get stuck, consider using the double number line diagram.

+

 

+

20.1% of 5,000

+

+

 

+

",1005,1005,,,316941 +PRABFFHS,1,Fill-in-the-blank(s),Numeric,"

Find the quotient.

+

5465   

",93,93,,,204595 +PSBB5GF,2,Fill-in-the-blank(s),Numeric,"

20% of 5,000 is 1,000 and 21% of 5,000 is 1,050. Find each percentage of 5,000 and be prepared to explain your reasoning. If you get stuck, consider using the double number line diagram.

+

 

+

0.1% of 5,000

+

+

 

+

",5,5,,,316809 +PSBB5JB,1,Fill-in-the-blank(s),Numeric,"

15% of 80 is 12 and 16% of 80 is 12.8. Find the percentage of 80 and be prepared to explain your reasoning.

+

 

+

15.1% of 80

+

 

+

",12.08,12.08,,,317307 +PSBB5DC,2,Fill-in-the-blank(s),Numeric,"

Find the area of the rectangle FROG. 

+

 

+

square units

",32,32,,,316462 +PSBB5GF,1,Fill-in-the-blank(s),Numeric,"

20% of 5,000 is 1,000 and 21% of 5,000 is 1,050. Find each percentage of 5,000 and be prepared to explain your reasoning. If you get stuck, consider using the double number line diagram.

+

 

+

1% of 5,000

+

 

+

 

+

 

+

",50,50,,,316680 +PRABFGZA,1,Fill-in-the-blank(s),Numeric,"

Complete the calculation so that the problem shows the correct difference.

+

 

+ + + + + + +
    1-      0.863
+

 

+

1 - = 0.863

",0.137,0.137,,,94419 +PSBB5GF,4,Fill-in-the-blank(s),Numeric,"

20% of 5,000 is 1,000 and 21% of 5,000 is 1,050. Find each percentage of 5,000 and be prepared to explain your reasoning. If you get stuck, consider using the double number line diagram.

+

 

+

20.4% of 5,000

+

+

 

+

",1020,1020,,,317074 +PSBB5JB,2,Fill-in-the-blank(s),Numeric,"

15% of 80 is 12 and 16% of 80 is 12.8. Find the percentage of 80 and be prepared to explain your reasoning.

+

 

+

15.7% of 80

+

 

+

",12.56,12.56,,,317429 +PRABQMA2,1,Fill-in-the-blank(s),Numeric,"

Divide.

+

 

+

34÷15

+

 

+

",3.75,3.75,,,319914 +PRABQMA8,1,Fill-in-the-blank(s),Numeric,"

Divide.

+

 

+

92÷34

+

 

+

",6,6,,,320033 +PRABQMBA,1,Fill-in-the-blank(s),Numeric,"

Divide.

+

 

+

523÷32

+

 

+

",34/9,34/9,,,320253 +PSBZKT,1,Fill-in-the-blank(s),Numeric,"

The area of a rectangle is 14 square units. It has side lengths x and y.  Given the value for x, find y.

+

 

+

x = 213

+

 

+

 

+

y =

",6,6,,,122331 +PSBB6UK,3,Fill-in-the-blank(s),Exact Match,"

Encuentra las coordenadas de punto C.

+

 

+

 

+

 

+

Escribe tu respuesta en el siguiente formato:

+

(x,y) sin espacios.

+

 

+

","(4,1)","(4,1)",,,324709 +PSBB6UK,2,Fill-in-the-blank(s),Exact Match,"

Encuentra las coordenadas de punto B.

+

 

+

 

+

 

+

Escribe tu respuesta en el siguiente formato:

+

(x,y) sin espacios.

+

 

+

","(5,3)","(5,3)",,,324631 +PSBB6UK,1,Fill-in-the-blank(s),Exact Match,"

Encuentra las coordenadas de cada punto.

+

+

Encuentra las coordenadas de punto A.

+

 

+

 

+

 

+

Escribe tu respuesta en el siguiente formato:

+

(x,y) sin espacios.

+

 

+

","(3,5)","(3,5)",,,324554 +PSBB6UK,5,Fill-in-the-blank(s),Exact Match,"

Encuentra las coordenadas de punto E.

+

 

+

 

+

 

+

Escribe tu respuesta en el siguiente formato:

+

(x,y) sin espacios.

+

 

+

","(3.5,0), (3 1/2,0), (7/2,0)","(3.5,0), (3 1/2,0), (7/2,0)",,,324900 +PSBB6UK,4,Fill-in-the-blank(s),Exact Match,"

Encuentra las coordenadas de punto D.

+

 

+

 

+

 

+

Escribe tu respuesta en el siguiente formato:

+

(x,y) sin espacios.

+

 

+

","(1,0)","(1,0)",,,324806 +PSBB6V4,1,Fill-in-the-blank(s),Numeric,"

Noah's oven thermometer gives a reading that is 2% greater than the actual temperature.

+

 

+

If the actual temperature is 325ºF, what will the thermometer reading be?

+

 

+

degrees

+

Round your answer to the nearest tenths place.

",331.5,331.5,,,324443 +PSBB694,2,Fill-in-the-blank(s),Numeric,"

Find the 10th term in this sequence.

+

 

+

",89/55,89/55,,,327384 +PRABG4SZ,1,Fill-in-the-blank(s),Numeric,"

With a coupon, you can get a pair of shoes that normally costs $84 for only $72. What percentage was the discount?  

+

 

+

%

+

Round your answer to the hundredth place.

",14.29,14.29,,,289043 +PRABH67G,1,Fill-in-the-blank(s),Numeric,"

The pressure on a bicycle tire is 63 psi. This is 5% higher than what the manual says is the correct pressure. What is the correct pressure?

+

 

+

psi

",60,60,,,51938 +PRABEQMG,1,Fill-in-the-blank(s),Algebraic Expression,"

What is the side length of a cube with a volume of v cubic units?

+

 

+

units

+

Type your answer in the following format:

+

cbrt(7) for 7 or 12cbrt(7) for127 

+

 

+

Use v as your variable.

+

 

+

 

",cbrt(v),cbrt(v),,,331115 +PRABETQ4,1,Fill-in-the-blank(s),Numeric,"

Lin is making a window covering for a window that has the shape of a half circle on top of a square of side length 3 feet. How much fabric does she need?  

+

 

+

square feet

+
+

Round your answer to the tenths place. 

+
",12.5,12.5,,,360704 +PSBB85Z,1,Fill-in-the-blank(s),Numeric," + + + + + + +
+

What is the area of this triangle, in square units?

+

 

+

square units

+
",9,9,,,337992 +PSBB9TM,1,Fill-in-the-blank(s),Numeric,"

Find the product. 

+

 

+

+
 
+

 

+

",3.6,3.6,,,342027 +PSBB9VF,1,Fill-in-the-blank(s),Numeric,"

Find the product. 

+

 

+

+
 
+

 

+

",2.45,2.45,,,342329 +PSBB9UV,2,Fill-in-the-blank(s),Algebraic Expression,"

Write an equation for the line.

+

 

+

y=

+

Use x as your variable.

",4x+18,4x+18,,,342229 +PSBB9WZ,1,Fill-in-the-blank(s),Numeric,"

Find the product. 

+

 

+

+
 
+

 

+

",0.18,0.18,,,342597 +PSBB9Z5,1,Fill-in-the-blank(s),Numeric,"

Find the product. 

+

 

+

+
 
+

 

+

",0.092,0.092,,,343161 +PSBB9YF,1,Fill-in-the-blank(s),Numeric,"

Find the product. 

+

 

+

+

 

+

",0.54,0.54,,,342865 +PSBBF6Y,1,Fill-in-the-blank(s),Numeric,"

The mass of one coin is 16.718 grams. The mass of a second coin is 27.22 grams. How much greater is the mass of the second coin than the first? 

+

 

+

grams

",10.502,10.502,,,204143 +PSBC9DA,1,Fill-in-the-blank(s),Numeric,"

The hexagon represents 1 whole. 

+

 

+

+

 

+

Use the diagram to answer the question: How many 13s are in 123

+

 

+

 

+

",5,5,,,515041 +PSBWCM,1,Fill-in-the-blank(s),Numeric,"

Jada walks at a speed of 3 miles per hour. Elena walks at a speed of 2.8 miles per hour. If they both begin walking along a walking trail at the same time, how much farther will Jada walk after 3 hours? 

+

 

+

miles

",0.6,0.6,,,103888 +PSBCAQB,1,Fill-in-the-blank(s),Numeric,"

Solve each of the problem and show your thinking. If you get stuck, consider drawing a tape diagram to represent the situation.

+

 

+

The ratio of students wearing sneakers to those wearing boots is 5 to 6.

+

 

+

If there are 33 students in the class, and all of them are wearing either sneakers or boots, how many of them are wearing sneakers?

+

 

+

students wearing sneakers

",15,15,,,347269 +PSBCAY5,1,Fill-in-the-blank(s),Exact Match,"

Write an expression equivalent to b + b + b + b + b that is a product of a coefficient and a variable.

+

 

+

","(5)(b), (5)b, 5(b), 5b, 5*b","(5)(b), (5)b, 5(b), 5b, 5*b",,,349044 +PSBCAYM,1,Fill-in-the-blank(s),Numeric,"

Calculate the quotient using your preferred strategy.

+
 
+

 

+

 

+

",9-Feb,9-Feb,,,348977 +PSBCAXG,1,Fill-in-the-blank(s),Numeric,"

Here is an expression: 2 + 3t

+

 

+

Evaluate the expression when is 1.

+

 

+

",5,5,,,348715 +PSBCAWE,3,Fill-in-the-blank(s),Numeric,"

A vendor at a street fair sells popcorn in cones, all of height 9 inches. The sharing-size cone has 3 times the radius of the skinny-size cones. About how many times more popcorn does the sharing cone hold than the skinny cone? 

+

 

+

",9,9,,,348674 +PSBCA2E,1,Fill-in-the-blank(s),Numeric,"

Calculate the quotient using your preferred strategy.

+
 
+

  

+

 

+

",2-Mar,2-Mar,,,349260 +PSBCA5P,1,Fill-in-the-blank(s),Numeric,"

Calculate the quotient using your preferred strategy.

+
 
+

  

+

 

+

 

+

",12,12,,,349832 +PSBCAXG,2,Fill-in-the-blank(s),Numeric,"

Here is an expression: 2 + 3t

+

 

+

Evaluate the expression when is 4.

+

 

+

",83,83,,,348833 +PSBCA7D,1,Fill-in-the-blank(s),Numeric,"

Calculate the quotient using your preferred strategy.

+

 

+

 

+

 

+

 

+

",32/15,32/15,,,350118 +PSBCAY5,2,Fill-in-the-blank(s),Algebraic Expression,"

Write an expression equivalent b + b + b + b + b to that is a sum of two terms.

+

 

+

","b+4b, 3b+2b","b+4b, 3b+2b",,,349167 +PSBCA32,1,Fill-in-the-blank(s),Numeric,"

Calculate the quotient using your preferred strategy. 

+
 
+

 

+

 

+

",15,15,,,349546 +PRABUZ73,1,Fill-in-the-blank(s),Numeric,"

A frozen yogurt store sells 3 different flavors of yogurt: vanilla, chocolate, and strawberry. An order of frozen yogurt comes with 4 different topping choices: fudge, caramel, fruit, or plain. How many unique ways can you order a frozen yogurt? (You can only select one flavor of yogurt and one topping).

+

 

+

",12,12,,,350160 +PSBCBQB,6,Fill-in-the-blank(s),Numeric,"

Find the hemisphere’s radius if its diameter is 9.008 ft.

+

 

+

ft

",4.504,4.504,,,353101 +PRABER7F,1,Fill-in-the-blank(s),Numeric,"

Write the fraction as a decimal.

+
+

 

+

 9100

+
+

 

+

",".3, 0.3",".3, 0.3",,,355074 +PSBCBY8,2,Fill-in-the-blank(s),Numeric,"

What is the surface area of the pyramid?

+

 

+

square units 

+

 

+

",800,800,,,354813 +PRABESJA,1,Fill-in-the-blank(s),Exact Match,"

Write the decimal as a fraction.

+
+

  

+

10.01

+
+

 

+

","1001/100, 10 1/100","1001/100, 10 1/100",,,356245 +PSBBAQT,1,Fill-in-the-blank(s),Numeric,"

Find the area of this shape in two different ways.

+
+

 

+

+

 

+

What is the area?

+

 

+

 square meters

+
",10,10,,,173259 +PSBCCXG,3,Fill-in-the-blank(s),Numeric,"

What is the speed of the International Space Station?

+

 

+

kilometers per second

",8,8,,,360494 +PRABMPBN,1,Fill-in-the-blank(s),Numeric,"

Complete the equation with a number that makes it true.

+


21  ÷  =  7

",3,3,,,361341 +PRABMPBQ,1,Fill-in-the-blank(s),Numeric,"

Complete the equation with a number that makes it true.

+

 

+

21 · = 7

",3-Jan,3-Jan,,,361805 +PRABMPBM,1,Fill-in-the-blank(s),Numeric,"

Complete the equation with a number that makes it true.

+


8 +   =  40

",32,32,,,361147 +PSBBQKA,1,Fill-in-the-blank(s),Numeric,"
The volume of both of these trapezoidal prisms is 24 cubic units. Their heights are 6 and 8 units, as labeled. What is the area of a trapezoidal base of the prism with a height of 6 units? 
+
+

 

+

units2

+

 

+

+
",4,4,,,244890 +PRABTTMK,1,Fill-in-the-blank(s),Numeric,"

Evaluate the expression when x is 4 and y is 6.

+

 

+

(6-x)3+y

+

 

+

",14,14,,,46285 +PSBCDQN,4,Fill-in-the-blank(s),Numeric,"

How many students are in the school if 42 of them are sixth graders? 

+

 

+

 students

",189,189,,,365306 +PSBCDR6,3,Fill-in-the-blank(s),Numeric,"

45% of z is 72. Find the value of z.

+

 

+

z =

",160,160,,,365680 +PRABEUP7,1,Fill-in-the-blank(s),Numeric,"

Edge lengths are given in units. Find the surface area in square units.  

+

 

+

square units

+

 

+

",340,340,,,155972 +PRABETYN,1,Fill-in-the-blank(s),Numeric,"

Andre wants to buy a backpack. The normal price of the backpack is $40. He notices that a store that sells the backpack is having a 30% off sale. What is the sale price of the backpack? 

+

 

+

$

",28,28,,,367113 +PSBE5U,2,Fill-in-the-blank(s),Numeric,"

This figure is made from part of a circle and part of a square.

+

 

+

+

 

+

 

+

What is the area of this figure, to the nearest square unit?

+

 

+

  square units

",23,23,,,26348 +PSBCEQE,1,Fill-in-the-blank(s),Numeric,"

How long is 10% of 60 minutes?

+

 

+

minutes

",6,6,,,370835 +PSBE5U,1,Fill-in-the-blank(s),Numeric,"

This figure is made from part of a circle and part of a square.

+

 

+

+

 

+

What is the perimeter of this figure, to the nearest unit?  

+

 

+

units

",19,19,,,26210 +PSBNQS,2,Fill-in-the-blank(s),Numeric,"

Find the value of the expression below.

+

 

+

-22  (-5)

+

 

+

",-17,-17,,,60534 +PRABFH6S,1,Fill-in-the-blank(s),Numeric,"

Evaluate the expression.

+

 

+

62 ÷ 4

+

 

+

",9,9,,,373325 +PRABFH6R,1,Fill-in-the-blank(s),Numeric,"

Evaluate the expression.

+

 

+

+

 

+

",3,3,,,373136 +PRABFH43,1,Fill-in-the-blank(s),Numeric,"

Evaluate the expression.

+

 

+

23 · 3

+

 

+

",24,24,,,372761 +PRABFH44,1,Fill-in-the-blank(s),Numeric,"

Evaluate the expression.

+

 

+

+

 

+

",8,8,,,372951 +PRABFH6T,1,Fill-in-the-blank(s),Numeric,"

Evaluate the expression.

+

 

+

23 - 2

+

 

+

",6,6,,,373537 +PSBDBHH,1,Fill-in-the-blank(s),Numeric,"

What is the weight of a square if a triangle weighs 4 grams?

+

 

+

grams

+

 

+

",8,8,,,527725 +PSBCGRS,4,Fill-in-the-blank(s),Numeric,"

How many small faces would this bigger fractal have?

+

 

+

small faces

",256,256,,,382659 +PSBCGTP,2,Fill-in-the-blank(s),Numeric,"

A cyclist rode 3.75 miles in 0.3 hours. 

+

 

+

At that rate, how long (in hours) will it take her to go 4.5 miles?  

+

 

+

 hours

",0.36,0.36,,,382916 +PSBVZG,1,Fill-in-the-blank(s),Numeric,"

There is a proportional relationship between the number of months a person has had a streaming movie subscription and the total amount of money they have paid for the subscription. The cost for 6 months is $47.94. The point (6, 47.94) is shown on the graph:

+

 

+

+

What is the constant of proportionality in this relationship? 

+

 

+

$

",7.99,7.99,,,101024 +PSBCHST,1,Fill-in-the-blank(s),Numeric,"

Solve the equation.

+

 

+

2x  23 = 0

+

 

+

x=

",3-Feb,3-Feb,,,387953 +PSBCJEN,4,Fill-in-the-blank(s),Numeric,"

Based on this simulation, what is the probability that at least two kittens will be chocolate brown.

+

 

+

",12-May,12-May,,,390823 +PSBCJEN,3,Fill-in-the-blank(s),Numeric,"

Based on this simulation, what is the probability that exactly two kittens will be chocolate brown.

+

 

+

",12-Mar,12-Mar,,,390558 +PSBCJEN,1,Fill-in-the-blank(s),Numeric,"

Priya’s cat is pregnant with a litter of 5 kittens. Each kitten has a 30% chance of being chocolate brown. Priya wants to know the probability that at least two of the kittens will be chocolate brown.

+
+
+
+
+

To simulate this, Priya put 3 white cubes and 7 green cubes in a bag. (This means that the white cubes represent the chances of a brown cat.) For each trial, Priya pulled out and returned a cube 5 times. Priya conducted 12 trials.

+

 

+

Here is a table with the results.

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
trial numberoutcome
1ggggg
2gggwg
3wgwgw
4gwggg
5gggwg
6wwggg
7gwggg
8ggwgw
9wwwgg
10ggggw
11wggwg
12gggwg
+

 

+

How many successful trials were there?

+
+
+
+
+

 

+

",5,5,,,390129 +PSBDHKG,1,Fill-in-the-blank(s),Numeric,"

What is the value of 12÷13

+

 

+

+

 

+

Use pattern blocks to represent and find this value. The yellow hexagon represents 1 whole.

+

 

+

",1.5,1.5,,,562131 +PSBZ3C,1,Fill-in-the-blank(s),Numeric,"

The table represents a proportional relationship.  

+

 

+

Find the constant of proportionality.

+

 

+ + + + + + + + + + + + + + + + + + + + + + + +
ay
223
31
10103
124
+

 

+

Constant of proportionality:  

+

Express your answer as a fraction.

",3-Jan,3-Jan,,,124164 +PSBCMNM,1,Fill-in-the-blank(s),Numeric,"

Find the product.

+

 

+

(2.5)(1.4)

+

 

+

",3.5,3.5,,,403421 +PRABFG57,1,Order / Sort,Ordering,

Order these numbers from least to greatest:

,"

-12

,

12

,

-1

,

-112

,

1

,

0

","

-12

,

12

,

-1

,

-112

,

1

,

0

",,,406337 +PSBCNEW,2,Fill-in-the-blank(s),Numeric,"

Students did push-ups for a fitness test. Their goal was 20 push-ups. For the student, determine what percentage of the goal they achieved.

+

 

+

Jada did 42 push-ups.

+

 

+

%

",210,210,,,407285 +PRABFKE2,1,Fill-in-the-blank(s),Numeric,"

Find the quotient.

+

 

+

125÷65

+

 

+

",2,2,,,416968 +PRABFKE4,1,Fill-in-the-blank(s),Numeric,"

Find the quotient.

+

 

+

910÷109

+

 

+

",0.81,0.81,,,417385 +PRABEVDT,1,Fill-in-the-blank(s),Numeric,"

Han surveys a random sample of students about their favorite pasta dish served by the cafeteria and makes a bar graph of the results.

+

 

+

+

 

+

Estimate the proportion of the students who like lasagna as their favorite pasta dish.

+

 

+

",20-Jun,20-Jun,,,106945 +PSBCQR6,2,Fill-in-the-blank(s),Exact Match,"

Divide. Express your answer as a decimal.

+

 

+

2 ÷ 5

+

 

+

",".4, 0.4",".4, 0.4",,,421310 +PRABFG24,1,Fill-in-the-blank(s),Numeric,"

What is the area of a square with side lengths of 35 units?

+

 

+

square units

",25-Sep,25-Sep,,,86962 +PSBCQU6,4,Fill-in-the-blank(s),Numeric,"

Multiply. Express your answer as a decimal.

+

 

+

(0.75) · 40

+

 

+

",30,30,,,422237 +PSBCQU6,2,Fill-in-the-blank(s),Numeric,"

Multiply. Express your answer as a decimal.

+

 

+

34 · 400

+

 

+

",300,300,,,421967 +PSBCR8Q,1,Fill-in-the-blank(s),Numeric,"

 What is 0.5% of 75?

+

 

+

",0.375,0.375,,,429767 +PRABEPM6,1,Fill-in-the-blank(s),Numeric,"

Find the area of a square if its side length is 118 inches.

+

 

+

square inches

",121/64,121/64,,,424567 +PRABEPME,1,Fill-in-the-blank(s),Numeric,"

Write the exact value of the side length, in units, of a square whose area in square units is 1009.

+

 

+

units

",3-Oct,3-Oct,,,423601 +PSBCRGJ,1,Fill-in-the-blank(s),Numeric,"

Here is an expression: 3 · 2t

+

 

+

Evaluate the expression when t is 1.

+

 

+

",6,6,,,425797 +PSBCRJA,2,Fill-in-the-blank(s),Algebraic Expression,"

Write an expression equivalent to m+m+m+m that is a sum of two terms.

+

 

+

","2m+2m, 3m+m","2m+2m, 3m+m",,,426220 +PSBCRJA,1,Fill-in-the-blank(s),Algebraic Expression,"

Write an expression equivalent to m+m+m+m that is a product of a coefficient and a variable.

+

 

+

",4m,4m,,,426116 +PSBCRZ8,1,Fill-in-the-blank(s),Numeric,"

What is 10% of 75?

+

 

+

",7.5,7.5,,,428623 +PSBCR6G,1,Fill-in-the-blank(s),Numeric,"

 What is 0.1% of 75?

+

 

+

",0.075,0.075,,,429393 +PSBCR4G,1,Fill-in-the-blank(s),Numeric,"

What is 1% of 75?

+

 

+

",0.75,0.75,,,428993 +PSBCTGA,3,Fill-in-the-blank(s),Numeric,"

Identify the greatest common factor of 28 and 12.

+

 

+

",4,4,,,437180 +PSBCTEB,1,Fill-in-the-blank(s),Exact Match,"

Find all of the factors of 21.

+

 

+

List the factors in ascending (least to greatest) order, with a comma in between each of them, and with no spaces.

+

 

+

","1,3,7,21","1,3,7,21",,,436482 +PSBCTGA,1,Fill-in-the-blank(s),Exact Match,"

Find all of the factors of 28.

+

 

+

List the factors in ascending (least to greatest) order, with a comma in between each of them, and with no spaces.

+

 

+

","1,2,4,7,14,28","1,2,4,7,14,28",,,436921 +PSBCTEB,2,Fill-in-the-blank(s),Exact Match,"

Find all of the factors of 6.

+

 

+

List the factors in ascending (least to greatest) order, with a comma in between each of them, and with no spaces.

+

 

+

","1,2,3,6","1,2,3,6",,,436594 +PSBCTEB,3,Fill-in-the-blank(s),Numeric,"

Identify the greatest common factor of 21 and 6.

+

 

+

",3,3,,,436717 +PSBCTGA,2,Fill-in-the-blank(s),Exact Match,"

Find all of the factors of 12.

+

 

+

List the factors in ascending (least to greatest) order, with a comma in between each of them, and with no spaces.

+

 

+

","1,2,3,4,6,12","1,2,3,4,6,12",,,437042 +PSBCTHV,3,Fill-in-the-blank(s),Numeric,"

If the car wheel rotates 5 times per second, about how many miles does the car travel in one hour?

+

 

+

miles

+

Round your answer to the nearest tenth of a mile.

",18.5,18.5,,,437300 +PRABTTEH,1,Fill-in-the-blank(s),Numeric,"

Solve the equation below.

+

 

+

15 = 1.5t

+

 

+

t =

",10,10,,,194900 +PRABTTEE,1,Fill-in-the-blank(s),Numeric,"

Solve the equation below.

+

 

+

73=q+23

+

 

+

",3-May,3-May,,,194628 +PRABTTEF,1,Fill-in-the-blank(s),Numeric,"

Solve the equation below.

+

 

+

90 = 20r

+

 

+

r =

",2-Sep,2-Sep,,,194712 +PSB7JA,2,Fill-in-the-blank(s),Numeric,"

The Carousel on the National Mall has 4 rings of horses. Kiran is riding on the inner ring, which has a radius of 9 feet. Mai is riding on the outer ring, which is 8 feet farther out from the center than the inner ring is.

+

 

+

One rotation of the carousel takes 12 seconds. How much faster does Mai travel than Kiran?  

+

 

+

feet per second

+

Use 3.14 for π.

+

Round your answer to the tenths place.

",4.2,4.2,,,156264 +PRABETV3,1,Fill-in-the-blank(s),Numeric,"

The price of an ice cream cone is $3.25, but it costs $3.51 with tax. What is the sales tax rate?  

+

 

+

%

",8,8,,,61531 +PSBN64,1,Fill-in-the-blank(s),Numeric,"

Here is a diagram and its corresponding equation. Find the solution to the equation.

+

 

+

+

6x + 11 = 21

+

 

+

x =

","1.67, 1.7, 10/6","1.67, 1.7, 10/6",,,63291 +PSBCVNF,1,Fill-in-the-blank(s),Numeric,"

How many right angles need to be put together to make 360 degrees?

+

 

+

right angles

",4,4,,,448452 +PSBDRW4,2,Fill-in-the-blank(s),Algebraic Expression,"

The sides of a square have length s.

+

 

+

Write a formula for the area A of the square.

+

 

+

A =

+

Use s as your variable.

+

 

+

Use the ^ symbol to represent an exponent. 

+

For example:

+

52 should be typed as 5^2

+

(-5)2 should be typed as (-5)^2

",s^2,s^2,,,605052 +PSBCWN6,1,Fill-in-the-blank(s),Numeric,"

The diagram shows five small squares and one rectangle composed of 10 small squares.

+

+

Andre says this diagram can represent 1,500. What does a small square represent for Andre?

+

 

+

 

+

",100,100,,,454858 +PSBCAQG,2,Fill-in-the-blank(s),Numeric,"

A baker wants to reduce the amount of sugar in his cake recipes. He decides to reduce the amount used in 1 cake by 12 cup. He then uses 412 cups of sugar to bake 6 cakes.

+
+

 

+

+

 

+
+

How much sugar was originally in each cake recipe?  

+

 

+

cups of sugar

",1 1/4,1 1/4,,,347162 +PSBMD9,2,Fill-in-the-blank(s),Numeric,"

Andre wants to save $40 to buy a gift for his dad. Andre's neighbor will pay him weekly to mow the lawn, but Andre always gives a $2 donation to the food bank in weeks when he earns money. Andre calculates that it will take him 5 weeks to earn the money for his dad's gift. He draws a tape diagram to represent the situation.

+

 

+

+

 

+

How much does Andre's neighbor pay him in each week to mow the lawn? 

+

 

+

$

",10,10,,,54241 +PSBCY9Z,1,Fill-in-the-blank(s),Numeric,"

 There are four ways to make by multiplying powers of 10 with smaller, positive exponents.

+

+

(This list is complete if you don't pay attention to the order you write them in. For example, we are only counting and  once.)

+

 

+

How many ways are there to make by multiplying smaller powers of 10 together?

+

 

+

",10,10,,,469527 +PSBCY9Z,3,Fill-in-the-blank(s),Numeric,"

 

+

How many ways are there to make by multiplying smaller powers of 10 together?

+

 

+

",22,22,,,469703 +PSBCY9Z,2,Fill-in-the-blank(s),Numeric,"

 

+

How many ways are there to make by multiplying smaller powers of 10 together?

+

 

+

",14,14,,,469613 +PRABFG5A,1,Fill-in-the-blank(s),Numeric,"

Solve the equation.

+

 

+

5x = 27

+

 

+

x =

+

If necessary, express your answer in fraction form.

",Feb-35,Feb-35,,,50477 +PRABFG49,1,Fill-in-the-blank(s),Numeric,"

Solve the equation.

+

 

+

112 = 2x

+

 

+

x =

+

If necessary, express your answer in fraction form.

",4-Mar,4-Mar,,,50267 +PRABTGFC,1,Fill-in-the-blank(s),Numeric,"

Solve.

+

 

+

12 + p = -3

+

 

+

p =

",-3 1/2,-3 1/2,,,157401 +PSBC2PC,2,Fill-in-the-blank(s),Numeric,"

By what percentage did the price increase?

+

 

+

%

+

 

",20,20,,,477606 +PSBBBJQ,1,Fill-in-the-blank(s),Numeric,"

Here is a diagram and its corresponding equation. Find the solution to the equation.

+

 

+ + + + + + + +
6(x+1) = 24
+

 

+

x =

",3,3,,,178070 +PSBCZDE,1,Fill-in-the-blank(s),Numeric,"

Find the difference 0.2 - 0.05.

+

 

+

 

+

",0.15,0.15,,,470213 +PRABHR3H,1,Fill-in-the-blank(s),Numeric,"

Calculate 4,235 ÷ 11 using any method.

+

 

+

",385,385,,,473981 +PSBC2YF,2,Fill-in-the-blank(s),Numeric,"

At another sanctuary, the number of nesting turtles decreased by 10%. This year there were 234 nesting turtles. How many nesting turtles were at this sanctuary last year?

+

 

+

nesting turtles

",260,260,,,479240 +PSBC2S5,2,Fill-in-the-blank(s),Numeric,"

The population is now 6,600. What was the population last year?

+

 

+

people

",5280,5280,,,478342 +PRABG42S,1,Fill-in-the-blank(s),Numeric,"

Solve the equation 3(x + 4.5) = 36. If you get stuck, use the diagram.

+

 

+

x =

+

 

+

 

+

+

 

",7.5,7.5,,,55691 +PSBC4NU,3,Fill-in-the-blank(s),Numeric,"

Find the least common multiple of 10 and 8.

+

 

+

",40,40,,,489519 +PSBC4NU,5,Fill-in-the-blank(s),Numeric,"

Find the least common multiple of 7 and 9.

+

 

+

",63,63,,,489770 +PSBC4SY,2,Fill-in-the-blank(s),Numeric,"

Find the quotient.

+

 

+

60 ÷ 5 = 

+

 

+

",12,12,,,490267 +PSBGWX,3,Fill-in-the-blank(s),Exact Fraction,"

One inch is around 21120 centimeters.

+

 

+

+

 

+

What fraction of an inch is 1 centimeter?

+

 

+

inch

",20/51,20/51,,,35817 +PSBVZG,4,Fill-in-the-blank(s),Algebraic Expression,"

Write an equation that represents the relationship between C, the total cost of the subscription, and m, the number of months.

+

 

+

C =

+

Use m as your variable.

",7.99m,7.99m,,,101733 +PSBV6V,2,Fill-in-the-blank(s),Numeric,"

Find the value of k.

+

 

+

",25,25,,,102385 +PSBC523,1,Fill-in-the-blank(s),Numeric,"

Solve the problem below.

+

 

+

14 is 50% of what number?

+

 

+

",28,28,,,497078 +PSBZ6J,1,Fill-in-the-blank(s),Numeric,"

The triangle has an area of 778 cm2 and a base of 514 cm.  

+

 

+

What is the length of h?

+

 

+

cm

+

 

+

",3,3,,,125391 +PSBE7T,1,Fill-in-the-blank(s),Numeric,"

A painter needs to paint the bottom of a circular pool. The pool has a radius of 30 feet.

+

 

+

A store sells 5-gallon cans of paint. One gallon of paint covers 300 square feet.

+

 

+

What is the smallest number of 5-gallon cans the painter must buy to cover the bottom of the pool?

+

 

+

 5-gallon cans

",2,2,,,26568 +PSBH3U,1,Fill-in-the-blank(s),Numeric,"

The table below represents a proportional relationship.

+

 

+

Find the constant of proportionality.

+

 

+

Constant of proportionality:  

+

 

+ + + + + + + + + + + + + + + + + + + + + + + +
sP
28
312
520
1040
+

 

",4,4,,,42014 +PSBH3U,2,Fill-in-the-blank(s),Algebraic Expression,"

The table below represents a proportional relationship.

+

 

+ + + + + + + + + + + + + + + + + + + + + + + +
sP
28
312
520
1040
+

 

+

Write an equation that represents the relationship.  

+

 

+

Equation: P =

","4*s, 4s","4*s, 4s",,,42156 +PSB5FH,1,Fill-in-the-blank(s),Numeric,"

The table below represents a proportional relationship.

+

 

+

Find the constant of proportionality.

+

 

+

Constant of proportionality:

+

 

+ + + + + + + + + + + + + + + + + + + + + + + +
dC
26.28
39.42
515.7
1031.4
+

 

",3.14,3.14,,,144794 +PSBC5YB,3,Fill-in-the-blank(s),Numeric,"

Tyler uses 20% of the remaining barbecue sauce. About how many ounces did he use the second time?  

+

 

+

ounces of barbecue sauce

",4.5,4.5,,,496551 +PSBC57S,1,Fill-in-the-blank(s),Numeric,"

Solve the problem below.

+

 

+

What is 25% of 80?

+

 

+

",20,20,,,497933 +PSBBCFE,1,Fill-in-the-blank(s),Numeric,"

Snow is falling steadily in Syracuse, New York. After 2 hours, 4 inches of snow has fallen.

+

 

+

If it continues to snow at the same rate, how many inches of snow would you expect after 6.5 hours? If you get stuck, you can use the table to help.

+

 

+

inches

+

 

+ + + + + + + + + + + + + + + + + + + + + + + + + + + +
time (hours)snow (inches)
 1
1 
24
6.5 
x 
+

 

",13,13,,,182778 +PSBC59D,1,Fill-in-the-blank(s),Numeric,"

Solve the problem below.

+

 

+

What is 41% of 200?

+

 

+

",82,82,,,498194 +PSBC77E,2,Fill-in-the-blank(s),Exact Match,"

Divide. Express your answer as a decimal.

+

 

+

÷ 5

+

 

+

",".8, 0.8",".8, 0.8",,,508172 +PSBC54T,1,Fill-in-the-blank(s),Numeric,"

Solve the problem below.

+

 

+

24 is 120% of what number?

+

 

+

",20,20,,,497355 +PSBC556,1,Fill-in-the-blank(s),Numeric,"

Solve the problem below.

+

 

+

18 is what percentage of 30?  

+

 

+

%

",60,60,,,497669 +PSBCXKJ,3,Fill-in-the-blank(s),Algebraic Expression,"

To transmit information on the internet, large files are broken into packets of smaller sizes. Each packet has 1,500 bytes of information. An equation relating packets to bytes of information is given by b = 1,500p where p represents the number of packets and b represents the number of bytes of information.

+

 

+

Each byte contains 8 bits of information. Write an equation to represent the relationship between the number of packets and the number of bits. 

+

 

+

x =

+

Use p as your variable.

","12,000p","12,000p",,,460374 +PSBBUMW,2,Fill-in-the-blank(s),Numeric,"

How far does a rider travel in one complete rotation around the Ferris wheel? 

+

 

+

meters

+

Use 3.14 for π

+

Round your answer to the nearest whole number.

",251,251,,,267619 +PRABQP6G,1,Fill-in-the-blank(s),Numeric,"

A new phone costs $450. There is a 40% discount on the price of the phone and an 8% sales tax on the discount price. What is the final cost of the phone after the discount and the sales tax?

+

 

+

$

",291.6,291.6,,,506119 +PSBC8GK,1,Fill-in-the-blank(s),Numeric,"

Here is an unlabeled polygon, along with its scaled copies Polygons A–D.

+

 

+

+

 

+

Determine the scale factor for copy C. 

+

 

+

",2-Mar,2-Mar,,,509883 +PSBDASC,2,Fill-in-the-blank(s),Numeric,"

What is the decimal representation of that number?

+

 

+

",0.5,0.5,,,522651 +PSBDASC,4,Fill-in-the-blank(s),Numeric,"

What is the decimal representation of that number?

+

 

+

 

+

",0.25,0.25,,,522897 +PSBDASC,6,Fill-in-the-blank(s),Numeric,"

What is the decimal representation of that number?

+

 

+

",0.125,0.125,,,523084 +PSBDAX7,3,Fill-in-the-blank(s),Numeric,"

If you were to sketch the graph of this linear equation, what would its slope be? 

+

 

+

",-2,-2,,,524173 +PSBDB29,1,Fill-in-the-blank(s),Numeric,"

Find the quotient of 1,332 ÷ 9 using one of the methods you have seen so far. 

+

 

+

",148,148,,,530879 +PSBDB7P,3,Fill-in-the-blank(s),Numeric,"

Find the quotient. 

+

 

+

665 ÷ 7

+

 

+

",95,95,,,531410 +PSBDB7P,5,Fill-in-the-blank(s),Numeric,"

Find the quotient. 

+

 

+

432 ÷ 16

+

 

+

",27,27,,,531647 +PRABTGFD,1,Fill-in-the-blank(s),Numeric,"

Solve.

+

 

+

-4.5 = a - 8

+

 

+

a =

",3.5,3.5,,,157262 +PSBDB7P,1,Fill-in-the-blank(s),Numeric,"

Find each quotient and show your reasoning. Use the partial quotients method at least once.

+
 
+
Find the quotient. 
+
 
+
 
+
1,115 ÷ 5 
+

 

+

",223,223,,,531190 +PSBCP4,2,Fill-in-the-blank(s),Numeric,"

Based on this model, how heavy would you expect a newborn Doberman to be?

+

 

+

pounds

+

 

+

",1.22,1.22,,,12777 +PSBBQXP,3,Fill-in-the-blank(s),Numeric,"

Tyler’s brother earns $12 per hour. The store offers him a raise—a 5% increase per hour. After the raise, how much will Tyler’s brother make per hour? 

+

 

+

$

",12.6,12.6,,,246966 +PSBVBE,3,Fill-in-the-blank(s),Numeric,"

Jada’s sister earns a commission. She makes 3.5% of the amount she sells. Last week, she sold $7,000 worth of furniture. How much was her commission?

+

 

+

 $

",245,245,,,97648 +PSBBKRM,1,Fill-in-the-blank(s),Algebraic Expression,"

Andre and Noah start tracking their savings at the same time.

+

 

+

Andre starts with $15 and deposits $5 per week.

+

 

+

Noah starts with $2.50 and deposits $7.50 per week. The graph of Noah's savings is given and his equation is y=7.5x+2.5, where x represents the number of weeks and y represents his savings.

+

 

+

+

 

+

Write the equation for Andre's savings.

+

 

+

y=

+

Use x as your variable.

",5x+15,5x+15,,,223780 +PSBC7QJ,2,Fill-in-the-blank(s),Numeric,"

A college student takes out a $7,500 loan from a bank. What will the balance of the loan be after one year (assuming the student has not made any payments yet):

+

 

+

If the bank charges 5.3% interest each year? 

+

 

+

$

",7897.5,7897.5,,,505561 +PSBDFK7,3,Fill-in-the-blank(s),Numeric,"

Decide what power of 10 to put on the labeled tick mark on this number line so that all three countries’ populations can be distinguished.

+

 

+

+

 

+

",6,6,,,551805 +PSBDFVZ,2,Fill-in-the-blank(s),Numeric,"

How much will Noah spend for the belt buckle including tax? 

+

 

+

$

",26.56,26.56,,,553401 +PSBC7JE,1,Fill-in-the-blank(s),Numeric,"

Lin is shopping for a couch with her dad and hears him ask the salesperson, “How much is your commission?” The salesperson says that her commission is 512% of the selling price.

+

 

+

How much commission will the salesperson earn by selling a couch for $495? 

+

 

+

$

",27.23,27.23,,,504254 +PSBBWMY,3,Fill-in-the-blank(s),Numeric,"

For the event, tell how many outcomes there are.

+

 

+

Select a month. Then select 2020 or 2025.

+

 

+

outcomes

",24,24,,,278217 +PSBC4ET,2,Fill-in-the-blank(s),Numeric,"

Give the plant’s age and height at that time of Point D.

+

 

+

plant's age: weeks

+

 

+

height: inches

","5, 4","5, 4",,,488471 +PRABFG58,1,Order / Sort,Ordering,"

Here are the boiling points of certain elements in degrees Celsius:

+
    +
  • Argon: -185.8
  • +
  • Chlorine: -34
  • +
  • Fluorine: -188.1
  • +
  • Hydrogen: -252.87
  • +
  • Krypton: -153.2

  • +
+

List the elements from least (1) to greatest (5) boiling points.

","Hydrogen, Chlorine, Krypton, Argon, Flourine","Hydrogen, Chlorine, Krypton, Argon, Flourine",,,356879 +PSBDKXC,3,Fill-in-the-blank(s),Exact Fraction,"

Answer the question: What fraction of 9 is 3?

+

 

+

",3-Jan,3-Jan,,,576243 +PSBDKXC,6,Fill-in-the-blank(s),Exact Fraction,"

Answer the question: What fraction of 5 is ?

+

 

+

",10-Jan,10-Jan,,,576579 +PRABKCZR,1,Order / Sort,Ordering,

Some information is given about each sphere. Order them from least volume to greatest volume. You may sketch a sphere to help you visualize if you prefer.

,"

Sphere B has a diameter of 6.

,

Sphere C has a volume of 64π.

,

Sphere A has a radius of 4.

,

Sphere D has a radius double that of sphere B.

","

Sphere B has a diameter of 6.

,

Sphere C has a volume of 64π.

,

Sphere A has a radius of 4.

,

Sphere D has a radius double that of sphere B.

",,,154066 +PRABMSGY,1,Fill-in-the-blank(s),Numeric,"

Add.

+
+
+
+
+

-81.4 + (-12)

+
+
+
+
+

 

+

",-93.4,-93.4,,,586044 +PRABMSGX,1,Fill-in-the-blank(s),Numeric,"

Add.

+
+
+
+
+

-9.2 + 4.4

+
+
+
+
+

 

+

",-4.8,-4.8,,,585877 +PRABMSGZ,1,Fill-in-the-blank(s),Numeric,"

Add.

+
+
+
+
+

51.8 + (-0.8)

+
+
+
+
+

 

+

",51,51,,,586212 +PSBDPRR,3,Fill-in-the-blank(s),Numeric,"

What is the least common multiple of 10 and 15?

+

 

+

",30,30,,,592258 +PSBDHHQ,1,Fill-in-the-blank(s),Numeric,"

Use the tape diagram to represent and find the value of 12÷13.

+

 

+

+

 

+

",1.5,1.5,,,561849 +PRABFF3P,1,Fill-in-the-blank(s),Numeric,"

Solve the equation.

+

 

+

4 = 32b

+

 

+

b =

",8-Jan,8-Jan,,,223118 +PRABTGFM,1,Fill-in-the-blank(s),Numeric,"

Evaluate the expression if x is 25, y is -4, and z is -0.2.

+

 

+

x + y + z

+

 

+

",-3.8,-3.8,,,158771 +PSBU8Y,1,Fill-in-the-blank(s),Numeric,"

A computer randomly selects a letter from the alphabet.

+

 

+

How many different outcomes are in the sample space?

+

 

+

outcomes

",26,26,,,96485 +PSBZWG,1,Fill-in-the-blank(s),Numeric,"

A spinner has four equal sections, with one letter from the word “MATH” in each section.

+

 

+

You spin the spinner 20 times. About how many times do you expect it will land on A?

+

 

+

times

",5,5,,,123919 +PSBBWFQ,1,Fill-in-the-blank(s),Numeric,"

When rolling 3 standard number cubes, the probability of getting all three numbers to match is 6216. What is the probability that the three numbers do not all match?

+

 

+

",210/216,210/216,,,277185 +PSBBWMY,1,Fill-in-the-blank(s),Numeric,"

For the event, tell how many outcomes there are.

+

 

+

Roll a standard number cube. Then flip a quarter.

+

 

+

outcomes

",12,12,,,277725 +PSBNJW,2,Fill-in-the-blank(s),Numeric,"

According to the graph, where was Diego when he was going the slowest during the race?

+

 

+

kilometers into the race

+

 

+

",3,3,,,60170 +PSBNJW,1,Fill-in-the-blank(s),Numeric,"

Diego runs a 10-kilometer race and keeps track of his speed.

+

 

+

+

 

+

What was Diego's speed at the 5-kilometer mark in the race?

+

 

+

kilometers per hour

",10,10,,,60012 +PSBCD4,1,Fill-in-the-blank(s),Numeric,"

There are two different maps of California.

+

 

+
    +
  • On the first map, the scale is 1 cm to 20 km. The distance from Fresno to San Francisco is 15 cm.

  • +
  • On the second map, the scale is 1 cm to 100 km.
  • +
+

 

+

 

+

What is the distance from Fresno to San Francisco on the second map?

+

 

+

cm

",3,3,,,11049 +PSBFH9,6,Fill-in-the-blank(s),Numeric,"

These triangles are scaled copies of each other.

+

 

+

+

 

+

The area of the second triangle is how many times larger than the area of the first?

+

 

+

The area of Triangle H is times larger than the area of Triangle B.

",16-Sep,16-Sep,,,28347 +PSBFH9,5,Fill-in-the-blank(s),Numeric,"

These triangles are scaled copies of each other.

+

 

+

+

 

+

The area of the second triangle is how many times larger than the area of the first?

+

 

+

The area of Triangle G is times larger than the area of Triangle H.

",9-Apr,9-Apr,,,28087 +PSBFH9,2,Fill-in-the-blank(s),Numeric,"

These triangles are scaled copies of each other.

+

 

+

+

 

+

The area of the second triangle is how many times larger than the area of the first?

+

 

+

The area of Triangle G is times larger than the area of Triangle B.

",4-Jan,4-Jan,,,27332 +PSBFH9,3,Fill-in-the-blank(s),Numeric,"

These triangles are scaled copies of each other.

+

 

+

+

 

+

The area of the second triangle is how many times larger than the area of the first?

+

 

+

The area of Triangle B is times larger than the area of Triangle F.

",16,16,,,27571 +PSBFH9,4,Fill-in-the-blank(s),Numeric,"

These triangles are scaled copies of each other.

+

 

+

+

 

+

The area of the second triangle is how many times larger than the area of the first?

+

 

+

The area of Triangle F is times larger than the area of Triangle H.

",9-Jan,9-Jan,,,27844 +PSBZVR,2,Fill-in-the-blank(s),Numeric,"

Here is Triangle A. Lin created a scaled copy of Triangle A with an area of 72 square units.

+

 

+

+

 

+

 

+

What scale factor did Lin apply to the Triangle A to create the copy?

+

 

+

",4,4,,,123600 +PSBZVR,3,Fill-in-the-blank(s),Numeric,"

Here is Triangle A. Lin created a scaled copy of Triangle A with an area of 72 square units.

+

+

 

+

What is the length of the bottom side of the scaled copy?

+

 

+

  units

",12,12,,,123896 +PSBDXJH,2,Fill-in-the-blank(s),Numeric,"

Find the surface area of the rectangular prism.

+

 

+

 

+

square cm

",160,160,,,637195 +PSBC8C2,1,Fill-in-the-blank(s),Numeric,"

Here is an unlabeled polygon, along with its scaled copies Polygons A–D.

+

 

+

+

 

+

Determine the scale factor for copy A.

+

 

+

",2-Jan,2-Jan,,,509085 +PSBBG4V,6,Fill-in-the-blank(s),Numeric,"

Figure 2 is a scaled copy of Figure 1.

+

+

 

+

G and H are two points on Figure 1, but they are not shown. The distance between G and H is 1. What is the distance between the corresponding points on Figure 2?  

+

 

+

units

",3,3,,,209207 +PRABHR35,1,Fill-in-the-blank(s),Numeric,"

Use long division to find the value of 43.5 ÷ 3.

+

 

+

If you get stuck, you can draw base-ten diagrams. Be sure to say what each type of figure represents in your diagrams.

+

 

+

",14.5,14.5,,,641896 +PSBC8AA,1,Fill-in-the-blank(s),Numeric,"

Diego drew a scaled version of a Polygon P and labeled it Q.

+

 

+

+

 

+

If the area of Polygon P is 72 square units, what scale factor did Diego use to go from P to Q?

+

 

+

",4-Jan,4-Jan,,,508521 +PSBC8EN,1,Fill-in-the-blank(s),Numeric,"

Here is an unlabeled polygon, along with its scaled copies Polygons A–D.

+

 

+

+

 

+

Determine the scale factor for copy B.

+
 
+

 

+

",2,2,,,509539 +PSBC8JJ,1,Fill-in-the-blank(s),Numeric,"

Here is an unlabeled polygon, along with its scaled copies Polygons A–D.

+

 

+

+

 

+

Determine the scale factor for copy D.

+

 

+

",1,1,,,510249 +PRABMPB5,1,Fill-in-the-blank(s),Numeric,"

Solve the equation mentally.

+

 

+

1÷15 = x

+

 

+

",5,5,,,511103 +PSBB5YQ,1,Fill-in-the-blank(s),Numeric,"

A Andre le toma 4 minutos nadar 5 piscinas.

+

 

+

¿Esto equivale a cuántos piscinas por minuto?

+

 

+
 
+

 

+

piscinas por minuto

",4-May,4-May,,,319516 +PSBB5YQ,2,Fill-in-the-blank(s),Numeric,"

A Andre le toma 4 minutos nadar 5 piscinas.

+

 

+

¿Esto equivale a cuántos minutos por cada piscina?

+

 

+

 

+

minutos

",5-Apr,5-Apr,,,319607 +PSBB5YQ,3,Fill-in-the-blank(s),Numeric,"

Si Andre nadara 22 piscinas a esa misma tasa, ¿cuánto tiempo tardaría?

+

 

+
 
+

 

+

minutos

",17.6,17.6,,,319717 +PSBB6RP,1,Fill-in-the-blank(s),Numeric,"

Un lagarto y un caracol están uno al lado del otro en un tubo de drenaje. El lagarto sube 10 pulgadas y el caracol baja 4 pulgadas. Después de moverse, ¿a qué distancia están el uno del otro? 

+

 

+

 

+

pulgadas

",14,14,,,324288 +PSBD2MD,1,Fill-in-the-blank(s),Numeric,"

This diagram shows three small squares and two rectangles composed of 10 small squares.

+

 

+

+

 

+

Jada says this diagram can represent 230. What does a small square represent for Jada?

+

 

+

 

+

",10,10,,,654938 +PSB8P6,1,Fill-in-the-blank(s),Numeric,"

Here is a rectangular prism.

+

 

+

+

 

+

What is the surface area of the prism?

+

 

+

in2

",69.6,69.6,,,162087 +PSBD4PT,1,Fill-in-the-blank(s),Numeric,"

Elena measured the perimeter of a square desk and found 359 cm. Andre measured the perimeter of the same desk and found 3,579 mm.

+

 

+

By how many millimeters do these measurements differ?

+

 

+

  mm

",11,11,,,668634 +PRABEPF7,1,Fill-in-the-blank(s),Numeric,"

Solve the equation and check your solution.

+

 

+

12(5 + 2y) = 4y  (6  9y)

+

 

+

y =

",-6,-6,,,331322 +PRABPNNB,1,Fill-in-the-blank(s),Numeric,"

Find the value of 4950 ÷ 76 using any method.

+

 

+

",21/25,21/25,,,10794 +PRABFH6U,1,Fill-in-the-blank(s),Numeric,"

Evaluate the expression.

+

 

+

102 + 52

+

 

+

",125,125,,,373740 +PSBZEG,1,Fill-in-the-blank(s),Numeric,"

Lin uses an app to graph the charge on her phone.

+

 

+

+

 

+

 

+

When did she start using her phone?

+

 

+

hours after noon

",2,2,,,121116 +PSBBVM4,1,Fill-in-the-blank(s),Numeric,"

Calculate 141.75 ÷ 2.5 using a method of your choice. 

+

 

+

",56.7,56.7,,,273049 +PSBDZ4,1,Fill-in-the-blank(s),Numeric,"

Elena donates some money to charity whenever she earns money as a babysitter. The table shows how much money, d, she donates for different amounts of money, m, that she earns.

+

 

+ + + + + + + + + + + + + + + + + + + +
d4.441.803.123.602.16
m3715263018
+

 

+

What percent of her income does Elena donate to charity? 

+

 

+

%

+

 

",12,12,,,19984 +PSBDP9E,1,Fill-in-the-blank(s),Numeric,"

Here is a rectangle:

+

+

 

+

What is the area of the rectangle?

+

 

+

cm2

",28,28,,,595379 +PRABEVTF,1,Fill-in-the-blank(s),Numeric,"

Elena goes for a long walk. This graph shows her time and distance traveled throughout the walk.

+

 

+

+

 

+

What was her fastest speed, in miles per hour?

+

 

+

miles per hour

",4,4,,,340581 +PSBC696,1,Fill-in-the-blank(s),Numeric,"

Find the area of the shaded region. All measurements are in centimeters.

+

 

+

+

 

+

 

+

square centimeters

",80,80,,,503274 +PRABTTCX,1,Fill-in-the-blank(s),Numeric,"

Find the value of the expression.

+
+

 

+

12 + (-10)

+
+

 

+

",2,2,,,222978 +PRABPMQF,1,Fill-in-the-blank(s),Numeric,"

Lines s and t are parallel. Find the value of x.

+

 

+

+

 

+ + + + + + +
x = degrees
",50,50,,,189375 +PRABEQDF,1,Fill-in-the-blank(s),Numeric,"

If Quadrilateral Q is a scaled copy of Quadrilateral P created with a scale factor of 3, what is the perimeter of Q?

+

 

+

+
 
+

 

+

",186,186,,,413713 +PSB94Q,3,Fill-in-the-blank(s),Numeric,"

What is the value for the IQR for the data in the dot plot?

+

 

+

",2,2,,,169705 +PRABEUAG,1,Fill-in-the-blank(s),Numeric,"

Lin's puppy is gaining weight at a rate of 0.125 pounds per day. Describe the weight gain in days per pound.  

+

 

+

days per pound

",8,8,,,131274 +PRABEUGP,1,Fill-in-the-blank(s),Numeric,"

Segments AB, DC, and EC intersect at point C. Angle DCE measures 148°. Find the value of x.

+

 

+

+

 

+

x = °

",16,16,,,298893 +PSB9VY,1,Fill-in-the-blank(s),Numeric,"

A rectangular prism is 3 units high, 2 units wide, and 5 units long. What is its surface area in square units? 

+

 

+

+

 

+

square units

",62,62,,,168559 +PRABFFUF,1,Fill-in-the-blank(s),Numeric,"

A diver is 25 feet below sea level. After he swims up 15 feet toward the surface, what is his elevation?

+

 

+

feet

",-10,-10,,,198319 +PSB33P,3,Fill-in-the-blank(s),Drop Down,"

Which is larger?

+

 

+

 

","

Line segment Line segment e

,

Line segment f

","

Line segment f

",,,136977 +PSBBEQB,1,Fill-in-the-blank(s),Numeric,"

A whale is at the surface of the ocean to breathe. What is the whale’s elevation?  

+

 

+

feet

",0,0,,,195392 +PSBBRCW,1,Fill-in-the-blank(s),Numeric,"

Use the given key to answer the questions.

+

+

 

+

What number does this diagram represent?

+

+

 

+

",0.025,0.025,,,249213 +PSBBRFG,1,Fill-in-the-blank(s),Numeric,"

Here are diagrams that represent 0.137 and 0.284.

+

 

+

+

 

+

Use the diagram to find the value of 0.137 + 0.284.

+

 

+

",0.421,0.421,,,249667 +PSBBF42,1,Fill-in-the-blank(s),Numeric,"

Han's calculation of 972 ÷ 9 is shown here.

+

 

+

+

 

+

Find 180 · 9.

+

 

+

",1620,1620,,,203679 +PSB3AB,1,Fill-in-the-blank(s),Numeric,"

What is 3÷4?

+

 

+

",4-Mar,4-Mar,,,132213 +PSBB6JQ,3,Fill-in-the-blank(s),Numeric,"

What is the measure of angle MOE?

+

 

+

°

+

 

+

",60,60,,,322590 +PSBBV5S,1,Fill-in-the-blank(s),Numeric,"

Here is a base-ten diagram that represents 1.13. Use the diagram to find 1.13 − 0.46.

+

 

+

+

 

+

+

 

",0.67,0.67,,,275825 +PSBCWN6,3,Fill-in-the-blank(s),Numeric,"

Clare says this diagram can represent 1.5. What does a small square represent for Clare?

+

 

+

+

 

+

",0.1,0.1,,,455078 +PSBD2MD,3,Fill-in-the-blank(s),Numeric,"

Lin says this diagram can represent 2.3. What does a small square represent for Lin?

+

 

+

+

 

+

",0.1,0.1,,,655039 +PSBB8P,1,Fill-in-the-blank(s),Numeric,"

Find the area of the shaded region. All angles are right angles. 

+

 

+

+

 

+

square units

","1,400","1,400",,,10047 +PRABEC2P,1,Fill-in-the-blank(s),Numeric,"

Solve 3(x - 4) = 12x

+

 

+

x =

",-1.333333333,-1.333333333,,,294102 +PSBNB,1,Fill-in-the-blank(s),Numeric,"

A train traveled at a constant speed. The graph shows how far the train traveled, in miles, during a given amount of time, in hours. 

+

 

+

+

 

+

The point (1, m) is on the graph. Find the value of m.

+

 

+

",80,80,,,1449 +PSBJGY,4,Fill-in-the-blank(s),Numeric,"

A textbook has 428 pages numbered in order starting with 1. You flip to a random page in the book in a way that it is equally likely to stop at any of the pages.

+

 

+

If you repeat this experiment 50 times, about how many times do you expect you will turn to an even numbered page?

+

 

+

times

",25,25,,,44396 +PSBQQ6,3,Fill-in-the-blank(s),Numeric,"

On TUESDAY, the mother writes the word on a piece of paper and cuts it up so that each letter is on a separate piece of paper. She mixes up the papers and picks one. What is the probability that she will choose the piece of paper with the letter Y?

+

 

+

",7-Jan,7-Jan,,,71072 +PSBJGY,2,Fill-in-the-blank(s),Numeric,"

A textbook has 428 pages numbered in order starting with 1. You flip to a random page in the book in a way that it is equally likely to stop at any of the pages.

+

 

+

What is the probability that you turn to page 45?

+

 

+

",1/428,1/428,,,44115 +PRABFG48,1,Fill-in-the-blank(s),Numeric,"

Solve the equation.

+

 

+

8x = 23

+

 

+

x =

+

If necessary, express your answer in fraction form.

",24-Feb,24-Feb,,,50042 +PSBBESV,2,Fill-in-the-blank(s),Numeric,"

Solve the equation.

+

 

+

How much does the bottle hold?  

+

 

+

ounces of water

",25,25,,,196111 +PRABFMBU,1,Fill-in-the-blank(s),Numeric,"

Find the quotient.

+

 

+

12 ÷ 2 

+

 

+

",4-Jan,4-Jan,,,407357 +PRABFG5B,1,Fill-in-the-blank(s),Numeric,"

Solve the equation.

+

 

+

14x = 5

+

 

+

x =

+

If necessary, express your answer in fraction form.

",20,20,,,50674 +PRABFMCN,1,Fill-in-the-blank(s),Numeric,"

Find the quotient.

+

 

+

2 ÷ 2

+

 

+

",1,1,,,407583 +PRABFMCP,1,Fill-in-the-blank(s),Numeric,"

Find the quotient.

+

 

+

12 ÷ 12

+
 
+

 

+

",1,1,,,407757 +PRABFMCQ,1,Fill-in-the-blank(s),Numeric,"

Find the quotient.

+

 

+

3879 ÷ 3879

+

 

+

",1,1,,,407929 +PSBUK7,1,Fill-in-the-blank(s),Numeric,"

Use long division to find the quotient. Write your answer as a decimal.

+

 

+

1,988 ÷ 8

+

 

+

",248.5,248.5,,,92835 +PSBBBRT,3,Fill-in-the-blank(s),Numeric,"

Apples cost $1.99 per pound.

+

 

+

Clare spent $5.17 on apples. How many pounds of apples did Clare buy?  

+

 

+

pounds

+

Round your answer to the nearest tenth of a pound.

",2.6,2.6,,,179199 +PRABHR3J,1,Fill-in-the-blank(s),Numeric,"

Use long division to find the value of 1,875÷15.

+

 

+

",125,125,,,262674 +PSBYW,1,Fill-in-the-blank(s),Numeric,"

The two triangles displayed are scaled copies of one another.

+

 

+

+

 

+

Find the scale factor.

+

 

+

","5/2, 2/5","5/2, 2/5",,,3108 +PSBZEG,2,Fill-in-the-blank(s),Numeric,"

When did she start charging her phone?

+

 

+

hours after noon

+

 

+

",8,8,,,121281 +PSBC6Q5,2,Fill-in-the-blank(s),Numeric,"

Here is an equation: 4x4=4x+. What could you write in the blank so the equation would be true for:

+

 

+

All values of x

",-4,-4,,,500624 +PSBCGM8,3,Fill-in-the-blank(s),Numeric,"

What is the slope of the line?

+

 

+

Slope =

",-1,-1,,,381865 +PRABEUA4,1,Fill-in-the-blank(s),Numeric,"

Here is a diagram of a birdhouse Elena is planning to build. (It is a simplified diagram, since in reality, the sides will have a thickness.) About how many square inches of wood does she need to build this birdhouse?

+

 

+

+

 

+

 

+

square inches

",286,286,,,53415 +PSB6V2,1,Fill-in-the-blank(s),Numeric,"

The graph represents the average price of regular gasoline in the United States in dollars as a function of the number of months after January 2014.

+

 

+

+

 

+

How many months after January 2014 was the price of gas the greatest?  

+

 

+

months

",5,5,,,152409 +PSBCHP9,1,Fill-in-the-blank(s),Numeric,"

Solve the equation.

+

 

+

3(x  5) = 6

+

 

+

x=

",7,7,,,387531 +PRABHUKK,1,Fill-in-the-blank(s),Numeric,"

Solve the equation.

+

 

+

x - 5(x - 1) = x - (2x - 3)

+

 

+

x=

",3-Feb,3-Feb,,,191140 +PSBB7SQ,2,Fill-in-the-blank(s),Numeric,"

What is the solution to the equation?

+

 

+

y =

",-5.909090909,-5.909090909,,,330016 +PSB6YG,2,Fill-in-the-blank(s),Numeric,"

Solve the system of equations to find the number of bicycles in the store.

+

 

+

bicycles

",178,178,,,153081 +PRABJWEF,1,Fill-in-the-blank(s),Numeric,"

Imagine that you measure the length and width of a rectangle and you know the measurements are accurate within 5% of the actual measurements. If you use your measurements to find the area, what is the maximum percent error for the area of the rectangle?

+

 

+

%

",10.25,10.25,,,123066 +PSBZEG,3,Fill-in-the-blank(s),Numeric,"

While she was using her phone, at what rate was Lin’s phone battery dying?

+

 

+

% per hour

+

 

+

",30,30,,,121482 +PSBCGM8,1,Fill-in-the-blank(s),Numeric,"

A length of ribbon is cut into two pieces to use in a craft project. The graph shows the length of the second piece, x, for each length of the first piece, y.

+

 

+

+

 

+

How long is the ribbon?

+

 

+

feet

",15,15,,,381490 +PSBWF3,4,Fill-in-the-blank(s),Numeric,"

If this pattern continues, what should be the value of 5-1?

+

 

+

",5-Jan,5-Jan,,,104560 +PSBDV4,2,Fill-in-the-blank(s),Numeric,"

Lin’s family needs to travel 325 miles to reach her grandmother’s house.  

+

 

+

How far have they traveled when they have completed 72% of the trip’s distance?  

+

 

+

miles

",234,234,,,19578 +PSBDV4,3,Fill-in-the-blank(s),Numeric,"

Lin’s family needs to travel 325 miles to reach her grandmother’s house.  

+

 

+

At 377 miles, what percentage of the trip’s distance have they completed?  

+

 

+

%

",116,116,,,19738 +PSBBMNM,2,Fill-in-the-blank(s),Numeric,"

Compute the volume of the prism when d = 1.

+

 

+

cubic units

+

 

+

",4,4,,,228973 +PRABFJWS,1,Fill-in-the-blank(s),Numeric,"

Find the quotient.

+

 

+

0.024 ÷ 0.015

+

 

+

",1.6,1.6,,,136828 +PRABFKGS,1,Fill-in-the-blank(s),Numeric,"

Find the value of the expression mentally.

+

 

+

3.5  40 + 3.5  60

+

 

+

",350,350,,,94031 +PRABGKQZ,1,Fill-in-the-blank(s),Numeric,"

Find the quotient.

+

 

+

0.024 ÷ 0.15

+

 

+

",0.16,0.16,,,137139 +PRABGKQ2,1,Fill-in-the-blank(s),Numeric,"

Find the quotient.

+

 

+

24 ÷ 15

+

 

+

",1.6,1.6,,,137305 +PSBBMNM,1,Fill-in-the-blank(s),Algebraic Expression,"

Consider a rectangular prism with length 4 and width and height d.

+

 

+

+

 

+

 

+

Find an expression for the volume of the prism in terms of d.

+

 

+

","d x 4 x d, d x d x 4, dd4, d4d, 4d^2, 4 x d x d, 4dd","d x 4 x d, d x d x 4, dd4, d4d, 4d^2, 4 x d x d, 4dd",,,228800 +PSBBTPJ,1,Fill-in-the-blank(s),Numeric,"

Lin ran 29 meters in 10 seconds. She ran at a constant speed.  

+

 

+

How far did Lin run every second?

+

 

+

meters

",2.9,2.9,,,261537 +PSBBSCK,5,Fill-in-the-blank(s),Numeric,"

Evaluate the expression.

+

 

+

51 - 0.07

+

 

+

",50.93,50.93,,,254716 +PRABFKEU,1,Fill-in-the-blank(s),Numeric,"

Find the quotient.

+

 

+

17÷18

+

 

+

",7-Aug,7-Aug,,,416720 +PSBCPMQ,3,Fill-in-the-blank(s),Numeric,"

What is the greatest common factor of 42 and 50?

+

 

+

",2,2,,,414817 +PRABFKCS,1,Fill-in-the-blank(s),Numeric,"

Solve the equation.

+

 

+

2e = 6.4

+

 

+

e =

",3.2,3.2,,,64813 +PSBB8WU,1,Fill-in-the-blank(s),Numeric," + + + + + + +
+

What is the area of this square, in square units?

+

 

+

square units

+
",10,10,,,336859 +PRABFKE3,1,Fill-in-the-blank(s),Numeric,"

Find the quotient.

+

 

+

110÷10

+

 

+

",1/100,1/100,,,417173 +PSBCPMQ,2,Fill-in-the-blank(s),Numeric,"

What is the greatest common factor of 42 and 15?

+

 

+

",3,3,,,414639 +PRABFKGR,1,Fill-in-the-blank(s),Numeric,"

Find the value of the expression mentally.

+

 

+

12 · 37 - 12 · 7

+

 

+

",15,15,,,93868 +PSBCPMQ,1,Fill-in-the-blank(s),Exact Match,"

List all the factors of 42.

+

 

+

List your answer in a numerical ordered list separated by commas and without extra spaces.

+

For example: 1,2,3

+

 

+

","1,2,3,6,7,14,21,42","1,2,3,6,7,14,21,42",,,414444 +PSBDPRR,1,Fill-in-the-blank(s),Exact Match,"

List all multiples of 10 up to 100.

+

 

+

List your answers in a list separated by commas and without extra spaces.

+

For example: 1,2,3,4,5

+

 

+

","10,20,30,40,50,60,70,80,90,100","10,20,30,40,50,60,70,80,90,100",,,591850 +PSBDPRR,2,Fill-in-the-blank(s),Exact Match,"

List all multiples of 15 up to 100.

+

 

+

List your answers in a list separated by commas and without extra spaces.

+

For example: 1,2,3,4,5

+

 

+

","15,30,45,60,75,90","15,30,45,60,75,90",,,592027 +PRABFKGT,1,Fill-in-the-blank(s),Numeric,"

Find the value of the expression mentally.

+

 

+

999  5

+

 

+

",4995,4995,,,94199 +PSBH52,2,Fill-in-the-blank(s),Numeric,"

Ammonia boils at -35.5°C. What is the boiling point of ammonia in K?

+

 

+

K

",237.65,237.65,,,42486 +PSBBSCK,3,Fill-in-the-blank(s),Numeric,"

Evaluate the expression.

+

 

+

11.26 + 5.34

+

 

+

","16.6, 16.60","16.6, 16.60",,,254457 +PSBBSCK,1,Fill-in-the-blank(s),Numeric,"

Evaluate the expression.

+

 

+

16 - 2.2

+
 
+

 

+

",13.8,13.8,,,254190 +PSBBSCK,2,Fill-in-the-blank(s),Numeric,"

Evaluate the expression.

+

 

+

3 - 0.26

+
 
+

 

+

",2.74,2.74,,,254319 +PSBJTA,1,Fill-in-the-blank(s),Numeric,"

Suppose that there are 20 numbers in a data set and that they are all different.

+

 

+

How many of the values in this data set are between the first quartile and the third quartile?

+

 

+

",10,10,,,45665 +PSBCMTY,2,Fill-in-the-blank(s),Numeric,"

Evaluate the expression 4x3 for the given value of x. 

+

 

+

x = 2

+

 

+

",32,32,,,404343 +PSBCMTY,1,Fill-in-the-blank(s),Numeric,"

Evaluate the expression 4x3 for the given value of x. 

+

 

+

x = 1

+

 

+

",4,4,,,404191 +PSBCMTY,3,Fill-in-the-blank(s),Numeric,"

Evaluate the expression 4x3 for the given value of x. 

+

 

+

x = 12

+

 

+

",0.5,0.5,,,404451 +PSBXZW,1,Fill-in-the-blank(s),Algebraic Expression,"

Two months ago, the price, in dollars, of a cell phone was c.

+

 

+

Last month, the price of the phone increased by 10%. Write an expression for the price of the phone last month. 

+

 

+

+

Use c as your variable

+

 

",1.1c,1.1c,,,113440 +PSBXZW,2,Fill-in-the-blank(s),Algebraic Expression,"

This month, the price of the phone decreased by 10%. Write an expression for the price of the phone this month.

+

 

+

+

Use c as your variable.

+

 

",0.9c,0.9c,,,113646 +PRABMSS2,1,Fill-in-the-blank(s),Numeric,"

Edge lengths are given in units. Find the surface area in square units.  

+

 

+

square units

+

 

+

",408,408,,,156219 +PRABMSS3,1,Fill-in-the-blank(s),Numeric,"

Edge lengths are given in units. Find the surface area in square units.

+

 

+

 square units

+

 

+

",274,274,,,156411 +PRABMSS7,1,Fill-in-the-blank(s),Numeric,"

Edge lengths are given in units. Find the surface area in square units.  

+

 

+

square units

+

",216,216,,,151997 +PSBBK68,3,Fill-in-the-blank(s),Numeric,"

Here are the prices for different amounts of plastic liner. How much will all the plastic liner for the pool cost?

+

 

+

$

+

 

+ + + + + + + + + + + + + + + + + + + +
plastic liner (ft2)cost ($)
253.75
507.50
7511.25
+

 

",44.75,44.75,,,226658 +PSBYCZ,5,Fill-in-the-blank(s),Algebraic Expression,"

Write an expression for the volume.

+

 

+

+

 

+

Use the ^ symbol to represent an exponent. 

+

For example: 52 should be typed as 5^2

",s^3,s^3,,,115789 +PSBYCZ,4,Fill-in-the-blank(s),Algebraic Expression,"

Write an expression for the surface area.

+

 

+

+

 

+

Use the ^ symbol to represent an exponent. 

+

 For example: 52 should be typed as 5^2

",6s^2,6s^2,,,115625 +PSBYCZ,2,Fill-in-the-blank(s),Algebraic Expression,"

Write an expression for the area of each face.

+

 

+

+

 

+

Use the ^ symbol to represent an exponent. 

+

 For example: 52 should be typed as 5^2

",s^2,s^2,,,115417 +PRABHQG9,1,Fill-in-the-blank(s),Numeric,"

It takes Jada 20 minutes to walk to school. It takes Andre 80% as long to walk to school. How long does it take Andre to walk to school?

+

 

+

minutes

",16,16,,,418297 +PSBCEKU,1,Fill-in-the-blank(s),Numeric,"

How long is 50% of 60 minutes?

+

 

+

minutes

",30,30,,,370230 +PSBDPP7,1,Fill-in-the-blank(s),Numeric,"

Solve the equation.

+

 

+

3y - 69 = 4 - 2y-3

+

 

+

y =

",2,2,,,592014 +PRABKC8H,1,Fill-in-the-blank(s),Numeric,"

Write (5.64) · 10-7 as a decimal.

+

 

+

",0.000000564,0.000000564,,,238057 +PRABET34,1,Fill-in-the-blank(s),Numeric,"

A small town had a population of 960 people last year. The population grew to 1200 people this year. By what percentage did the population grow?   %

+

 

+

",25,25,,,389538 +PRABET36,1,Fill-in-the-blank(s),Numeric,"

The gas tank of a truck holds 30 gallons. The gas tank of a passenger car holds 50% less. How many gallons does it hold?

+

 

+

gallons

+

 

+

",15,15,,,389890 +PRABEUAJ,1,Fill-in-the-blank(s),Numeric,"

Angles A and C are supplementary. Find the measure of angle C.

+

 

+

+

 

+

mC = °

",106,106,,,598936 +PRABG43H,1,Fill-in-the-blank(s),Numeric,"

Angle SPR and angle RPQ are complementary. Find the measure of angle RPQ.

+

 

+

+

 

+

mRPQ = °

",53,53,,,351786 +PRABEPPR,1,Fill-in-the-blank(s),Numeric,"

The points (12, 23) and (14, 45) lie on a line. What is the slope of the line?

+

 

+

",11,11,,,412814 +PSBB6KY,2,Fill-in-the-blank(s),Numeric,"

Find the area of the triangle.  (The side length of each square on the grid is 1 unit.)

+

 

+

+

 

+

square units

",22.5,22.5,,,323003 +PRABFB66,1,Fill-in-the-blank(s),Numeric,"

Solve the problem. If you get stuck, consider using the double number lines.

+

 

+

Yesterday, Priya successfully made 12 free throws. Today, she made 150% as many. How many successful free throws did Priya make today?

+

 

+

free throws

+

 

+

 

+

+

 

+

 

",18,18,,,324952 +PRABD46C,1,Fill-in-the-blank(s),Numeric,"

Triangle DEF is a right triangle, and the measure of angle D is 28°. What are the measures of the other two angles? 

+

 

+

° and °

","90, 62","90, 62",,,8680 +PSB6SM,3,Fill-in-the-blank(s),Numeric,"

Three cones have a volume of 192π cm3. Cone A has a radius of 2 cm. Cone B has a radius of 3 cm. Cone C has a radius of 4 cm.

+

 

+

Find the height of each cone C.

+

 

+

cm

",36,36,,,152166 +PSBBK96,2,Fill-in-the-blank(s),Numeric,"

What is the area of the base you shaded?

+

 

+

square units

+

 

+

",26,26,,,227110 +PSBBK96,3,Fill-in-the-blank(s),Numeric,"

What is the volume of the trapezoidal prism below?

+

 

+

cubic units

+

 

+

",312,312,,,227295 +PRABKCY4,1,Fill-in-the-blank(s),Algebraic Expression,"

Recall that the volume of a sphere is given by the formula V=43πr3.

+

 

+

+

 

+

Here is a sphere with radius 4 feet. What is the volume of the sphere? Express your answer in terms of π.

+

 

+

cubic feet

+

Use pi to represent the symbol.  For example: 32π would be typed as 32pi

",256/3pi,256/3pi,,,125684 +PRABKCY5,1,Fill-in-the-blank(s),Numeric,"

Recall that the volume of a sphere is given by the formula V=43πr3.

+

 

+

A spherical balloon has a diameter of 4 feet. Approximate how many cubic feet of air this balloon holds. Use 3.14 as an approximation for π, and give a numerical answer.

+

 

+

cubic feet

+

Round your answer to the hundredths place.

",33.49,33.49,,,125853 +PSB6SM,1,Fill-in-the-blank(s),Numeric,"

Three cones have a volume of 192π cm3. Cone A has a radius of 2 cm. Cone B has a radius of 3 cm. Cone C has a radius of 4 cm.

+

 

+

Find the height of each cone A.

+

 

+

cm

",144,144,,,151827 +PSBCCRU,2,Fill-in-the-blank(s),Numeric,"

Every animal has two parents. Each of its parents also has two parents.

+

 

+

We say that the animal’s eight great-grandparents are “three generations back” from the animal. At which generation back would an animal have 262,144 ancestors?

+

 

+

generations

",18,18,,,359589 +PSB6SM,2,Fill-in-the-blank(s),Numeric,"

Three cones have a volume of 192π cm3. Cone A has a radius of 2 cm. Cone B has a radius of 3 cm. Cone C has a radius of 4 cm.

+

 

+

Find the height of each cone B.

+

 

+

cm

",64,64,,,151987 +PRABEPM2,1,Fill-in-the-blank(s),Algebraic Expression,"

Write the exact value of the side length, in units, of a square whose area in square units is  0.11.

+

 

+

units

+

 

+

Type your answer in the following format:

+

sqrt(7) for 7 or 12sqrt(7) for 127 

",sqrt(0.11),sqrt(0.11),,,424081 +PRABEPM4,1,Fill-in-the-blank(s),Numeric,"

Find the area of a square if its side length is 15 cm.

+

 

+

square centimeter

",25-Jan,25-Jan,,,424251 +PRABKAHJ,1,Fill-in-the-blank(s),Numeric,"

What is the volume of a giant cube that measures 10,000 km on each side?

+

 

+

km3

",1E+12,1E+12,,,58527 +PSBBWD2,4,Fill-in-the-blank(s),Algebraic Expression,"

Find the length of a side of a square if its area is m2 square units.

+

 

+

units

",m,m,,,277212 +PSBB6KY,4,Fill-in-the-blank(s),Numeric,"

Find the area of the triangle.  (The side length of each square on the grid is 1 unit.)

+

 

+

+

 

+

square units

",44,44,,,323128 +PSBS5V,2,Fill-in-the-blank(s),Algebraic Expression,"

Write a second equation whose graph goes through (0, 2) so that the system has no solutions.

+

 

+

y=

+

Use x as your variable.

",3/2x+2,3/2x+2,,,84475 +PSBS5V,3,Fill-in-the-blank(s),Algebraic Expression,"

Write a second equation whose graph goes through (2, 2) so that the system has one solution at (4, 3).

+

 

+

y=

+

Use x as your variable.

",1/2x+1,1/2x+1,,,84651 +PRABEPAU,1,Fill-in-the-blank(s),Algebraic Expression,"

Write an equation for the line that passes through (-8.5,11) and (5,-2.5).

+

 

+

y=

+

Use x as your variable.

",#NAME?,#NAME?,,,18775 +PRABEQ3S,1,Order / Sort,Ordering,

Order the following expressions from least to greatest.

,"0.025 ÷ 1, 25 ÷ 10, 250,000 ÷ 1,000, 2.5 ÷ 1,000","0.025 ÷ 1, 25 ÷ 10, 250,000 ÷ 1,000, 2.5 ÷ 1,000",,,10115 +PSBB6KY,6,Fill-in-the-blank(s),Numeric,"

Find the area of the triangle.  (The side length of each square on the grid is 1 unit.)

+

 

+

+

 

+

square units

",36,36,,,323266 +PSBB6KY,8,Fill-in-the-blank(s),Numeric,"

Find the area of the triangle.  (The side length of each square on the grid is 1 unit.)

+

 

+

+

 

+

square units

",33,33,,,323410 +PRABTTCT,1,Fill-in-the-blank(s),Numeric,"

Solve the equation below.

+

 

+

8v=-18

+

 

+

v =

",-2.25,-2.25,,,179341 +PRABTTCS,1,Fill-in-the-blank(s),Numeric,"

Solve the equation below.

+

 

+

98+u=37

+

 

+

u =

",-61,-61,,,179212 +PSBBBRT,2,Fill-in-the-blank(s),Algebraic Expression,"

Apples cost $1.99 per pound.

+

 

+

How much do x pounds of apples cost?  

+

 

+

$

",1.99x,1.99x,,,178978 +PSBCNEW,3,Fill-in-the-blank(s),Numeric,"

Students did push-ups for a fitness test. Their goal was 20 push-ups. For the student, determine what percentage of the goal they achieved.

+

 

+

Lin did 13 push-ups.  

+

 

+

%

",65,65,,,407421 +PSBX7V,2,Fill-in-the-blank(s),Numeric,"

Teachers held a basketball shooting contest. Their goal was to make 60 baskets. For the teacher, determine what percentage of the goal they achieved.

+

 

+

Teacher B made 42 baskets.  

+

 

+

 %

",70,70,,,114762 +PSBCNEW,1,Fill-in-the-blank(s),Numeric,"

Students did push-ups for a fitness test. Their goal was 20 push-ups. For the student, determine what percentage of the goal they achieved.

+

 

+

Elena did 16 push-ups.  

+

 

+

%

",80,80,,,407150 +PSBCNEW,4,Fill-in-the-blank(s),Numeric,"

Students did push-ups for a fitness test. Their goal was 20 push-ups. For the student, determine what percentage of the goal they achieved.

+

 

+

Andre did 21 push-ups.  

+

 

+

%

",105,105,,,407530 +PSBDBNU,2,Fill-in-the-blank(s),Numeric,"

Ten students each attempted 10 free throws. This list shows how many free throws each student made.

+

 

+
8, 5, 6, 6, 4, 9, 7, 6, 5, 9
+
 
+

What is the IQR (interquartile range)?

+

 

+

free throws

",3,3,,,528780 +PRABEU7D,1,Fill-in-the-blank(s),Numeric,"

A school is selling candles for a fundraiser. They keep 40% of the total sales as their commission, and they pay the rest to the candle company.

+
+

 

+ + + + + + + + + + + + + + + + + + + +
price of candlenumber of candles sold
small candle: $1168
medium candle: $1845
large candle: $2521
+

 

+

How much money must the school pay to the candle company? 

+

 

+

$

+
",1249.8,1249.8,,,101005 +PSBBFST,1,Fill-in-the-blank(s),Numeric,"

Find the area of the parallelogram.

+

 

+

+

 

+

square units

",21,21,,,201855 +PRABMPB4,1,Fill-in-the-blank(s),Numeric,"

Solve the equation mentally.

+

 

+

x · 111 = 1

+

 

+

",11,11,,,510935 +PSBDUT,2,Fill-in-the-blank(s),Numeric,"

Find the perimeter of the polygon.

+

 

+

units

",22,22,,,19594 +PSBBBRT,1,Fill-in-the-blank(s),Numeric,"

Apples cost $1.99 per pound.

+

 

+

How much do 3.25 pounds of apples cost?

+

 

+

$

+

Round your answer to the nearest cent.

",6.47,6.47,,,178727 +PSBDWUR,1,Fill-in-the-blank(s),Numeric,"

How many different outcomes are in the sample space? You do not need to write out the actual options, just provide the number and your reasoning.

+

 

+

A letter of the English alphabet is followed by a digit from 0 to 9.

+

 

+

",260,260,,,632697 +PSBDWWG,1,Fill-in-the-blank(s),Numeric,"

How many different outcomes are in the sample space? You do not need to write out the actual options, just provide the number and your reasoning.

+

 

+

A baseball team’s cap is selected from 3 different colors, 2 different clasps, and 4 different locations for the team logo. A decision is made to include or not to include reflective piping.

+

 

+

",48,48,,,633159 +PSBDWYK,1,Fill-in-the-blank(s),Numeric,"

How many different outcomes are in the sample space? You do not need to write out the actual options, just provide the number and your reasoning.

+

 

+

A locker combination like 7-23-11 uses three numbers, each from 1 to 40.  Numbers can be used more than once, like 7-23-7. 

+

 

+

",64000,64000,,,633512 +PSBWF3,2,Fill-in-the-blank(s),Numeric,"

If this pattern continues, what should be the value of 50?

+

 

+

",1,1,,,104232 +PSBG9Y,3,Fill-in-the-blank(s),Numeric,"

A librarian is curious about the habits of the library's patrons. He records the type of item that the first 10 patrons check out from the library.

+

 

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
patronitem type
1fiction book
2non-fiction book
3fiction book
4fiction book
5audiobook
6non-fiction book
7DVD
8non-fiction book
9fiction book
10DVD
+

 

+

Based on the information from these patrons, estimate the number of DVDs that will be checked out for every 100 patrons. 

+

 

+

DVDs

",20,20,,,37832 +PSBWMQ,2,Fill-in-the-blank(s),Numeric,"

Tyler wonders what proportion of students at his school would dye their hair blue if their parents would let them. He surveyed a random sample of 10 students at his school, and 2 of them said they would. Kiran didn’t think Tyler’s estimate was very accurate, so he surveyed a random sample of 100 students, and 17 of them said they would.

+

 

+

Based on Kiran's sample, what proportion of the students would dye their hair blue?

+

 

+

",17/100,17/100,,,105229 +PSBC55V,1,Fill-in-the-blank(s),Numeric,"

A stadium can seat 16,000 people at full capacity.  

+

 

+

If there are 13,920 people in the stadium, what percentage of the capacity is filled? 

+

 

+

%

",87,87,,,497385 +PSBC55V,3,Fill-in-the-blank(s),Numeric,"

What percentage of the capacity is not filled?

+

 

+

%

",13,13,,,497698 +PRABEPMF,1,Fill-in-the-blank(s),Algebraic Expression,"

Write the exact value of the side length, in units, of a square whose area in square units is 25.

+

 

+

units

+

If necessary type your answer in the following format:

+

sqrt(7) for 7 or 12sqrt(7) for 127 

",sqrt(2/5),sqrt(2/5),,,423768 +PSBBWD2,2,Fill-in-the-blank(s),Numeric,"

Find the length of a side of a square if its area is 425 square centimeters.

+

 

+

cm

",5-Feb,5-Feb,,,276874 +PRABESH7,1,Fill-in-the-blank(s),Exact Match,"

Write the decimal as a fraction.

+
+

 

+

0.81

+

 

+
+

",10-Sep,10-Sep,,,355769 +PSBCBW4,3,Fill-in-the-blank(s),Exact Match,"

Write 1720 as a decimal.

+

 

+

",".85, 0.85",".85, 0.85",,,354272 +PRABEQMH,1,Fill-in-the-blank(s),Numeric,"

Write an equivalent expression that doesn’t use a cube root symbol.

+
+

 

+

 13

+
+
 
+

 

+

",1,1,,,331279 +PSBCMS,1,Fill-in-the-blank(s),Numeric,"

Evaluate:

+

 

+

123

+

 

+

",8-Jan,8-Jan,,,12211 +PSBCJK,1,Fill-in-the-blank(s),Numeric,"

In 2015, there were roughly 1 × 106 high school football players and 2 × 103professional football players in the United States. About how many times more high school football players are there? 

+

 

+

times more high school football players

",500,500,,,11875 +PRABEQDP,1,Fill-in-the-blank(s),Algebraic Expression,"

Write an equation for the graph.

+

 

+

+

 

+

y=

+

Use x as your variable.

",2x+1.5,2x+1.5,,,2034 +PRABEQMM,1,Fill-in-the-blank(s),Numeric,"

Write an equivalent expression that doesn’t use a cube root symbol.

+
+

 

+

1643

+
+
 
+

 

+

",4-Jan,4-Jan,,,331773 +PRABEQ7S,1,Fill-in-the-blank(s),Numeric,"

A standard city block in Manhattan is a rectangle measuring 80 m by 270 m. A resident wants to get from one corner of a block to the opposite corner of a block that contains a park. She wonders about the difference between cutting across the diagonal through the park compared to going around the park, along the streets.

+

 

+

How much shorter would her walk be going through the park? Round your answer to the nearest meter.

+

 

+

meters

",68,68,,,162829 +PRABEQMJ,1,Fill-in-the-blank(s),Numeric,"

Write an equivalent expression that doesn’t use a cube root symbol.

+
+

 

+

2163

+
+
 
+

 

+

",6,6,,,331447 +PRABEQMK,1,Fill-in-the-blank(s),Numeric,"

Write an equivalent expression that doesn’t use a cube root symbol.

+
+

 

+

80003

+
+
 
+

 

+

",20,20,,,331613 +PRABESH6,1,Fill-in-the-blank(s),Exact Match,"

Write the fraction as a decimal.

+
+

 

+

2310

+
+

 

+

",2.3,2.3,,,355634 +PRABEQMU,1,Fill-in-the-blank(s),Numeric,"

Write an equivalent expression that doesn’t use a cube root symbol.

+
+

 

+

0.0273

+
+
 
+

 

+

",0.3,0.3,,,332084 +PRABESH5,1,Fill-in-the-blank(s),Exact Match,"

Write the fraction as a decimal.

+
+

 

+

 916

+
+

 

+

",".75, 0.75",".75, 0.75",,,355425 +PRABEQMV,1,Fill-in-the-blank(s),Numeric,"

Write an equivalent expression that doesn’t use a cube root symbol.

+
+

 

+

0.0001253

+
+
 
+

 

+

",0.05,0.05,,,332235 +PRABEQ4D,1,Fill-in-the-blank(s),Numeric,"
+
+
+

Find the positive solution to t3=216. If the solution is irrational, write the solution using cube root notation.

+

 

+

t=

+
+
+
+
+
+

If needed, type your answer in the following format:

+

sqrt(7) for 73v or 12sqrt(7) for 1273 

+
+
",6,6,,,161350 +PRABEQMT,1,Fill-in-the-blank(s),Numeric,"

Write an equivalent expression that doesn’t use a cube root symbol.

+
+

 

+

271253

+
+
 
+

 

+

",5-Mar,5-Mar,,,331947 +PRABESH9,1,Fill-in-the-blank(s),Numeric,"

Write the decimal as a fraction.

+
+

 

+

0.04

+
+

 

+

",5-Jan,5-Jan,,,356075 +PRABESH8,1,Fill-in-the-blank(s),Exact Match,"

Write the decimal as a fraction.

+
+

 

+

0.0276

+
+

 

+

",276/10000,276/10000,,,355920 +PRABESH4,1,Fill-in-the-blank(s),Exact Match,"

Write the fraction as a decimal.

+
+

 

+

99100

+
+

 

+

","0.99, .99","0.99, .99",,,355272 +PSB96F,7,Fill-in-the-blank(s),Numeric,"

+

 

+ + + + + + + + + + + +
For how many cars does the prediction made by the model in Diagram A differ by more than $3,000? cars
What about the model in Diagram B?cars
+

 

","4, 6","4, 6",,,170280 +PRABEQAW,1,Fill-in-the-blank(s),Numeric,"
+
+
+

a and b represent the length of a leg of a right triangle, and c represents the length of its hypotenuse. Find the missing length, given the other two lengths.

+

 

+

a=?, b=21c=29

+

 

+

a=

+
+
+
",20,20,,,8050 +PRABGZFY,1,Fill-in-the-blank(s),Numeric,"

The area of a square is 64 sq cm. What is its side length?  

+

 

+

centimeters

",8,8,,,48302 +PSBDHZF,4,Fill-in-the-blank(s),Numeric,"

A recipe uses 5 cups of flour for every 2 cups of sugar.

+

 

+

How much sugar is used with 6 cups of flour?  

+

 

+

cups

",2.4,2.4,,,564997 +PSBR5G,2,Fill-in-the-blank(s),Numeric,"

What is the area of each square?

+

 

+

 

+

square units

",100,100,,,78619 +PSBCDYX,3,Fill-in-the-blank(s),Numeric,"

Solve the equation you wrote.

+

 

+

x =

",7.8,7.8,,,366764 +PSBMSN,3,Fill-in-the-blank(s),Numeric,"

Solve the equation you wrote.

+

 

+

x =

",11.6,11.6,,,56163 +PSBC2CF,1,Fill-in-the-blank(s),Numeric,"

In this net, the two triangles are right triangles. All quadrilaterals are rectangles. What is its surface area in square units? 

+

 

+

+

 

+

 

+

square units

",168,168,,,475491 +PSBBQN7,3,Fill-in-the-blank(s),Numeric,"

The discounted price of a hat is $18. What is the regular price? 

+

 

+

$

",22.5,22.5,,,245546 +PSBGS5,2,Fill-in-the-blank(s),Numeric,"

A tugboat traveled -1.5 miles in 0.3 hours. What was its velocity?

+

 

+

miles per hour

",-5,-5,,,35010 +PRABETRY,1,Fill-in-the-blank(s),Numeric,"

A cookie recipe uses 3 cups of flour to make 15 cookies. How many cookies can you make with this recipe with 4 cups of flour? (Assume you have enough of the other ingredients.)

+

 

+

cookies

+

 

",20,20,,,37332 +PSBG5F,1,Fill-in-the-blank(s),Numeric,"

A submarine is only allowed to change its depth by rising toward the surface in 60-meter stages. It starts off at -340 meters.

+

 

+

At what depth is it after 1 stage?

+

 

+

meters

",-280,-280,,,36149 +PSBG5F,2,Fill-in-the-blank(s),Numeric,"

At what depth is it after 2 stages?  

+

 

+

meters

",-220,-220,,,36440 +PSBG5F,3,Fill-in-the-blank(s),Numeric,"

At what depth is it after 4 stages?

+

 

+

meters

",-100,-100,,,36700 +PSBG5F,4,Fill-in-the-blank(s),Numeric,"

A submarine is only allowed to change its depth by rising toward the surface in 60-meter stages. It starts off at -340 meters.

+

 

+

How many stages will it take to return to the surface?

+

 

+

stages of change

",6,6,,,36971 +PSBB2XW,2,Fill-in-the-blank(s),Numeric,"

A runner ran 23 of a 5-kilometer race in 21 minutes. They ran the entire race at a constant speed.

+

 

+

How many minutes did it take to run 1 kilometer?

+

 

+

minutes

",6.3,6.3,,,303033 +PRABEFVX,1,Fill-in-the-blank(s),Numeric,"

A cylinder has volume 45π and radius 3. What is its height?

+

 

+

units

",5,5,,,17475 +PSB5E8,2,Fill-in-the-blank(s),Numeric,"

Find the surface area of this polyhedron. 

+

 

+

square units

+

 

+

",72,72,,,144713 +PSBBN6Q,2,Fill-in-the-blank(s),Numeric,"

Find the distance between and D.  

+

 

+

 units

",5,5,,,238060 +PSBH83,2,Fill-in-the-blank(s),Algebraic Expression,"

Write the equation of the line.

+

 

+

y=

+

Use x as your variable.

",(-2/3)x-3,(-2/3)x-3,,,43045 +PRABD3CT,1,Fill-in-the-blank(s),Numeric,"

Point A has coordinates (3, 4). After a translation 4 units left, a reflection across the x-axis, and a translation 2 units down, what are the coordinates of the image?

+

 

+

(,)

","-6, -1","-6, -1",,,351892 +PSBBSYB,2,Fill-in-the-blank(s),Numeric,"

If not, write it in scientific notation.

+

 

+

×10

","6, 3.6","6, 3.6",,,257604 +PSBBBZ6,2,Fill-in-the-blank(s),Numeric,"

Find the value after the change.

+

 

+

 

+

$

",18.08,18.08,,,180669 +PSBBK7H,2,Fill-in-the-blank(s),Numeric,"

Solve the system. 

+

 

+

(,)

+

 

+

 

","-6, 4","-6, 4",,,226545 +PSBBSWV,2,Fill-in-the-blank(s),Numeric,"

If not, write it in scientific notation.

+

 

+

×10

","-4, 9.9","-4, 9.9",,,257352 +PSBBSVC,2,Fill-in-the-blank(s),Numeric,"

If not, write it in scientific notation.

+

 

+

×10

","4, 4.82","4, 4.82",,,257097 +PRABEQMD,1,Fill-in-the-blank(s),"Algebraic Expression, Numeric","

What is the volume of a cube with a side length of s units?

+

 

+

 cubic units

+

 

+

Use s as your variable.

","3, s","3, s",,,330621 +PRABEGKP,1,Fill-in-the-blank(s),Numeric,"

Solve: y=6x-8y=-3x+10

+

 

+

(,)

","4, 2","4, 2",,,227799 +PSBBUFM,1,Fill-in-the-blank(s),Numeric,"

Find the area of the shaded region in square units.

+

 

+

+

 

+

square units

",40,40,,,266614 +PSBCTHE,3,Fill-in-the-blank(s),Numeric,"

There are 3 cats in a room and no other creatures. Each cat has 2 ears, 4 paws, and 1 tail.

+

 

+

+

 

+

 

+

 

+

Complete each statement:

+

 

+

There are paws for every tail.

+

There are paws for every ear.

","2, 4","2, 4",,,437233 +PSBCTHE,3,Fill-in-the-blank(s),Numeric,"

There are 3 cats in a room and no other creatures. Each cat has 2 ears, 4 paws, and 1 tail.

+

 

+

+

 

+

 

+

 

+

Complete each statement:

+

 

+

There are paws for every tail.

+

There are paws for every ear.

","2, 4","2, 4",,,437233 +PSBCTHE,3,Fill-in-the-blank(s),Numeric,"

There are 3 cats in a room and no other creatures. Each cat has 2 ears, 4 paws, and 1 tail.

+

 

+

+

 

+

 

+

 

+

Complete each statement:

+

 

+

There are paws for every tail.

+

There are paws for every ear.

","2, 4","2, 4",,,437233 +PSBCTHE,3,Fill-in-the-blank(s),Numeric,"

There are 3 cats in a room and no other creatures. Each cat has 2 ears, 4 paws, and 1 tail.

+

 

+

+

 

+

 

+

 

+

Complete each statement:

+

 

+

There are paws for every tail.

+

There are paws for every ear.

","4, 2","4, 2",,,437233 +PRABE6XQ,1,Fill-in-the-blank(s),Numeric,"

A square has side length 4 cm. What is its area?

+

 

+

square centimeters

",16,16,,,247357 +PSBR5G,3,Fill-in-the-blank(s),Numeric,"

Use the squares to help you find 40 ⋅ 20.

+

 

+

 

+

",800,800,,,78754 +PSB3DP,2,Fill-in-the-blank(s),Numeric,"

Neon bracelets cost $1 for 4.

+

 

+

At this rate, how much will 11 neon bracelets cost? 

+

 

+

$

",2.75,2.75,,,132877 +PSBNJ6,2,Fill-in-the-blank(s),Numeric,"

What is the volume of this cube?

+

 

+

+

 

+

cubic units

",27,27,,,60349 +PRABHNBP,1,Fill-in-the-blank(s),Numeric,"

In a sprint to the finish, a professional cyclist travels 380 meters in 20 seconds. At that rate, how far does the cyclist travel in 3 seconds?

+

 

+

meters

",57,57,,,306784 +PSBBMCP,1,Fill-in-the-blank(s),Numeric,"

Find the area of this polygon.

+

 

+

 

+

+

 

+

 

+

square units

",33,33,,,227577 +PSB5M9,1,Fill-in-the-blank(s),Numeric,"

Find the area of the shaded region. 

+

 

+

 

+

+

 

+

 

+

square centimeters

",31,31,,,145962 +PSBSB6,1,Fill-in-the-blank(s),Numeric,"

Twelve cubes are stacked to make this figure.

+

 

+

+

 

+

What is its surface area?

+

 

+

square units

",36,36,,,79708 +PSBBUFM,1,Fill-in-the-blank(s),Numeric,"

Find the area of the shaded region in square units.

+

 

+

+

 

+

square units

",40,40,,,266614 +PSBBVH2,1,Fill-in-the-blank(s),Numeric,"

A rectangular prism is 4 units high, 2 units wide, and 6 units long. What is its surface area in square units?

+

 

+

square units

",88,88,,,272246 +PSBCMPS,1,Fill-in-the-blank(s),Numeric,"

A maritime flag is shown. What is the area of the shaded part of the flag?

+

 

+

+

square inches

",72,72,,,403617 +PSBQ5D,2,Fill-in-the-blank(s),Numeric,"

Find the solution.

+

 

+

Each notebook contains 60 sheets of paper. Andre has 5 notebooks. How many sheets of paper do Andre’s notebooks contain?

+

 

+

y = sheets

",300,300,,,73717 +PSBC6R,2,Fill-in-the-blank(s),Numeric,"

How many dollars does an adult pass cost if a child’s pass costs $10?

+

 

+

$

+

 

",16,16,,,15269 +PSBC6R,3,Fill-in-the-blank(s),Algebraic Expression,"

How many dollars does an adult pass cost if a child’s pass costs w dollars?

+

 

+

",1.6w,1.6w,,,15414 +PSBZKT,2,Fill-in-the-blank(s),Numeric,"

The area of a rectangle is 14 square units. It has side lengths x and y.  Given the value for x, find y.

+

 

+

x = 415

+

 

+

 

+

y =

+

 

+

Express your answer in fraction form.

",3 1/3,3 1/3,,,122450 +PSBQ3W,2,Fill-in-the-blank(s),Numeric,"

Find the solution.

+

 

+

x = pounds

",11,11,,,73395 +PSBB6NJ,1,Fill-in-the-blank(s),Numeric,"

Find the area of this triangle.

+

 

+

+

 

+

square units

",51,51,,,323746 +PSBN3A,3,Fill-in-the-blank(s),Numeric," + + + + + + +
+

How many ounces of meat were used?

+
ounces
",52,52,,,62872 +PSBN3A,4,Fill-in-the-blank(s),Numeric," + + + + + + +
+

How many ounces of cheese were used?

+
ounces
",39,39,,,63037 +PSBB6JM,1,Fill-in-the-blank(s),Numeric,"

At a school, 40% of the sixth-grade students said that hip-hop is their favorite kind of music. If 100 sixth-grade students prefer hip hop music, how many sixth-grade students are at the school? 

+

 

+

sixth-grade students

",250,250,,,323049 +PSB4YV,1,Fill-in-the-blank(s),Numeric,"

A store is having a 20%-off sale on all merchandise. If Mai buys one item and saves $13, what was the original price of her purchase? 

+

 

+

$

",65,65,,,142055 +PSB43J,1,Fill-in-the-blank(s),Numeric,"

The original price of a scarf was $16. During a store-closing sale, a shopper saved $12 on the scarf. What percentage discount did she receive?

+

 

+

%

",75,75,,,142483 +PSBCGRW,1,Fill-in-the-blank(s),Numeric,"

Han and Clare go shopping, and they each have a coupon. Answer each question and show your reasoning.

+

 

+ + + + + + + +
+

Han buys an item with a normal price of $15 and uses a 10% off coupon. How much does he save by using the coupon?

+

 

+

$

+
+

 

+

 

",1.5,1.5,,,382388 +PSB5DV,1,Fill-in-the-blank(s),Numeric,"

An ant travels at a constant rate of 30 cm every 2 minutes.

+

 

+

At what pace does the ant travel per centimeter?

+

 

+

minutes per inch

+

 

+

Express your answer in fraction form.

",15-Jan,15-Jan,,,144285 +PSB5DV,2,Fill-in-the-blank(s),Numeric,"

An ant travels at a constant rate of 30 cm every 2 minutes.

+

 

+

At what speed does the ant travel per minute?  

+

 

+

centimeters per inch

",15,15,,,144489 +PSBBP4N,1,Fill-in-the-blank(s),Numeric,"

A bookshelf is 42 inches long.  

+

 

+

How many books of length 112 inches will fit on the bookshelf? 

+

 

+

books

",28,28,,,242498 +PSBBBGJ,1,Fill-in-the-blank(s),Numeric,"

What is the volume of a rectangular prism that is 112 inches by 214 inches by 4 inches?

+

 

+

in3

",13 1/2,13 1/2,,,177695 +PSBBT6M,2,Fill-in-the-blank(s),Numeric,"

How many 38-inch thick books make a stack that is 6 inches tall?

+

 

+

38-inch thick books

",16,16,,,264639 +PRABHK6K,1,Fill-in-the-blank(s),Numeric,"

A cube has a volume of 73 cubic centimeters. What is its surface area?

+

 

+

 

+

square centimeters

",294,294,,,128547 +PSB2MF,2,Fill-in-the-blank(s),Numeric Expression,"

A cube has edge length 11 inches.

+

 

+

 

+

Write an expression for its surface area.

+

 

+

SA =

",6*11*11,6*11*11,,,128322 +PSBDGPV,1,Fill-in-the-blank(s),Numeric,"

A square has a side length 9 cm. What is its area?  

+

 

+

 square centimeters

",81,81,,,557307 +PSBDGPV,2,Fill-in-the-blank(s),Numeric,"

A square has an area of 9 cm2. What is its side length?

+

 

+

 centimeters

",3,3,,,557481 +PSBC62G,1,Fill-in-the-blank(s),Numeric,"

A rectangular prism has dimensions of 3 cm by 2 cm by 2 cm. What is its surface area?   

+

 

+

+

 

+

cm2

",32,32,,,502164 +PSBBX54,1,Fill-in-the-blank(s),Numeric,"

Find the area of this shape.

+

 

+

+

 

+

square units

",18,18,,,287214 +PSB2GN,1,Fill-in-the-blank(s),Numeric,"

Four students set up a lemonade stand. At the end of the day, their profit is $17.52. How much money do they each have when the profit is split equally? 

+

 

+

$

",4.38,4.38,,,127324 +PSBBX2F,1,Fill-in-the-blank(s),Numeric,"

Find the area of the triangle. If you get stuck, carefully consider which side of the triangle to use as the base.

+

 

+

 

+

+

 

+

 

+

square units

",12,12,,,286560 +PRABETEZ,1,Fill-in-the-blank(s),Numeric,"

A restaurant bill is $59 and you pay $72. What percentage gratuity did you pay?  

+

 

+

%

+

Round to the nearest whole percent.

",22,22,,,236501 +PRABMSJM,1,Fill-in-the-blank(s),Numeric,"

Solve the equation.

+

 

+

b - -6 = -2

+

 

+

b =

",-8,-8,,,155183 +PRABMSJN,1,Fill-in-the-blank(s),Numeric,"

Solve the equation.

+

 

+

-c + 4 = -9

+

 

+

c =

",13,13,,,155484 +PSBJ95,1,Fill-in-the-blank(s),Numeric,"

What is the smallest number of faces a polyhedron can possibly have? 

+

 

+

faces

",4,4,,,47990 +PRABQKVJ,1,Fill-in-the-blank(s),Numeric,"

Mai made 6 cups of vegetable soup and divided the soup equally among 8 containers. How much soup went in each container?

+

 

+

  cup of vegetable soup

",4-Mar,4-Mar,,,518962 +PRABQKSN,1,Fill-in-the-blank(s),Numeric,"

A rectangular prism has dimensions of 8 cm by 9 cm by 10 cm. What is its volume?  

+

 

+

 cubic centimeters

",720,720,,,133518 +PSBR9P,1,Fill-in-the-blank(s),Numeric,"

A cereal box is 8 inches by 2 inches by 12 inches. What is its surface area? Show your reasoning. If you get stuck, consider drawing a sketch of the box or its net and labeling the edges with their measurements.

+

 

+

square inches

",272,272,,,79262 +PSBK3Q,3,Fill-in-the-blank(s),Numeric,"

Estimate the actual height of the spacecraft to the nearest meter.

+

 

+

meters

",7,7,,,51828 +PSBBTGY,1,Fill-in-the-blank(s),Numeric,"

Based on signal strength, a person knows their lost phone is exactly 47 feet from the nearest cell tower. The person is currently standing 23 feet from the same cell tower. What is the closest the phone could be to the person?

+

 

+

 feet

",24,24,,,260281 +PSBBT2C,2,Fill-in-the-blank(s),Numeric,"

Mai’s family is traveling in a car at a constant speed of 65 miles per hour.

+

 

+

How far do they travel in 25 minutes?  

+

 

+

miles

+

Round your answer to one decimal point.

",27.1,27.1,,,263683 +PSBBT2C,1,Fill-in-the-blank(s),Numeric,"

Mai’s family is traveling in a car at a constant speed of 65 miles per hour.

+

 

+

At that speed, how long will it take them to travel 200 miles?  

+

 

+

hours 

+

Submit your answer as a fraction.

",3 1/13,3 1/13,,,263438 +PSB2J8,2,Fill-in-the-blank(s),Numeric,"

What percentage remains?  %

",25,25,,,128108 +PSBBBBS,1,Fill-in-the-blank(s),Numeric,"

Your teacher will give you cubes that have edge lengths of 12 inch.

+

 

+

Here is a drawing of a cube with edge lengths of 1 inch.

+

 

+

+

 

+

How many cubes with edge lengths of 12 inch are needed to fill this cube?

+

 

+

cubes

",8,8,,,176751 +PSBBCJZ,1,Fill-in-the-blank(s),Numeric,"

A loaf of bread is cut into slices.

+

 

+

If each slice is 12 of a loaf, how many slices are there?

+

 

+

slices of bread

",2,2,,,183695 +PSBDK49,2,Fill-in-the-blank(s),Numeric,"
+

What is the height h for the base that is 54 units long?  

+

 

+

cm

+

 

+

+
",5-Mar,5-Mar,,,577430 +PSBBSVD,3,Fill-in-the-blank(s),Numeric,"

What is the volume, in cubic inches, of one cube with an edge length of 13 inch?

+

 

+

cubic inches

",27-Jan,27-Jan,,,256912 +PRABE6XG,1,Fill-in-the-blank(s),Numeric,"

What is the volume of this cube?

+

 

+

 

+

+

cubic centimeters

",8,8,,,247085 +PRABFFX3,1,Fill-in-the-blank(s),Numeric,"

The area of a square is 49 m2. What is its side length?

+

 

+

meters

",7,7,,,247608 +PRABGZFX,1,Fill-in-the-blank(s),Numeric,"

A square has side length 7 in.  What is its area?  

+

 

+

square inches

+

 

+

 

",49,49,,,48123 +PSBCVNF,3,Fill-in-the-blank(s),Numeric,"

How many right angles need to be put together to make 270 degrees?

+

 

+

right angles

",3,3,,,449139 +PSBBS6F,2,Fill-in-the-blank(s),Numeric,"

How many different triangles are there?

+

 

+

different triangles

",4,4,,,258731 +PSBZ6U,1,Fill-in-the-blank(s),Numeric,"

A bookstore has marked down the price for all the books in a certain series by 15%.

+

 

+
+

How much is the discount on a book that normally costs $18.00? 

+

 

+

$

+
",2.7,2.7,,,125047 +PSBCVNF,4,Fill-in-the-blank(s),Numeric,"

How many right angles need to be put together to make a straight angle?

+

 

+

right angles

",2,2,,,449555 +PSBCVNF,2,Fill-in-the-blank(s),Numeric,"

How many right angles need to be put together to make 180 degrees?

+

 

+

right angles

",2,2,,,448806 +PRABFFX4,1,Fill-in-the-blank(s),Numeric,"

A cube has an edge length of 3 in. What is its volume?

+

 

+

cubic inches

",27,27,,,247781 +PSBCGVZ,1,Fill-in-the-blank(s),Numeric,"

The figure is a diagram of a sign. Lengths are given in inches.

+

 

+

+

 

+

What is the area of the sign?

+

 

+

square inches

",360,360,,,383334 +PSBTYT,1,Fill-in-the-blank(s),Numeric,"

Find the area of the shaded region(s) of the figure.

+

 

+

 

+

+

 

+

 

+

cm2

",24,24,,,89233 +PSBEUY,1,Fill-in-the-blank(s),Numeric,"

Find the area of the shape.

+

 

+

+

 

+

square units

",12,12,,,24639 +PRABE3GJ,1,Fill-in-the-blank(s),Numeric,"

Find the area of the parallelogram.

+

 

+

 

+

+

 

+

 

+

square centimeters 

",30,30,,,25226 +PRABTS92,1,Fill-in-the-blank(s),Numeric,"

Find the area of the rectangle with the following side lengths.

+

 

+

 

+

5 in and 13 in 

+

 

+

 

+

square inches

",3-May,3-May,,,25576 +PRABTS93,1,Fill-in-the-blank(s),Numeric,"

Find the area of the rectangle with the following side lengths.

+

 

+

 

+

5 in and 43inches

+

 

+

 

+

square inches

+

 

+

Give your answer as a simplified fraction.

",20/3,20/3,,,25682 +PRABTS94,1,Fill-in-the-blank(s),Numeric,"

Find the area of the rectangle with the following side lengths.

+

 

+

 

+

52 in and 43in

+

 

+

 

+

square inches

+

 

+

Give your answer as a simplified fraction.

",3-Oct,3-Oct,,,25823 +PSBDD5N,1,Fill-in-the-blank(s),Numeric,"

The rectangle has sides measuring 7 cm and 4 cm. What is the area of this rectangle?   

+

 

+

cm2

+

 

+

",28,28,,,543579 +PRABFEPA,1,Fill-in-the-blank(s),Numeric,"

A parallelogram has an area of 7 square units. If the height that corresponds to a base is 14 unit, what is the base?

+

 

+

units

",28,28,,,42913 +PSBDH2W,2,Fill-in-the-blank(s),Numeric,"

Here are two copies of a parallelogram. Each copy has one side labeled as the base b and a segment drawn for its corresponding height and labeled h.

+

 

+

+

 

+

The height of the parallelogram on the right is 2 centimeters. How long is the base of that parallelogram? 

+

 

+

centimeters

",1.2,1.2,,,565173 +PRABE3F5,1,Fill-in-the-blank(s),Numeric,"

The area of a rectangular playground is 78 square meters. If the length of the playground is 13 meters, what is its width?

+

 

+

meters

",6,6,,,347425 +PSB9JU,1,Fill-in-the-blank(s),Numeric,"

The square in the middle has an area of 1 square unit. What is the area of the entire rectangle in square units? 

+

 

+

square units

+

 

+

",4,4,,,166613 +PSB75K,1,Fill-in-the-blank(s),Numeric,"

A plane travels at a constant speed. It takes 6 hours to travel 3,360 miles.

+

 

+

What is the plane’s speed in miles per hour?  

+

 

+

miles per hour

+

 

+

 

+

 

+

 

",560,560,,,159000 +PRABFEN9,1,Fill-in-the-blank(s),Numeric,"

A parallelogram has a base of 9 units and an area of 12 square units. What is the corresponding height for that base?

+

 

+

units

",9-Dec,9-Dec,,,42671 +PSBT2R,1,Fill-in-the-blank(s),Numeric,"

Find the area of the shaded region(s) of the figure.

+

 

+

 

+

+

 

+

 

+

cm2

",21,21,,,89569 +PSB6F9,1,Fill-in-the-blank(s),Numeric,"

Find the area of the shaded region. 

+

+

 

+

cm2

",40,40,,,150514 +PRABE37P,1,Fill-in-the-blank(s),Numeric,"

A parallelogram has a base of 9 units and a corresponding height of 23units. What is its area?

+

 

+

square units

",18/3,18/3,,,42515 +PSBCFEV,1,Fill-in-the-blank(s),Numeric,"

A square with an area of 1 square meter is decomposed into 9 identical small squares. Each small square is decomposed into two identical triangles.

+

 

+

What is the area, in square meters, of 6 triangles? If you get stuck, consider drawing a diagram.

+

 

+

square meters

+

 

+

Give your answer as a simplified fraction.

",18-Jun,18-Jun,,,375305 +PSBCFEV,2,Fill-in-the-blank(s),Numeric,"

How many triangles are needed to compose a region that is 112 square meters?

+

 

+

triangles

",27,27,,,375493 +PSBCWW,1,Fill-in-the-blank(s),Numeric,"

Here is a parallelogram composed of smaller parallelograms.  The shaded region is composed of four identical parallelograms.  All lengths are in inches.

+

 

+

+

 

+

What is the area of the unshaded parallelogram in the middle?

+

 

+

  in2

",3.2,3.2,,,14144 +PSBDH2W,1,Fill-in-the-blank(s),Numeric,"

Here are two copies of a parallelogram. Each copy has one side labeled as the base b and a segment drawn for its corresponding height and labeled h.

+

 

+

+

 

+

The base of the parallelogram is 2.4 centimeters; its corresponding height is 1 centimeter. Find its area in square centimeters.

+

 

+

square centimeters

",2.4,2.4,,,565046 +PRABQJVJ,1,Order / Sort,Ordering,

Here is a list of expressions. Order them from least to greatest.

,"

10³

,

,

7 · 8²

,

40²

,

104

","

10³

,

,

7 · 8²

,

40²

,

104

",,,503178 +PSBC6YQ,1,Fill-in-the-blank(s),Numeric,"

A square has an area of 16 cm2. What is the length of each of its sides?

+

 

+

 cm

",4,4,,,501827 +PSBC6YQ,2,Fill-in-the-blank(s),Numeric,"

A square has a side length of 8 cm. What is its area?

+

 

+

  cm2

",64,64,,,501955 +PSBCP64,3,Fill-in-the-blank(s),Numeric,"

For the triangle, a base and its corresponding height are labeled.

+

Find the area of the triangle.

+

 

+

+

 

+

square units

",12,12,,,418178 +PSBCGTY,1,Fill-in-the-blank(s),Numeric,"

Find the area of the figure. 

+

+

 

+

square units

",38,38,,,383037 +PSBV94,1,Fill-in-the-blank(s),Numeric,"

The rectangle below has sides measuring 6 cm and 5 cm. What is the area of this rectangle?   

+

 

+

cm2

+

 

+

",30,30,,,103462 +PSBCGVZ,3,Fill-in-the-blank(s),Numeric,"

A person is going to paint the sign, including both the front and back. How many square inches will they need to cover?  

+

 

+

square inches

",720,720,,,383524 +PSBN4,1,Fill-in-the-blank(s),Numeric,"

A bag contains 150 marbles. Some are blue, and the rest are white. There are 21 blue marbles for every 4 white marbles. How many blue marbles are in the bag?  

+

 

+

 blue marbles

",126,126,,,1638 +PRABHQGR,1,Fill-in-the-blank(s),Numeric,"

A large bottle of juice contains 500 milliliters of juice. A medium bottle contains 70% as much juice as the large bottle. How many milliliters of juice are in the medium bottle?

+

 

+

milliliters

+

 

+

 

+

",350,350,,,35357 +PSBNUC,1,Fill-in-the-blank(s),Numeric,"

The cost of 5 cans of dog food is $4.35. At this price, how much do 11 cans of dog food cost?   

+

 

+

$

",9.57,9.57,,,61761 +PSBNPV,1,Fill-in-the-blank(s),Numeric,"

An elevator travels 310 feet in 10 seconds. At that speed, how far can this elevator travel in 12 seconds? 

+

 

+

feet

",372,372,,,61003 +PSBN3A,1,Fill-in-the-blank(s),Numeric,"

A sandwich shop serves 4 ounces of meat and 3 ounces of cheese on each sandwich. After making sandwiches for an hour, the shop owner has used 91 combined ounces of meat and cheese.

+

 

+

How many combined ounces of meat and cheese are used on each sandwich?

+

 

+

ounces

+

 

",7,7,,,62539 +PSBN3A,2,Fill-in-the-blank(s),Numeric," + + + + + + +
+

How many sandwiches were made in the hour?

+
sandwiches
",13,13,,,62707 +PSB28Z,1,Fill-in-the-blank(s),Numeric,"

Noah has 5 meters of rope. How many pieces of rope of length 12 meter can he cut from it?

+

 

+

pieces of rope

",10,10,,,131914 +PSBBAJK,2,Fill-in-the-blank(s),Numeric,"

There are 70 students in the school band. 40% of them are sixth graders, 20% are seventh graders, and the rest are eighth graders.

+

 

+

How many band members are seventh graders?  

+

 

+

seventh grade band members

",14,14,,,172318 +PRABFB67,1,Fill-in-the-blank(s),Numeric,"

A 16-ounce bottle of orange juice says it contains 200 milligrams of vitamin C, which is 250% of the daily recommended allowance of vitamin C for adults. What is 100% of the daily recommended allowance of vitamin C for adults?

+

 

+

milligrams

+

 

+

",80,80,,,325149 +PSB4FT,4,Fill-in-the-blank(s),Numeric,"

At this rate, how much would Lin be paid for 3 hours of work?   

+

 

+

$

",54,54,,,138970 +PSBMAP,1,Fill-in-the-blank(s),Numeric,"

Solve the problem, and show your thinking. Organize it so it can be followed by others. If you get stuck, consider drawing a double number line, table, or tape diagram.

+

 

+

Andre and Han are moving boxes. Andre can move 4 boxes every half hour. Han can move 5 boxes every half hour. How long will it take Andre and Han to move all 72 boxes?

+

 

+

hours

",4,4,,,53714 +PSBK84,1,Fill-in-the-blank(s),Numeric,"

Solve the problem, and show your thinking. Organize it so it can be followed by others. If you get stuck, consider drawing a double number line, table, or tape diagram.

+

 

+

A recipe for salad dressing calls for 4 parts oil for every 3 parts vinegar. How much oil should you use to make a total of 28 teaspoons of dressing?

+

 

+

teaspoons

",16,16,,,53422 +PSBCCUK,2,Fill-in-the-blank(s),Numeric,"

Priya’s neighbor has a dirt bike that can go 360 meters in 15 seconds. At this rate, how long would it take them to ride 3,000 meters?

+

 

+

seconds

",125,125,,,360123 +PSB3BX,1,Fill-in-the-blank(s),Numeric,"

At a used book sale, 5 books cost $15.  

+

 

+

What is the cost per book? 

+

 

+

$

",3,3,,,132432 +PSBNGY,1,Fill-in-the-blank(s),Numeric,"

A sports drink recipe calls for 53 tablespoons of powdered drink mix for every 12 ounces of water. How many batches can you make with 5 tablespoons of drink mix and 36 ounces of water? 

+

 

+

batches

",3,3,,,59778 +PSBCXN,1,Fill-in-the-blank(s),Numeric,"

Find the surface area of the polyhedron that can be assembled from this net. 

+

 

+

+

 

+

in2

",224,224,,,14173 +PSB4HP,2,Fill-in-the-blank(s),Numeric,"

Here is a table that represents the situation. Find the cost of 1 gigabyte. You can use as many rows as you need.

+

 

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Memory (Gigabytes)Cost (Dollars)
12832
  
  
  
  
  
  
  
+

 

+

What is the cost of 1 gigabyte? 

+

 

+

$

+

 

",0.25,0.25,,,139424 +PRABFAG9,1,Fill-in-the-blank(s),Numeric,"

Priya collected 2,400 grams of pennies in a fundraiser. Each penny has a mass of 2.5 grams. How much money did Priya raise? If you get stuck, consider using the table. 

+

 

+

$

+

 

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Number of PenniesMass in Grams
12.5
  
  
  
  
 2,400
+

 

",9.6,9.6,,,146848 +PSB296,1,Fill-in-the-blank(s),Numeric,"

Four bags of chips cost $6.

+

 

+

What is the cost per bag? 

+

 

+

$

",1.5,1.5,,,132144 +PSBCCS2,2,Fill-in-the-blank(s),Numeric,"

Complete the last row with the missing number.

+

 

+ + + + + + + + + + + + + + + + + + + +
20100
1050
15
3,000
","15,000","15,000",,,359683 +PSBCCUK,1,Fill-in-the-blank(s),Numeric,"

Priya can bike 150 meters in 20 seconds.  At this rate, how long would it take her to bike 3,000 meters?

+

 

+

seconds

+

 

+ + + + + + + + + + + + + + + + + + + + + + + + + + + +
  
  
  
  
  
  
+

 

+

 

",400,400,,,360011 +PSB3NH,1,Fill-in-the-blank(s),Numeric,"

Mai is making friendship bracelets. Each bracelet is made from 24.3 cm of string. If she has 170.1 cm of string, how many bracelets can she make? 

+

 

+

bracelets

",7,7,,,134242 +PSBCATA,1,Fill-in-the-blank(s),Numeric,"

Solve the following problems and show your thinking. If you get stuck, consider drawing a tape diagram to represent the situation.

+

 

+

 

+

Elena makes fruit punch by mixing 4 parts cranberry juice to 3 parts apple juice to 2 parts grape juice. If one batch of fruit punch includes 30 cups of apple juice, how large is this batch of fruit punch?

+

 

+

cups of punch

",90,90,,,347969 +PSB873,2,Fill-in-the-blank(s),Numeric,"

Your friend offers to help you with the rest of the painting. It takes the two of you 150 more minutes of painting time to finish the entire room. How much time did your friend save you?

+

 

+

minutes

",154,154,,,164748 +PSBRUY,1,Fill-in-the-blank(s),Numeric,"

Andre paid $13 for 3 books. Diego bought 12 books priced at the same rate. How much did Diego pay for the 12 books? 

+

 

+

$

",52,52,,,77267 +PSB296,2,Fill-in-the-blank(s),Numeric,"

Four bags of chips cost $6.

+

 

+

At this rate, how much will 7 bags of chips cost? 

+

 

+

$

",10.5,10.5,,,132256 +PSBF26,2,Fill-in-the-blank(s),Numeric,"

A snail travels 10 cm in 4 minutes. At this rate:

+

 

+

How far does the snail travel in 6 minutes?

+

 

+

cm

",15,15,,,31250 +PRABFEFN,1,Fill-in-the-blank(s),Numeric,"

A square has a side length of 5 feet. What is its area?

+

 

+

square feet

",25,25,,,89104 +PRABFEFN,1,Fill-in-the-blank(s),Numeric,"

A square has a side length of 5 feet. What is its area?

+

 

+

square feet

",25,25,,,89104 +PRABFEFN,1,Fill-in-the-blank(s),Numeric,"

A square has a side length of 5 feet. What is its area?

+

 

+

square feet

",25,25,,,89104 +PRABFEFN,1,Fill-in-the-blank(s),Numeric,"

A square has a side length of 5 feet. What is its area?

+

 

+

square feet

",25,25,,,89104 +PRABE64P,1,Fill-in-the-blank(s),Numeric,"

A square is 3 inches by 3 inches. What is its area?

+

 

+

square inches

",9,9,,,88850 +PRABE64P,1,Fill-in-the-blank(s),Numeric,"

A square is 3 inches by 3 inches. What is its area?

+

 

+

square inches

",9,9,,,88850 +PRABE64P,1,Fill-in-the-blank(s),Numeric,"

A square is 3 inches by 3 inches. What is its area?

+

 

+

square inches

",9,9,,,88850 +PRABE64P,1,Fill-in-the-blank(s),Numeric,"

A square is 3 inches by 3 inches. What is its area?

+

 

+

square inches

",9,9,,,88850 +PRABFEFP,1,Fill-in-the-blank(s),Numeric,"

The area of a square is 36 square centimeters. What is the length of each side of the square?

+

 

+

centimeters

",6,6,,,89321 +PRABFEFP,1,Fill-in-the-blank(s),Numeric,"

The area of a square is 36 square centimeters. What is the length of each side of the square?

+

 

+

centimeters

",6,6,,,89321 +PRABFEFP,1,Fill-in-the-blank(s),Numeric,"

The area of a square is 36 square centimeters. What is the length of each side of the square?

+

 

+

centimeters

",6,6,,,89321 +PRABFEFP,1,Fill-in-the-blank(s),Numeric,"

The area of a square is 36 square centimeters. What is the length of each side of the square?

+

 

+

centimeters

",6,6,,,89321 +PSBTTU,1,Fill-in-the-blank(s),Numeric,"

Find the area of this quadrilateral.

+

 

+

+

 

+

square units

",24,24,,,88316 +PSBTTU,1,Fill-in-the-blank(s),Numeric,"

Find the area of this quadrilateral.

+

 

+

+

 

+

square units

",24,24,,,88316 +PSBTTU,1,Fill-in-the-blank(s),Numeric,"

Find the area of this quadrilateral.

+

 

+

+

 

+

square units

",24,24,,,88316 +PSBTTU,1,Fill-in-the-blank(s),Numeric,"

Find the area of this quadrilateral.

+

 

+

+

 

+

square units

",24,24,,,88316 +PSBX32,1,Fill-in-the-blank(s),Numeric,"

A bag contains 120 marbles. Some are red and the rest are black. There are 19 red marbles for every black marble. How many red marbles are in the bag?  

+

 

+

 red marbles

",114,114,,,114344 +PSBNSD,1,Fill-in-the-blank(s),Numeric,"

Han earns $33.00 for babysitting 4 hours. At this rate, how much will he earn if he babysits for 7 hours? 

+

 

+

$

",57.75,57.75,,,61363 +PSBB9H,1,Fill-in-the-blank(s),Numeric,"

During the first part of a hike, Andre drank 1.5 liters of the water he brought.

+

 

+

If this is 50% of the water he brought, how much water did he bring?

+

 

+

liters of water

+

 

+

 

",3,3,,,10241 +PSBB9H,2,Fill-in-the-blank(s),Numeric,"

If he drank 80% of his water on his entire hike, how much did he drink?

+

 

+

liters of water

",2.4,2.4,,,10342 +PSBBVCY,3,Fill-in-the-blank(s),Numeric,"

The usual price of a soccer ball is $24.80, what is its sale price?

+

 

+

$

",21.08,21.08,,,271644 +PRABFCHD,1,Fill-in-the-blank(s),Numeric,"

A bathtub can hold 80 gallons of water. The faucet flows at a rate of 4 gallons per minute. What percentage of the tub will be filled after 6 minutes?

+

 

+

%

",30,30,,,272713 +PSBBU72,1,Fill-in-the-blank(s),Numeric,"

A sign in front of a roller coaster says ""You must be 40 inches tall to ride.""  What percentage of this height is 34 inches?

+

 

+

%

",85,85,,,270541 +PSBCJ3Z,1,Fill-in-the-blank(s),Numeric,"

Tyler has a baseball bat that weighs 28 ounces. Find this weight in kilograms. (Note: 1 kilogram is approximately 35 ounces)

+

 

+

kilograms

+

 

",0.8,0.8,,,394487 +PSBQFE,1,Fill-in-the-blank(s),Numeric,"

The fastest elevators in the Burj Khalifa can travel 330 feet in just 10 seconds.

+

 

+

How far does the elevator travel in 11 seconds? 

+

 

+

feet

",363,363,,,69590 +PSBCJ8B,2,Fill-in-the-blank(s),Numeric,"

An ant can travel at a constant speed of 980 inches every 5 minutes.

+

 

+

At this rate, how far can the ant travel in 7 minutes?

+

 

+

inches

","1,372","1,372",,,395593 +PSBCJ8B,1,Fill-in-the-blank(s),Numeric,"

An ant can travel at a constant speed of 980 inches every 5 minutes.

+

 

+

How far does the ant travel in 1 minute?

+

 

+

inches

",196,196,,,395419 +PSB5BE,3,Fill-in-the-blank(s),Numeric,"

Han spent 75 minutes practicing the piano over the weekend.

+

 

+

Tyler practiced the clarinet for 64% as much time as Han practiced the piano. How long did he practice?

+

 

+

minutes

",48,48,,,143860 +PSBBU72,2,Fill-in-the-blank(s),Numeric,"

A sign in front of a roller coaster says ""You must be 40 inches tall to ride."" What percentage of this height is 54 inches?

+

 

+

%

",135,135,,,270745 +PSBBVAB,1,Fill-in-the-blank(s),Numeric,"

At a hardware store, a tool set normally costs $80. During a sale this week, the tool set costs $12 less than usual. What percentage of the usual price is the savings? 

+

 

+

%

",15,15,,,271030 +PSBCERJ,3,Fill-in-the-blank(s),Numeric,"

Next, use your double number line to answer the questions.

+

 

+

How much flour should be used with 10 pints of water?

+

 

+

cups

",40,40,,,370906 +PSBCERJ,4,Fill-in-the-blank(s),Numeric,"

How much water should be used with 24 cups of flour?

+

 

+

pints

",6,6,,,371046 +PSBCERJ,5,Fill-in-the-blank(s),Numeric,"

How much flour per pint of water does this recipe use?

+

 

+

cups

",4,4,,,371156 +PSBBADX,2,Fill-in-the-blank(s),Numeric,"

What percentage of Tyler’s distance did Priya walk?  %

",125,125,,,171838 +PSBCM3,3,Fill-in-the-blank(s),Numeric,"

Noah bought 15 baseball cards for $9.00. Assuming each baseball card costs the same amount.

+

 

+

At this rate, how much will 12 baseball cards cost? 

+

 

+

 $

",7.2,7.2,,,12177 +PSBCJ55,1,Fill-in-the-blank(s),Numeric,"

A recipe for trail mix uses 7 ounces of almonds with 5 ounces of raisins. (Almonds and raisins are the only ingredients.) How many ounces of almonds would be in a one-pound bag of this trail mix?  

+

 

+

ounces of almonds

",9 1/3,9 1/3,,,395051 +PSBBCTV,2,Fill-in-the-blank(s),Numeric,"

Attendance at the drama play was 140% of attendance at the concert.

+

 

+

people attended the drama play

",350,350,,,185277 +PSBNWN,1,Fill-in-the-blank(s),Numeric,"

A restaurant has 26 tables in its dining room. It takes the waitstaff 10 minutes to clear and set 4 tables. At this rate, how long will it take the waitstaff to clear and set all the tables in the dining room? 

+

 

+

minutes

",65,65,,,62166 +PSBBA9D,1,Fill-in-the-blank(s),Numeric,"

The area of Triangle C is 545 square units. What is the length of h?

+

 

+

+

 

+

units

+

 

+

 

",6,6,,,176469 +PSB6H4,1,Fill-in-the-blank(s),Numeric,"

A storage box has a volume of 56 cubic inches. The base of the box is 4 inches by 4 inches.  What is the height of the box?

+

 

+

inches

",3 1/2,3 1/2,,,150895 +PSB6H4,2,Fill-in-the-blank(s),Numeric,"

Lin’s teacher uses the box to store her set of cubes with an edge length of 12 inch. If the box is completely full, how many cubes are in the set?

+

 

+

cubes

",448,448,,,151049 +PSBBCTV,3,Fill-in-the-blank(s),Numeric,"

Attendance at literacy night was 44% of attendance at the concert.

+

 

+

people attended literacy night

",110,110,,,185395 +PSBBPDJ,1,Fill-in-the-blank(s),Numeric,"

6 is what percentage of 10?  

+

 

+

%

",60,60,,,239163 +PSBBCTV,1,Fill-in-the-blank(s),Numeric,"

A school held several evening activities last month—a music concert, a basketball game, a drama play, and literacy night. The music concert was attended by 250 people.  How many people came to each of the other activities? 

+

 

+

Attendance at a basketball game was 30% of attendance at the concert.

+

 

+

people attended the basketball game

",75,75,,,185126 +PRABP755,1,Fill-in-the-blank(s),Numeric,"

A jet plane can carry up to 200,000 liters of fuel. It used 130,000 liters of fuel during a flight. What percentage of the fuel capacity did it use on this flight?

+

 

+

%

+

 

",65,65,,,174579 +PSBBVCY,1,Fill-in-the-blank(s),Numeric,"

The sale price of every item in a store is 85% of its usual price.  The usual price of a backpack is $30, what is its sale price?

+

 

+

$

",25.5,25.5,,,271396 +PSB2RG,1,Fill-in-the-blank(s),Numeric,"

Water makes up about 71% of Earth’s surface, while the other 29% consists of continents and islands. 96% of all Earth’s water is contained within the oceans as salt water, while the remaining 4% is fresh water located in lakes, rivers, glaciers, and the polar ice caps.If the total volume of water on Earth is 1,386 million cubic kilometers, what is the volume of salt water?

+

 

+

cubic kilometers

","1,330,560,000","1,330,560,000",,,129075 +PSB2RG,2,Fill-in-the-blank(s),Numeric,"

What is the volume of fresh water?

+

 

+

cubic kilometers

","55,440,000","55,440,000",,,129183 +PSBBSVD,1,Fill-in-the-blank(s),Numeric,"

How many cubes with edge lengths of 13 inch are needed to build a cube with an edge length of 1 inch?

+

 

+

cubes

",27,27,,,256677 +PSBCENS,1,Fill-in-the-blank(s),Numeric,"

How long is 75% of 60 minutes?

+

 

+

minutes

",45,45,,,370522 +PSBCBSW,1,Fill-in-the-blank(s),Numeric,"

In 2011, a professional climber scaled the outside of the Burj Khalifa, making it all the way to 828 meters (the highest point on which a person can stand) in 6 hours. 

+

 

+

Assuming they climbed at the same rate the whole way:

+

 

+

How far did they climb in the first 2 hours?  

+

 

+

meters

",276,276,,,353327 +PSBCBSW,2,Fill-in-the-blank(s),Numeric,"

How far did they climb in 5 hours?

+

 

+

  meters

",690,690,,,353461 +PSBCBSW,3,Fill-in-the-blank(s),Numeric,"

How far did they climb in the final 15 minutes?  

+

 

+

meters

",34.5,34.5,,,353584 +PRABHQGM,1,Fill-in-the-blank(s),Numeric,"

Fill in the blank: The value of 8 dimes is % of the value of a dollar.

",80,80,,,515648 +PSBR46,2,Fill-in-the-blank(s),Numeric,"

If the small holds 36 units, how much does the large hold?

+

 

+

 units

",48,48,,,78711 +PSBBANS,1,Fill-in-the-blank(s),Numeric,"

Jada has a monthly budget for her cell phone bill. Last month she spent 120% of her budget, and the bill was $60. What is Jada’s monthly budget? 

+

 

+

$

",50,50,,,172957 +PSBBAJK,1,Fill-in-the-blank(s),Numeric,"

There are 70 students in the school band. 40% of them are sixth graders, 20% are seventh graders, and the rest are eighth graders.

+

 

+

How many band members are sixth graders?  

+

 

+

sixth grade band members

",28,28,,,172131 +PSBBAT4,2,Fill-in-the-blank(s),Numeric,"

An athlete runs 8 miles in 50 minutes on a treadmill. At this rate:

+

 

+

How far can the athlete run in 1 hour?

+

 

+

miles

",9.6,9.6,,,174088 +PSBBAT4,1,Fill-in-the-blank(s),Numeric,"

An athlete runs 8 miles in 50 minutes on a treadmill. At this rate:

+

 

+

How long will it take the athlete to run 9 miles?

+

 

+

minutes

",56.25,56.25,,,173863 +PSBBN93,1,Fill-in-the-blank(s),Numeric,"

15 is what percentage of 30?

+

 

+

%

",50,50,,,238558 +PSBBPBW,1,Fill-in-the-blank(s),Numeric,"

3 is what percentage of 12?

+

 

+

%

",25,25,,,238851 +PSBCJ3Z,2,Fill-in-the-blank(s),Numeric,"

Tyler has a baseball bat that weighs 28 ounces. Find this weight in grams. (Note: 1 kilogram is approximately 35 ounces)

+

 

+

grams

",800,800,,,394746 +PSBCGRW,3,Fill-in-the-blank(s),Numeric,"

Clare buys an item with a normal price of $24, but saves $6 by using a coupon. For what percentage off is this coupon?

+

 

+

%

+

 

",25,25,,,382646 +PSBBAJK,3,Fill-in-the-blank(s),Numeric,"

What percentage of the band members are eighth graders?  %

",40,40,,,172534 +PSBFMQ,3,Fill-in-the-blank(s),Numeric,"

Costs of homes can be very different in different parts of the United States.

+

 

+

A 2,100-square-foot home in Cheyenne, Wyoming, costs $110 per square foot. How much does this home cost? 

+

 

+

$

","231,000","231,000",,,28730 +PSBB6SK,1,Fill-in-the-blank(s),Numeric,"

It takes 10 pounds of potatoes to make 15 pounds of mashed potatoes. At this rate:

+

 

+

How many pounds of mashed potatoes can they make with 15 pounds of potatoes?  

+

 

+

pounds

",22 1/2,22 1/2,,,324260 +PSBB6SK,2,Fill-in-the-blank(s),Numeric,"

It takes 10 pounds of potatoes to make 15 pounds of mashed potatoes. At this rate:

+

 

+

How many pounds of potatoes are needed to make 50 pounds of mashed potatoes?  

+

 

+

pounds

+

 

+

Express your answer in fraction form.

",33 1/3,33 1/3,,,324446 +PSBCJWC,1,Fill-in-the-blank(s),Numeric,"

There are 3,785 milliliters in 1 gallon, and there are 4 quarts in 1 gallon. 

+

 

+

How many milliliters are in 3 gallons?

+

 

+

  milliliters

","11,355","11,355",,,393425 +PSBCJWC,3,Fill-in-the-blank(s),Numeric,"

There are 3,785 milliliters in 1 gallon, and there are 4 quarts in 1 gallon. 

+

 

+

How many milliliters are in 1 quart?

+

 

+

  milliliters

",946.25,946.25,,,393738 +PSB5BE,1,Fill-in-the-blank(s),Numeric,"

Han spent 75 minutes practicing the piano over the weekend.

+

 

+

Priya practiced the violin for 152% as much time as Han practiced the piano. How long did she practice?

+

 

+

minutes

",114,114,,,143514 +PRABFBDX,1,Fill-in-the-blank(s),Numeric,"

Lin bought 3 hats for $22.50. At this rate, how many hats could she buy with $60.00? If you get stuck, consider using the table.

+

 

+

hats

+

 

+ + + + + + + + + + + + + + + + + + + + + + + +
Number of HatsPrice in Dollars
  
  
  
  
",8,8,,,174455 +PSBCM3,1,Fill-in-the-blank(s),Numeric,"

Noah bought 15 baseball cards for $9.00. Assuming each baseball card costs the same amount, answer the following questions.

+

 

+

At this rate, how much will 30 baseball cards cost? 

+

 

+

$

",18,18,,,11914 +PSBC2V3,2,Fill-in-the-blank(s),Numeric,"

How far could he run in 30 minutes?

+

 

+

miles

",4.8,4.8,,,478871 +PRABFEJF,1,Fill-in-the-blank(s),Numeric,"

There are 80 kids in a gym. 75% are wearing socks. How many are not wearing socks? If you get stuck, consider using a tape diagram.

+

 

+

kids

",20,20,,,128360 +PRABFEJ2,1,Fill-in-the-blank(s),Numeric,"

A pool in the shape of a rectangular prism is being filled with water. The length and width of the pool is 24 feet and 15 feet. If the height of the water in the pool is 113 feet, what is the volume of the water in cubic feet?

+

 

+

cubic feet

",480,480,,,579223 +PSBZ4A,1,Fill-in-the-blank(s),Numeric,"

Clare is using little wooden cubes with edge length 12 inch to build a larger cube that has edge length 4 inches. How many little cubes does she need? 

+

 

+

cubes

",512,512,,,125069 +PSBBN69,2,Fill-in-the-blank(s),Numeric,"

A garden hose emits 9 quarts of water in 6 seconds. At this rate:

+

 

+

How much water does the hose emit in 10 seconds?

+

 

+

quarts

",15,15,,,238070 +PSBBMNU,1,Fill-in-the-blank(s),Numeric,"

On a field trip, there are 3 chaperones for every 20 students. There are 92 people on the trip. Answer these questions. If you get stuck, consider using a tape diagram.

+

 

+

How many chaperones are there? chaperones

",12,12,,,229131 +PSBCNE9,2,Fill-in-the-blank(s),Numeric,"

Find the solution for the situation.

+

 

+

w =

",9,9,,,407575 +PSBCSBC,1,Fill-in-the-blank(s),Numeric,"

A penguin walks 10 feet in 6 seconds. At this speed:

+

 

+

How far does the penguin walk in 45 seconds?

+

 

+

  feet

",75,75,,,430257 +PSBCSBC,2,Fill-in-the-blank(s),Numeric,"

How long does it take the penguin to walk 45 feet?  

+

 

+

seconds

",27,27,,,430376 +PSBBKEC,2,Fill-in-the-blank(s),Numeric,"

In a lilac paint mixture, 40% of the mixture is white paint, 20% is blue, and the rest is red. There are 4 cups of blue paint used in a batch of lilac paint.  

+

 

+

How many cups of red paint are used?  If you get stuck, consider using a tape diagram.  

+

 

+

cups of red paint

",8,8,,,221830 +PSBCRM3,1,Fill-in-the-blank(s),Numeric,"

Jada makes sparkling juice by mixing 2 cups of sparkling water with every 3 cups of apple juice.

+

 

+

How much sparkling water does Jada need if she uses 15 cups of apple juice?

+

 

+

cups of sparkling water

",10,10,,,426461 +PSBBN69,1,Fill-in-the-blank(s),Numeric,"

A garden hose emits 9 quarts of water in 6 seconds. At this rate:

+

 

+

How long will it take the hose to emit 12 quarts?

+

 

+

seconds

",8,8,,,237868 +PSBCNC3,2,Fill-in-the-blank(s),Numeric,"

Find the solution for the situation.

+

 

+

z =

",186,186,,,407163 +PSBBKEC,1,Fill-in-the-blank(s),Numeric,"

In a lilac paint mixture, 40% of the mixture is white paint, 20% is blue, and the rest is red. There are 4 cups of blue paint used in a batch of lilac paint.  

+

 

+

How many cups of white paint are used?  If you get stuck, consider using a tape diagram.

+

 

+

cups of white paint

",8,8,,,221668 +PSBMJB,3,Fill-in-the-blank(s),Numeric,"

45% of c is 72. Find the value of c.

+

 

+

c =

",160,160,,,55067 +PSBBMGT,1,Fill-in-the-blank(s),Numeric,"

Last Sunday 1,575 people visited the amusement park. 56% of the visitors were adults, 16% were teenagers, and 28% were children ages 12 and under.

+

 

+

Find the number of adults that visited the park.

+

 

+

adults

",882,882,,,228118 +PSBCA2N,1,Fill-in-the-blank(s),Numeric,"

Two skateboarders start a race at the same time. Skateboarder A travels at a steady rate of 15 feet per second. Skateboarder B travels at a steady rate of 22 feet per second. After 4 minutes, how much farther will Skateboarder B have traveled? 

+

 

+

feet

","1,680","1,680",,,349252 +PSB857,1,Fill-in-the-blank(s),Numeric,"

Here is the floor plan for a bedroom:

+

 

+

 

+

+

 

+

 

+

Imagine you are planning to repaint all the walls in this room, including inside the closet.

+

 

+
    +
  • The east wall is 3 yards long.
  • +
+

 

+
    +
  • The south wall is 10 feet long but has a window, 5 feet by 3 feet, that does not need to be painted.
  • +
+

 

+
    +
  • The west wall is 3 yards long but has a door, 7 feet tall and 3 feet wide, that does not need to be painted.
  • +
+

 

+
    +
  • The north wall includes a closet, 6.5 feet wide, with floor-to-ceiling mirrored doors that do not need to be painted. There is, however, a smaller wall between the west wall and the closet that does need to be painted on all sides. The wall is 0.5 feet wide and extends 2 feet into the room.
  • +
+

 

+
    +
  • The ceiling in this room is 8 feet high.
  • +
+

 

+
    +
  • All of the corners are right angles.
  • +
+

 

+

If you paint all the walls in the room, how many square feet do you need to cover?  

+

 

+

square feet

",300,300,,,164090 +PSB857,2,Fill-in-the-blank(s),Numeric,"

An advertisement about the paint that you want to use reads: “Just 2 quarts covers 175 square feet!” If you need to apply two coats of paint on all the walls, how much paint do you need to buy?

+

 

+

quarts

",7,7,,,164198 +PSBRUT,2,Fill-in-the-blank(s),Numeric,"

Consider the problem: It takes one week for a crew of workers to pave 35 kilometer of a road. At that rate, how long will it take to pave 1 kilometer?

+

 

+

weeks

",1 2/3,1 2/3,,,77264 +PSBBBBS,2,Fill-in-the-blank(s),Numeric,"

What is the volume, in cubic inches, of a cube with edge lengths of 12 inch?

+

 

+

in3

",8-Jan,8-Jan,,,176895 +PSBBA7J,1,Fill-in-the-blank(s),Numeric,"

The area of Triangle B is 8 square units. Find the length of b.

+

 

+

+

 

+

units

",6,6,,,176215 +PSBBA5R,1,Fill-in-the-blank(s),Numeric,"

Find the area of Triangle A in square centimeters.

+

 

+

+

 

+

cm2

",10 1/8,10 1/8,,,175939 +PSBDGJU,2,Fill-in-the-blank(s),Numeric,"

Andre poured 27 ounces of rice into 6 containers. If all containers have the same amount of rice, how many ounces are in each container?

+

 

+

 

+

Find the unknown quantity.

+

 

+

 

+

? = ounces

",4 1/2,4 1/2,,,556824 +PSBBTZP,4,Fill-in-the-blank(s),Numeric,"

A family has a monthly budget of $2,400. How much money is spent on each category?

+

 

+

17% is spent on transportation.

+

 

+

$

",408,408,,,263496 +PSBDHZF,1,Fill-in-the-blank(s),Numeric,"

A recipe uses 5 cups of flour for every 2 cups of sugar.

+

 

+

How much sugar is used for 1 cup of flour?

+

 

+

cups

",5-Feb,5-Feb,,,564514 +PSBDHZF,2,Fill-in-the-blank(s),Numeric,"

A recipe uses 5 cups of flour for every 2 cups of sugar.

+

 

+

How much flour is used for 1 cup of sugar?

+


cups

",2.5,2.5,,,564678 +PSBFMQ,1,Fill-in-the-blank(s),Numeric,"

Costs of homes can be very different in different parts of the United States.

+

 

+

A 450-square-foot apartment in New York City costs $540,000. What is the price per square foot? 

+

 

+

$per square foot

",1200,1200,,,28432 +PSB82X,3,Fill-in-the-blank(s),Numeric,"

A box of pencils is 514 inches wide. Seven pencils, laid side by side, take up 258 inches of the width.

+

 

+

All 7 pencils have the same width. How wide is each pencil?

+

 

+

inch

",8-Mar,8-Mar,,,163759 +PSB82X,1,Fill-in-the-blank(s),Numeric,"

A box of pencils is 514 inches wide. Seven pencils, laid side by side, take up 258 inches of the width.

+

 

+

How many inches of the width of the box is not taken up by the pencils?  

+

 

+

inches

",2 5/8,2 5/8,,,163575 +PSBWZJ,1,Fill-in-the-blank(s),Numeric,"

For the situation, find the unit rates.

+

 

+

A cheesecake recipe says, “Mix 12 oz of cream cheese with 15 oz of sugar.”

+

 

+ + + + + + +
+

How many ounces of cream cheese are there for every ounce of sugar?

+

 

+

ounce of cream cheese per ounce of sugar

+
+

 

+

 

",5-Apr,5-Apr,,,108047 +PSBWZJ,2,Fill-in-the-blank(s),Numeric,"

How many ounces of sugar is that for every ounce of cream cheese?

+

 

+

ounces of sugar per ounce of cream cheese

",1.25,1.25,,,108169 +PSBW27,1,Fill-in-the-blank(s),Numeric,"

For the situation, find the unit rates.

+

 

+

Mai’s family drinks a total of 10 gallons of milk every 6 weeks.

+

 

+ + + + + + + + + +
+

How many gallons of milk does the family drink per week?   gallons per week

+
Express your answer in fraction form.
",1 2/3,1 2/3,,,108354 +PSBW27,2,Fill-in-the-blank(s),Numeric,"

How many weeks does it take the family to consume 1 gallon of milk?   weeks per gallon

",0.6,0.6,,,108478 +PSBVFK,1,Fill-in-the-blank(s),Numeric,"

A box of cereal weighs 600 grams. How much is this weight in pounds?  (Note: 1 kilogram = 2.2 pounds)

+

 

+

pounds

",1.32,1.32,,,98240 +PSB66B,3,Fill-in-the-blank(s),Numeric,"

There are 90 kids in the band. 20% of the kids own their own instruments, and the rest rent them.

+

 

+

What percentage of kids rent their instruments?  

+

 

+

%

",80,80,,,154014 +PSBDPZ5,2,Fill-in-the-blank(s),Numeric,"

A school wants to raise $2,500 to support its music program.  

+

 

+

If it raises 175% of its goal, how much money will the music program receive? 

+

 

+

$

","4,375","4,375",,,593802 +PSBCZEX,1,Fill-in-the-blank(s),Numeric,"

You need to be at least 39.37 inches tall (about a meter) to ride on a bumper car.  Diego’s cousin is 35.75 inches tall. How many more inches will he need to grow before Diego can take him on the bumper car ride? 

+

 

+

inches

",3.62,3.62,,,470590 +PSBVDH,3,Fill-in-the-blank(s),Numeric,"

A car can travel 35 miles per gallon of gas. It uses 135 of a gallon of gas to go 1 mile.

+

 

+

How much gas does the car use to go 100 miles? 

+

 

+

gallons

",100/35,100/35,,,97813 +PSBVDH,1,Fill-in-the-blank(s),Numeric,"

A car has 15 gallons of gas in its tank. The car travels 35 miles per gallon of gas. It uses 135 of a gallon of gas to go 1 mile.

+

 

+

How far can the car travel with 15 gallons?

+

 

+

  miles

",525,525,,,97491 +PRABQB3W,1,Fill-in-the-blank(s),Numeric,"

The garden hose at Andre's house can fill a 5-gallon bucket in 2 minutes. The hose at his next-door neighbor’s house can fill a 10-gallon bucket in 8 minutes. If they use both their garden hoses at the same time, and the hoses continue working at the same rate they did when filling a bucket, how long will it take to fill a 750-gallon pool?

+

 

+

minutes

",200,200,,,149859 +PRABQB3V,1,Fill-in-the-blank(s),Numeric,"

Jada eats 2 scoops of ice cream in 5 minutes. Noah eats 3 scoops of ice cream in 5minutes. How long does it take them to eat 1 scoop of ice cream working together (if they continue eating ice cream at the same rate they do individually)?

+

 

+

minute(s)

",1,1,,,149750 +PSBCBCB,3,Fill-in-the-blank(s),Numeric,"

Answer the question.

+

 

+

45 ÷ 23 =

",5-Jun,5-Jun,,,351102 +PSBCZ5V,1,Fill-in-the-blank(s),Numeric,"

Noah would like to cover a rectangular tray with rectangular tiles. The tray has a width of 1114 inches and an area of 5058 square inches.

+

 

+

Find the length of the tray in inches.

+

 

+

inches

",4 1/2,4 1/2,,,474069 +PSBCZ5V,2,Fill-in-the-blank(s),Numeric,"

If the tiles are 34 inch by 910 inch, how many would Noah need to cover the tray completely, without gaps or overlaps?

+

 

+

tiles

",120,120,,,474198 +PSBCAVU,1,Fill-in-the-blank(s),Numeric,"

Mai runs around a 400-meter track at a constant speed of 250 meters per minute. How many minutes does it take Mai to complete 4 laps of the track? 

+

 

+

minutes

",32/5,32/5,,,348393 +PSBUCB,3,Fill-in-the-blank(s),Numeric,"

How much does the trip cost?

+

 

+

$

",600,600,,,91335 +PRABFBZG,1,Fill-in-the-blank(s),Numeric,"

There are 4 tablespoons in 14 cup. There are 2 cups in 1 pint. How many tablespoons are there in 1 pint? If you get stuck, consider drawing a double number line or making a table.

+

 

+

tablespoons

",32,32,,,350310 +PSBCHS5,1,Fill-in-the-blank(s),Numeric," + + + + + + +
+

This package of sliced cheese costs $2.97.

+

 

+

 

+

 

+

 

+

How much would a package with 18 slices cost at the same price per slice? 

+

 

+

$

+
+

 

",4.86,4.86,,,387984 +PSBCHWW,3,Fill-in-the-blank(s),Numeric,"

A copy machine can print 480 copies every 4 minutes.

+

 

+

A teacher printed 720 copies. How long did it take to print?  

+

 

+

minutes

",6,6,,,388660 +PSBCHWW,1,Fill-in-the-blank(s),Numeric,"

A copy machine can print 480 copies every 4 minutes.

+

 

+

How many copies can it print in 10 minutes?

+

 

+

copies

","1,200","1,200",,,388358 +PSBC2V3,1,Fill-in-the-blank(s),Numeric,"

While training for a race, Andre’s dad ran 12 miles in 75 minutes on a treadmill. If he runs at that rate:

+

 

+

How long would it take him to run 8 miles?

+

 

+

minutes

",50,50,,,478760 +PSBBTZP,1,Fill-in-the-blank(s),Numeric,"

A family has a monthly budget of $2,400. How much money is spent on each category?

+

 

+

44% is spent on housing.

+

 

+

$

","1,056","1,056",,,262990 +PSBBN4D,4,Fill-in-the-blank(s),Numeric,"

Diego has 90 songs on his playlist. How many songs are there for the given genre?

+

 

+

The rest is electronica.

+

 

+

songs

",18,18,,,237612 +PRABQKR2,1,Fill-in-the-blank(s),Numeric,"

A ship captain is mapping a trip and wants to know the distance the ship will travel over certain time intervals.

+

 

+ + + + + + + + + + + + + + + + + + + +
time (hours)distance (miles)
0.512.5
125
1.537.5
+

 

+

Assuming that the ship travels at a constant speed, what is its speed?  

+

 

+

 miles per hour

",25,25,,,560590 +PRABQKR6,1,Fill-in-the-blank(s),Numeric,"

Elena and Jada are 12 miles apart on a path when they start moving toward each other. Elena runs at a constant speed of 5 miles per hour, and Jada walks at a constant speed of 3 miles per hour. How long does it take until Elena and Jada meet?

+

 

+

  hours

",1.5,1.5,,,560733 +PSBDG4M,1,Fill-in-the-blank(s),Numeric,"

Lin runs 5 laps around a track in 6 minutes.

+

 

+

How many minutes per lap is that?  

+

 

+

minutes per lap

",1.2,1.2,,,559407 +PSBBN4D,2,Fill-in-the-blank(s),Numeric,"

Diego has 90 songs on his playlist. How many songs are there for the given genre?

+

 

+

10% country

+

 

+

songs

",9,9,,,237316 +PSB2A,1,Fill-in-the-blank(s),Numeric,"

It takes Andre 4 minutes to swim 5 laps.

+

 

+

How many laps per minute is that?  

+

 

+

 laps per minute

",1.25,1.25,,,3098 +PRABQMXM,1,Fill-in-the-blank(s),Numeric,"

A conductor is mapping a trip and records the distance the train travels over certain time intervals.

+

 

+ + + + + + + + + + + + + + + + + + + +
time (hours)distance (miles)
0.522.5
145
1.567.5
+

 

+

The train travels at a constant speed. What is its speed?  

+

 

+

 miles per hour

",45,45,,,4213 +PRABQMXP,1,Fill-in-the-blank(s),Numeric,"

Noah and Andre are 15 miles apart on a bike path when they start biking toward each other. Noah rides at a constant speed of 4 miles per hour, and Andre rides at a constant speed of 2 miles per hour. How long does it take until Noah and Andre meet?  

+

 

+

 hours

",2.5,2.5,,,4344 +PSB2A,3,Fill-in-the-blank(s),Numeric,"

If Andre swims 22 laps at the same rate, how long does it take him?  

+

 

+

 minutes

",17.6,17.6,,,3418 +PSBBNVA,1,Fill-in-the-blank(s),Numeric,"

A rocking horse has a weight limit of 60 pounds.  What percentage of the weight limit is 33 pounds? %

",55,55,,,236051 +PSBBNVA,2,Fill-in-the-blank(s),Numeric,"

What percentage of the weight limit is 114 pounds?  %

",190,190,,,236208 +PSBBNVA,3,Fill-in-the-blank(s),Numeric,"

What weight is 95% of the limit?   pounds

",57,57,,,236371 +PSB2A,2,Fill-in-the-blank(s),Numeric,"

It takes Andre 4 minutes to swim 5 laps.

+

 

+

How many minutes per lap is that?

+

 

+

minutes per lap

",5-Apr,5-Apr,,,3256 +PSBBTWH,3,Fill-in-the-blank(s),Numeric,"

Find the answer:  

+

 

+

49 kilogram of baking soda costs $2. How much does 1 kilogram of baking soda cost?

+

 

+

$

",4.5,4.5,,,262987 +PSBBTY2,3,Fill-in-the-blank(s),Numeric,"

Find the answer: 

+

 

+

Diego can fill 115 bottles with 3 liters of water. How many liters of water fill 1 bottle?

+

 

+

liters of water

",2-May,2-May,,,263466 +PSBG4B,1,Fill-in-the-blank(s),Numeric,"

A rectangular bathroom floor is covered with square tiles that are 112 feet by 112 feet. The length of the bathroom floor is 1012 feet and the width is 612 feet.

+

 

+

How many tiles does it take to cover the length of the floor?  

+

 

+

tiles

",7,7,,,36743 +PSB2A9,1,Fill-in-the-blank(s),Numeric,"

A builder is building a fence with 614-inch-wide wooden boards, arranged side-by-side with no gaps or overlaps. How many boards are needed to build a fence that is 150 inches long? 

+

 

+

boards

",24,24,,,126203 +PSB2HQ,1,Fill-in-the-blank(s),Numeric,"

Lin wants to save $75 for a trip to the city. If she has saved $37.50 so far, what percentage of her goal has she saved? 

+

 

+

%

",50,50,,,127673 +PSBBTTZ,3,Fill-in-the-blank(s),Numeric,"

Find the answer:  

+

 

+

Jada bought 312 yards of fabric for $21. How much did each yard cost?

+

 

+

$

",6,6,,,262501 +PSB3AH,3,Fill-in-the-blank(s),Numeric,"

How much does Elena’s water weigh if her bucket is full and her bucket is identical to Noah’s?

+

 

+

pounds

",6 1/4,6 1/4,,,132330 +PSBBCJZ,2,Fill-in-the-blank(s),Numeric,"

If each slice is 15 of a loaf, how many slices are there?  

+

 

+

slices of bread

",5,5,,,183784 +PSBBTZP,2,Fill-in-the-blank(s),Numeric,"

A family has a monthly budget of $2,400. How much money is spent on each category?

+

 

+

23% is spent on food.

+

 

+

$

",552,552,,,263152 +PSBBTZP,3,Fill-in-the-blank(s),Numeric,"

A family has a monthly budget of $2,400. How much money is spent on each category?

+

 

+

6% is spent on clothing.

+

 

+

$

",144,144,,,263336 +PSBGZP,1,Fill-in-the-blank(s),Numeric,"

A zookeeper is 614 feet tall. A young giraffe in his care is 938 feet tall.

+

 

+

How many times as tall as the zookeeper is the giraffe?

+

 

+

times as tall

",1 1/2,1 1/2,,,36318 +PSBBX8F,1,Fill-in-the-blank(s),Numeric,"

Lin has a work of art that is 14 inches by 20 inches. She wants to frame it with large paper clips laid end to end.

+

 

+

If each paper clip is 134 inch long, how many paper clips would she need?

+

 

+

paper clips

",38,38,,,287470 +PSBBX8F,3,Fill-in-the-blank(s),Numeric,"

How many paper clips are needed if the paper clips are spaced 14 inch apart?

+

 

+

paper clips

",34,34,,,287627 +PSBBP4N,3,Fill-in-the-blank(s),Numeric,"

A bookcase has 5 of these bookshelves. How many feet of shelf space is there? 

+

 

+

feet

",17 1/2,17 1/2,,,242767 +PSBBPW6,1,Fill-in-the-blank(s),Numeric,"

A worker is tiling the floor of a rectangular room that is 12 feet by 15 feet. The tiles are square with side lengths 113 feet. How many tiles are needed to cover the entire floor? 

+

 

+

tiles

","102, 101 1/4","102, 101 1/4",,,241877 +PSBBP9C,1,Fill-in-the-blank(s),Numeric,"

How many groups of 123 are in 156?

+

 

+

groups

",10-Nov,10-Nov,,,243402 +PSBBP9C,2,Fill-in-the-blank(s),Numeric,"

How many groups of 123 are in 413?

+

 

+

groups

",2 3/5,2 3/5,,,243534 +PSBBP9C,3,Fill-in-the-blank(s),Numeric,"

How many groups of 123 are in 56?

+

 

+

groups

",2-Jan,2-Jan,,,243693 +PRABFEJZ,1,Fill-in-the-blank(s),Numeric,"

It takes 114 minutes to fill a 3-gallon bucket of water with a hose. At this rate, how long does it take to fill a 50-gallon tub? If you get stuck, consider using a table.

+

 

+

minutes

+

Express your answer in fraction form.

",125/6,125/6,,,43293 +PSBDHZF,3,Fill-in-the-blank(s),Numeric,"

A recipe uses 5 cups of flour for every 2 cups of sugar.

+

 

+

How much flour is used with 7 cups of sugar?

+


cups

",17.5,17.5,,,564837 +PSBBCFE,3,Fill-in-the-blank(s),Numeric,"

How many inches of snow will fall in 24 hours if it continues to snow at this rate?  

+

 

+

inches

",48,48,,,183159 +PSBBCFE,2,Fill-in-the-blank(s),Algebraic Expression,"

Snow is falling steadily in Syracuse, New York. After 2 hours, 4 inches of snow has fallen.

+

 

+

Write an equation that gives the amount of snow that has fallen after x hours at this rate. 

+

 

+

y =

",2x,2x,,,182948 +PRABMQK6,1,Fill-in-the-blank(s),Numeric,"

Lin has a drawing with an area of 20 in2.  If she increases all the sides by a scale factor of 4, what will the new area be?

+

 

+

 

+

 

+

  in2

",320,320,,,44235 +PSBBV76,3,Fill-in-the-blank(s),Numeric,"

A school club sold 300 shirts. 31% were sold to fifth graders, 52% were sold to sixth graders, and the rest were sold to teachers. How many shirts were sold to teachers?

+

 

+

shirts

",51,51,,,276105 +PSBD24,3,Fill-in-the-blank(s),Numeric,"

Elena paints the back of the second aquarium. It has a height of 134 feet. The painted area is 556 square feet. What is its length?

+

 

+

feet

",3-Oct,3-Oct,,,20500 +PSBBV76,2,Fill-in-the-blank(s),Numeric,"

A school club sold 300 shirts. 31% were sold to fifth graders, 52% were sold to sixth graders, and the rest were sold to teachers. How many shirts were sold to sixth graders?

+

 

+

shirts

",156,156,,,275922 +PRABEDFF,1,Order / Sort,Ordering,"

Cylinder A, B, and C have the same radius but different heights. Put the cylinders in order of their volume from least to greatest.

","

,

,

","

,

,

",,,157411 +PSBC2HZ,1,Fill-in-the-blank(s),Numeric,"

Mai, Kiran, and Clare are baking cookies together. They need 34 cup of flour and 13 cup of butter to make a batch of cookies. They each brought the ingredients they had at home.

+

 

+
    +
  • Mai brought 2 cups of flour and 14 cup of butter.
  • +
+

 

+
    +
  • Kiran brought 1 cup of flour and 12 cup of butter.
  • +
+

 

+
    +
  • Clare brought 114 cups of flour and 34 cup of butter.
  • +
+

 

+

If the students have plenty of the other ingredients they need (sugar, salt, baking soda, etc.), how many whole batches of cookies can they make? 

+

 

+

whole batches of cookies

",4,4,,,476732 +PSBBT3N,3,Fill-in-the-blank(s),Numeric,"

Find the answer: 

+

 

+

54 gallons of water fill 56 of a bucket. How many gallons of water fill the entire bucket?

+

 

+

gallons of water

",1 1/2,1 1/2,,,263940 +PSBB5WF,1,Fill-in-the-blank(s),Numeric,"

Lin has two small baking pans, each shaped like a rectangular prism. For each question, explain or show your reasoning.

+

 

+

Lin lines the bottom of her first pan with aluminum foil. The area of the rectangular piece of foil is 11 14square inches. Its length is 4 12inches. What is the width of the foil?  

+

 

+

inches

",2.5,2.5,,,318942 +PSBBTZP,5,Fill-in-the-blank(s),Numeric,"

A family has a monthly budget of $2,400. How much money is spent on each category?

+

 

+

The rest is put into savings.

+

 

+

$

",240,240,,,263662 +PSBY5V,1,Fill-in-the-blank(s),Numeric,"

At a school, 460 of the students walk to school. 

+

 

+

The number of students who take public transit is 20% of the number of students who walk. How many students take public transit?

+

 

+

students

",92,92,,,119704 +PSBB74F,1,Fill-in-the-blank(s),Numeric,"

Use the two following methods to find the product of 18 and 14, then compare the values obtained.

+

 

+

Calculate numerically.

+

 

+

18×14

+

 

+

 

+

",252,252,,,331934 +PSBB74F,2,Fill-in-the-blank(s),Numeric,"

Here is a rectangle that is 18 units by 14 units. Find its area, in square units by decomposing it. 

+

+

 

+

 

+

square units

",252,252,,,332052 +PSBCPK5,3,Fill-in-the-blank(s),Numeric,"

How many cups of jam are in each jar?

+

 

+

  cups of jam

",1 1/2,1 1/2,,,414757 +PSBCPNT,3,Fill-in-the-blank(s),Numeric,"

How many jars did he fill?

+

 

+

jars of jam

",9,9,,,415185 +PSBCPJC,3,Fill-in-the-blank(s),Numeric,"

Altogether, how many cups of jam are in the jars?  

+

 

+

cups of jam

",9,9,,,414393 +PSBC9BE,2,Fill-in-the-blank(s),Numeric,"

A shopper buys cat food in bags of 3 lbs. Her cat eats 34 lb each week. How many weeks does one bag last?

+

 

+

weeks

",4,4,,,514446 +PRABQPQJ,1,Fill-in-the-blank(s),Numeric,"

Solve the equation.

+

 

+

10 - 14x = 7

+

 

+

x =

",12,12,,,90428 +PSBBCBH,1,Fill-in-the-blank(s),Numeric,"

A recipe calls for 12 lb of flour for 1 batch. How many batches can be made with 1 lb?

+

 

+

batches

",2,2,,,182148 +PSBBTQT,3,Fill-in-the-blank(s),Numeric,"

Find the answer. If you get stuck, consider drawing a diagram.

+

 

+

How many liters of water fit in the water dispenser?

+

 

+

liters of water

",15/8,15/8,,,261929 +PRABFG25,1,Fill-in-the-blank(s),Numeric,"

What is the side length of a square with area 116 square units?

+

 

+

units

",4-Jan,4-Jan,,,87135 +PSBJQN,3,Fill-in-the-blank(s),Numeric,"

Now solve:  How many minutes does it take to fill a 2-gallon bucket?  

+

 

+

minutes

",6,6,,,45479 +PSBDPDQ,2,Fill-in-the-blank(s),Numeric,"

A stack of 200 file folders is 5.125 inches tall.

+

 

+

Compute the thickness of each file folder.

+

 

+

 inches

",0.025625,0.025625,,,590413 +PSBBT74,2,Fill-in-the-blank(s),Numeric,"

How many groups of 12 pound are in 234 pounds?

+

 

+

 

+

groups of  12 pound

",5 1/2,5 1/2,,,264992 +PSBBCBH,2,Fill-in-the-blank(s),Numeric,"

A recipe calls for 12 lb of flour for 1 batch. How many batches can be made with 34 lb?

+

 

+

batches

",1 1/2,1 1/2,,,182258 +PSBBCBH,3,Fill-in-the-blank(s),Numeric,"

A recipe calls for 12 lb of flour for 1 batch. How many batches can be made with 14 lb?

+

 

+

batches

",2-Jan,2-Jan,,,182395 +PSBEAX,2,Fill-in-the-blank(s),Numeric,"

Use the diagram to answer the question.

+

 

+

How many liters of soap fit into one dispenser?

+

 

+

  liters of soap

+

Write your answer as a fraction.

",3-Feb,3-Feb,,,21767 +PSBBJWZ,1,Fill-in-the-blank(s),Numeric,"

3 tickets to the museum cost $12.75. At this rate, what is the cost of 1 ticket?

+

 

+

$

",4.25,4.25,,,219121 +PSBBJRA,1,Fill-in-the-blank(s),Numeric,"

A group of friends is sharing 212 pounds of berries.  

+

 

+

If each friend received 54of a pound of berries, how many friends are sharing the berries?

+

 

+

friends

",2,2,,,218191 +PSBBJRA,2,Fill-in-the-blank(s),Numeric,"

A group of friends is sharing 212 pounds of berries.  

+

 

+

If 5 friends are sharing the berries, how many pounds of berries does each friend receive?

+

 

+

pounds of berries

",2-Jan,2-Jan,,,218311 +PSBD24,1,Fill-in-the-blank(s),Numeric,"

Elena has two aquariums, each shaped like a rectangular prism. For each question, explain or show your reasoning.

+

 

+

One aquarium has a length of 72 feet, a width of 43 feet, and a height of 32 feet. What is the volume of the aquarium?

+

 

+

cubic feet

",7,7,,,20286 +PRABFFJX,1,Fill-in-the-blank(s),Numeric,"

Find the quotient.

+

31107   

",369,369,,,62644 +PSBBB7F,1,Fill-in-the-blank(s),Numeric,"

You are planning a dinner party with a budget of $50 and a menu that consists of 1 main dish, 2 side dishes, and 1 dessert. There will be 8 guests at your party.

+

 

+

Choose your menu items and decide on the quantities to buy so you stay on budget.

+

 

+

If you choose meat, fish, or poultry for your main dish, plan to buy at least 0.5 pound per person.

+

 

+

The budget is $ per guest.

",6.25,6.25,,,181356 +PSBBE2V,1,Fill-in-the-blank(s),Numeric,"

There is 0.162 liter of water in a 1-liter bottle. How much more water should be put in the bottle so it contains exactly 1 liter? 

+

 

+

liters

",0.838,0.838,,,197603 +PSBBVNT,2,Fill-in-the-blank(s),Numeric,"

Tickets to a show cost $5.50 for adults and $4.25 for students. A family is purchasing 2 adult tickets and 3 student tickets.  

+

 

+

What is the exact cost? 

+

 

+

$

",23.75,23.75,,,273109 +PSB66B,1,Fill-in-the-blank(s),Numeric,"

There are 90 kids in the band. 20% of the kids own their own instruments, and the rest rent them.

+

 

+

How many kids own their own instruments?

+

 

+

kids

",18,18,,,153748 +PRABPKZZ,1,Fill-in-the-blank(s),Numeric,"

How many 13inch cubes does it take to fill a box with width 2 23 inches, length 3 13inches, and height 2 13 inches?

+

 

+

  13inch cubes

",560,560,,,320405 +PRABQKWF,1,Fill-in-the-blank(s),Numeric,"

How many 14-inch cubes does it take to fill a box with width 214 inches, length 212 inches, and height 134 inches?  

+

 

+

 14-inch cubes

",630,630,,,21181 +PRABQKS9,1,Fill-in-the-blank(s),Numeric,"

A recipe for cookies calls for 23 of a cup of sugar per batch. Elena used 513 cups of sugar to make multiple batches of cookies. How many batches did she make?

+

 

+

batches

",8,8,,,588744 +PSBBVT3,3,Fill-in-the-blank(s),Numeric,"

What is the exact cost of 3 pound of beef?  $

",13.77,13.77,,,273819 +PSBBVT3,5,Fill-in-the-blank(s),Numeric,"

How much more does 3 pounds of beef cost than 3 pounds of chicken?  $

",4.17,4.17,,,274077 +PSBBVJ9,1,Fill-in-the-blank(s),Numeric,"

A large cheese pizza costs $7.50. Diego has $40 to spend on pizzas. How many large cheese pizzas can he afford? 

+

 

+

large cheese pizzas

",5,5,,,272660 +PSBB5M6,4,Fill-in-the-blank(s),Numeric,"

At which step does the percentage first fall below 1%?

+

 

+

step

",18,18,,,317925 +PSBCPB3,2,Fill-in-the-blank(s),Numeric,"

Calculate how far the hurdles are from one another.   meters

",7.5,7.5,,,412825 +PSBY5V,2,Fill-in-the-blank(s),Numeric,"

At a school, 460 of the students walk to school. 

+

 

+

The number of students who bike to school is 5% of the number of students who walk. How many students bike to school?

+

 

+

students

",23,23,,,119836 +PSBUEM,1,Fill-in-the-blank(s),Numeric,"

Mai walked 18 of a 30-mile walking trail. How many miles did Mai walk?  

+

 

+

miles

",3.75,3.75,,,91787 +PRABFGYU,1,Fill-in-the-blank(s),Numeric,"

Complete the calculation so that the problem shows the correct difference.

+

 

+ + + + + + +
    5-     4.329
+

 

+

5 - = 4.329

",0.671,0.671,,,94160 +PSBB5M6,1,Fill-in-the-blank(s),Numeric,"

To make Sierpinski's triangle,

+
    +
  • Start with an equilateral triangle. This is step 1.
  • +
  • Connect the midpoints of every side, and remove the middle triangle, leaving three smaller triangles. This is step 2.
  • +
  • Do the same to each of the remaining triangles. This is step 3.
  • +
  • Keep repeating this process.
  • +
+

 

+

+

 

+

What percentage of the area of the original triangle is left after step 2?

+

 

+

%

",75,75,,,317639 +PSBB5M6,2,Fill-in-the-blank(s),Numeric,"

What percentage of the area of the original triangle is left after step 3?

+

 

+

%

",56.25,56.25,,,317741 +PSBB5M6,3,Fill-in-the-blank(s),Numeric,"

What percentage of the area of the original triangle is left after step 10?

+

 

+

about %

+

Round your answer to the tenths place.

",7.51,7.51,,,317833 +PSBC5YB,1,Fill-in-the-blank(s),Numeric,"

Tyler uses 7.5 ounces of barbeque sauce from a full bottle. He estimates that he used about 25% of the barbeque sauce in the bottle. About how much barbecue sauce was in the full bottle?  

+

 

+

ounces of barbeque sauce

",30,30,,,496354 +PSBBQXP,2,Fill-in-the-blank(s),Numeric,"

The store bought a pair of shoes for $50 and sold it for $80. What percentage was the markup?

+

 

+

%

",60,60,,,246686 +PSBF4D,1,Fill-in-the-blank(s),Numeric,"

Diego pours 6.8 ounces of water from a full bottle. He estimates that he poured out 20% of the water in the bottle. About how much water was in the full bottle?

+

 

+

  ounces of water

",34,34,,,31188 +PSBF4D,3,Fill-in-the-blank(s),Numeric,"

Diego pours out 25% of the remaining water. About how many ounces did he pour the second time?  

+

 

+

ounces of water

",6.8,6.8,,,31433 +PSBBQRZ,1,Fill-in-the-blank(s),Numeric,"

Lin’s father is paying for a $20 meal. He has a 15%-off coupon for the meal. After the discount, a 7% sales tax is applied.

+

 

+
+

What does Lin’s father pay for the meal? 

+

 

+

$

+
",18.19,18.19,,,245930 +PSBBQXP,1,Fill-in-the-blank(s),Numeric,"

Tyler’s brother works in a shoe store.

+
+

 

+

Tyler’s brother earns a commission. He makes 2.5% of the amount he sells. Last week, he sold $900 worth of shoes. How much was his commission? 

+

 

+

$

+
",22.5,22.5,,,246376 +PSBU9B,1,Fill-in-the-blank(s),Numeric,"

Kiran’s mother gets a restaurant bill for $25. She has a coupon for 15% off. After the discount is applied, she adds 20% as a tip.

+

 

+

What is the total after the discount and tip? 

+

 

+

$

",25.5,25.5,,,97107 +PSBBQN7,1,Fill-in-the-blank(s),Numeric,"

Today, everything at a store is on sale. The store offers a 20% discount off the regular price.

+
+

 

+

The regular price of a T-shirt is $18. What is the discount price? 

+

 

+

$

+
",14.4,14.4,,,244895 +PSBBEZJ,1,Fill-in-the-blank(s),Numeric,"

Lin’s grandmother ordered needles that were 0.3125 inches long to administer her medication, but the pharmacist sent her needles that were 0.6875 inches long. How much longer were these needles than the ones she ordered? 

+

 

+

 

+

inches

",0.375,0.375,,,197306 +PSBCGRS,1,Fill-in-the-blank(s),Numeric,"

This fractal is called a Sierpinski Tetrahedron. A tetrahedron is a polyhedron that has four faces. (The plural of tetrahedron is tetrahedra.)

+

 

+

+

 

+

The small tetrahedra form four medium-sized tetrahedra: blue, red, yellow, and green. The medium-sized tetrahedra form one large tetrahedron.

+

 

+

How many faces does this fractal have?

+

 

+

Be sure to include faces you can't see. Try to find a way to figure this out so that you don't have to count every face.

+

 

+

 

+

faces

",64,64,,,382382 +PSBCGRS,2,Fill-in-the-blank(s),Numeric,"

How many small tetrahedra are in the bottom layer, touching the table?

+

 

+

small tetrahedra

",9,9,,,382485 +PSBCGRS,5,Fill-in-the-blank(s),Numeric,"

How many small tetrahedra would be in the bottom layer?

+

 

+

small tetrahedra

",27,27,,,382737 +PSBEEZ,4,Fill-in-the-blank(s),Numeric,"

A professional runner takes 3 strides between each pair of hurdles. The runner leaves the ground 2.2 meters before the hurdle and returns to the ground 1 meter after the hurdle.

+

 

+

About how long are each of the runner’s strides between the hurdles?

+

 

+

meters

","2.0, 1.98","2.0, 1.98",,,22349 +PRABFE5V,1,Fill-in-the-blank(s),Numeric,"

A pound of blueberries costs $3.98 and a pound of clementines costs $2.49. What is the combined cost of 0.6 pound of blueberries and 1.8 pounds of clementines? Round your answer to the nearest cent.

+

 

+

$

+

 

",6.87,6.87,,,405944 +PSBJFK,1,Fill-in-the-blank(s),Algebraic Expression,"

Each serving of a certain fruit snack contains 90 calories.  Han wants to know how many calories he gets from the fruit snacks. Write an equation that shows the number of calories, c, in terms of the number of servings, n.

+

 

+

c =

+

Use n as your variable.

",90n,90n,,,43771 +PSBCDQN,1,Fill-in-the-blank(s),Numeric,"

29 of the students in a school are in sixth grade.

+

 

+

How many sixth graders are there if the school has 90 students?

+

 

+

 sixth graders

",20,20,,,364872 +PSBCDQN,2,Fill-in-the-blank(s),Numeric,"

How many sixth graders are there if the school has 27 students?

+

 

+

  sixth graders

",6,6,,,365017 +PSBCDQN,3,Fill-in-the-blank(s),Algebraic Expression,"

If the school has x students, write an expression for the number of sixth graders in terms of x.

+

 

+

","2x/9, (2/9)x","2x/9, (2/9)x",,,365152 +PSBCTBM,4,Fill-in-the-blank(s),Numeric,"

What is the largest number of combination bags that Diego can make with no left over? 

+

 

+

combination bags

",16,16,,,436208 +PSBB28B,1,Fill-in-the-blank(s),Numeric,"

Diego is 59.5 inches tall. His brother is 40.125 inches tall. How much taller than his brother is Diego? 

+

 

+

inches

",19.375,19.375,,,304746 +PSBB29K,1,Fill-in-the-blank(s),Numeric,"

A runner has run 1.192 kilometers of a 10-kilometer race. How much farther does he need to run to finish the race? 

+

 

+

kilometers

",8.808,8.808,,,305101 +PSBR9H,1,Fill-in-the-blank(s),Numeric,"

A shipping company is loading cube-shaped crates into a larger cube-shaped container. The smaller cubes have side lengths of 212 feet, and the larger shipping container has side lengths of 10 feet. How many crates will fit in the large shipping container? 

+

 

+

crates

",64,64,,,79361 +PSBCYGB,1,Fill-in-the-blank(s),Numeric,"

A rectangular plot of land is 0.4 kilometer long and 0.07 kilometer wide. What is its area in square kilometers? 

+

 

+

square kilometers

",0.028,0.028,,,465121 +PSBBGX4,1,Fill-in-the-blank(s),Numeric,"

A sports drink bottle contains 16.9 fluid ounces. Andre drank 80% of the bottle. How many fluid ounces did Andre drink? 

+

 

+

ounces

",13.52,13.52,,,208182 +PSBBGPV,2,Fill-in-the-blank(s),Numeric,"

Find the unknown value.

+

 

+

x =

",7,7,,,207052 +PSBBGMJ,2,Fill-in-the-blank(s),Numeric,"

Find the unknown value.

+

 

+

x =

",7,7,,,206599 +PSB4W4,4,Fill-in-the-blank(s),Numeric,"

Find the value of the unknown that makes the equation true.

+

 

+

18 ⋅ y

+

 

+

y =

",6,6,,,142047 +PSBCC57,2,Fill-in-the-blank(s),Numeric,"

Elena’s dad buys another type of cell phone that also usually sells for $250. He pays 75% of the usual price. How much did he pay?

+

 

+

$

",187.5,187.5,,,361789 +PSB34G,2,Fill-in-the-blank(s),Numeric,"

Find the perimeter of the polygon.

+

 

+

units

",20,20,,,137129 +PSBBFXH,2,Fill-in-the-blank(s),Numeric,"

Find the area of Polygon D in this activity.

+

 

+

square units

",19.5,19.5,,,202997 +PRABFG3F,1,Fill-in-the-blank(s),Numeric,"

What is the edge length of a cube with volume 2764 cubic units?

+

 

+

units

",4-Mar,4-Mar,,,87535 +PSBBYZR,2,Fill-in-the-blank(s),Numeric,"

Choose one equation and solve it.

+

 

+

y =

",2.4,2.4,,,292292 +PSBDW5,2,Fill-in-the-blank(s),Numeric,"

Choose one equation and solve it.

+

 

+

x =kg

",4.65,4.65,,,19879 +PSBBYW,2,Fill-in-the-blank(s),Numeric,"

What area is represented by each square?

+

 

+

 square units

",0.01,0.01,,,8540 +PSBBYW,3,Fill-in-the-blank(s),Numeric,"

What is (0.3) · (0.5)?  

+

 

+

",0.15,0.15,,,8659 +PSBBP6,2,Fill-in-the-blank(s),Numeric,"

Four runners are training for long races. Noah ran 5.123 miles, Andre ran 6.34 miles, Jada ran 7.1 miles, and Diego ran 8 miles.

+

 

+

Jada ran how much farther than Noah?  

+

 

+

 miles

",1.977,1.977,,,7207 +PSBH65,1,Fill-in-the-blank(s),Numeric,"

Diego bought 12 mini muffins for $4.20.  At this rate, how much would Diego pay for 4 mini muffins?  

+

 

+

$ 

+

 

+

 

+ + + + + + + + + + + + + + + + + + + + + + + +
Number of Mini MuffinsPrice in Dollars
124.20
  
  
  
+

 

+

 

",1.4,1.4,,,42395 +PSBH65,2,Fill-in-the-blank(s),Numeric,"

How many mini muffins could Diego buy with $3.00?  If you get stuck, consider using the table.

+

 

+

mini muffins

",8,8,,,42567 +PRABQMBT,1,Fill-in-the-blank(s),Numeric,"

One way to convert from inches to centimeters is to multiply the number of inches by 2.54. How many centimeters are there in 14 inch?  

+

 

+

centimeters

",0.635,0.635,,,354320 +PRABQK7A,1,Fill-in-the-blank(s),Numeric,"

It takes 4.12 gallons of paint to paint a fence. How much paint is needed for 15 of the fence?  

+

 

+

 gallons

",0.824,0.824,,,591069 +PSBD2NU,1,Fill-in-the-blank(s),Numeric,"

Noah has 4 bags of marbles with the same number in each bag. If there are 536 marbles altogether, how many marbles are in each bag?  

+

 

+

marbles in each bag

",134,134,,,655353 +PSBBRG,1,Fill-in-the-blank(s),Numeric,"

One way to compute a 15% tip for a bill is to multiply it by 0.15.

+
 
+
A restaurant bill was $42.40. Calculate the tip.   
+
 
+
$
",6.36,6.36,,,7381 +PSBBP6,1,Fill-in-the-blank(s),Numeric,"

Four runners are training for long races. Noah ran 5.123 miles, Andre ran 6.34 miles, Jada ran 7.1 miles, and Diego ran 8 miles.

+

 

+

What is the total running distance of the four runners?  

+

 

+

 miles

",26.563,26.563,,,7096 +PRABQM3T,1,Fill-in-the-blank(s),Numeric,"

For part of a recipe, Jada adds 0.35 milliliters of vanilla extract to 16.4 milliliters of milk. How many milliliters does the mixture contain?  

+

 

+

 millimeters

",16.75,16.75,,,62040 +PRABQMPP,1,Fill-in-the-blank(s),Numeric,"

Andre deposited $24.50 into his bank account each week for 5 weeks. What was the total amount Andre deposited? 

+

 

+

$

",122.5,122.5,,,445524 +PSBBGH2,2,Fill-in-the-blank(s),Numeric,"

Find the value of x.

+

 

+

x = 

",7,7,,,206088 +PSB4W4,2,Fill-in-the-blank(s),Numeric,"

Find the value of the unknown that makes the equation true.

+

 

+

18 x 

+

 

+

x =

",15,15,,,141837 +PSBNM4,1,Fill-in-the-blank(s),Numeric,"

One way to compute a 20% discount is to multiply the price by 0.20.

+

 

+

The price of a pair of sneakers is $84.50. Calculate the discount.

+

 

+

$

",16.9,16.9,,,60703 +PRABFFDC,1,Fill-in-the-blank(s),Numeric,"

The daily recommended allowance of vitamin C for a sixth grader is 45 mg. 1 orange has about 75% of the recommended daily allowance of vitamin C. How many milligrams are in 1 orange? If you get stuck, consider using the double number line.

+

 

+

mg

+

 

+

 

+

",33.75,33.75,,,155392 +PRABQMPQ,1,Fill-in-the-blank(s),Numeric,"

Four friends did a job together that paid $85.20. How much should each get if they all get an equal amount? 

+

 

+

$

",21.3,21.3,,,445641 +PRABQMPM,1,Fill-in-the-blank(s),Numeric,"

Noah had $5.25 and Lin had $8.95. How much did they have altogether? 

+

 

+

$

",14.2,14.2,,,445374 +PSBCWXB,1,Fill-in-the-blank(s),Numeric,"

Kiran has 3 containers of blocks with the same number in each container. If there are 852 blocks altogether, how many blocks are in each container?

+

 

+

  blocks

",284,284,,,456745 +PRABQMPN,1,Fill-in-the-blank(s),Numeric,"

Diego had $21.32 and gave $9.50 to Elena. How much did he have left? 

+

 

+

$

",11.82,11.82,,,48374 +PRABFFZJ,1,Fill-in-the-blank(s),Numeric,"

Solve the equation.

+

 

+

2.5t = 10

+

 

+

t =

",4,4,,,74735 +PRABFFZG,1,Fill-in-the-blank(s),Numeric,"

Solve the equation.

+

 

+

6 = 12z

+

 

+

z =

",12,12,,,74581 +PRABFFZH,1,Fill-in-the-blank(s),Numeric,"

Solve the equation.

+

 

+

314 = 12 + w

+

 

+

w =

",2 3/4,2 3/4,,,61624 +PSBQ32,3,Fill-in-the-blank(s),Numeric,"

Solve the equation. 

+

 

+

x =

",7 1/2,7 1/2,,,73287 +PSBCM9V,2,Fill-in-the-blank(s),Numeric,"

Find the solution for the situation.

+

 

+

y =

",112,112,,,406771 +PSB36Y,2,Fill-in-the-blank(s),Numeric,"

What would be the recycled value of those same cans?

+

 

+

$

",2.1,2.1,,,136814 +PSBBBHE,2,Fill-in-the-blank(s),Numeric,"

After tax, the total is $45.99. What percentage of the subtotal is the total?

+

 

+

%

",109.5,109.5,,,177807 +PSBDEQN,3,Fill-in-the-blank(s),Numeric,"

Blueberries cost $4.00 per pound. 

+

 

+

How many pounds of blueberries can you buy for $13.00?

+

 

+

  pounds of blueberries

",3.25,3.25,,,546982 +PSBZ3C,2,Fill-in-the-blank(s),Algebraic Expression,"

Write an equation to represent the relationship.

+

 

+

Equation:   y

",1/3a,1/3a,,,124698 +PRABETDK,1,Fill-in-the-blank(s),Numeric,"

On a hot day, a football team drank an entire 50-gallon cooler of water and half as much again. How much water did they drink?  

+

 

+

gallons of water

",75,75,,,56172 +PSBBH8,1,Fill-in-the-blank(s),Numeric,"

Noah scored 20 points in a game. Mai's score was 30 points. The mean score for Noah, Mai, and Clare was 40 points. What was Clare's score? 

+

 

+

points

",70,70,,,6006 +PSBWMZ,4,Fill-in-the-blank(s),Numeric,"

If the pattern continues, how many mosquitoes will there be on day 6?

+

 

+

mosquitoes

",64,64,,,105867 +PSBD56Z,2,Fill-in-the-blank(s),Numeric,"

Andre set up a lemonade stand last weekend. It cost him $0.15 to make each cup of lemonade, and he sold each cup for $0.35.

+

 

+

How much money did it cost Andre to make this amount of lemonade?   

+

 

+

$

",4.2,4.2,,,677536 +PSBD56Z,3,Fill-in-the-blank(s),Numeric,"

Andre set up a lemonade stand last weekend. It cost him $0.15 to make each cup of lemonade, and he sold each cup for $0.35.

+

 

+

How much money did Andre make in profit?   

+

 

+

$

",5.6,5.6,,,677544 +PSBCRM3,2,Fill-in-the-blank(s),Numeric,"

Jada makes sparkling juice by mixing 2 cups of sparkling water with every 3 cups of apple juice.

+

 

+

How much apple juice does Jada need if she uses 6 cups of sparkling water?  

+

 

+

cups of apple juice

",9,9,,,426575 +PSBCA4G,1,Fill-in-the-blank(s),Numeric,"

Andre makes green paint by mixing 5 cups of yellow paint with 2 cups of blue paint.

+

 

+

To make the same shade of green, how much yellow paint does Andre need if he uses 8 cups of blue paint?

+

 

+

cups of yellow paint

",20,20,,,349368 +PSBCA4G,2,Fill-in-the-blank(s),Numeric,"

Andre makes green paint by mixing 5 cups of yellow paint with 2 cups of blue paint.

+

 

+

How much blue paint does Andre need if he uses 15 cups of yellow paint?

+

 

+

  cups of blue paint

",6,6,,,349505 +PSBMFR,1,Fill-in-the-blank(s),Numeric,"

37 of the students in a school are in sixth grade.

+

 

+

How many sixth graders are there if the school has 70 students?

+

 

+

 sixth graders

",30,30,,,54317 +PSBC8G,1,Fill-in-the-blank(s),Numeric,"

Jada reads 5 pages every 20 minutes. At this rate, how many pages can she read in 1 hour?

+

 

+

 

+

Use a double number line to find the answer.

+

 

+

 

+

 

+

 

+

+

 

+

 

+

Jada read pages.

",15,15,,,15805 +PSBC6R,1,Fill-in-the-blank(s),Numeric,"

An adult pass at the amusement park costs 1.6 times as much as a child’s pass.  How many dollars does an adult pass cost if a child’s pass costs $5?

+

 

+

 

+

$

+

 

",8,8,,,15120 +PSBJWY,2,Fill-in-the-blank(s),Numeric,"

What is the first quartile (Q1)?  

+

 

+

",5,5,,,46116 +PSBU4E,1,Fill-in-the-blank(s),Algebraic Expression,"

Elena is designing a logo in the shape of a parallelogram. She wants the logo to have an area of 12 square inches. She draws bases of different lengths and tries to compute the height for each.  

+

 

+

Write an equation Elena can use to find the height, h, for each value of the base, b.

+

 

+

h =

+

Use b as your variable.

",12/b,12/b,,,96079 +PRABHAXV,1,Fill-in-the-blank(s),Numeric,"

One morning, the temperature in Phoenix, Arizona was 8∘C and the temperature in Portland, Maine was 12∘C cooler. What was the temperature in Portland?

+

 

+

° Celsius

",-4,-4,,,373578 +PSBQV8,1,Fill-in-the-blank(s),Numeric,"

Two trains are traveling toward each other, on parallel tracks. Train A is moving at a constant speed of 70 miles per hour. Train B is moving at a constant speed of 50 miles per hour. The trains are initially 320 miles apart. How long will it take them to meet? One way to start thinking about this problem is to make a table. Add as many rows as you like.

+

 

+

hours

+

 

+

 

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
 Train ATrain B
Starting Position0 Miles320 Miles
After 1 Hour70 Miles270 Miles
After 2 Hours  
   
   
+

 

+

 

",2 2/3,2 2/3,,,72169 +PSBQV8,2,Fill-in-the-blank(s),Numeric,"

How long will it take a train traveling at 120 miles per hour to go 320 miles?

+

 

+

hours

",2 2/3,2 2/3,,,72272 +PSBD56S,1,Fill-in-the-blank(s),Numeric,"

At a market, 3.1 pounds of peaches cost $7.72. How much did the peaches cost per pound?  Round your answer to the nearest cent.

+

 

+

 

+

$ per pound

",2.49,2.49,,,677513 +PSBU4E,2,Fill-in-the-blank(s),Numeric,"

Use your equation to find the height of a parallelogram with base 1.5 inches.

+

 

+

inches

",8,8,,,96224 +PSBQA2,2,Fill-in-the-blank(s),Numeric,"

What is the speed of the ship in miles per hour?  

+

 

+

miles per hour

+

 

+

",25,25,,,68783 +PSBQA2,3,Fill-in-the-blank(s),Algebraic Expression,"

Write an equation that relates the time, t, it takes to travel a given distance, d.

+

 

+

d =

+

Use t as your variable.

+

 

+

",25t,25t,,,68963 +PRABFFZF,1,Fill-in-the-blank(s),Numeric,"

Solve the equation.

+

 

+

y + 1.8 = 14.7

+

 

+

y =

",12.9,12.9,,,74416 +PRABFGRJ,1,Fill-in-the-blank(s),Numeric,"

A crew has paved 34 of a mile of road. If they have completed 50% of the work, how long is the road they are paving?

+

 

+

miles

",1 1/2,1 1/2,,,113478 +PSBXD5,2,Fill-in-the-blank(s),Numeric,"

Use your equation to find x.

+

 

+

x =

",87.5,87.5,,,110306 +PRABFF3Q,1,Fill-in-the-blank(s),Numeric,"

Solve the equation.

+

 

+

 

+

10c = 26

+

 

+

c =

",2.6,2.6,,,223323 +PSBXGX,2,Fill-in-the-blank(s),Numeric,"

Priya has completed 9 exam questions. This is 60% of the questions on the exam. How many questions are on the exam?

+

 

+

questions

",15,15,,,110852 +PSBKFE,2,Fill-in-the-blank(s),Numeric,"

Noah raised $54 to support the animal shelter, which is 60% of his fundraising goal. What is Noah’s fundraising goal?   

+

 

+

$

",90,90,,,48838 +PSBBEXH,2,Fill-in-the-blank(s),Numeric,"

Solve the equation.

+

 

+

How much does the first bottle hold?  

+

 

+

ounces of water

",10,10,,,196907 +PSBBEZT,1,Fill-in-the-blank(s),Numeric,"

A rectangle has an area of 24 square units and a side length of  234 units. Find the other side length of the rectangle. 

+

 

+

units

+

Express your answer in fraction form.

",8 8/11,8 8/11,,,197182 +PSBBE76,2,Fill-in-the-blank(s),Numeric,"

Tyler's playlist has 36 songs. Noah’s playlist has one quarter as many songs as Tyler's playlist. How many songs are on Noah’s playlist, w?

+

 

+

w = songs

",9,9,,,198805 +PRABFFZE,1,Fill-in-the-blank(s),Numeric,"

Solve the equation.

+

 

+

2x = 5

+

 

+

x =

",2-May,2-May,,,74258 +PSBCM74,2,Fill-in-the-blank(s),Numeric,"

Find the solution for the situation.

+

 

+

x =

",18,18,,,406364 +PSBBDA4,1,Fill-in-the-blank(s),Algebraic Expression,"

A school paid $31.25 for each calculator.

+

 

+

If the school bought x calculators, how much did they pay?

+

 

+

$

",31.25x,31.25x,,,187657 +PSBZKT,3,Fill-in-the-blank(s),Numeric,"

The area of a rectangle is 14 square units. It has side lengths x and y.  Given the value for x, find y.

+

 

+

x = 76

+

 

+

 

+

y =

",12,12,,,122576 +PSBBE6C,2,Fill-in-the-blank(s),Numeric,"

How far is Lin’s house from school?  

+

 

+

z = meters

",315,315,,,198406 +PSBBKEC,3,Fill-in-the-blank(s),Numeric,"

In a lilac paint mixture, 40% of the mixture is white paint, 20% is blue, and the rest is red. There are 4 cups of blue paint used in a batch of lilac paint.  

+

 

+

How many cups of lilac paint will this batch yield?  If you get stuck, consider using a tape diagram.

+

 

+

cups of lilac paint

",20,20,,,222018 +PRABFF3N,1,Fill-in-the-blank(s),Numeric,"

Solve the equation.

+

 

+

4a = 32

+

 

+

a =

",8,8,,,222907 +PSBBDA4,2,Fill-in-the-blank(s),Numeric,"

The school spent $500 on calculators. How many did the school buy?

+

 

+

calculators

",16,16,,,187859 +PSBXFQ,1,Fill-in-the-blank(s),Numeric,"

A group of 8 friends go to the movies. A bag of popcorn costs $2.99. How much will it cost to get one bag of popcorn for each friend? 

+

 

+

$

",23.92,23.92,,,110609 +PRABFGVG,1,Fill-in-the-blank(s),Numeric,"

You had $50. You spent 10% of the money on clothes, 20% on games, and the rest on books. How much money was spent on books?

+

 

+

$

",35,35,,,199099 +PSBBGPH,1,Fill-in-the-blank(s),Numeric,"

Puppy A weighs 8 pounds, which is about 25% of its adult weight. What will be the adult weight of Puppy A?

+

 

+

pounds

",32,32,,,206730 +PSBBGPH,2,Fill-in-the-blank(s),Numeric,"

Puppy B weighs 8 pounds, which is about 75% of its adult weight. What will be the adult weight of Puppy B?

+

 

+

pounds

",32/3,32/3,,,206901 +PRABHSDM,1,Order / Sort,Ordering,

Place these numbers in order from least to greatest:

,"

6

,

-2.5

,

-3

,

165

,

3.1

,

-38

,

-34

,

14

","

6

,

-2.5

,

-3

,

165

,

3.1

,

-38

,

-34

,

14

",,,191727 +PSBDZ4,4,Fill-in-the-blank(s),Algebraic Expression,"

Use your choice from the second question to write an equation that relates m and d.

+

 

+

d =

+

Use m as your variable.

",.12m,.12m,,,20430 +PRABFH7B,1,Order / Sort,Ordering,"

Put these numbers in order, from least to greatest.

","

-2.7

,

0

,

-1

,

1.3

,

2

","

-2.7

,

0

,

-1

,

1.3

,

2

",,,20763 +PRABGKQU,1,Fill-in-the-blank(s),Numeric,"

How many times larger is the first number in the pair than the second?

+

 

+

710 is times larger than 78.

",49,49,,,21258 +PSBJWY,4,Fill-in-the-blank(s),Numeric,"

What is the interquartile range (IQR)?  

+

",3,3,,,46358 +PSBBEQB,2,Fill-in-the-blank(s),Numeric,"

The whale swims down 300 feet to feed. What is the whale’s elevation now?  

+

 

+

feet

",-300,-300,,,195577 +PRABFFUE,1,Fill-in-the-blank(s),Numeric,"

It was 8 degrees at nightfall. The temperature dropped 10 degrees by midnight. What was the temperature at midnight?

+

 

+

degrees

",-2,-2,,,198077 +PSBPTX,2,Fill-in-the-blank(s),Numeric,"

At noon, the temperature was 5 degrees Celsius. By late afternoon, it has risen 6 degrees Celsius. What was the temperature late in the afternoon?

+

 

+

° Celsius

",11,11,,,66472 +PSBPTX,3,Fill-in-the-blank(s),Numeric,"

The temperature was 8 degrees Celsius at midnight. By dawn, it has dropped 12 degrees Celsius. What was the temperature at dawn?

+

 

+

 

+

° Celsius

",-4,-4,,,66602 +PSBPTX,4,Fill-in-the-blank(s),Numeric,"

Water freezes at 0 degrees Celsius, but the freezing temperature can be lowered by adding salt to the water. A student discovered that adding half a cup of salt to a gallon of water lowers its freezing temperature by 7 degrees Celsius. What is the freezing temperature of the gallon of salt water?

+

 

+

 

+

° Celsius

",-7,-7,,,66748 +PSBBEQB,3,Fill-in-the-blank(s),Numeric,"

The whale swims down 150 more feed. What is the whale’s elevation now?

+

 

+

feet

",-450,-450,,,195675 +PSBBEU9,2,Fill-in-the-blank(s),Numeric,"

Solve the equation.

+

 

+

How many ounces of water are left in the bottle?  

+

 

+

ounces of water

",6.5,6.5,,,196505 +PSBGBG,4,Fill-in-the-blank(s),Numeric,"

On which day did it occur?

+

 

+

Day

",11,11,,,32600 +PSBGS5,1,Fill-in-the-blank(s),Numeric,"

Some boats were traveling up and down a river. A satellite recorded the movements of several boats. 

+

 

+

A motorboat traveled -3.4 miles per hour for 0.75 hours. How far did it go?

+

 

+

miles

",-2.55,-2.55,,,34746 +PRABMSGW,1,Fill-in-the-blank(s),Numeric,"

A teacher uses 36 centimeters of tape to hang up 9 student projects. At that rate, how much tape would the teacher need to hang up 10 student projects?

+

 

+

centimeters

",40,40,,,37662 +PSBGBG,2,Fill-in-the-blank(s),Numeric,"

On which day did it occur?

+

 

+

Day

",14,14,,,32363 +PRABFKCQ,1,Fill-in-the-blank(s),Numeric,"

Solve the equation.

+

 

+

1 = 14c

+

 

+

c =

",4,4,,,64410 +PRABFJZQ,1,Fill-in-the-blank(s),Numeric,"

Solve the equation.

+

 

+

b + 3.3 = 8.9

+

 

+

b =

",5.6,5.6,,,64237 +PRABFKCR,1,Fill-in-the-blank(s),Numeric,"

Solve the equation.

+

 

+

512= d + 14

+

 

+

d =

",5 1/4,5 1/4,,,64605 +PSBCG84,1,Fill-in-the-blank(s),Numeric,"

Here are the scores for landing an arrow in the colored regions of the archery target.

+

 

+

 

+ + + + + + + +
+ + + + + + + + + + + + + + + + + + +
Yellow:  10 points
Red:  8 points
Blue:  6 points
Green:  4 points
White:  2 points
+
+

 

+

 

+

Andre shot three arrows and they landed at (-5, 4), (-8, 7) and (1, 6).  What is his total score? 

+

 

+

 

+

points

",14,14,,,385260 +PSBBTPJ,2,Fill-in-the-blank(s),Numeric,"

Lin ran 29 meters in 10 seconds. She ran at a constant speed.  

+

 

+

At this rate, how far can she run in 1 minute?  

+

 

+

meters

",174,174,,,261766 +PSBN47,1,Fill-in-the-blank(s),Algebraic Expression,"

Jada is buying notebooks for school. The cost of each notebook is $1.75.  

+

 

+

Write an equation that shows the cost of Jada’s notebooks, c, in terms of the number of notebooks, n, that she buys.

+

 

+

c =

+

Use n as your variable.

",1.75n,1.75n,,,63146 +PSBBC3,1,Fill-in-the-blank(s),Numeric,"

Three sixth-grade classes raised $25.50, $49.75, and $37.25 for their classroom libraries. They agreed to share the money raised equally. What is each class’s equal share?

+

 

+

$

",37.5,37.5,,,5236 +PSBBA7D,1,Fill-in-the-blank(s),Numeric,"

Square A is a scaled copy of Square B with scale factor 2. If the area of Square A is 10 units2, what is the area of Square B?

+

 

+

units2

",2.5,2.5,,,176093 +PSBBA7D,2,Fill-in-the-blank(s),Numeric,"

Cube A is a scaled copy of Cube B with scale factor 2. If the volume of Cube A is 10 units3, what is the volume of Cube B?

+

 

+

units3

",1.25,1.25,,,176239 +PSBBZFQ,3,Fill-in-the-blank(s),Algebraic Expression,"

A trail mix recipe asks for 4 cups of raisins for every 6 cups of peanuts. There is proportional relationship between the amount of raisins, r (cups), and the amount of peanuts, p (cups), in this recipe.

+

 

+

Write the equation for the relationship that has a constant of proportionality less than 1. 

+

 

+

r =

+

Use p as your variable.

",4/6p,4/6p,,,294659 +PSBDMQ,1,Fill-in-the-blank(s),Algebraic Expression,"

Noah’s recipe for sparkling orange juice uses 4 liters of orange juice and 5 liters of soda water.

+

 

+

Noah prepares large batches of sparkling orange juice for school parties. He usually knows the total number of liters, t, that he needs to prepare. Write an equation that shows how Noah can find s, the number of liters of soda water, if he knows t.  

+

 

+

s =

+

Use t for your variable.

+

Express your answer in fraction form.

+

 

+

 

",5/9t,5/9t,,,18187 +PSBDMQ,2,Fill-in-the-blank(s),Algebraic Expression,"

Sometimes the school purchases a certain number, j, of liters of orange juice and Noah needs to figure out how much sparkling orange juice he can make. Write an equation that Noah can use to find t if he knows j.

+

 

+

 

+

t =

+

Use j as your variable.

",9/4j,9/4j,,,18301 +PSBDJR,1,Fill-in-the-blank(s),Numeric,"

The set of points are connected to form a line segment. What is the length of the line segment?

+

 

+

A = (3, 5) and B = (3, 6)

+

 

+

units

",1,1,,,17631 +PSBDJR,2,Fill-in-the-blank(s),Numeric,"

The set of points are connected to form a line segment. What is the length of the line segment?

+

 

+

C = (-2, -3) and D = (-2, -6)

+

 

+

units

",3,3,,,17786 +PSBDJR,3,Fill-in-the-blank(s),Numeric,"

The set of points are connected to form a line segment. What is the length of the line segment?

+

 

+

E = (-3, 1) and D = (-3, -1)

+

 

+

units

",2,2,,,17938 +PSBBEYJ,5,Fill-in-the-blank(s),Numeric,"

What is the constant of proportionality?  

",1.6,1.6,,,197156 +PSBDPZ5,1,Fill-in-the-blank(s),Numeric,"

A school wants to raise $2,500 to support its music program.  

+

 

+

If it has met 20% of its goal so far, how much money has it raised?

+

 

+

$

+

 

",500,500,,,593590 +PRABHSCP,1,Order / Sort,Ordering,"

Put these numbers in order, from least to greatest. If you get stuck, consider using the number line.

+

 

+

+



","

-2.1

,

-4.2

,

-1.5

,

-1

,

-0.5

,

3.5

,

4.8

,

0.5

,

-3.5

","

-2.1

,

-4.2

,

-1.5

,

-1

,

-0.5

,

3.5

,

4.8

,

0.5

,

-3.5

",,,5429 +PSBBXFB,1,Fill-in-the-blank(s),Numeric,"

A teacher drew a line segment that was 20 inches long on the blackboard. She asked each of her students to estimate the length of the segment and used their estimates to draw this dot plot.

+

 

+

 

+

+

 

+

 

+

How many students were in the class?  

+

 

+

students

",18,18,,,283170 +PSBBB76,1,Fill-in-the-blank(s),Numeric,"

Ten students each attempted 10 free throws. This list shows how many free throws each student made.

+

 

+

8          5           6          6          4          9          7          6          5          9

+

 

+

What is the median number of free throws made?  

+

 

+

 free throws

",6,6,,,181647 +PSBBB76,2,Fill-in-the-blank(s),Numeric,"

Ten students each attempted 10 free throws. This list shows how many free throws each student made.

+

 

+

8          5           6          6          4          9          7          6          5          9

+

 

+

What is the IQR (interquartile range)?  

+

 

+

 free-throws

",3,3,,,181770 +PSBBSS5,2,Fill-in-the-blank(s),Numeric,"

Ten students took a history quiz. This list shows how many questions each student answered correctly. 

+

 

+ + + + + + + + + + + + + + + +
968105810798
+

 

+

What is the mean?  

+

 

+

questions

",8,8,,,256621 +PSBBSS5,1,Fill-in-the-blank(s),Numeric,"

Ten students took a history quiz. This list shows how many questions each student answered correctly. 

+

 

+ + + + + + + + + + + + + + + +
968105810798
+

 

+

 

+

What is the IQR (interquartile range)?  

+

 

+

questions

",2,2,,,256519 +PSBCC57,1,Fill-in-the-blank(s),Numeric,"

The price of a cell phone is usually $250. Elena’s mom buys one of these cell phones for $150. What percentage of the usual price did she pay?

+

 

+

%

",60,60,,,361669 +PSBC36V,1,Fill-in-the-blank(s),Numeric,"

Andre and Mai leave the post office at the same time. They walk in opposite directions. Andre walks 50 feet, and Mai walks 30 feet. When they stop walking, how far apart are they?

+

 

+

 feet

",80,80,,,486785 +PSB3CK,1,Fill-in-the-blank(s),Numeric,"

A lizard and a snail start out next to each other on a drain pipe. The lizard climbs 10 inches up, and the snail climbs 4 inches down. After they stop climbing, how far apart are they? 

+

 

+

inches

",14,14,,,132573 +PSBCB9S,4,Fill-in-the-blank(s),Numeric,"

What is the distance between these points?

+

 

+

units

",5,5,,,356457 +PSBCBCJ,1,Fill-in-the-blank(s),Numeric,"

Diego wondered how far sixth-grade students could throw a ball. He decided to collect data to find out. He asked 10 friends to throw a ball as far as they could and measured the distance from the starting line to where the ball landed. The data shows the distances he recorded in feet.

+

 

+

 

+ + + + + + + + + + + + + + + +
40764063475749555053
+

 

+

 

+

Find the median of the data set.

+

 

+

feet

",51.5,51.5,,,350537 +PSBDV4,1,Fill-in-the-blank(s),Numeric,"

Lin’s family needs to travel 325 miles to reach her grandmother’s house.  

+

 

+

At 26 miles, what percentage of the trip’s distance have they completed?

+

 

+

%

",8,8,,,19386 +PRABGKQT,1,Fill-in-the-blank(s),Numeric,"

How many times larger is the first number in the pair than the second?

+

 

+

53 is times larger than 52.

",5,5,,,21076 +PRABGKQW,1,Fill-in-the-blank(s),Numeric,"

How many times larger is the first number in the pair than the second?

+

 

+

510 is times larger than 54.

","15,625","15,625",,,21595 +PRABGKQV,1,Fill-in-the-blank(s),Numeric,"

How many times larger is the first number in the pair than the second?

+

 

+

176 is times larger than 174.

",289,289,,,21399 +PSBBMAE,1,Fill-in-the-blank(s),Numeric,"

At the book sale, all books cost less than $5.  

+

 

+

What is the most expensive a book could be?

+

 

+

$

",4.99,4.99,,,227043 +PSBCBCJ,2,Fill-in-the-blank(s),Numeric,"

Find the IQR of the data set.

+

 

+

",10,10,,,350634 +PRABFH7D,1,Fill-in-the-blank(s),Numeric,"

How many times larger is the first number in the pair than the second?

+

 

+

34 is times larger than 33.

",3,3,,,20908 +PSBC968,1,Fill-in-the-blank(s),Numeric,"

For the past 12 school days, Mai has recorded how long her bus rides to school take in minutes. The times she recorded are shown in the table.

+

 

+ + + + + + + + + + + + + + + + + +
986910761298108
+

 

+

Find the mean for Mai’s data. 

+

 

+

minutes

",8.5,8.5,,,519985 +PSBBRUJ,1,Fill-in-the-blank(s),Numeric,"

Last week, the daily low temperatures for a city, in degrees Celsius, were 5, 8, 6, 5, 10, 7, and 1. What was the average low temperature?

+

 

+

 °C

",6,6,,,252066 +PRABFKN2,1,Order / Sort,Ordering,

Order these numbers from least to greatest:

,"

-18

,

-17

,

-18

,

19

,

20

","

-18

,

-17

,

-18

,

19

,

20

",,,6158 +PSBBQP6,1,Fill-in-the-blank(s),Numeric,"

Solve this equation:  3x-5=9x+4.

+

 

+

x=

",-13,-13,,,245814 +PSBX5W,2,Fill-in-the-blank(s),Numeric,"

What is the actual number of kilometers that is represented by 5 centimeters on the map?

+

 

+

  kilometers

",6.25,6.25,,,114712 +PSBYTT,1,Fill-in-the-blank(s),Numeric,"

Mai and Tyler were standing at one corner of a large rectangular field and decided to race to the opposite corner. Since Mai had a bike and Tyler did not, they thought it would be a fairer race if Mai rode along the sidewalk that surrounds the field while Tyler ran the shorter distance directly across the field. The field is 100 meters long and 80 meters wide. Tyler can run at around 5 meters per second, and Mai can ride her bike at around 7.5 meters per second.

+

 

+

+

 

+

A calculator may be necessary to answer the following questions. Round answers to the nearest hundredth.

+

 

+

If you could give the loser of the race a head start, how much time would they need in order for both people to arrive at the same time?

+

 

+

seconds

",1.6,1.6,,,118016 +PSBYTT,2,Fill-in-the-blank(s),Numeric,"

If you could make the winner go slower, how slow would they need to go in order for both people to arrive at the same time?

+

 

+

meters per second

",7.03,7.03,,,118107 +PSBBYGX,1,Fill-in-the-blank(s),Numeric,"

Here is the dot plot showing the travel time, in minutes, of Elena’s bus rides to school.

+

 

+

+

 

+

Find the median travel time. Be prepared to explain your reasoning.

+

 

+

 

+

minutes

",8.5,8.5,,,289171 +PSBCBNU,1,Fill-in-the-blank(s),Numeric,"

Andre drew a plan of a courtyard at a scale of 1 to 60. On his drawing, one side of the courtyard is 2.75 inches.

+

 

+

What is the actual measurement of that side of the courtyard in inches? 

+

 

+

inches

",165,165,,,352275 +PSBCBNU,2,Fill-in-the-blank(s),Numeric,"

Andre drew a plan of a courtyard at a scale of 1 to 60. On his drawing, one side of the courtyard is 2.75 inches.

+

 

+

What is the actual measurement of that side of the courtyard in feet? 

+

 

+

feet

",13.75,13.75,,,352500 +PSBB9,2,Fill-in-the-blank(s),Numeric,"

How many inches is that?

+

 

+

inches

+

 

",205920,205920,,,242 +PSBX5W,1,Fill-in-the-blank(s),Numeric,"

The scale of a map says that 4 cm represents 5 km.

+

 

+

What distance on the map (in centimeters) represents an actual distance of 4 kilometers?

+

 

+

  centimeters

",3.2,3.2,,,114557 +PSBEKA,4,Fill-in-the-blank(s),Numeric,"

Use the equation to predict the fuel efficiency of a car that weighs 100 kilograms.

+

 

+

mpg

+

 

+

Round your answer to the hundredths place.

",40.16,40.16,,,22902 +PSBEKA,5,Fill-in-the-blank(s),Numeric,"

Use the equation to predict the weight of a car that has a fuel efficiency of 22 mpg.

+

 

+

kg

+

 

+

Round your answer to the nearest whole.

",1693,1693,,,23029 +PSBB4BH,1,Fill-in-the-blank(s),Numeric,"

There are 12 inches in 1 foot and 5,280 feet in 1 mile. Elena ran 212 miles.

+

 

+

How many feet is that?

+

 

+

  feet

",13200,13200,,,310779 +PSBB4BH,2,Fill-in-the-blank(s),Numeric,"

How many inches is that?  

+

 

+

inches

",158400,158400,,,310891 +PSBZU8,1,Fill-in-the-blank(s),Numeric,"

A store sells rope by the meter. The equation p = 0.8L represents the price p (in dollars) of a piece of nylon rope that is L meters long.

+

 

+

How much does the nylon rope cost per meter?  $

",0.8,0.8,,,122934 +PSBZU8,2,Fill-in-the-blank(s),Numeric,"

A store sells rope by the meter. The equation p = 0.8L represents the price p, in dollars of a piece of nylon rope that is meters long.

+

 

+

How long is a piece of nylon rope that costs $1.00?  

+

 

+

meters

",1.25,1.25,,,123580 +PSBBGN8,1,Fill-in-the-blank(s),Numeric,"

Here is a histogram that shows some dog weights in pounds.

+

 

+

+

 

+

Each bar includes the left-end value but not the right-end value. For example, the first bar includes dogs that weigh 60 pounds and 68 pounds but not 80 pounds.

+

 

+

 

+

Use the histogram to answer the following questions.

+

How many dogs weigh at least 100 pounds?

+

 

+

dogs

",23,23,,,206643 +PRABFKUK,1,Order / Sort,Ordering,

Order these numbers from greatest to least:

,"

-312

,

0

,

14

,

74

,

4

,

-4

,

-54

","

-312

,

0

,

14

,

74

,

4

,

-4

,

-54

",,,86693 +PSBEWH,3,Fill-in-the-blank(s),Numeric,"

It took Clare 30 minutes to walk around the garden at a constant speed. At what speed was she walking?

+

 

+

 

+

  feet per hour

",16800,16800,,,24870 +PSBEWH,1,Fill-in-the-blank(s),Numeric,"

Here is a map of the Missouri Botanical Garden. Clare walked all the way around the garden.

+

 

+

+

 

+

What is the actual distance around the garden?  

+

 

+

feet

",8400,8400,,,24640 +PRABQP67,1,Order / Sort,Ordering,

Put these numbers in order from least to greatest:

,"

273

,

36

,

643

,

10

,

8

,

163

","

273

,

36

,

643

,

10

,

8

,

163

",,,316129 +PSBBGTE,1,Fill-in-the-blank(s),Numeric,"

Here is Quadrilateral ABCD.

+ + + + + + + +
+

Quadrilateral PQRS is a scaled copy of Quadrilateral ABCD. Point P corresponds to A, Q to B, R to C, and S to D.

+

 

+

If the distance from P to R is 3 units, what is the distance from Q to S?   units

+
",3,3,,,207210 +PSBK3Q,1,Fill-in-the-blank(s),Numeric,"

Your teacher will give you a drawing of the Apollo Lunar Module. It is drawn at a scale of 1 to 50.

+

 

+

The “legs” of the spacecraft are its landing gear. Use the drawing to estimate the actual length of each leg on the sides. Write your answer to the nearest 10 centimeters.

+

 

+

centimeters

",350,350,,,51489 +PSB3YG,6,Fill-in-the-blank(s),Numeric,"

How much will they make if they sell a million tickets?

+

 

+

$

",62200000,62200000,,,135875 +PSBBG4V,4,Fill-in-the-blank(s),Numeric,"

+

What is the distance between B and D?   units

",3,3,,,208594 +PSBBG4V,5,Fill-in-the-blank(s),Numeric,"

 Figure 2 is a scaled copy of Figure 1.

+

+

 

+

What is the scale factor that takes Figure 1 to Figure 2?  

",3,3,,,208921 +PSB3YG,7,Fill-in-the-blank(s),Algebraic Expression,"

How much will they make if they sell x tickets?

+

 

+

$

+

 

+

Use x as your variable.

+

 

",62.2x,62.2x,,,136020 +PSB3YG,8,Fill-in-the-blank(s),Numeric,"

If they make $404,300, how many tickets have they sold?

+

 

+

tickets

",6500,6500,,,136146 +PRABEPJS,1,Fill-in-the-blank(s),Numeric,"

Complete the equation with a number that makes it true.

+


5 ·= 15

",3,3,,,109056 +PRABTGS8,1,Fill-in-the-blank(s),Numeric,"

Complete the equation with a number that makes it true.

+


4 · = 32

",8,8,,,109387 +PRABTGS9,1,Fill-in-the-blank(s),Numeric,"

Complete the equation with a number that makes it true.

+

 

+

6 · = 9

","1 1/2, 3/2, 1.5","1 1/2, 3/2, 1.5",,,109501 +PRABTGTA,1,Fill-in-the-blank(s),Numeric,"

Complete the equation with a number that makes it true.

+


12 · = 3

","1/4, 0.25","1/4, 0.25",,,109628 +PRABEQDY,1,Fill-in-the-blank(s),Numeric,"

A model airplane is built at a scale of 1 to 72. If the model plane is 8 inches long, how many feet long is the actual airplane?

+

 

+

  feet

",48,48,,,124091 +PSBBSSH,1,Fill-in-the-blank(s),Numeric,"

These two triangles are scaled copies of one another. The area of the smaller triangle is 9 square units. What is the area of the larger triangle?  

+

 

+

square units

+

 

+

",36,36,,,256312 +PSBDYSP,1,Fill-in-the-blank(s),Numeric,"

Water costs $1.25 per bottle. At this rate, what is the cost of 10 bottles?

+

 

+

 $

",12.5,12.5,,,643786 +PSBDYSP,2,Fill-in-the-blank(s),Numeric,"

Water costs $1.25 per bottle. At this rate, what is the cost of 20 bottles? 

+

 

+

$

",25,25,,,644011 +PSBDYSP,3,Fill-in-the-blank(s),Numeric,"

Water costs $1.25 per bottle. At this rate, what is the cost of 50 bottles?

+

 

+

 $

",62.5,62.5,,,644155 +PSBDET5,1,Fill-in-the-blank(s),Numeric,"

An area of 4 square yards is equal to 36 square feet. 10 square yards is equal to how many square feet?  

+

 

+

square feet

",90,90,,,547591 +PSBQ8E,3,Fill-in-the-blank(s),Algebraic Expression,"

Write an equation to represent the relationship between the number of calories, c and the number of servings of granola, s

+

 

+

 

+

c =  

",350s,350s,,,74204 +PSB3YG,1,Fill-in-the-blank(s),Numeric,"

A performer expects to sell 5,000 tickets for an upcoming concert. They want to make a total of $311,000 in sales from these tickets.

+

 

+

Assuming that all tickets have the same price, what is the price for one ticket?

+

 

+

$

",62.2,62.2,,,135233 +PSB3YG,2,Fill-in-the-blank(s),Numeric,"

How much will they make if they sell 7,000 tickets?

+

 

+

$

",435400,435400,,,135345 +PSB3YG,3,Fill-in-the-blank(s),Numeric,"

How much will they make if they sell 10,000 tickets?

+

 

+

$

",622000,622000,,,135491 +PSB3YG,4,Fill-in-the-blank(s),Numeric,"

How much will they make if they sell 50,000 tickets?

+

 

+

$

",3110000,3110000,,,135638 +PSB3YG,5,Fill-in-the-blank(s),Numeric,"

How much will they make if they sell 120,000 tickets?

+

 

+

$

",7464000,7464000,,,135753 +PSBDEQN,1,Fill-in-the-blank(s),Numeric,"

Blueberries cost $4.00 per pound. 

+

 

+

How many pounds of blueberries can you buy for $1.00?  

+

 

+

pounds of blueberries

",0.25,0.25,,,546775 +PSBK3Q,5,Fill-in-the-blank(s),Numeric,"

Neil Armstrong was 71 inches tall when he went to the Moon. How tall would he be in this scale drawing?

+

 

+

inches

+

 

+

Round your answer to the tenths.

",1.4,1.4,,,52116 +PRABMPBK,1,Fill-in-the-blank(s),Numeric,"

Complete the equation with a number that makes it true.

+

8 ⋅   =  40

",5,5,,,360938 +PRABMPBP,1,Fill-in-the-blank(s),Numeric,"

Complete the equation with a number that makes it true.

+


21 -  =  7

",14,14,,,361546 +PSBBMYV,1,Fill-in-the-blank(s),Numeric,"

A local park is in the shape of a square. A map of the local park is made with the scale 1 inch to 200 feet.  

+

 

+

If the park is shown as a square on the map, each side of which is one foot long, how long is each side of the square park?

+

 

+

 

+

feet

",2400,2400,,,230683 +PSBBMYV,2,Fill-in-the-blank(s),Numeric,"

A local park is in the shape of a square. A map of the local park is made with the scale 1 inch to 200 feet.  

+

 

+

 

+

If a straight path in the park is 900 feet long, how long would the path be when represented on the map?

+

 

+

 

+

  inches

",4.5,4.5,,,231026 +PSBRRZ,1,Fill-in-the-blank(s),Numeric,"

A scale drawing of a lake has a scale of 1 cm to 80 m. If the actual width of the lake is 1,000 m, what is the width of the lake on the scale drawing?  

+

 

+

cm

",12.5,12.5,,,76811 +PSBZVR,1,Fill-in-the-blank(s),Numeric,"

Here is Triangle A. Lin created a scaled copy of Triangle A with an area of 72 square units.

+

 

+

+

 

+

How many times larger is the area of the scaled copy compared to that of Triangle A?  

+

 

+

times larger

",16,16,,,123304 +PSB3YG,9,Fill-in-the-blank(s),Numeric,"

How many tickets will they have to sell to make $5,000,000?

+

 

+

tickets

",80386,80386,,,136282 +PSBHPP,1,Fill-in-the-blank(s),Numeric,"

Strawberries cost $3.00 per pound. 

+

 

+

How many pounds of strawberries can you buy for $1.00?  

+

 

+

pounds of strawberries

",3-Jan,3-Jan,,,39724 +PSBBZFQ,1,Fill-in-the-blank(s),Algebraic Expression,"

A trail mix recipe asks for 4 cups of raisins for every 6 cups of peanuts. There is proportional relationship between the amount of raisins, r (cups), and the amount of peanuts, p (cups), in this recipe.

+

 

+

Write the equation for the relationship that has a constant of proportionality greater than 1. 

+

 

+

p =

+

Use r as your variable.

",6/4r,6/4r,,,294155 +PSBHRT,1,Fill-in-the-blank(s),Numeric,"

Clare made some lemonade by mixing 6 cups of water with 8 tablespoons of lemonade powder.

+

 

+

How many tablespoons of powder per cup of water is that?

+

 

+

  tablespoons of powder per cup of water

",6-Aug,6-Aug,,,40293 +PSBX7W,1,Fill-in-the-blank(s),Numeric,"

Tyler has two different maps of Ohio.

+

 

+
    +
  • The scale on the first map is 1 cm to 10 km. The distance from Cleveland to Cincinnati is 40 cm.
  • +
  • The scale on the second map is 1 cm to 50 km.


  • +
+

What is the distance from Cleveland to Cincinnati on the second map?

+

 

+

  cm

",8,8,,,114882 +PSBHRT,2,Fill-in-the-blank(s),Numeric,"

Clare made some lemonade by mixing 6 cups of water with 8 tablespoons of lemonade powder.

+

 

+

How many cups of water per tablespoon of powder is that?

+

 

+

cups of water per tablespoon of powder

",8-Jun,8-Jun,,,40426 +PSBBBZA,1,Fill-in-the-blank(s),Numeric,"

Clare is cycling at a speed of 12 miles per hour. If she starts at a position chosen as zero, what will her position be after 45 minutes?  

+

 

+

 miles

",9,9,,,179837 +PSBBBZA,2,Fill-in-the-blank(s),Numeric,"

Han is cycling at a speed of -8 miles per hour; if he starts at the same zero point, what will his position be after 45 minutes?

+

 

+

  miles

",-6,-6,,,180087 +PSBBBTV,1,Fill-in-the-blank(s),Numeric,"

A submarine is searching for underwater features. It is accompanied by a small aircraft and an underwater robotic vehicle.

+

 

+

At one time the aircraft is 200 m above the surface, the submarine is 55 m below the surface, and the underwater robotic vehicle is 227 m below the surface. 

+

 

+

What is the difference in height between the submarine and the aircraft?  

+

 

+

m

",255,255,,,179142 +PSBBBZA,3,Fill-in-the-blank(s),Numeric,"

What will the distance between them be after 45 minutes?

+

 

+

 miles

",15,15,,,180403 +PSB36Y,1,Fill-in-the-blank(s),Numeric,"

Aluminum cans can be recycled instead of being thrown in the garbage. The weight of 10 aluminum cans is 0.16 kilograms. The aluminum in 10 cans that are recycled has a value of $0.14.

+

 

+

If a family threw away 2.4 kg of aluminum in a month, how many cans did they throw away?

+

 

+

cans

",150,150,,,136496 +PSBB96V,5,Fill-in-the-blank(s),Numeric,"

How far away from the ticket booth was Tyler after 1 second?

+

 

+

meters

",1.25,1.25,,,343609 +PSBB96V,7,Fill-in-the-blank(s),Numeric,"

What is the constant of proportionality for the relationship between time and distance?

+

 

+

",1.25,1.25,,,343945 +PSBC5SN,1,Fill-in-the-blank(s),Numeric,"

Jada volunteers at an animal shelter that holds picnics to introduce people to animals. For the first picnic, she brought 36 clementines for 16 people, which was the right amount. For the next picnic, there will be 40 people! How many clementines should Jada bring for all those people? (Note: clementines are fruits that are like small oranges.).

+

 

+

clementines

",90,90,,,495575 +PSBU7R,1,Fill-in-the-blank(s),Numeric,"

Noah has a coupon for 30% off at his favorite clothing store. He uses it to buy a hoodie and a pair of jeans.

+

 

+

Noah paid $28 for the jeans after using the coupon. What is the regular price of the jeans? 

+

 

+

$

",40,40,,,96632 +PRABEU34,1,Fill-in-the-blank(s),Numeric,"

A circular running track is 14 mile long. Elena runs on this track, completing each lap in 120 of an hour.

+

 

+
+

What is Elena’s running speed?

+

 

+

  miles per hour

+
",5,5,,,501551 +PSBU7R,2,Fill-in-the-blank(s),Numeric,"

Noah has a coupon for 30% off at his favorite clothing store. He uses it to buy a hoodie and a pair of jeans.

+

 

+

The regular price of a hoodie is $27. What did Noah pay for the hoodie? 

+

 

+

$

",18.9,18.9,,,96761 +PRABJDMR,1,Fill-in-the-blank(s),Numeric,"

The population of City A was approximately 243,000 people, and it increased by 8% in one year. What was the new population?

+

 

+

Approximately people

","262000, 262440","262000, 262440",,,318171 +PSBCD55,2,Fill-in-the-blank(s),Numeric,"

If you leave this money in the account, how much will be in your account after 2 years? 

+

 

+

$

",337.08,337.08,,,367651 +PSBDVK,1,Fill-in-the-blank(s),Numeric,"

How many cubic centimeters are there in 1 cubic meter?

+

 

+

cubic centimeters

",1000000,1000000,,,19558 +PSBDZUH,1,Fill-in-the-blank(s),Numeric,"

A certain shade of pink is created by adding 3 cups of red paint to 7 cups of white paint.

+

 

+ + + + + + + + + + + + + + + +
cups of white paintcups of red paint
1 
73
+

 

+

 

+

How many cups of red paint should be added to 1 cup of white paint?

+

 

+

cups of red paint

+

Express your answer as a fraction.

",7-Mar,7-Mar,,,650373 +PSBDZUH,2,Fill-in-the-blank(s),Numeric,"

A certain shade of pink is created by adding 3 cups of red paint to 7 cups of white paint.

+

 

+ + + + + + + + + + + + + + + +
cups of white paintcups of red paint
1 
73
+

 

+

 

+

What is the constant of proportionality?  

+

 

+

+

Express your answer as a fraction.

",7-Mar,7-Mar,,,650519 +PSBCD55,1,Fill-in-the-blank(s),Numeric,"

If you deposit $300 in an account with a 6% interest rate, how much will be in your account after 1 year? 

+

 

+

$

",318,318,,,367406 +PSB2NP,1,Fill-in-the-blank(s),Numeric,"

Here is a prism with a pentagonal base. The height is 8 cm.

+

 

+

What is the volume of the prism?  

+

 

+

cm3

+

 

+

 

+

",232,232,,,128308 +PRABQWBN,1,Fill-in-the-blank(s),Algebraic Expression,"

A goat (point G) is tied with a 6-foot rope to the corner of a shed. The floor of the shed is a square whose sides are each 3 feet long. The shed is closed and the goat can't go inside. The space all around the shed is flat, grassy, and the goat can't reach any other structures or objects. What is the area over which the goat can roam? 

+
+
+
 
+
+
square feet
+
+

Use pi to represent the  π symbol.

+

For example:

+

32π would be typed as 32pi

+
+
+
",31.5pi,31.5pi,,,56351 +PSB7FG,1,Fill-in-the-blank(s),Numeric,"

A circle’s circumference is approximately 76 cm.

+

 

+

Estimate the radius of the circle.

+

 

+

cm

+

Use  3.14 for π.

+

Round your answer to the nearest whole number.

",12,12,,,155089 +PSBBU6D,3,Fill-in-the-blank(s),Numeric,"

How long does it take the car to travel 26 miles at this speed? 

+

 

+

hours

",5-Feb,5-Feb,,,270281 +PRABESVY,1,Fill-in-the-blank(s),Numeric,"

Jada paints a circular table that has a diameter of 37 inches. What is the area of the table?

+

 

+

inches2  

+

Use 3.14 for π.

+

Round your answer to the nearest whole number.

",1075,1075,,,149544 +PSB7FG,3,Fill-in-the-blank(s),Numeric,"

A circle’s circumference is approximately 76 cm.

+

 

+

Estimate the area of the circle.  

+

 

+

 cm2

+

Use 3.14 for π.

+

Round your answer to the nearest whole number.

","460, 452","460, 452",,,155680 +PSBC7QJ,1,Fill-in-the-blank(s),Numeric,"

A college student takes out a $7,500 loan from a bank. What will the balance of the loan be after one year (assuming the student has not made any payments yet):

+

 

+

If the bank charges 3.8% interest each year? 

+

 

+

$

",7785,7785,,,505118 +PSBDNCG,3,Fill-in-the-blank(s),Numeric,"

A certain shade of light blue paint is made by mixing 112 quarts of blue paint with 5 quarts of white paint. How much white paint would you need to mix with 4 quarts of blue paint?

+

 

+

quarts of white paint

",13 1/3,13 1/3,,,584537 +PSBBNBQ,1,Fill-in-the-blank(s),Numeric,"

A 200 pound person weighs 33 pounds on the moon.

+

How much did the person's weight decrease?  

+

 

+

 pounds

",167,167,,,232655 +PRABESKP,1,Fill-in-the-blank(s),Numeric,"

A small, test batch of lemonade used 14 cup of sugar added to 1 cup of water and 14 cup of lemon juice. After confirming it tasted good, a larger batch is going to be made with the same ratios using 10 cups of water. How much sugar should be added so that the large batch tastes the same as the test batch?

+

 

+

 

+

cups

",2.5,2.5,,,25209 +PSBBNBQ,2,Fill-in-the-blank(s),Numeric,"

By what percentage did the person's weight decrease?  

+

 

+

%

+

Round your answer to the nearest whole percent. 

",84,84,,,233047 +PSBTDG,2,Fill-in-the-blank(s),Numeric,"

Later, someone wants to use the data to find the amount of water at times before the sensor started. What should the sensor have read at the time -7 minutes?

+

 

+

liters

",120,120,,,86074 +PRABESJV,1,Fill-in-the-blank(s),Numeric,"

Estimate the side length of a square that has a 9 cm long diagonal.

+

 

+

 

+

cm

+

Round your answer to the nearest tenth.

","6.4, 6.3","6.4, 6.3",,,123610 +PSBBU6D,2,Fill-in-the-blank(s),Numeric,"

How many miles does the car travel in 1.5 hours?

+

 

+

miles

",97.5,97.5,,,269923 +PSBBKCS,1,Fill-in-the-blank(s),Numeric,"

A train is traveling at a constant speed and goes 7.5 kilometers in 6 minutes. At that rate:

+

 

+ + + + + + + +
+

How far does the train go in 1 minute?

+

 

+

kilometers

+
",4-May,4-May,,,221573 +PSBBKCS,2,Fill-in-the-blank(s),Numeric,"

How far does the train go in 100 minutes?

+

 

+

kilometers 

",125,125,,,221711 +PSBBVCZ,3,Fill-in-the-blank(s),Numeric,"

Elena has some bottles of water that each holds 17 fluid ounces.

+

 

+

How many bottles does it take to hold 51 fluid ounces of water?  

+

 

+

bottles

",3,3,,,271395 +PSBCGTP,1,Fill-in-the-blank(s),Numeric,"

A cyclist rode 3.75 miles in 0.3 hours. 

+
+

How fast was she going in miles per hour?  

 miles per hour

+
",12.5,12.5,,,382565 +PRABETC7,1,Fill-in-the-blank(s),Numeric,"

A 50-centimeter piece of wire is bent into a circle. What is the area of this circle?

+

 

+

cm2

+

Use 3.14 for π.

+

Round your answer to the nearest whole number. 

",199,199,,,122706 +PSBZAQ,2,Fill-in-the-blank(s),Numeric,"

Crater Lake in Oregon is shaped like a circle with a diameter of about 5.5 miles.

+

 

+

What is the area of the surface of Crater Lake?

+

 

+

square miles

+

Use 3.14 for π.

+

Round to the nearest whole number.

",24,24,,,120578 +PRABETC3,1,Fill-in-the-blank(s),Numeric,"

To make a shade of paint called jasper green, mix 4 quarts of green paint with 23 cups of black paint. How much green paint should be mixed with 4 cups of black paint to make jasper green?  

+

 

+

 

+

quarts

",24,24,,,122274 +PSBCXKJ,2,Fill-in-the-blank(s),Numeric,"

To transmit information on the internet, large files are broken into packets of smaller sizes. Each packet has 1,500 bytes of information. An equation relating packets to bytes of information is given by b = 1,500p where p represents the number of packets and b represents the number of bytes of information.

+

 

+

How much information could be transmitted in 30,000 packets?

+

 

+

bytes

","45,000,000","45,000,000",,,460209 +PSBCXKJ,1,Fill-in-the-blank(s),Numeric,"

To transmit information on the internet, large files are broken into packets of smaller sizes. Each packet has 1,500 bytes of information. An equation relating packets to bytes of information is given by b = 1,500p where p represents the number of packets and b represents the number of bytes of information.

+

 

+

How many packets would be needed to transmit 30,000 bytes of information?

+

 

+

packets

",20,20,,,460042 +PSBBVBE,2,Fill-in-the-blank(s),Numeric,"

The fence around a circular pool is 75 ft long.

+

 

+

Estimate the diameter of the circle: 

+

 

+

feet

+

Use  3.14 for π.

+

Round your answer to the nearest whole number.

",24,24,,,270921 +PSBBVV9,2,Fill-in-the-blank(s),Numeric,"

From the center to the edge of a DVD measures 60 mm.

+

 

+

Estimate the diameter of the circle: 

+

 

+

mm

",120,120,,,274359 +PSBBVSF,2,Fill-in-the-blank(s),Numeric,"

The length of the metal rim around a glass lens is 190 mm.  

+

 

+

Estimate the diameter of the circle:

+

 

+

mm

+

Use  3.14 for π.

+

Round your answer to the nearest whole number.

","60, 61","60, 61",,,273496 +PSBBVV9,3,Fill-in-the-blank(s),Numeric,"

From the center to the edge of a DVD measures 60 mm.

+

 

+

Estimate the circumference of the circle: 

+

 

+

mm

+

Use  3.14 for π.

+

Round your answer to the nearest whole number. 

",377,377,,,274572 +PSBDESP,1,Fill-in-the-blank(s),Numeric,"

Han made some hot chocolate by mixing 4 cups of milk with 6 tablespoons of cocoa.

+

 

+

How many tablespoons of cocoa per cup of milk is that?  

+

 

+

tablespoons of cocoa per cup of milk

",4-Jun,4-Jun,,,547291 +PSBRZQ,1,Fill-in-the-blank(s),Numeric,"

At a dinner, the meal cost $22 and a sales tax of $1.87 was added to the bill.

+

 

+

How much would the sales tax be on a $66 meal? 

+

 

+

$

",5.61,5.61,,,77978 +PRABMR8A,1,Fill-in-the-blank(s),Numeric,"

Jada has 12 library books checked out and Han has 13 less than that. How many books does Han have checked out?  

+

 

+

books

",8,8,,,56590 +PRABPKDE,1,Fill-in-the-blank(s),Algebraic Expression,"

Tyler ate x fruit snacks, and Han ate 34 less than that.  Write an equation to represent the relationship between the number Tyler ate (x) and the number Han ate (y).

+

 

+

 

+

y =

",1/4x,1/4x,,,47104 +PSBDESP,2,Fill-in-the-blank(s),Numeric,"

Han made some hot chocolate by mixing 4 cups of milk with 6 tablespoons of cocoa.

+

 

+

How many cups of milk per tablespoon of cocoa is that?  

+

 

+

cups of milk per tablespoon of cocoa

",6-Apr,6-Apr,,,547415 +PRABP94X,1,Fill-in-the-blank(s),Algebraic Expression,"

Mai skated x miles, and Clare skated 35 farther than that.  Write an equation to represent the relationship between distance Mai skated (x) and the distance Clare skated (y).

+

 

+

y =

","8/5x, 8x/5","8/5x, 8x/5",,,47181 +PSBC7JE,2,Fill-in-the-blank(s),Numeric,"

How much money will the store get from the sale of the couch? 

+

 

+

$

",467.77,467.77,,,504695 +PSBDA37,1,Fill-in-the-blank(s),Numeric,"

Solve the equation.

+

 

+

8.88 = 4.44(x  7)

+

 

+

x =

",9,9,,,524787 +PRABESVE,1,Fill-in-the-blank(s),Numeric,"

The radius of the earth is approximately 6,400 km. The equator is the circle around the earth dividing it into the northern and southern hemisphere. (The center of the earth is also the center of the equator.) What is the length of the equator?

+

 

+

km

+

Use 3.14 for π.

+

Round your answer to the nearest ten thousand.

",40000,40000,,,102054 +PSBC2YF,1,Fill-in-the-blank(s),Numeric," + + + + + + +
Green sea turtles live most of their lives in the ocean but come ashore to lay their eggs. Some beaches where turtles often come ashore have been made into protected sanctuaries so the eggs will not be disturbed. +

+
+

 

+

One sanctuary had 180 green sea turtles come ashore to lay eggs last year. This year, the number of turtles increased by 10%. How many turtles came ashore to lay eggs in the sanctuary this year?

+

 

+

green sea turtles

",198,198,,,479016 +PSBC2Q7,2,Fill-in-the-blank(s),Numeric,"

What was the price before the discount?

+

 

+

$

",16,16,,,477986 +PSBVWT,1,Fill-in-the-blank(s),Numeric,"

Here are several recipes for sparkling lemonade. For each recipe, describe how many tablespoons of lemonade mix it takes per cup of sparkling water.

+

 

+

 4 tablespoons lemonade mix and 12 cups of sparkling water.

+

 

+

tablespoons lemonade mix per cup of sparkling water

+

Write your answer as a fraction.

",3-Jan,3-Jan,,,100386 +PSBVWT,2,Fill-in-the-blank(s),Numeric,"

Here are several recipes for sparkling lemonade. For each recipe, describe how many tablespoons of lemonade mix it takes per cup of sparkling water.

+

 

+

4 tablespoons of lemonade mix and 6 cups of sparkling water.

+

 

+

tablespoons lemonade mix per cup of sparkling water 

+

Write your answer as a fraction.

",3-Feb,3-Feb,,,100712 +PSBVWT,3,Fill-in-the-blank(s),Numeric,"

Here are several recipes for sparkling lemonade. For each recipe, describe how many tablespoons of lemonade mix it takes per cup of sparkling water.

+

 

+

3 tablespoons of lemonade mix and 5 cups of sparkling water.

+

 

+

tablespoons lemonade mix per cup of sparkling water

+

Write your answer as a fraction.

",5-Mar,5-Mar,,,100983 +PSBB2JV,2,Fill-in-the-blank(s),Numeric,"

A bug was sitting on the tip of the propeller blade when the propeller started to rotate. The bug held on for 5 rotations before flying away. How far did the bug travel before it flew off?

+

 

+

inches

+

 

+

Round to the nearest whole inch.

",754,754,,,301355 +PSBBBHE,3,Fill-in-the-blank(s),Numeric,"

They actually pay $52.99. The additional $7 is a tip for the server. What percentage of the subtotal is the tip?

+

 

+

%

+

Round your answer to the hundredths place.

",16.67,16.67,,,177927 +PSBB2N3,3,Fill-in-the-blank(s),Numeric,"

The track is 9.76 m wide all the way around. What is the distance around the outside of the track?

+

 

+

m

+

Use 3.14 as an approximation for π.

",459.3,459.3,,,301764 +PSBB5M8,1,Fill-in-the-blank(s),Numeric,"
The length of segment AE is 5 centimeters. 
+
 
+
 
+
+
 
+
+

 

+

What is the length of segment CD?

+

 

+

  centimeters

+
",10,10,,,317396 +PSBB2N3,1,Fill-in-the-blank(s),Numeric,"

The field inside a running track is made up of a rectangle that is 84.39 m long and 73 m wide, together with a half-circle at each end.

+

 

+

+

 

+

What is the distance around the inside of the track?

+

 

+

m

+

Use 3.14 as an approximation for π.

",398,398,,,301541 +PRABESU5,1,Fill-in-the-blank(s),Numeric,"

The diameter of a bike wheel is 27 inches. If the wheel makes 15 complete rotations, how far does the bike travel?

+

 

+

 

+

inches

+

Round your answer to the nearest whole number. 

",1272,1272,,,318098 +PRABESU8,1,Fill-in-the-blank(s),Numeric,"

Circle A has circumference 223 m. Circle B has a diameter that is 112 times as long as Circle A’s diameter. What is the circumference of Circle B?  

+

 

+

 

+

meters

+

Round to the nearest whole number.

",4,4,,,318855 +PSBBP38,1,Fill-in-the-blank(s),Numeric,"

The wheels on Noah's bike have a circumference of about 5 feet. 

+

 

+

 

+

How far does the bike travel as the wheel makes 15 complete rotations?

+

 

+

feet

",75,75,,,242585 +PSBBP38,2,Fill-in-the-blank(s),Numeric,"

How many times do the wheels rotate if Noah rides 40 feet?  

+

 

+

rotations

",8,8,,,242782 +PSBCTHV,1,Fill-in-the-blank(s),Numeric,"

The circumference of a car wheel is about 65 inches. 

+

 

+

If the car wheel rotates once per second, how far does the car travel in one minute?

+

 

+

inches

",3900,3900,,,437057 +PSBCTHV,2,Fill-in-the-blank(s),Numeric,"

If the car wheel rotates once per second, about how many miles does the car travel in one hour?

+

 

+

+

Round your answer to the nearest tenth of a mile.

+

 

",3.7,3.7,,,437183 +PSBCTHV,4,Fill-in-the-blank(s),Numeric,"

If the car is traveling 65 miles per hour, about how many times per second does the wheel rotate?

+

 

+

times

+

Round your answer to the nearest tenth.

",17.6,17.6,,,437428 +PRABESU6,1,Fill-in-the-blank(s),Numeric,"

The wheels on Kiran's bike are 64 inches in circumference. How many times do the wheels rotate if Kiran rides 300 yards? 

+

 

+

times

+

Round your answer to the nearest whole number.

",169,169,,,318409 +PSBBBKF,2,Fill-in-the-blank(s),Numeric," + + + + + + +
+

Some other person’s sales tax is $1.61. How much was their subtotal?

+

 

+

$

+
","16.95, 16.92, 16.91, 16.90, 16.93, 16.94, 16.96, 16.97, 16.98, 16.99","16.95, 16.92, 16.91, 16.90, 16.93, 16.94, 16.96, 16.97, 16.98, 16.99",,,178224 +PRABPJK5,1,Fill-in-the-blank(s),Numeric,"

Point A is the center of the circle, and the length of CD is 15 centimeters. Find the circumference of this circle.  

+

 

+

+

 

+

 

+

centimeters

+
+
+

Use  3.14 for π.

+
+

Round to the nearest whole number.

+
",47,47,,,156887 +PRABESVN,1,Fill-in-the-blank(s),Numeric,"

Circle A has area 500 in2. The diameter of circle B is three times the diameter of circle A. Estimate the area of circle B.  

+

 

+

 

+

in2

",4500,4500,,,448752 +PRABESVP,1,Fill-in-the-blank(s),Numeric,"

Lin’s bike travels 100 meters when her wheels rotate 55 times. What is the circumference of her wheels?  

+

 

+

meters

+
+

Round your answer to the nearest hundredth place.

+
",1.82,1.82,,,449067 +PRABETPD,1,Fill-in-the-blank(s),Numeric,"

On Monday, the high was 60 degrees Fahrenheit. On Tuesday, the high was 18% more. How much did the high increase from Monday to Tuesday?  

+

 

+

degrees Fahrenheit

",10.8,10.8,,,503044 +PRABETQN,1,Fill-in-the-blank(s),Numeric,"

A watermelon weighs 8,475 grams. A scale measured the weight with an error of 12% under the actual weight. What was the measured weight?

+

 

+

grams

",7458,7458,,,326880 +PSBBU45,1,Fill-in-the-blank(s),Numeric,"

A groundskeeper needs grass seed to cover a circular field, 290 feet in diameter.

+

 

+

A store sells 50-pound bags of grass seed. One pound of grass seed covers about 400 square feet of field.

+

 

+

What is the smallest number of bags the groundskeeper must buy to cover the circular field?  

+

 

+

bags

",4,4,,,270246 +PSBBFAG,1,Fill-in-the-blank(s),Numeric,"

The field inside a running track is made up of a rectangle 84.39 m long and 73 m wide, together with a half-circle at each end. The running lanes are 9.76 m wide all the way around.

+

 

+

+

 

+

What is the area of the running track that goes around the field?

+

 

+

m2

+

Round your answer to the nearest tenth.

+

 

+

 

",4183.6,4183.6,,,199123 +PRABHX6K,1,Fill-in-the-blank(s),Numeric,"

What percentage of the car price is the tax?

+

 

+

%

+

 

+

",25,25,,,15333 +PRABHX6N,1,Fill-in-the-blank(s),Numeric,"

What percentage of the shirt cost is the discount?

+

 

+

%

+

Round your answer to the nearest whole percent.

+

 

+

",33,33,,,15629 +PRABH67F,1,Fill-in-the-blank(s),Numeric,"

Instructions to care for a plant say to water it with 34 cup of water every day. The plant has been getting 25% too much water. How much water has the plant been getting?

+

 

+

cup(s) of water

",15/16,15/16,,,51822 +PSBBU3Q,1,Fill-in-the-blank(s),Numeric,"

This figure is made from a part of a square and a part of a circle. 

+

 

+

+

 

+
+
+
+
+

What is the perimeter of this figure, to the nearest unit?

+

 

+

units

+
+
+
+
",38,38,,,269908 +PSBDRW4,1,Fill-in-the-blank(s),Algebraic Expression,"

The sides of a square have length s.

+

 

+

Write a formula for the perimeter P of the square. 

+

 

+

P =

+

Use s as your variable.

",4s,4s,,,604967 +PSBKW7,1,Fill-in-the-blank(s),Numeric,"

A metal measuring tape expands when the temperature goes above 50°F. For every degree Fahrenheit above 50, its length increases by 0.00064%.

+

 

+

The temperature is 100 degrees Fahrenheit. How much longer is a 30-foot measuring tape than its correct length?

+

 

+

feet

",0.0096,0.0096,,,51480 +PSBKW7,2,Fill-in-the-blank(s),Numeric,"

What is the percent error?

+

 

+

%

",0.032,0.032,,,51614 +PRABETQS,1,Fill-in-the-blank(s),Numeric,"

A student estimated that it would take 3 hours to write a book report, but it actually took her 5 hours. What is the percent error for her estimate?  

+

 

+

%

",40,40,,,359196 +PSBB6QW,3,Fill-in-the-blank(s),Numeric,"

Express the measurement error as a percentage of the actual depth.  

+

 

+

%

+

Round your answer to the nearest hundredths place.

",1.27,1.27,,,324089 +PSBBR5,1,Fill-in-the-blank(s),Numeric,"

Here is a picture that shows one side of a child's wooden block with a semicircle cut out at the bottom.

+

 

+

+

 

+

 

+

Find the area of the side.

+

 

+

 cm2

+

 

+

Use 3.14 for π.

+

Round your answer to the nearest hundredth place.

","30.68, 30.69","30.68, 30.69",,,7411 +PRABETQV,1,Fill-in-the-blank(s),Numeric,"

It took 48 minutes to drive downtown. An app estimated it would be less than that. If the error was 20%, what was the app’s estimate?  

+

 

+

minutes

",38.4,38.4,,,359989 +PRABESV3,1,Fill-in-the-blank(s),Exact Match,"

A circle with a 12-inch diameter is folded in half and then folded in half again. What is the area of the resulting shape?  

+

 

+

inches2

+

 

+

Use pi to represent the symbol.

+

For example: 32π would be typed as 32pi

",9pi,9pi,,,175501 +PSBDRYP,1,Fill-in-the-blank(s),Numeric,"

Priya measured the perimeter of a square desk and found 248 cm. Noah measured the perimeter of the same desk and found 2,468 mm. 

+

 

+

By how many millimeters do these measurements differ?  

+

 

+

millimeters

",12,12,,,605230 +PSBBQN7,2,Fill-in-the-blank(s),Algebraic Expression,"

If the regular price of an item is x dollars, what is the discounted price in dollars?

+

 

+

$

","x-0.2x, 0.80x, 4/5x","x-0.2x, 0.80x, 4/5x",,,245240 +PSBBUMX,3,Fill-in-the-blank(s),Numeric,"

What was the error, expressed in inches?  

+

 

+

inches

",2,2,,,267646 +PSBBUMX,4,Fill-in-the-blank(s),Numeric,"

What was the error, expressed as a percentage of the actual height?  

+

 

+

%

",4,4,,,267794 +PSBB6QW,1,Fill-in-the-blank(s),Numeric,"

The depth of a lake is 15.8 m.

+

 

+

Jada accurately measured the depth of the lake to the nearest meter. What measurement did Jada get?  

+

 

+

meters

",16,16,,,323501 +PSBB6QW,2,Fill-in-the-blank(s),Numeric,"

By how many meters does the measured depth differ from the actual depth?

+

 

+

meters

",0.2,0.2,,,323812 +PSBRZQ,2,Fill-in-the-blank(s),Numeric,"

At a dinner, the meal cost $22 and a sales tax of $1.87 was added to the bill.

+

 

+

What is the tax rate for meals in this city?  

+

 

+

%

",8.5,8.5,,,78165 +PSBC6J7,1,Fill-in-the-blank(s),Numeric,"

Here are the prices of some items and the amount of sales tax charged on each in Nevada. 

+

 

+ + + + + + + + + + + + + + + + + + + +
cost of items ($)sales tax ($)
100.46
502.30
50.23
+

 

+

What is the sales tax rate in Nevada?   %

",4.6,4.6,,,499326 +PSBC6J7,2,Fill-in-the-blank(s),Algebraic Expression,"

Write an expression for the amount of sales tax charged, in dollars, on an item that costs c dollars. 

+

 

+

",0.046c,0.046c,,,499714 +PSBBABF,2,Fill-in-the-blank(s),Numeric,"

If the bike is discounted by 20%, how much will Andre pay (before tax)? 

+

 

+

$

",100,100,,,171421 +PSBY59,2,Fill-in-the-blank(s),Numeric,"

A grocer can buy strawberries for $1.38 per pound.

+

 

+

A strawberry order cost $241.50. How many pounds did the grocer order?  

+

 

+

pounds

",175,175,,,119756 +PSBBGEE,4,Fill-in-the-blank(s),Numeric,"

This car dealership pays the salesperson a bonus for selling the car equal to 6.5% of the sale price. How much commission did the salesperson lose when they decided to off a 10% discount on the price of the car?

+

 

+

$

",102.96,102.96,,,205649 +PSBBGGE,1,Fill-in-the-blank(s),Numeric,"

For each gym membership sold, the gym keeps $42 and the employee who sold it gets $8. What is the commission the employee earned as a percentage of the total cost of the gym membership?

+

 

+

%

",16,16,,,205821 +PSBY88,2,Fill-in-the-blank(s),Numeric,"

How much was the tip as a percentage of the bill?  

+

 

+

%

+

Round your answer to the nearest tenth place.

",18.5,18.5,,,120403 +PSBC36,1,Fill-in-the-blank(s),Numeric,"

To make a Koch snowflake, 

+
    +
  • Start with an equilateral triangle. This is step 1.
  • +
  • Divide each side into 3 equal pieces. Construct a smaller equilateral triangle on the middle third. This is step 2.
  • +
  • Do the same to each of the newly created sides. This is step 3.
  • +
  • Keep repeating this process.
  • +
+

 

+

+

 

+

By what percentage does the perimeter increase at step 2?

+

 

+

%

+

Round your answer to the nearest tenth.

",33.3,33.3,,,14960 +PSBC36,2,Fill-in-the-blank(s),Numeric,"

By what percentage does the perimeter increase at step 3?

+

 

+

%

+

Round your answer to the nearest tenth.

",77.8,77.8,,,15059 +PSBC36,3,Fill-in-the-blank(s),Numeric,"

By what percentage does the perimeter increase at step 10?

+

 

+


%

+

Round your answer to the nearest tenth.

",1675.8,1675.8,,,15138 +PSBBGEE,1,Fill-in-the-blank(s),Numeric," + + + + + + +
+

A car dealership pays a wholesale price of $12,000 to purchase a vehicle.

+

 

+

The car dealership wants to make a 32% profit.

+

 

+

By how much will they mark up the price of the vehicle?

+

 

+

$

+
+

 

",3840,3840,,,205281 +PRABHX6R,1,Fill-in-the-blank(s),Numeric,"

The original price of a bicycle was $375. Now it is on sale for $295. What percentage of the original price was the markdown?

+

 

+

%

+

Round your answer to the nearest hundredth.

",21.33,21.33,,,16005 +PRABHX6Q,1,Fill-in-the-blank(s),Numeric,"

The bill for a meal was $33.75. The customer left $40.00. What percentage of the bill was the tip?

+

 

+

%

+

Round your answer to the nearest hundredth.

",18.52,18.52,,,15881 +PRABHX6M,1,Fill-in-the-blank(s),Numeric,"

What percentage of the food cost is the tip?

+

 

+

%

+

 

+

",20,20,,,15492 +PSBYZX,1,Fill-in-the-blank(s),Numeric,"

An airplane is flying from New York City to Los Angeles. The distance it travels in miles, d, is related to the time in seconds, t, by the equation d = 0.15t.

+

 

+

How fast is it flying?

+

 

+

 

+

  miles per second

",0.15,0.15,,,118275 +PSBYZX,2,Fill-in-the-blank(s),Numeric,"

An airplane is flying from New York City to Los Angeles. The distance it travels in miles, d, is related to the time in seconds, t, by the equation d = 0.15t.

+

 

+

How far will it travel in 30 seconds?  

+

 

+

 

+

miles

+

Round your answer to the nearest tenths place.

",4.5,4.5,,,118610 +PSBYZX,3,Fill-in-the-blank(s),Numeric,"

An airplane is flying from New York City to Los Angeles. The distance it travels in miles, d, is related to the time in seconds, t, by the equation d = 0.15t.

+

 

+

How long will it take to go 12.75 miles?

+

 

+

 

+

 seconds

",85,85,,,118986 +PSBY59,1,Fill-in-the-blank(s),Algebraic Expression,"

A grocer can buy strawberries for $1.38 per pound.

+

 

+

Write an equation relating c, the cost, and p, the pounds of strawberries.

+

 

+

c =

",1.38p,1.38p,,,119432 +PRABETDD,1,Fill-in-the-blank(s),Numeric,"

Jada is making circular birthday invitations for her friends. The diameter of the circle is 12 cm. She bought 180 cm of ribbon to glue around the edge of each invitation. How many invitations can she make?  

+

 

+

invitations

+

Use 3.14 for π.

",4,4,,,363499 +PSBS6V,1,Fill-in-the-blank(s),Numeric,"

A soccer field is 120 yards long. Han measures the length of the field using a 30-foot-long tape measure and gets a measurement of 358 feet, 10 inches.

+

 

+

What is the amount of the error?

+

 

+

inches

",14,14,,,84788 +PSBS6V,2,Fill-in-the-blank(s),Numeric,"

Express the error as a percentage of the actual length of the field.

+

 

+

%

",0.32,0.32,,,84918 +PSBB9A8,3,Fill-in-the-blank(s),Numeric,"

Jada measured the height of a plant in a science experiment and finds that, to the nearest 14 of an inch, it is 434 inches.

+

 

+

How large could the percent error in Jada’s measurement be?

+


%

+

Round your answer to the tenths place.

",2.6,2.6,,,338934 +PSBB6V4,2,Fill-in-the-blank(s),Numeric,"

Noah's oven thermometer gives a reading that is 2% greater than the actual temperature.

+

 

+

If the thermometer reading is 76ºF, what is the actual temperature?

+

 

+

ºF

+

Round your answer to the nearest tenths place.

",74.5,74.5,,,324897 +PRABG4Y8,1,Fill-in-the-blank(s),Numeric,"

To be labeled as a jumbo egg, the egg is supposed to weigh 2.5 oz. Priya buys a carton of jumbo eggs and measures one of the eggs as 2.4 oz. What is the percent error?  

+

 

+

%

",4,4,,,87236 +PSBB9A8,2,Fill-in-the-blank(s),Numeric,"

Jada measured the height of a plant in a science experiment and finds that, to the nearest 14 of an inch, it is 434 inches.

+

 

+

What is the smallest the actual height of the plant could be?  

+

 

+

inches

",4 5/8,4 5/8,,,338629 +PSBB9A8,1,Fill-in-the-blank(s),Numeric,"

Jada measured the height of a plant in a science experiment and finds that, to the nearest 14 of an inch, it is 434 inches.

+

 

+

What is the largest the actual height of the plant could be?  

+

 

+

inches

",4 7/8,4 7/8,,,338281 +PRABETQU,1,Fill-in-the-blank(s),Numeric,"

A radar gun measured the speed of a baseball at 103 miles per hour. If the baseball was actually going 102.8 miles per hour, what was the percent error in this measurement?

+

 

+

%

+

Round your answer to the nearest hundredths place. 

",0.19,0.19,,,359617 +PSBCVQQ,1,Fill-in-the-blank(s),Numeric,"

Clare has $150 in her bank account. She buys a bike for $200. What is Clare's account balance now?

+

 

+

 $

",-50,-50,,,449847 +PSBCVQQ,2,Fill-in-the-blank(s),Numeric,"

If Clare earns $75 the next week from delivering newspapers and deposits it in her account, what will her account balance be then? 

+

 

+

$

",25,25,,,450077 +PRABETQW,1,Fill-in-the-blank(s),Numeric,"

A farmer estimated that there were 25 gallons of water left in a tank. If this is an underestimate by 16%, how much water was actually in the tank?  

+

 

+

gallons

+

Round your answer to the tenths place.

",29.8,29.8,,,360293 +PRABHUGE,1,Fill-in-the-blank(s),Numeric," + + + + + + +
+

 

+

The price of a shirt is $18.50, but you have a coupon that lowers the price by 20%. What is the price of the shirt after using the coupon?

+

 

+

$

+
+

 

",14.8,14.8,,,100670 +PSBD3S,1,Fill-in-the-blank(s),Numeric,"

Money in a particular savings account increases by about 6% after a year.  

+

 

+

How much money will be in the account after one year if the initial amount is $100?  If you get stuck, consider using diagrams or a table to organize your work.

+

 

+

$

",106,106,,,20026 +PSBD3S,2,Fill-in-the-blank(s),Numeric,"

How much money will be in the account after one year if the initial amount is $50?  If you get stuck, consider using diagrams or a table to organize your work.

+

 

+

$

",53,53,,,20199 +PSBD3S,3,Fill-in-the-blank(s),Numeric,"

How much money will be in the account after one year if the initial amount is $200?  If you get stuck, consider using diagrams or a table to organize your work.

+

 

+

$

",212,212,,,20357 +PSBD3S,4,Fill-in-the-blank(s),Numeric,"

How much money will be in the account after one year if the initial amount is $125?  If you get stuck, consider using diagrams or a table to organize your work.

+

 

+

$

",132.5,132.5,,,20515 +PSBD3S,5,Fill-in-the-blank(s),Algebraic Expression,"

How much money will be in the account after one year if the initial amount is x dollars?  If you get stuck, consider using diagrams or a table to organize your work.

+

 

+

dollars

+

Use x as your variable.

",1.06x,1.06x,,,20669 +PSBEGA,1,Fill-in-the-blank(s),Numeric,"

The gas tank in dad’s car holds 12 gallons. The gas tank in mom’s truck holds 50% more than that. How much gas does the truck’s tank hold? 

+

 

+

gallons

",18,18,,,22470 +PRABH67H,1,Fill-in-the-blank(s),Numeric,"

The crowd at a sporting event is estimated to be 3,000 people. The exact attendance is 2,486 people. What is the percent error?

+

 

+

%.

+

Round to the nearest whole percent.

",21,21,,,52062 +PSBDM9U,1,Fill-in-the-blank(s),Numeric,"

Two students are solving the same problem: At a hardware store, they can cut a length of rope off of a big roll, so you can buy any length you like. The cost for 6 feet of rope is $7.50. How much would you pay for 50 feet of rope, at this rate?

+

 

+

Kiran knows he can solve the problem this way.

+

 

+

+

 

+

What would be Kiran's answer?

+

 

+

$

",62.5,62.5,,,584015 +PSBDNDZ,1,Fill-in-the-blank(s),Numeric,"

Different nerve signals travel at different speeds.

+
    +
  • Pressure and touch signals travel about 250 feet per second.
  • +
  • Dull pain signals travel about 2 feet per second.
  • +
+

 

+

How long does it take a person who is 5.5 feet tall to feel an ant crawling on their foot?

+

 

+

about seconds

",0.022,0.022,,,584854 +PSBDNDZ,2,Fill-in-the-blank(s),Numeric,"

How long does it take a person who is 5.5 feet tall to feel a dull ache in their foot?

+

 

+

about seconds

+

 

+

 

",2.75,2.75,,,584945 +PSBDNCG,1,Fill-in-the-blank(s),Numeric," + + + + + + +
+

Tyler swims at a constant speed, 5 meters every 4 seconds. How long does it take him to swim 114 meters?

+

 

+

seconds

+
+ + + + + + + + + + + + + + + +
distance (meters)time (seconds)
54
114 
+
",91.2,91.2,,,584326 +PSBDNCG,2,Fill-in-the-blank(s),Numeric," + + + + + + +
+

A factory produces 3 bottles of sparkling water for every 8 bottles of plain water. How many bottles of sparkling water does the company produce when it produces 600 bottles of plain water?

+

 

+

bottles of sparkling water

+

 

+
+ + + + + + + + + + + + + + + +
number of bottles
of sparkling water
number of bottles
of plain water
  
  
+
",225,225,,,584429 +PSBTHK,1,Fill-in-the-blank(s),Numeric,"

A furniture store pays a wholesale price for a mattress. Then, the store marks up the retail price to 150% of the wholesale price. Later, they put the mattress on sale for 50% off of the retail price. A customer just bought the mattress for sale and paid $1,200.

+

 

+

What was the retail price of the mattress, before the discount?

+

 

+

$

",2400,2400,,,86471 +PSBTDG,1,Fill-in-the-blank(s),Numeric,"

A large aquarium of water is being filled with a hose. Due to a problem, the sensor does not start working until some time into the filling process. The sensor starts its recording at the time zero minutes. The sensor initially detects the tank has 225 liters of water in it.

+

 

+

The hose fills the aquarium at a constant rate of 15 liters per minute. What will the sensor read at the time of 5 minutes?  

+

 

+

 

+

liters

",300,300,,,85726 +PSBBBTV,2,Fill-in-the-blank(s),Numeric,"

What is the difference in height between the underwater robotic vehicle and the submarine?  

+

 

+

m

",172,172,,,179464 +PSBCAUR,1,Fill-in-the-blank(s),Numeric,"

Here is a triangular prism. 

+

 

+

+

 

+

What is the volume of the prism?  

+

 

+

 in3

",288,288,,,348188 +PSBCAUR,2,Fill-in-the-blank(s),Numeric,"

What is the surface area of the prism?

+

 

+

 in2

",336,336,,,348314 +PSBDMGC,1,Fill-in-the-blank(s),Numeric,"

A sandwich store charges a delivery fee to bring lunch to an office building. One office pays $33 for 4 turkey sandwiches. Another office pays $61 for 8 turkey sandwiches. How much does each turkey sandwich add to the cost of the delivery?

+

 

+

$

",7,7,,,579179 +PRABETM2,1,Fill-in-the-blank(s),Numeric,"

A bakery used 25% more butter this month than last month. If the bakery used 240 kilograms of butter last month, how much did it use this month?  

+

 

+

kilograms

+

Round your answer to the nearest whole number.

",300,300,,,24461 +PRABG4SA,1,Fill-in-the-blank(s),Numeric,"

The number of fish in a lake decreased by 25% between last year and this year. Last year there were 60 fish in the lake. What is the population this year? If you get stuck, consider drawing a diagram.

+

 

+

fish

+

 

",45,45,,,331301 +PSBBRRC,1,Fill-in-the-blank(s),Numeric,"

Tyler's mom purchased a savings bond for Tyler. The value of the savings bond increases by 4% each year. One year after it was purchased, the value of the savings bond was $156. 

+

 

+

Find the value of the bond when Tyler's mom purchased it. 

+

 

+

$

",150,150,,,251426 +PRABETNQ,1,Fill-in-the-blank(s),Numeric,"

Elena’s aunt bought her a $150 savings bond when she was born. When Elena is 20 years old, the bond will have earned 105% in interest. How much will the bond be worth when Elena is 20 years old? 

+

 

+

$

",307.5,307.5,,,203873 +PRABETNP,1,Fill-in-the-blank(s),Numeric,"

A pair of designer sneakers was purchased for $120. Since they were purchased, their price has increased by 15%. What is the new price? 

+

 

+

$

",138,138,,,203426 +PRABETN5,1,Fill-in-the-blank(s),Numeric,"

A bakery used 30% more sugar this month than last month. If the bakery used 560 kilograms of sugar last month, how much did it use this month?  

+

 

+

 

+

kilograms

",728,728,,,185005 +PSBFY7,1,Fill-in-the-blank(s),Numeric,"

558 cups of water fill 412 identical water bottles. How many cups fill each bottle?

+

 

+

  cups of water

",4-May,4-May,,,30898 +PSBVBE,1,Fill-in-the-blank(s),Numeric,"

Jada’s sister works in a furniture store.

+

 

+

Jada’s sister earns $15 per hour. The store offers her a raise—a 9% increase per hour. After the raise, how much will Jada’s sister make per hour?

+

 

+

  $

",16.35,16.35,,,97399 +PRABETM3,1,Fill-in-the-blank(s),Numeric,"

Last week, the price of oranges at the farmer's market was $1.75 per pound. This week, the price has decreased by 20%. What is the price of oranges this week? 

+

 

+

$ per pound

",1.4,1.4,,,24777 +PSBESA,3,Fill-in-the-blank(s),Numeric,"

The equation d = 3t represents the relationship between the distance (d) in inches that a snail is from a certain rock and the time (t) in minutes.

+

 

+

How far will the snail be from the rock after 9 minutes?  

+

 

+

inches

",27,27,,,24068 +PSBCRQU,1,Fill-in-the-blank(s),Numeric,"

Use long division to express the fraction as a decimal.

+

 

+

925=

+

If your answer is a repeating decimal, type the repeated portion of the decimal only once.

+

 

+

For example:    

+

for 3.66¯ you only type in 3.6               

+

for0.45¯ you only type in 0.45

",0.36,0.36,,,426376 +PSBCRQU,2,Fill-in-the-blank(s),Numeric,"

Use long division to express the fraction as a decimal.

+

 

+

1130=

+

If your answer is a repeating decimal, type the repeated portion of the decimal only once.

+

 

+

For example:    

+

for 3.66¯ you only type in 3.6               

+

for0.45¯ you only type in 0.45

",0.36,0.36,,,426537 +PSBD8C,1,Fill-in-the-blank(s),Numeric,"

The value of a new car decreases by about 15% in the first year. 

+

 

+

How much will a car be worth after one year if its initial value was $1,000? If you get stuck, consider using diagrams or a table to organize your work.

+

 

+

$

",850,850,,,20885 +PSBD8C,2,Fill-in-the-blank(s),Numeric,"

How much will a car be worth after one year if its initial value was $5,000? If you get stuck, consider using diagrams or a table to organize your work.

+

 

+

$

",4250,4250,,,21043 +PSBD8C,3,Fill-in-the-blank(s),Numeric,"

How much will a car be worth after one year if its initial value was $5,020? If you get stuck, consider using diagrams or a table to organize your work.

+

 

+

$

",4267,4267,,,21201 +PRABMSH2,1,Fill-in-the-blank(s),Numeric,"

Solve the equation.

+

 

+

c - (-3) = 15

+

 

+

c =

",12,12,,,56136 +PRABMSH3,1,Fill-in-the-blank(s),Numeric,"

Solve the equation.

+

 

+

d · (-4) = 32

+

 

+

d =

",-8,-8,,,56457 +PRABMSJQ,1,Fill-in-the-blank(s),Numeric,"

Solve the equation.

+

 

+

25e + -11 = -86

+

 

+

e =

",-3,-3,,,156087 +PRABESCE,1,Fill-in-the-blank(s),Numeric,"

Han wants to buy a $30 ticket to a game, but the pre-order tickets are sold out. He knows there will be more tickets sold the day of the game, with a markup of 200%. How much should Han expect to pay for the ticket if he buys it the day of the game? 

+

 

+

$

",90,90,,,218838 +PSBC9Y8,1,Order / Sort,Ordering,"

Here is a set of signed numbers: 7, -3, 12, -0.8, 0.8, -110, -2

+

 

+

Order the numbers from least to greatest.

","

-0.8

,

7

,

0.8

,

12

,

-110

,

-2

,

-3

","

-0.8

,

7

,

0.8

,

12

,

-110

,

-2

,

-3

",,,518347 +PSBNQH,1,Fill-in-the-blank(s),Numeric,"

Lin deposited $300 in a savings account that has a 2% interest rate per year. How much is in her account after 1 year? 

+

 

+

$

",306,306,,,61213 +PRABQW3K,1,Fill-in-the-blank(s),Numeric,"

The north pole is in the middle of the ocean. A person at sea level at the north pole would be 3,949 miles from the center of Earth. The sea floor below the north pole is at an elevation of approximately -2.7 miles. The elevation of the south pole is about 1.7 miles. How far is a person standing on the south pole from a submarine at the sea floor below the north pole?

+

 

+

About miles

",7897,7897,,,11247 +PRABETWD,1,Fill-in-the-blank(s),Numeric,"

A bank charges a service fee of $7.50 per month for a checking account. 

+

 

+

A bank account has $85.00. If no money is deposited or withdrawn except the service charge, how many months until the account balance is negative?

+

 

+

months

",12,12,,,87614 +PSBBH5N,1,Fill-in-the-blank(s),Numeric,"

A fish is 12 meters below the surface of the ocean. What is its elevation?  

+

 

+

meters

",-12,-12,,,214107 +PSBBH5N,3,Fill-in-the-blank(s),Numeric,"

If the bird is directly above the fish, how far apart are they?

+

 

+

meters

",40,40,,,214762 +PSBBNV9,1,Fill-in-the-blank(s),Numeric,"

When a construction worker is on a platform 10 feet above the ground, we can describe her elevation as +10 feet.

+

 

+

A construction worker digs down to 30 feet below the surface of the ground. What is her elevation?

+

 

+

feet

",-30,-30,,,236452 +PSBBNV9,2,Fill-in-the-blank(s),Numeric,"

The construction worker returns to the surface of the ground. What is her elevation?

+

 

+

  feet

",0,0,,,236567 +PRABMSJX,1,Fill-in-the-blank(s),Numeric,"

Solve the equation.

+

 

+

12(c+10) = 24

+

 

+

c =

",-8,-8,,,368501 +PSBDAMA,2,Fill-in-the-blank(s),Numeric,"

The dolphin dives 20 feet below the surface of the ocean. What is its new elevation?  

+

 

+

 feet

",-20,-20,,,522388 +PRABETYP,1,Fill-in-the-blank(s),Numeric,"

On the first math exam, 16 students received an A grade. On the second math exam, 12 students received an A grade. What percentage decrease is that?

+


%

",25,25,,,367429 +PRABETYQ,1,Fill-in-the-blank(s),Numeric,"

Solve the equation.

+

 

+

2(a-3) = 14

+

 

+

a =

",10,10,,,367805 +PRABMSJW,1,Fill-in-the-blank(s),Numeric,"

Solve the equation.

+

 

+

 -5(b-1) = 40

+

 

+

b =

",-7,-7,,,368183 +PRABMSJY,1,Fill-in-the-blank(s),Numeric,"

Solve the equation.

+

 

+

16(d+6)=11

+

 

+

x =

",60,60,,,368816 +PRABJCT4,1,Fill-in-the-blank(s),Numeric,"

If you run 15 laps per practice, how many practices will it take you to run 30 laps?

+

 

+

practices

",2,2,,,259356 +PRABJCT2,1,Fill-in-the-blank(s),Numeric,"

If you eat 5 grapes per minute for 8 minutes, how many grapes will you eat?

+

 

+

grapes

",40,40,,,259069 +PRABJCT3,1,Fill-in-the-blank(s),Numeric,"

If you hear 9 new songs per day for 3 days, how many new songs will you hear?

+

 

+

new songs

+

 

",27,27,,,259215 +PSBCNJY,1,Fill-in-the-blank(s),Numeric,"

Here are the coordinates of rectangle PLAY: (-11, 20), (-11, -3), (-1, 20), (-1, -3). Find the perimeter of this rectangle. See if you can figure out its side lengths without plotting the points.

+

 

+

units

",66,66,,,407631 +PSBNQH,2,Fill-in-the-blank(s),Numeric,"

Lin deposited $300 in a savings account that has a 2% interest rate per year. How much is in her account after 2 years? 

+

 

+

$

",312.12,312.12,,,61289 +PRABJFRR,1,Fill-in-the-blank(s),Numeric,"

Diego wants to sell his bicycle. It cost $150 when he bought it but has depreciated by 15%. How much should he sell it for?

+

 

+

$

",127.5,127.5,,,62493 +PRABETV9,1,Order / Sort,Ordering,"

The value of x is -14.  Order the expressions from least to greatest.

","

x

,

x - 1

,

-1 ÷ x

,

1 - x

","

x

,

x - 1

,

-1 ÷ x

,

1 - x

",,,62186 +PSBTME,1,Fill-in-the-blank(s),Numeric,"

A restaurant bill is $21. You leave a 15% tip. How much do you pay including the tip? 

+

 

+

$

",24.15,24.15,,,87154 +PSB7MU,2,Fill-in-the-blank(s),Numeric,"

To end the mission DeepSea Challenger made a one-hour ascent to the surface. How many seconds is this?  

+

 

+

seconds

",3600,3600,,,156315 +PSBCUB2,3,Fill-in-the-blank(s),Numeric,"

What is the difference between electricity generated in week 1 and week 2? 

+

 

+

$

",2.61,2.61,,,442008 +PSB7MU,3,Fill-in-the-blank(s),Numeric,"

The ascent can be modeled by a different proportional relationship y=kx. What is the value of k in this case?

+

 

+

k =

+

 

",35814/3600,35814/3600,,,156598 +PSBBCNR,1,Fill-in-the-blank(s),Numeric,"

A utility company charges $0.12 per kilowatt-hour for energy a customer uses. They give a credit of $0.025 for every kilowatt-hour of electricity a customer with a solar panel generates that they don't use themselves.

+

 

+

A customer has a charge of $82.04 and a credit of -$4.10 on this month's bill.

+

 

+

What is the amount due this month?

+

 

+

$

",77.94,77.94,,,184283 +PSBBCNR,3,Fill-in-the-blank(s),Numeric,"

How many kilowatt-hours did they generate that they didn't use themselves?

+

 

+

kilowatt-hours

",164,164,,,184499 +PRABEPM8,1,Fill-in-the-blank(s),Numeric,"

Find the area of a square if its side length is 3.5 cm.

+

 

+

square centimeters

",12.25,12.25,,,424891 +PSB7MU,1,Fill-in-the-blank(s),Numeric,"

In 2012, James Cameron descended to the bottom of Challenger Deep in the Marianas Trench; the deepest point in the ocean. The vessel he rode in was called DeepSea Challenger.

+
+

Challenger Deep is 35,814 feet deep at its lowest point.

+

 

+

DeepSea Challenger’s descent was a change in depth of (-4) feet per second. We can use the equation y=-4x to model this relationship, where y is the depth and xis the time in seconds that have passed. How many seconds does this model suggest it would take for DeepSea Challenger to reach the bottom?

+

 

+

seconds

+
",8953.5,8953.5,,,156040 +PRABTGFE,1,Fill-in-the-blank(s),Numeric,"

Solve.

+

 

+

12 = x · 3

+

 

+

x =

",4,4,,,157516 +PRABTGFF,1,Fill-in-the-blank(s),Numeric,"

Solve.

+

 

+

-12=-3y

+

 

+

y =

",4,4,,,157655 +PRABET5F,1,Fill-in-the-blank(s),Numeric,"

Solve.

+

 

+

25t = 6

+

 

+

t =

",15,15,,,156936 +PSBDA53,1,Fill-in-the-blank(s),Numeric,"

Solve the equation. 

+

 

+

5 y + 25 = -13

+

 

+

y =

",-3,-3,,,525202 +PSBCUB2,2,Fill-in-the-blank(s),Numeric,"

The table shows the value of the electricity they used and the value of the electricity they generated each week for a month. What amount is due for this month?

+

 

+

$

+

 

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + +
 used ($)generated ($)
week 113.45-6.33
week 221.78-8.94
week 318.12-7.70
week 424.05-5.36
+

 

",49.07,49.07,,,441900 +PSBDATV,2,Fill-in-the-blank(s),Numeric,"

Find the distance between C and D.  

+

 

+

 units

",7,7,,,523482 +PSBCUB2,4,Fill-in-the-blank(s),Numeric,"

What is the difference between electricity generated in week 2 and week 3? 

+

 

+

$

",-1.24,-1.24,,,442127 +PRABJCHU,1,Fill-in-the-blank(s),Numeric,"

An airplane moves at a constant speed of 120 miles per hour for 3 hours. How far does it go?

+

 

+

miles

",360,360,,,9419 +PSBCQBE,1,Fill-in-the-blank(s),Numeric,"

A family goes to a restaurant. When the bill comes, this is printed at the bottom of it: 

+

 

+ + + + + + +
Gratuity Guide For Your Convenience:
15% would be $4.89
18% would be $5.87
20% would be $6.52
+

 

+

How much was the price of the meal? 

+

 

+

$

",32.6,32.6,,,418897 +PRABQAC3,1,Fill-in-the-blank(s),Numeric,"

Diego and Elena are 2 miles apart and begin walking towards each other. Diego walks at a rate of 3.7 miles per hour and Elena walks 4.3 miles per hour. While they are walking, Elena's dog runs back and forth between the two of them, at a rate of 6 miles per hour. Assuming the dog does not lose any time in turning around, how far has the dog run by the time Diego and Elena reach each other?

+

 

+

miles

",1.5,1.5,,,196520 +PSBCHXB,2,Fill-in-the-blank(s),Numeric,"

Solve the equation to find the number of players on each team.

+

 

+

x = players on each team

",15,15,,,388622 +PSBY8A,2,Fill-in-the-blank(s),Numeric,"

At midnight the temperature is -6°C. At midday the temperature is 9°C. By how much did the temperature rise?  

+

 

+

 °C

",15,15,,,120094 +PSBY8A,1,Fill-in-the-blank(s),Numeric,"

The temperature is -2°C. If the temperature rises by 15°C, what is the new temperature?  

+

 

+

 °C

",13,13,,,119645 +PSBBBW4,1,Fill-in-the-blank(s),Numeric," + + + + + +
+

Mai earns $7 per hour mowing her neighbors' lawns. She also earned $14 for hauling away bags of recyclables for some neighbors.

+

 

+
+ + + + + + + +
+
+
+
+

Priya babysits her neighbor’s children.

+

 

+

The table shows the amount of money m she earns in h hours. 

+

 

+

Priya and Mai have agreed to go to the movies the weekend after they have earned the same amount of money for the same number of work hours.

+
+
+
+
+ + + + + + + + + + + + + + + + + + + +
hm
1$8.40
2$16.80
4$33.60
+
+

 

+

How many hours do they each have to work before they go to the movies?

+

 

+

hours

",10,10,,,180036 +PSBB8E7,1,Fill-in-the-blank(s),Numeric,"

+

 

+

 

+

Here are a cone, a sphere, and a cylinder that all have the same radii and heights.

+

 

+

The radius of the cylinder is 5 units. When necessary, express all answers in terms of π.

+

 

+

What is the height of the cylinder?

+

 

+

units

",10,10,,,333699 +PSBB8E7,4,Fill-in-the-blank(s),Algebraic Expression,"

+

 

+

 

+

Here are a cone, a sphere, and a cylinder that all have the same radii and heights.

+

 

+

The radius of the cylinder is 5 units. When necessary, express all answers in terms of π.

+

 

+

What is the volume of the sphere?

+

 

+

cubic units

+

 

+

Use pi to represent the π symbol. For example: 32π would be typed as 32pi.

",500/3pi,500/3pi,,,333981 +PRABTSVH,1,Fill-in-the-blank(s),Numeric,"

Solve the equation.  Be prepared to explain your reasoning.

+

 

+

2x+-3=-23

+

 

+

x=

",-10,-10,,,132093 +PSBBKYY,1,Fill-in-the-blank(s),Numeric,"

A state park charges an entrance fee based on the number of people in a vehicle. A car containing 2 people is charged $14, a car containing 4 people is charged $20, and a van containing 8 people is charged $32.

+

 

+

How much do you think a bus containing 30 people would be charged?

+

 

+

$

",98,98,,,225175 +PSBBKZ8,2,Fill-in-the-blank(s),Numeric,"

A toaster has 4 slots for bread. Once the toaster is warmed up, it takes 35 seconds to make 4 slices of toast, 70 seconds to make 8 slices, and 105 seconds to make 10 slices.

+

 

+

If someone makes as many slices of toast as possible in 4 minutes and 40 seconds, how many slices do think they can make?

+

 

+

slices

",32,32,,,225864 +PSBCUB2,1,Fill-in-the-blank(s),Numeric," + + + + + + + + + + +
Han's family got a solar panel. Each month they get a credit to their account for the electricity that is generated by the solar panel. The credit they receive varies based on how sunny it is.
+

Current charges: $83.56

+

Solar Credit: -$6.75

+

Amount due: $76.81

+
+

Here is their electricity bill from January.

+

 

+

In January they used $83.56 worth of electricity and generated $6.75 worth of electricity.

+
+

 

+

In July they were traveling away from home and only used $19.24 worth of electricity. Their solar panel generated $22.75 worth of electricity. What was their amount due in July?

+

 

+

$

",-3.51,-3.51,,,441780 +PRABTSVE,1,Fill-in-the-blank(s),Numeric,"

Solve the equation.  Be prepared to explain your reasoning.

+

 

+

x+6=4

+

 

+

x=

",-2,-2,,,131796 +PRABTSVF,1,Fill-in-the-blank(s),Numeric,"

Solve the equation.  Be prepared to explain your reasoning.

+

 

+

x--4=-6

+

 

+

x=

",-10,-10,,,131886 +PRABTSVG,1,Fill-in-the-blank(s),Numeric,"

Solve the equation.  Be prepared to explain your reasoning.

+

 

+

2(x-1)=-200

+

 

+

x=

",-99,-99,,,131999 +PSB3EH,2,Fill-in-the-blank(s),Numeric,"

What is the area of the base?

+

 

+

square units

",54,54,,,132812 +PSBCNJY,2,Fill-in-the-blank(s),Numeric,"

 Find the area of this rectangle.  See if you can figure out its side lengths without plotting the points.

+

 

+

square units

",230,230,,,407999 +PSBBCHG,1,Fill-in-the-blank(s),Numeric,"

Here is a diagram and its corresponding equation. Find the solution to the equation.

+

 

+ + + + + + + +
 4x + 17 = 23
+

 

+

x =

",1 1/2,1 1/2,,,183371 +PSBBM79,4,Fill-in-the-blank(s),Numeric,"

Use your expressions to find when Han and Priya meet.

+

 

+

t=hours

",2-Mar,2-Mar,,,232533 +PSBDG45,3,Fill-in-the-blank(s),Numeric,"

A car is traveling at a constant speed. Find the number of miles the car travels in 1 hour at the given rate.

+

 

+

7.5 miles in 14hour 

+

 

+

miles

",30,30,,,558904 +PSBDG45,4,Fill-in-the-blank(s),Numeric,"

A car is traveling at a constant speed. Find the number of miles the car travels in 1 hour at the given rate.

+

 

+

1003 miles in 23hour

+

 

+

miles

",50,50,,,559181 +PSBDG45,5,Fill-in-the-blank(s),Numeric,"

A car is traveling at a constant speed. Find the number of miles the car travels in 1 hour at the given rate.

+

 

+

9712 miles in  32hour

+

 

+

miles

",65,65,,,559523 +PSBB5DC,1,Fill-in-the-blank(s),Numeric,"

Here are the vertices of rectangle FROG: (-2, 5), (-2, 1), (6, 5), (6, 1). Find the perimeter of this rectangle. If you get stuck, try plotting the points on a coordinate plane.

+

 

+

units

+

 

+

 

",24,24,,,316168 +PRABG42X,1,Fill-in-the-blank(s),Numeric,"

Diego scored 9 points less than Andre in the basketball game. Noah scored twice as many points as Diego.  If Noah scored 10 points, how many points did Andre score?  

+

 

+

points

",14,14,,,186074 +PRABQYEC,1,Fill-in-the-blank(s),Numeric,"

A musician performed at three local fairs. At the first he doubled his money and spent $30. At the second he tripled his money and spent $54. At the third, he quadrupled his money and spent $72. In the end he had $48 left. How much did he have before performing at the fairs?

+

 

+

$

",29,29,,,11331 +PSBCB7,1,Fill-in-the-blank(s),Numeric,"

Priya, Han, and Elena, are members of the running club at school.

+

 

+

Priya was busy studying this week and ran 7 fewer miles than last week. She ran 9 times as far as Elena ran this week. Elena only had time to run 4 miles this week.

+

 

+

How many miles did Priya run last week?

+

 

+

miles

",43,43,,,10737 +PSBCAG,1,Fill-in-the-blank(s),Numeric,"

A family of 6 is going to the fair. They have a coupon for $1.50 off each ticket. If they pay $46.50 for all their tickets, how much does a ticket cost without the coupon? If you get stuck, consider drawing a diagram or writing an equation.

+

 

+

$

",9.25,9.25,,,10359 +PSBMDX,1,Fill-in-the-blank(s),Numeric,"

To make a Koch snowflake:

+

 

+
    +
  • Start with an equilateral triangle that has side lengths of 1. This is step 1.
  • +
  • Replace the middle third of each line segment with a small equilateral triangle with the middle third of the segment forming the base. This is step 2.
  • +
  • Do the same to each of the line segments. This is step 3.
  • +
  • Keep repeating this process.
  • +
+

 

+

+

 

+

What is the perimeter after step 2?

+

 

+

units

",4,4,,,54233 +PSBMDX,2,Fill-in-the-blank(s),Numeric,"

What is the perimeter after step 3?

+

 

+

units

",5 1/3,5 1/3,,,54349 +PRABTREE,1,Fill-in-the-blank(s),Numeric,"

The running club uses the money they raised to pay for a trip to a canyon. At one point during a run in the canyon, the students are at an elevation of 128 feet. After descending at a rate of 50 feet per minute, they reach an elevation of -472 feet. How long did the descent take?

+

 

+

minutes

",12,12,,,11235 +PRABTREC,1,Fill-in-the-blank(s),Numeric,"

One day last week, 6 teachers joined 57 of the members of the running club in an after-school run. Priya counted a total of 31 people running that day. How many members does the running club have?

+

 

+

members

",35,35,,,11040 +PRABTRED,1,Fill-in-the-blank(s),Numeric,"

Priya and Han plan a fundraiser for the running club. They begin with a balance of -80 because of expenses. In the first hour of the fundraiser they collect equal donations from 9 parents, which brings their balance to -44. How much did each parent give?

+

 

+

$

",4,4,,,11131 +PRABTTCQ,1,Fill-in-the-blank(s),Numeric,"

Solve the equation below.

+

 

+

35=3.5s

+

 

+

s =

",10,10,,,178963 +PRABET6F,1,Fill-in-the-blank(s),Numeric,"

A backpack normally costs $25 but it is on sale for $21. What percentage is the discount?  

+

 %

",16,16,,,235060 +PSBBS2B,1,Fill-in-the-blank(s),Numeric,"

The track team is trying to reduce their time for a relay race. First, they reduce their time by 2.1 minutes. Then they are able to reduce that time by 110. If their final time is 3.96 minutes, what was their beginning time?

+

 

+

minutes

",6.5,6.5,,,257823 +PRABTTCN,1,Fill-in-the-blank(s),Numeric,"

Solve the equation below.

+

 

+

14q=7

+

 

+

q =

",28,28,,,178686 +PRABTTCR,1,Fill-in-the-blank(s),Numeric,"

Solve the equation below.

+

 

+

80=30t

+

 

+

t=

",3-Aug,3-Aug,,,179089 +PRABTTCP,1,Fill-in-the-blank(s),Numeric,"

Solve the equation below.

+

 

+

r+18=24

+

 

+

r =

",6,6,,,178835 +PSBB4YA,1,Fill-in-the-blank(s),Numeric,"

Here are the prices for cheese pizza at a certain pizzeria:

+

 

+ + + + + + + + + + + + + + + + + + + +
pizza sizeprice in dollars
small11.60
medium 
large16.25
+

 

+

You had a coupon that made the price of a large pizza $13.00. For what percent off was the coupon?

+

 

+

%

",20,20,,,313329 +PSBB4YA,2,Fill-in-the-blank(s),Numeric,"

Your friend purchased a medium pizza for $10.31 with a 30% off coupon. What is the price of a medium pizza without a coupon? 

+

 

+

$

",14.73,14.73,,,313685 +PSBMBT,2,Fill-in-the-blank(s),Numeric,"

Use any method to find the value for x that makes the equation true.

+

 

+

x=

",32,32,,,53735 +PRABET9F,1,Fill-in-the-blank(s),Numeric,"

One year ago, Clare was 4 feet 6 inches tall. Now Clare is 4 feet 10 inches tall. By what percentage did Clare’s height increase in the last year?  

+

 

+

%

+
+

Round your answer to the nearest whole number.

+
",7,7,,,468619 +PRABQAC5,1,Fill-in-the-blank(s),Numeric,"

Jada and Diego baked a large batch of cookies.

+

 

+
    +
  • They selected 14of the cookies to give to their teachers.
  • +
  • Next, they threw away one burnt cookie.
  • +
  • They delivered 25of the remaining cookies to a local nursing home.
  • +
  • Next, they gave 3 cookies to some neighborhood kids.
  • +
  • They wrapped up 23of the remaining cookies to save for their friends.

  • +
+

After all this, they had 15 cookies left. How many cookies did they bake?

+

 

+

cookies

",108,108,,,344535 +PSBB9SD,1,Fill-in-the-blank(s),Numeric,"

Solve -x=10

+

 

+

x=

",-10,-10,,,341553 +PSBB9SD,3,Fill-in-the-blank(s),Numeric,"

Solve 2x=-20

+

 

+

x=

",-10,-10,,,341780 +PRABEUAS,1,Fill-in-the-blank(s),Numeric,"

A small staircase is made so that the horizontal piece of each step is 10 inches long and 25 inches wide. Each step is 5 inches above the previous one. What is the surface area of this staircase?

+

 

+

+

 

+

inches2

",2850,2850,,,3195 +PSBGU4,1,Fill-in-the-blank(s),Numeric,"

There is a proportional relationship between the volume of a sample of helium in liters and the mass of that sample in grams. If the mass of a sample is 5 grams, its volume is 28 liters. (5, 28) is shown on the graph below.

+

 

+

+

 

+

What is the constant of proportionality in this relationship?

+

 

+

 liters per gram

",5.6,5.6,,,35102 +PSBKVV,1,Fill-in-the-blank(s),Numeric,"

The price of a pair of earrings is $22 but Priya buys them on sale for $13.20.

+

 

+

By how much was the price discounted? 

+

 

+

$  

",8.8,8.8,,,50795 +PSBKVV,2,Fill-in-the-blank(s),Numeric,"

What was the percentage of the discount?  

+

 

+

%

",40,40,,,51164 +PSB3EH,4,Fill-in-the-blank(s),Numeric,"

What is the volume of the prism?

+

 

+

cubic units

",432,432,,,133008 +PRABQYE3,1,Fill-in-the-blank(s),Numeric,"

In a day care group, nine babies are five months old and 12 babies are seven months old. How many full months from now will the average age of the 21 babies first surpass 20 months old?

+

 

+

months

",14,14,,,104742 +PSBBZMJ,1,Fill-in-the-blank(s),Numeric,"

Here is a triangular prism.

+

 

+

+

 

+

What is the volume of the prism, in cubic centimeters?

+

 

+

 cm3

",120,120,,,295905 +PSBBZMJ,2,Fill-in-the-blank(s),Numeric,"

What is the surface area of the prism, in square centimeters?

+

 

+

cm2

",184,184,,,296039 +PSBB86H,2,Fill-in-the-blank(s),Numeric,"

Solve the equation by reasoning about the equation or the hanger. 

+

 

+

x =

",0.2,0.2,,,337756 +PRABEUH3,1,Fill-in-the-blank(s),Numeric,"

A passenger on a ship dropped his camera into the ocean. If it is descending at a rate of -4.2 meters per second, how long (in seconds) until it hits the bottom of the ocean, which is at -1,875 meters?  

+

 

+

seconds

+

Round to the nearest second.

",446,446,,,179693 +PRABEUH5,1,Fill-in-the-blank(s),Numeric,"

Diego has a glue stick with a diameter of 0.7 inches. He sets it down 3.5 inches away from the edge of the table, but it rolls onto the floor. How many rotations did the glue stick make before it fell off of the table?

+

 

+

  rotations

+

Round your answer to the nearest tenth.

",1.6,1.6,,,179995 +PSBKFT,1,Fill-in-the-blank(s),Algebraic Expression,"

+

 

+

The cylinder shown here has a height of 7 centimeters and a radius of 4 centimeters.

+

 

+

What is the area of the base of the cylinder? Express your answer in terms of π.

+

 

+

 cm2

+

Use pi to represent the π symbol. For example: 32π would be typed as 32pi

",16pi,16pi,,,48656 +PRABKCZ5,1,Fill-in-the-blank(s),Numeric,"

+

 

+

Here is a graph of the relationship between the height and volume of some cylinders that all have the same radius, R. An equation that represents this relationship is V=πR2h (use 3.14 as an approximation for π).

+

 

+

What is the radius of these cylinders?

+

 

+

foot

",1,1,,,140189 +PSBDP7M,1,Fill-in-the-blank(s),Numeric,"

The area of a circular table is 225π in2.

+

 

+

What is the radius of the table?

+

 

+

inches

",15,15,,,594916 +PRABMSHZ,1,Fill-in-the-blank(s),Numeric,"

Solve the equation.

+

 

+

(-7) + b = (-11)

+

 

+

b =

",-4,-4,,,55829 +PSBPAG,2,Fill-in-the-blank(s),Numeric,"

What is the vertical difference between and A?

+

 

+

units

",-4,-4,,,64016 +PRABTSVK,1,Fill-in-the-blank(s),Numeric,"

Solve the equation.

+

 

+

13(x-10)=-4

+

 

+

x =

",-2,-2,,,308593 +PRABTSVJ,1,Fill-in-the-blank(s),Numeric,"

Solve the equation.

+

 

+

25 - 3x = 40

+

 

+

x =

",-5,-5,,,308518 +PRABPMA7,1,Fill-in-the-blank(s),Numeric,"

Below is a set of data about temperatures. The range of a set of data is the distance between the lowest and highest value in the set. What is the range of these temperatures?

+

 

+

9°C, -3°C, 22°C, -5°C, 11°C, 15°C

+

 

+

degrees

",27,27,,,279176 +PRABEG67,1,Fill-in-the-blank(s),Numeric,"

A 6 oz paper cup is shaped like a cone with a diameter of 4 inches. How many ounces of water will a plastic cylindrical cup with a diameter of 4 inches hold if it is the same height as the paper cup?

+

 

+

ounces

",18,18,,,116167 +PSBYAA,1,Fill-in-the-blank(s),Numeric,"

A graduated cylinder that is 24 cm tall can hold 1 L of water. What is the radius of the cylinder?  Recall that 1 liter (L) is equal to 1000 milliliters (ml), and that 1 liter (L) is equal to 1,000 cm3.

+

 

+

cm

+

Use 3.14 as an approximation for π.

+

Round your answer to the hundredths place.

",3.64,3.64,,,115049 +PSBBQ3R,2,Fill-in-the-blank(s),Numeric,"

Find the number of problems originally assigned by the teacher. If you get stuck, try drawing a diagram to represent the story.

+

 

+

problems

",5,5,,,247823 +PSBBQZF,2,Fill-in-the-blank(s),Numeric,"

Find the number of problems originally assigned by the teacher.  If you get stuck, try drawing a diagram to represent the story.

+

 

+

problems

",4,4,,,247400 +PRABETX5,1,Fill-in-the-blank(s),Numeric,"

Solve the equation.

+

 

+

4a = -28

+

 

+

a =

",-7,-7,,,154770 +PRABTTCM,1,Fill-in-the-blank(s),Numeric,"

Solve the equation below.

+

 

+

95=p+35

+

 

+

p =

",5-Jun,5-Jun,,,178546 +PSBBK68,2,Fill-in-the-blank(s),Numeric,"

Before filling up the pool, it gets lined with a plastic liner. How much liner is needed for this pool if the liner goes up to 4 feet?  

+

 

+

feet2

",298.3,298.3,,,226452 +PSBBFUZ,2,Fill-in-the-blank(s),Numeric,"
+

The data set shows the number of shells that 12 people collected.

+

 

+

4, 5, 5, 4, 1, 6, 8, 2, 2, 2, 4, 5

+

 

+What is the MAD (mean absolute deviation) of this data?  
+
 
+
+

shells

+
",1.5,1.5,,,202431 +PSBBM6,1,Fill-in-the-blank(s),Numeric,"

Imagine a large, solid cube made out of 64 white snap cubes. Someone spray paints all 6 faces of the large cube blue. After the paint dries, they disassemble the large cube into a pile of 64 snap cubes.

+

 

+

How many of those 64 snap cubes have exactly 2 faces that are blue?

+

 

+

snap cubes

",24,24,,,6562 +PRABEUPZ,1,Fill-in-the-blank(s),Algebraic Expression,"

Clare paid 50% more for her notebook than Priya paid for hers. Priya paid x for her notebook and Clare paid y dollars for hers. Write an equation that represents the relationship between y and x.

+
+

 

+

y =

+

Use x as your variable.

+
","3/2x, 1.5x","3/2x, 1.5x",,,247607 +PRABEUPW,1,Fill-in-the-blank(s),Numeric,"

Two angles are complementary. One has a measure of 19 degrees. What is the measure of the other?  

+

 

+

degrees

",71,71,,,247252 +PSBBQGY,2,Fill-in-the-blank(s),Numeric,"

What is the volume of the other piece not pictured?  

+

 

+

in3

",300,300,,,244865 +PSB7BS,2,Fill-in-the-blank(s),Numeric,"
+

B is the intersection of line AC and line ED. Find the measure of each of the angles.

+
+

 

+

+

 

+

 

+
+

Give the measure of angle ABD.  °

+
",70,70,,,154202 +PSBBG5J,1,Fill-in-the-blank(s),Numeric,"

+

 

+

In a deck of cards, each card measures 6 cm by 9 cm.

+

 

+

When stacked, the deck is 2 cm tall, as shown in the photo. Find the volume of this deck of cards.

+

 

+

cm3

",108,108,,,209528 +PSBBG5J,2,Fill-in-the-blank(s),Numeric,"

+

 

+

Then the cards are fanned out, as shown in the picture. The distance from the rightmost point on the bottom card to the rightmost point on the top card is now 7 cm instead of 2 cm. Find the volume of the new stack.

+

 

+

cm3

",108,108,,,209608 +PSBXCT,1,Fill-in-the-blank(s),Numeric," + + + + + + +
The daycare has two sandboxes that are both prisms with regular hexagons as their bases. The smaller sandbox has a base area of 1,146 in2 and is filled 10 inches deep with sand.
+

 

+

It took 14 bags of sand to fill the small sandbox to this depth. What volume of sand comes in one bag? (Round to the nearest whole cubic inch.)

+

 

+

cubic inches

",819,819,,,109845 +PSBXCT,2,Fill-in-the-blank(s),Numeric,"

The daycare manager wants to add 3 more inches to the depth of the sand in the small sandbox. How many bags of sand will they need to buy?

+

 

+

bags of sand

",5,5,,,109969 +PSBXCT,3,Fill-in-the-blank(s),Numeric,"

The daycare manager also wants to add 3 more inches to the depth of the sand in the large sandbox. The base of the large sandbox is a scaled copy of the base of the small sandbox, with a scale factor of 1.5. How many bags of sand will they need to buy for the large sandbox? 

+

 

+

bags of sand

",10,10,,,110096 +PSB9V9,2,Fill-in-the-blank(s),Numeric,"

Use the equation to find how many days a large bag of dog food will last if it contains 210 cups of food.  

+

 

+

days

",140,140,,,168704 +PSBB2XW,1,Fill-in-the-blank(s),Numeric,"

A runner ran 23 of a 5-kilometer race in 21 minutes. They ran the entire race at a constant speed.

+

 

+

How long did it take to run the entire race?  

+

 

+

 minutes

",31.5,31.5,,,302809 +PSB9V9,1,Fill-in-the-blank(s),Algebraic Expression,"

A small dog gets fed 34 cup of dog food twice a day. Using d for the number of days and f for the amount of food in cups, write an equation relating the variables.

+

 

+

f =

+

Use d as your variable.

",1.5d,1.5d,,,168477 +PRABMSPT,1,Fill-in-the-blank(s),Numeric,"

Solve the equation.

+

 

+

32 = 43c + 23

+

 

+

 

+

c =

",8-May,8-May,,,376399 +PRABMSPV,1,Fill-in-the-blank(s),Numeric,"

Solve the equation.

+

 

+

11.03 = 8.78 + 0.02e

+

 

+

e =

",112.5,112.5,,,376894 +PSBMFA,1,Fill-in-the-blank(s),Numeric,"

Find the area of the figure. 

+


+

 

+

square units

",31,31,,,54527 +PSBBG36,1,Fill-in-the-blank(s),Numeric,"

Between you and your partner, choose who will use each of these two methods to find the surface area of the prism.

+

 

+
    +
  • Adding the areas of all the faces
  • +
  • Using the perimeter of the base.
  • +
+

 

+

Use your chosen method to calculate the surface area of the prism.

+

 

+

Trade papers with your partner, and check their work. Discuss your thinking. If you disagree, work to reach an agreement.

+

 

+

+

 

+

cm2

",234,234,,,209221 +PRABJWDW,1,Fill-in-the-blank(s),Numeric,"

The other day, you calculated the volume of this heart-shaped box of chocolates.

+

 

+ + + + + + + +
+

The depth of the box is 2 inches. How much cardboard is needed to create the box?

+

 

+

in2

+
",131.2,131.2,,,251994 +PSBBRR7,1,Fill-in-the-blank(s),Numeric,"

A wheelbarrow is being used to carry wet concrete. Here are its dimensions.

+

 

+

+

 

+

What volume of concrete would it take to fill the tray?

+

 

+

cm3

",415800,415800,,,251573 +PSBBRR7,2,Fill-in-the-blank(s),Numeric,"

After dumping the wet concrete, you notice that a thin film is left on the inside of the tray. What is the area of the concrete coating the tray? (Remember, there is no top.)

+

 

+

cm2

",26370,26370,,,251741 +PSBC2DU,2,Fill-in-the-blank(s),Numeric,"

If one bottle of paint covers an area of 40 square feet, how many bottles of paint does Andre need to buy for this project?

+

 

+

bottles

",2,2,,,475938 +PSBDFVZ,1,Fill-in-the-blank(s),Numeric,"

Noah is visiting his aunt in Texas. He wants to buy a belt buckle whose price is $25. He knows that the sales tax in Texas is 6.25%.

+

 

+

How much will the tax be on the belt buckle? 

+

 

+

$

+

Round to the nearest cent.

",1.56,1.56,,,553198 +PRABEURV,1,Fill-in-the-blank(s),Numeric,"

Angle H is half as large as angle J. Angle J is one fourth as large as angle K. Angle K has a measure of 240 degrees. What is the measure of angle H?  

+

 

+

°

",30,30,,,429356 +PSBDFVZ,3,Fill-in-the-blank(s),Algebraic Expression,"

Write an equation that represents the total cost, c, of an item whose price is p.

+

 

+

c =

+

Use p as your variable.

",1.0625p,1.0625p,,,553614 +PSBC2DU,1,Fill-in-the-blank(s),Numeric,"

Andre is preparing for the school play. He needs to paint a cardboard box to look like a dresser. The box is a rectangular prism that measures 5 feet tall, 4 feet long, and 212 feet wide. Andre does not need to paint the bottom of the box.

+

 

+

How much cardboard does Andre need to paint?

+

 

+

square feet

",75,75,,,475820 +PSBXCT,4,Fill-in-the-blank(s),Numeric,"

A lawn and garden store is selling 6 bags of sand for $19.50. How much will they spend to buy all the new sand for both sandboxes?

+

 

+

$

",45.5,45.5,,,110217 +PRABEUAZ,1,Order / Sort,Ordering,

Different events have the following likelihoods. Sort them from least to greatest:

,"

56

,

60%

,

0.37

,

 8 out of 10

,

20%

","

56

,

60%

,

0.37

,

 8 out of 10

,

20%

",,,53108 +PSBJDX,1,Order / Sort,Ordering,"

Your teacher will give you some cards that describe events. Order the events from least likely to most likely.

+

 

+

After ordering the first set of cards, pause here so your teacher can review your work.  Then, your teacher will give you a second set of cards.

","
+
+
+
+

Half of the cards in a deck are red and half are black. Shuffle the cards and select the first card. The chance that the card is red.

+
+
+
+
,
+
+
+
+

The weather report says there is a 20% chance of rain tomorrow. The chance of rain tomorrow.

+
+
+
+
,
+
+
+
+

10% of people are left handed. The chance that a randomly chosen person is left handed.

+
+
+
+
,
+
+
+
+

The offspring of two fruit flies in a science experiment have a 75% chance of having redeyes. The chance that the first fly to hatch has red eyes.

+
+
+
+
","
+
+
+
+

Half of the cards in a deck are red and half are black. Shuffle the cards and select the first card. The chance that the card is red.

+
+
+
+
,
+
+
+
+

The weather report says there is a 20% chance of rain tomorrow. The chance of rain tomorrow.

+
+
+
+
,
+
+
+
+

10% of people are left handed. The chance that a randomly chosen person is left handed.

+
+
+
+
,
+
+
+
+

The offspring of two fruit flies in a science experiment have a 75% chance of having redeyes. The chance that the first fly to hatch has red eyes.

+
+
+
+
",,,43774 +PSBJNA,2,Fill-in-the-blank(s),Numeric,"

 What is the total surface area of the two triangular prisms together?

+

 

+

square inches

",144,144,,,44926 +PSBX7V,1,Fill-in-the-blank(s),Numeric,"

Teachers held a basketball shooting contest. Their goal was to make 60 baskets. For the teacher, determine what percentage of the goal they achieved.

+

 

+

Teacher A made 12 baskets.  

+

 

+

 %

",20,20,,,114644 +PRABEUCA,1,Fill-in-the-blank(s),Numeric,"

Here is a diagram of the base of a bird feeder which is in the shape of a pentagonal prism. Each small square on the grid is 1 square inch. 

+

 

+

The distance between the two bases is 8 inches. What will be the volume of the completed bird feeder? 

+

 

+

cubic inches

+

 

+

",336,336,,,302268 +PRABEUCB,1,Fill-in-the-blank(s),Numeric,"

Find the surface area of the triangular prism.  

+

 

+

square units

+

 

+

",60,60,,,302658 +PSBJNA,1,Fill-in-the-blank(s),Numeric,"

A rectangular prism is cut along a diagonal on each face to create two triangular prisms. The distance between A and B is 5 inches.

+

 

+

+

What is the surface area of the original rectangular prism?  

+

 

+

square inches

",94,94,,,44592 +PSB2UR,3,Fill-in-the-blank(s),Numeric,"

For which value y is (1, y) on the line you just drew?  

+

 

+

y =

",16-Jan,16-Jan,,,129133 +PRABJ6PF,1,Fill-in-the-blank(s),Numeric,"
Complete the equation with a number that makes the expression on the right side of the equal sign equivalent to the expression on the left side.
+
+

 

+

5x − 2.5 + 6x − 3 = (2x − 1)

+
",5.5,5.5,,,599220 +PSBTFF,1,Fill-in-the-blank(s),Numeric,"

Find the measure of the angles in one column. Your partner will work on the other column. Check in with your partner after you finish each row. Your answers in each row should be the same. If your answers aren’t the same, work together to find the error and correct it.

+

 

+ + + + + + + + + + + + + +
column Acolumn Banswer
P is on line m. Find the value of a.  +

Find the value of b

+

.

+
°
",46,46,,,86278 +PSBTFF,2,Fill-in-the-blank(s),Numeric,"

Find the measure of the angles in one column. Your partner will work on the other column. Check in with your partner after you finish each row. Your answers in each row should be the same. If your answers aren’t the same, work together to find the error and correct it.

+

 

+ + + + + + + + + + + + + +
column Acolumn Banswer
+

 Find the value of a.

+

 

+

+
+

In right triangle LMN, angles L
and M are complementary.
Find the measure of angle L

+

 

+

+
°
",39,39,,,86365 +PSBB5WW,2,Fill-in-the-blank(s),Numeric,"

You might think that the angle between the hour and minute hands at 2:20 is 60 degrees, but it is not! The hour hand has moved beyond the 2. Calculate the angle between the clock hands at 2:20.

+

 

+

°

",50,50,,,319333 +PSBTFF,3,Fill-in-the-blank(s),Numeric,"

Find the measure of the angles in one column. Your partner will work on the other column. Check in with your partner after you finish each row. Your answers in each row should be the same. If your answers aren’t the same, work together to find the error and correct it.

+

 

+ + + + + + + + + + + + + +
column Acolumn Banswer
+

Angle C and angle E are supplementary. Find the measure of angle E.

+

 

+

+
+

 X is on line WY. Find the value of b.

+

+
°
",51,51,,,86456 +PSBTFF,4,Fill-in-the-blank(s),Numeric,"

Find the measure of the angles in one column. Your partner will work on the other column. Check in with your partner after you finish each row. Your answers in each row should be the same. If your answers aren’t the same, work together to find the error and correct it.

+

 

+ + + + + + + + + + + + + +
column Acolumn Banswer
+

Find the value of c.

+

 

+

+
+

B is on line FW. Find the measure of angle CBW.

+

 

+

+
°
",48,48,,,86560 +PSBTFF,5,Fill-in-the-blank(s),Numeric,"

Find the measure of the angles in one column. Your partner will work on the other column. Check in with your partner after you finish each row. Your answers in each row should be the same. If your answers aren’t the same, work together to find the error and correct it.

+

 

+ + + + + + + + + + + + + +
column Acolumn Banswer
+

Two angles are complementary. One angle
measures 37 degrees. Find the measure of
the other angle.

+
+

Two angles are supplementary. One angle
measures 127 degrees. Find the measure of
the other angle.

+
°
",53,53,,,86650 +PSBB5WW,1,Fill-in-the-blank(s),Numeric,"

What is the angle between the hour and minute hands of a clock at 3:00?

+

 

+

°

",90,90,,,319240 +PRABMSPU,1,Fill-in-the-blank(s),Numeric,"

Solve the equation.

+

 

+

0.3d + 7.9 = 9.1

+

 

+

d =

",4,4,,,376600 +PRABEUGM,1,Fill-in-the-blank(s),Numeric,"

Solve the equation.

+

 

+

17a + 34 = 98

+

 

+

 

+

a =

",21/8,21/8,,,375908 +PRABMSPS,1,Fill-in-the-blank(s),Numeric,"

Solve the equation.

+

 

+

23 + 15b = 56

+

 

+

 

+

b =

+

Give your answer in fraction form.

",6-May,6-May,,,376147 +PRABEVDE,1,Fill-in-the-blank(s),Numeric,"

A right rectangular prism has a volume of 30 cubic inches. Its length is 13 inch and its width is 3 feet. What is its height in inches?  

+

 

+

 inches

",2.5,2.5,,,1468 +PRABEU4D,1,Fill-in-the-blank(s),Numeric,"

The figure on the left is a trapezoidal prism. The figure on the right represents its base. Find the volume of this prism.

+

 

+

ft3

+
+

 

+

+
",360,360,,,80588 +PSBBGRZ,1,Fill-in-the-blank(s),Numeric,"

A submarine sandwich shop makes sandwiches with one kind of bread, one protein, one choice of cheese, and two vegetables. How many different sandwiches are possible? 

+

 

+ + + + + + + +
+
+
    +
  • Breads: Italian, white, wheat
  • +
  • Proteins: Tuna, ham, turkey, beans
  • +
  • Cheese: Provolone, Swiss, American, none
  • +
  • Vegetables: Lettuce, tomatoes, peppers, onions, pickles
  • +
+
+
 
+
+

 

+

different sandwiches

",1200,1200,,,207084 +PSBBGRZ,3,Fill-in-the-blank(s),Numeric,"

Andre knows he wants a sandwich that has ham, lettuce, and tomatoes on it. He doesn’t care about the type of bread or cheese. How many of the different sandwiches would make Andre happy?

+

 

+

sandwiches

",12,12,,,207316 +PSBBGRZ,4,Fill-in-the-blank(s),Numeric,"

If a sandwich is made by randomly choosing each of the options, what is the probability it will be a sandwich that Andre would be happy with?

+

 

+

",12/1200,12/1200,,,207427 +PRABGWJ7,1,Fill-in-the-blank(s),Numeric,"

How many different meals are possible if each meal includes one main course, one side dish, and one drink?

+

 

+ + + + + + + + + + + + + + + + + + + + + + + +
main coursesside dishesdrinks
grilled chickensaladmilk
turkey sandwichapplesaucejuice
pasta saladwater
+

 

+

There are different meals. 

",18,18,,,207655 +PSBB6JQ,5,Fill-in-the-blank(s),Numeric,"

How long is OT¯?

+

 

+

units

",5,5,,,322882 +PSBBSTU,1,Fill-in-the-blank(s),Numeric,"

A video game developer wants to know how long it takes people to finish playing their new game. They surveyed a random sample of 13 players and asked how long it took them (in minutes).

+

 

+ + + + + + + + + + + + + + + + + + +
1,2359524571,4861,7591,1485481,0371,8641,2459768661,431
+

 

+

Estimate the median time it will take all players to finish this game.

+

 

+

minutes

",1148,1148,,,256298 +PSBBSTU,2,Fill-in-the-blank(s),Numeric,"

A video game developer wants to know how long it takes people to finish playing their new game. They surveyed a random sample of 13 players and asked how long it took them (in minutes).

+

 

+ + + + + + + + + + + + + + + + + + +
1,2359524571,4861,7591,1485481,0371,8641,2459768661,431
+

 

+

Find the interquartile range for this sample.  

+

 

+

minutes

",549.5,549.5,,,256603 +PSBDBNU,1,Fill-in-the-blank(s),Numeric,"

Ten students each attempted 10 free throws. This list shows how many free throws each student made.

+

 

+
8, 5, 6, 6, 4, 9, 7, 6, 5, 9
+
 
+
What is the median number of free throws made?
+
 
+
free throws
",6,6,,,528652 +PSBBFUZ,1,Fill-in-the-blank(s),Numeric,"

The data set shows the number of shells that 12 people collected.

+

 

+

4, 5, 5, 4, 1, 6, 8, 2, 2, 2, 4, 5

+

 

+

What is the mean number of shells collected?

+

 

+

shells

",4,4,,,202276 +PSBDP7M,2,Fill-in-the-blank(s),Numeric,"

What is the circumference of the table, to the nearest inch?

+

 

+

inches

",94,94,,,595052 +PRABJWEE,1,Fill-in-the-blank(s),Numeric,"

A wood floor is made by laying multiple boards end to end. Each board is measured with a maximum percent error of 5%. What is the maximum percent error for the total length of the floor?

+

 

+

%

",5,5,,,57624 +PSBB6JQ,7,Fill-in-the-blank(s),Numeric,"

What is the measure of angle TOE?

+

 

+

°

+

 

+

",90,90,,,323131 +PSBB6JQ,2,Fill-in-the-blank(s),Numeric,"

What is the measure of angle MON?

+

 

+

°

+

 

+

",30,30,,,322472 +PSBRXQ,2,Fill-in-the-blank(s),Numeric,"

What are the measures of its angles?

+

 

+

degrees

",60,60,,,77888 +PSBB7G7,1,Fill-in-the-blank(s),Numeric,"

Solve the equation.

+

 

+

2(x+5)=3x+1

+

 

+

x=

",9,9,,,328341 +PSB97X,1,Fill-in-the-blank(s),Numeric,"

Find the measure of angle JGH.   

+

 

+

angle JGH =°

+

 

+

 

+

 

+

+

 

+

 

",150,150,,,170408 +PSBBRCB,2,Fill-in-the-blank(s),Numeric,"

If segment AB measures 2 cm, how long is segment A'B'?

+

 

+

cm

",2,2,,,249173 +PSBBBW4,2,Fill-in-the-blank(s),Numeric,"

How much will each of them have earned?

+

 

+

$

",84,84,,,180127 +PSBYAA,3,Fill-in-the-blank(s),Numeric,"

What is the height of the 250 ml mark? Recall that 1 liter (L) is equal to 1000 milliliters (ml), and that 1 liter (L) is equal to 1,000 cm3

+

 

+

cm

",6,6,,,115324 +PSBDP7M,3,Fill-in-the-blank(s),Numeric,"

What is the diameter of the table?

+

 

+

inches

",30,30,,,595192 +PSB2VT,3,Fill-in-the-blank(s),Algebraic Expression,"

Write a second equation whose graph goes through (0,2) so the system has one solution at (4,1).

+

 

+

y=

+

Use x as your variable.

+

 

+

",-0.25x+2,-0.25x+2,,,130008 +PSBB9P,1,Fill-in-the-blank(s),Numeric,"

Find the area of the parallelogram.

+

 

+

A:

+

 

+

+

 

+

Parallelogram A: square units.

+

 

",12,12,,,10254 +PSBUPR,5,Fill-in-the-blank(s),Numeric,"

Use the diagram to find the measure of angle ABE.

+

 

+ + + + + + + +
mABE = ° 
",50,50,,,93262 +PSBBDV8,3,Fill-in-the-blank(s),Algebraic Expression,"

Write an equation that describes the relationship between d and h.

+

 

+

d=

+

Use h as your variable.

",4+3h,4+3h,,,190835 +PSBBDV8,4,Fill-in-the-blank(s),Numeric,"

After how many hours of hiking will they be 16 miles from their car?

+

 

+

hours

",4,4,,,190990 +PSB8PB,1,Fill-in-the-blank(s),Algebraic Expression,"

Students are selling raffle tickets for a school fundraiser. They collect $24 for every 10 raffle tickets they sell.

+

 

+

Suppose M is the amount of money the students collect for selling R raffle tickets. Write an equation that reflects the relationship between M and R.

+

 

+

M =

+

Use R as your variable.

","(12/5)R, 12/5R","(12/5)R, 12/5R",,,161738 +PSBU9K,1,Fill-in-the-blank(s),Numeric,"

Find the area of each parallelogram.

+

 

+

+

 

+

Parallelogram A: square units.

",6,6,,,97111 +PSB6QQ,2,Order / Sort,Ordering,

What is the order of all seven points?

,"

C

,

B'

,

A'

,

D

,

A

,

C'

,

B

","

C

,

B'

,

A'

,

D

,

A

,

C'

,

B

",,,151810 +PSBU7P,3,Fill-in-the-blank(s),Numeric,"

What is the measure of angle DEB?

+

 

+

°

",50,50,,,96780 +PSBC7FK,2,Fill-in-the-blank(s),Numeric,"

What is the measure of angle CBE

+

 

+

°

",72,72,,,504078 +PSBC7FK,4,Fill-in-the-blank(s),Exact Match,"

Name a triangle congruent to triangle CBE.

+

 

+

Triangle

","BCA, ACB","BCA, ACB",,,504284 +PRABQPRN,1,Fill-in-the-blank(s),Numeric,"

Lines AC and BD intersect at E.

+

 

+

+

 

+

What is the measure of angle BEC?

+

 

+

°

",108,108,,,504723 +PSBB9P,2,Fill-in-the-blank(s),Numeric,"

Find the area of the parallelogram.

+

 

+

B:

+

 

+

+

 

+

Parallelogram B: square units.

",8,8,,,10364 +PSBBCUH,1,Fill-in-the-blank(s),Numeric," + + + + + + +
+

Find the area of the shaded region by summing the areas of the shaded triangles.

+

 

+

units2

+
",64,64,,,185261 +PSBBCUH,2,Fill-in-the-blank(s),Numeric,"

Find the area of the shaded region by subtracting the area of the unshaded region from the large triangle.

+

 

+

units2

+

 

+

",66,66,,,185386 +PSBBN9H,1,Fill-in-the-blank(s),Numeric,"

Triangles ABC and DEF are similar.

+

 

+

+

 

+

Find the length of segment DF.

+

 

+

units

",2.68,2.68,,,238499 +PSBBN9H,2,Fill-in-the-blank(s),Numeric,"

Triangles ABC and DEF are similar.

+

 

+

+

 

+

 

+

Find the length of segment EF.  

+

 

+

units

",2.01,2.01,,,238581 +PSBB7K6,1,Fill-in-the-blank(s),Numeric,"

Solve the equation.

+

 

+

3y4=62y

+

 

+

y=

",2,2,,,328823 +PSBE8E,1,Fill-in-the-blank(s),Numeric,"

Triangles ABC and DEF are similar.

+

 

+

+

 

+


Find the length of segment DE.  

+

 

+

units

",1.2,1.2,,,26752 +PSBE8E,2,Fill-in-the-blank(s),Numeric,"

Triangles ABC and DEF are similar.

+

 

+

+

 

+

 

+

Find the length of segment AC.  

+

 

+

units

",5,5,,,26857 +PSBBYVH,2,Fill-in-the-blank(s),Algebraic Expression,"

Rearrange the equation so b is the independent variable.

+

 

+

r=

+

Use bas your variable.

",5-0.8b,5-0.8b,,,291134 +PSBBYVH,3,Fill-in-the-blank(s),Algebraic Expression,"

Rearrange the equation so r is the independent variable.

+

 

+

b=

+

Use r as your variable.

",6.25-1.25r,6.25-1.25r,,,291282 +PSBFF,3,Fill-in-the-blank(s),Numeric,"

Diego has $11 and begins saving $5 each week toward buying a new phone. At the same time that Diego begins saving, Lin has $60 and begins spending $2 per week on supplies for her art class.

+

 

+

How much money do they have at that time?

+

 

+

$

",46,46,,,682 +PSBBE34,1,Fill-in-the-blank(s),Numeric,"

A shorter style of cup is stacked tall. The graph displays the height of the stack in centimeters for different numbers of cups. How much does each cup after the first add to the height of the stack?

+

 

+ + + + + + + +
centimeters
",0.5,0.5,,,197850 +PSBVNW,1,Fill-in-the-blank(s),Algebraic Expression,"

A cable company charges $70 per month for cable service to existing customers.

+

Find a linear equation representing the relationship between x, the number of months of service, and y, the total amount paid in dollars by an existing customer.

+

 

+

 

+

y =

",70x,70x,,,99193 +PSBVNW,2,Fill-in-the-blank(s),Algebraic Expression,"

A cable company charges $70 per month for cable service to existing customers.

+

 

+

For new customers, there is an additional one-time $100 service fee. Repeat the previous problem for new customers.

+

 

+

 

+

y =

+

Use x as your variable.

",70x+100,70x+100,,,99441 +PSB2VT,1,Fill-in-the-blank(s),Algebraic Expression,"

Here is the graph for one equation in a system of equations:

+

 

+

+

 

+

Write a second equation for the system so it has infinitely many solutions.

+

 

+

y=

+

Use x as your variable.

",-0.75x+4,-0.75x+4,,,129599 +PSB2VT,2,Fill-in-the-blank(s),Algebraic Expression,"

Write a second equation whose graph goes through (0,1) so the system has no solutions.

+

 

+

y=

+

Use x as your variable.

+

 

+

",-0.75x+1,-0.75x+1,,,129804 +PSB6SB,1,Fill-in-the-blank(s),Numeric,"

A store sells ice cream with assorted toppings. They charge $3.00 for an ice cream, plus 50 cents per ounce of toppings.

+

 

+

How much does an ice cream cost with 4 ounces of toppings?

+

 

+

$

",5,5,,,152004 +PRABECCR,1,Fill-in-the-blank(s),Numeric,"

Tyler reads 215 of a book on Monday, 13 of it on Tuesday, 29 of it on Wednesday, and 34 of the remainder on Thursday. If he still has 14 pages left to read on Friday, how many pages are there in the book?

+

 

+

pages

",180,180,,,231289 +PSBBAB5,2,Fill-in-the-blank(s),Numeric,"

At a sandwich shop, any sandwich costs $4.50, plus $0.25 for each extra topping.

+

 

+

How much does a sandwich cost with 13 extra toppings?

+

 

+

$

",7.75,7.75,,,171543 +PSBBKP8,1,Fill-in-the-blank(s),Numeric,"

+

 

+

This cylinder has a volume of 12π cubic inches and a diameter of 4 inches.

+

 

+

Find the cylinder's radius.

+

 

+

inches

",2,2,,,223532 +PSBCSCN,2,Fill-in-the-blank(s),Numeric,"

What should her answer have been?

+

 

+

x=

",2-Jan,2-Jan,,,430695 +PSBBY9X,2,Fill-in-the-blank(s),Numeric,"

What is the solution to the equation?

+

 

+

x=

",-1,-1,,,293786 +PRABHSS5,1,Fill-in-the-blank(s),Numeric,"

Solve the equation for x.

+

 

+

-(3x-12)=9x-4 

+

 

+

x=

",3-Apr,3-Apr,,,95029 +PRABHSS4,1,Fill-in-the-blank(s),Numeric,"

Solve the equation for x.

+

 

+

x-4=13(6x-54) 

+

 

+

x=

",14,14,,,94876 +PRABHSS3,1,Fill-in-the-blank(s),Numeric,"

Solve the equation for x.

+

 

+

12+6x3=5-92 

+

 

+

x=

+

 

",-3,-3,,,94737 +PRABEGKV,1,Fill-in-the-blank(s),Algebraic Expression," + + + + + + +
+

The volume of this cone is 36π cubic units.

+

 

+

What is the volume of a cylinder that has the same base area and the same height?

+

 

+

cubic units

+

 

+

Enter your answer in terms of π. Use pi to represent the π symbol. For example: 32π would be typed as 32pi

+
",108pi,108pi,,,89267 +PRABQP4G,1,Fill-in-the-blank(s),Numeric,"

Diego has some money in his bank account before he starts a summer job. He deposits the money from the summer job in his bank account and doesn’t spend any of it. After working 3 hours, he has $71 in the account. After working 12 hours, he has $134 in the account.

+

 

+

How much money does Diego earn per hour?

+

 

+

$ per hour

",7,7,,,41676 +PSBBV9C,1,Fill-in-the-blank(s),Numeric,"

Find the area of each square. Each grid square represents 1 square unit.

+

 

+

Square A:   square units

+

 

+

",17,17,,,276040 +PSBBV9C,2,Fill-in-the-blank(s),Numeric,"

Find the area of each square. Each grid square represents 1 square unit.

+

 

+

Square B:   square units

+

 

+

",20,20,,,276196 +PSBPHS,2,Fill-in-the-blank(s),Numeric,"

Find the side length of square ACEG.

+

 

+

s=units

",10,10,,,65477 +PSBCCUR,1,Fill-in-the-blank(s),Numeric,"

Solve this equation.

+

 

+

12x - 7 = 13(x - 12)

+

 

+

x=

",18,18,,,360109 +PSB26A,3,Fill-in-the-blank(s),Numeric,"

The temperature in degrees Fahrenheit, F, is related to the temperature in degrees Celsius, C, by the equation F=95C+32,

+

 

+

There is one temperature where the degrees Fahrenheit and degrees Celsius are the same, so that C=F. Use the expression from the equation, where F is expressed in terms of C. to solve for this temperature.

+

 

+

C=

",-40,-40,,,131520 +PSBBV9C,3,Fill-in-the-blank(s),Numeric,"

Find the area of each square. Each grid square represents 1 square unit.

+

 

+

Square C:   square units

+

 

+

",13,13,,,276338 +PRABPUKN,1,Fill-in-the-blank(s),Numeric,"

In rectangle ABCD, side AB is 8 centimeters and side BC is 6 centimeters. F is a point on BC and E is a point on AB. The area of triangle DFC is 20 square centimeters, and the area of triangle DEF is 16 square centimeters. What is the area of triangle AED?

+

 

+

square centimeters 

",48/5,48/5,,,19954 +PSBBKZG,1,Fill-in-the-blank(s),Numeric,"

Kiran and his cousin work during the summer for a landscaping company. Kiran's cousin has been working for the company longer, so his pay is 30% more than Kiran's. Last week his cousin worked 27 hours, and Kiran worked 23 hours. Together, they earned $493.85. What is Kiran's hourly pay?

+

 

+

$

",8.5,8.5,,,225403 +PSBBJXR,2,Fill-in-the-blank(s),Numeric,"

What is the perimeter of each of the figures?

+

 

+

units

",72,72,,,219375 +PRABEPF6,1,Fill-in-the-blank(s),Numeric,"

Solve the equation and check your solution.

+

 

+

-4(r + 2) = 4(2  2r)

+

 

+

r=

",4,4,,,331070 +PSBBV9C,4,Fill-in-the-blank(s),Numeric,"

Find the area of each square. Each grid square represents 1 square unit.

+

 

+

Square D:   square units

+

 

+

",37,37,,,276480 +PSBJ8E,3,Fill-in-the-blank(s),Numeric,"

The amount of water (in liters) in tank 1 after t minutes is 30t+25. The amount of water (in liters) in tank 2 after t minutes is -20t+1000. Find the time when the amount of water will be equal.

+

 

+

minutes

",19.5,19.5,,,47808 +PRABEC24,1,Fill-in-the-blank(s),Numeric,"

Solve the equation and check your solution.

+

 

+

19(2m  16) = 13(2m + 4)

+

 

+

m=

",-7,-7,,,330854 +PSBDPNS,1,Fill-in-the-blank(s),Numeric,"

Solve the equation.

+

 

+

2k  3(4  k) = 3k + 4

+

 

+

k =

",8,8,,,591787 +PSBB7P2,1,Fill-in-the-blank(s),Numeric,"

Solve the equation.

+

 

+

3(n+2)=9(6n)

+

 

+

n=

",4,4,,,329327 +PSBDEV,2,Fill-in-the-blank(s),Numeric,"

Complete the equation so that it is true for all values of x.

+

 

+

x-2=-(-x)

",2,2,,,16728 +PSB5TR,1,Fill-in-the-blank(s),Algebraic Expression,"

Write the other side of this equation so it's true for all values of x: 

+

 

+

12(6x10)x=

",2x-5,2x-5,,,146938 +PRABEDB7,1,Fill-in-the-blank(s),Numeric,"

Solve the equation and check your solution.

+

 

+

3x  6 = 4(2  3x)  8x

+

 

+

x=

",14/23,14/23,,,148754 +PRABMTN9,1,Fill-in-the-blank(s),Numeric,"

Solve the equation and check your solution.

+

 

+

12z + 6 = 32(z + 6)

+

 

+

z=

+

 

+

 

",-3,-3,,,148929 +PSBCHU3,1,Fill-in-the-blank(s),Numeric,"

Solve the equation.

+

 

+

4x  5 = 2  x

+

 

+

x=

",5-Jul,5-Jul,,,388305 +PSBCHZZ,3,Fill-in-the-blank(s),Numeric,"

What is the measure of angle D'?

+

 

+

degrees

+

 

+

",45,45,,,389082 +PSBBM79,1,Fill-in-the-blank(s),Algebraic Expression,"

Priya and Han are biking in the same direction on the same path.

+

 

+

Han is riding at a constant speed of 16 miles per hour. Write an expression that shows how many miles Han has gone after t hours.

+

 

+

+

Use t as your variable.

",16t,16t,,,232017 +PSBBM79,2,Fill-in-the-blank(s),Algebraic Expression,"

Priya started riding a half hour before Han. If Han has been riding for t hours, how long has Priya been riding?

+

 

+

hours

+

Use t as your variable.

",t+1/2,t+1/2,,,232208 +PSBBM79,3,Fill-in-the-blank(s),Algebraic Expression,"

Priya is riding at a constant speed of 12 miles per hour. Write an expression that shows how many miles Priya has gone after Han has been riding for t hours.

+

 

+

+

Use t as your variable.

",12(1/2+t),12(1/2+t),,,232362 +PRABEVTR,1,Fill-in-the-blank(s),Numeric,"
+
+
+

A cylinder has radius 1.6 meters. Its volume is 95 cubic meters. Find its height to the nearest tenth of a meter.

+
+
+
+
+
+

 

+
+
+
+

meters

+
+
+
",11.8,11.8,,,596384 +PSBEV,1,Fill-in-the-blank(s),Numeric,"

A circular field has area 14400π square feet.

+

 

+

What is the radius of the field?

+

 

+

feet

",120,120,,,457 +PSB8P6,2,Fill-in-the-blank(s),Numeric,"

What is the volume of the prism?

+

 

+

+

in3

",28.8,28.8,,,162201 +PSBUA8,1,Fill-in-the-blank(s),Algebraic Expression,"

A cylinder has a radius of 4 cm and a height of 5 cm.

+

 

+

What is the volume of the cylinder?

+

 

+

cm3

+

Enter your answer in terms of π

+

Use pi to represent the π symbol .  For example: 32π would be typed as 32pi

",80pi,80pi,,,90927 +PSBEV,3,Fill-in-the-blank(s),Numeric,"

A circular field has area 14400π square feet.

+

 

+

What is the circumference of the field, to the nearest foot?

+

 

+

feet

",754,754,,,662 +PSBEV,2,Fill-in-the-blank(s),Numeric,"

A circular field has area 14400π square feet.

+

 

+

What is the diameter of the field?

+

 

+

feet

",240,240,,,569 +PRABEAH2,1,Fill-in-the-blank(s),Numeric,"

For what value of x do the expressions 2x+3 and 3x-6 have the same value?

+

 

+

x=

",9,9,,,248217 +PSBBNDD,1,Fill-in-the-blank(s),Numeric,"

Solve the equation.

+

 

+

3d + 16 = -2(5  3d)

+

 

+

d=

",26/3,26/3,,,233384 +PSB6C5,2,Fill-in-the-blank(s),Numeric,"

Solve the equation correctly.

+

 

+

x=

",-36,-36,,,150076 +PSBUA8,2,Fill-in-the-blank(s),Algebraic Expression,"

A cylinder has a radius of 4 cm and a height of 5 cm.

+

 

+

What is the volume of the cylinder when its radius is tripled?

+

 

+

cm3

+

Enter your answer in terms of π

+

Use pi to represent the π symbol .  For example: 32π would be typed as 32pi

",720pi,720pi,,,91074 +PRABEFU6,1,Fill-in-the-blank(s),Numeric,"

A one-quart container of tomato soup is shaped like a rectangular prism. A soup bowl shaped like a hemisphere can hold 8 oz of liquid. How many bowls will the soup container fill? Recall that 1 quart is equivalent to 32 fluid ounces (oz).

+

 

+

bowls

",4,4,,,374418 +PSBKFT,2,Fill-in-the-blank(s),Algebraic Expression,"

+

 

+

The cylinder shown here has a height of 7 centimeters and a radius of 4 centimeters.

+

 

+

How many cubic centimeters of fluid can fill this cylinder? Express your answer in terms of π.

+

 

+

 cm3

+

Use pi to represent the π symbol. For example: 32π would be typed as 32pi

",112pi,112pi,,,48812 +PSBKFT,3,Fill-in-the-blank(s),Numeric,"

Give a decimal approximation of your answer to the previous question using 3.14 to approximate π.

+

 

+

cm3

",351.68,351.68,,,48968 +PSBCBG7,1,Fill-in-the-blank(s),Algebraic Expression,"

A hemisphere fits snugly inside a cylinder with a radius of 6 cm. A cone fits snugly inside the same hemisphere.

+

 

+

What is the volume of the cylinder?

+

 

+

 cm3

+

Enter your answer in terms of π.

+

Use pi to represent the  symbol.  For example: 32π would be typed as 32pi

",216pi,216pi,,,351677 +PSBBKP8,2,Fill-in-the-blank(s),Numeric,"

+

 

+

This cylinder has a volume of 12π cubic inches and a diameter of 4 inches.

+

 

+

Find the cylinder's height.

+

 

+

inches

+

 

",3,3,,,223692 +PSBC4Z,1,Fill-in-the-blank(s),Numeric,"

Three cylinders have a volume of 2826 cm3.

+

Cylinder A has a height of 900 cm.

+

Cylinder B has a height of 225 cm.

+

Cylinder C has a height of 100 cm.

+

Find the radius of the cylinder. Use 3.14 as an approximation for π.

+

 

+

Cylinder A has a radius of cm

",1,1,,,14914 +PSBC4Z,2,Fill-in-the-blank(s),Numeric,"

Three cylinders have a volume of 2826 cm3.

+

Cylinder A has a height of 900 cm.

+

Cylinder B has a height of 225 cm.

+

Cylinder C has a height of 100 cm.

+

Find the radius of the cylinder. Use 3.14 as an approximation for π.

+

 

+

Cylinder B has a radius of cm

",2,2,,,15072 +PSBCBQB,5,Fill-in-the-blank(s),Numeric,"

Find the hemisphere’s radius if its diameter is 10003 m.

+

m

",500/3,500/3,,,352921 +PSBT2N,1,Fill-in-the-blank(s),Numeric,"

Diego’s history teacher writes a test for the class with 26 questions. The test is worth 123 points and has two types of questions: multiple choice worth 3 points each, and essays worth 8 points each. How many essay questions are on the test?

+

 

+

essay questions.

",9,9,,,89416 +PSBCBG7,3,Fill-in-the-blank(s),Algebraic Expression,"

Estimate the volume of the hemisphere by calculating the average of the volumes of the cylinder and cone.

+

 

+

 cm3

+

Enter your answer in terms of π.

+

Use pi to represent the symbol.  For example: 32π would be typed as 32pi

",144pi,144pi,,,351988 +PSBCBQB,4,Fill-in-the-blank(s),Numeric,"

Find the hemisphere’s radius if its diameter is 6 cm.

+

 

+

cm

",3,3,,,352750 +PSBCBQB,1,Fill-in-the-blank(s),Numeric,"

Find the hemisphere’s diameter if its radius is 6 cm.

+

 

+

cm

",12,12,,,352230 +PSBCBQB,3,Fill-in-the-blank(s),Numeric,"

Find the hemisphere’s diameter if its radius is 9.008 ft.

+

 

+

ft

",18.016,18.016,,,352595 +PSBCBQB,2,Fill-in-the-blank(s),Numeric,"

Find the hemisphere’s diameter if its radius is 10003 m.

+

 

+

m

",2000/3,2000/3,,,352407 +PSBNAB,1,Fill-in-the-blank(s),Algebraic Expression,"

A hemisphere with radius 5 units fits snugly into a cylinder of the same radius and height.

+

 

+

+

 

+

Calculate the volume of the cylinder.

+

 

+

cubic units

+

Use pi to represent the π symbol. For example: 32π would be typed as 32pi

",125pi,125pi,,,58581 +PSBG2Q,1,Fill-in-the-blank(s),Algebraic Expression," + + + + + + +
+

A cone with the same base but a height 3 times taller than the given cylinder exists. What is the volume of the cylinder? Express your answer in terms of π.

+

 

+

cubic units

+

 

+

Use pi to represent the π symbol. For example: 32π would be typed as 32pi

+
",36pi,36pi,,,36511 +PSBE8J,2,Fill-in-the-blank(s),Numeric,"

If the volume of the cone is 120 cm3, what is the volume of the cylinder?

+

 

+

cm3

",360,360,,,26766 +PSBBF4M,1,Fill-in-the-blank(s),Numeric,"

The volume V of a cone with radius r is given by the formula V=13πr2h.

+

 

+

+

 

+

The volume of this cone with height 3 units and radius r is V=64π cubic units. This statement is true:  64π=13πr2·3

+

 

+

What does the radius of this cone have to be? 

+

 

+

units

+

 

",8,8,,,203778 +PRABEPM7,1,Fill-in-the-blank(s),Numeric,"

Find the area of a square if its side length is  0.1 meters.

+

 

+

square meters

",0.01,0.01,,,424722 +PSBE8J,1,Fill-in-the-blank(s),Numeric,"

A cone and cylinder have the same height and their bases are congruent circles.

+ + + + + + + +
+

If the volume of the cylinder is 90 cm3, what is the volume of the cone?

+

 

+

cm3

+
",30,30,,,26678 +PSBFC9,2,Fill-in-the-blank(s),Algebraic Expression,"

How many cubic feet of grain can the entire silo hold?

+

 

+

cubic feet

+

 

+

Use pi to represent the π symbol. For example: 32π would be typed as 32pi

+

 

+

",640pi/3,640pi/3,,,27699 +PRABEGMH,1,Fill-in-the-blank(s),Algebraic Expression,"

The volume of this cylinder is 175π cubic units.

+

 

+

+

 

+

What is the volume of a cone that has the same base area and the same height?

+

 

+

cubic units

+

Enter your answer in terms of π.

+

Use pi to represent the symbol. For example: 32π would be typed as 32pi.

",175/3pi,175/3pi,,,180722 +PRABEPMC,1,Fill-in-the-blank(s),Numeric,"

Write the exact value of the side length, in units, of a square whose area in square units is 36.

+

 

+

units

",6,6,,,423276 +PSB4C3,1,Fill-in-the-blank(s),Algebraic Expression,"

A cone has a radius of 3 units and a height of 4 units.

+

 

+

What is this volume of this cone?

+

 

+

cubic units

+

Enter your answer in terms of π.

+

Use pi to represent the symbol. For example: 32π would be typed as 32pi

",12pi,12pi,,,138360 +PRABQP3Y,1,Fill-in-the-blank(s),Numeric,"

Lin has some money in her bank account before she starts a summer job. She deposits the money from the summer job in her bank account and doesn’t spend any of it. After working 4 hours, she has $85 in the account. After working 15 hours, she has $217 in the account. How much money does Lin earn per hour?

+

 

+

$ per hour

",12,12,,,333185 +PSBBCXS,1,Fill-in-the-blank(s),Algebraic Expression,"

There are many right rectangular prisms with one edge of length 5 units and another edge of length 3 units. Let s represent the length of the third edge and V represent the volume of these prisms.

+

 

+

Write an equation that represents the relationship between V and s.

+

 

+

V=

+

Use s as your variable.

",15s,15s,,,185874 +PSBBCZ3,1,Fill-in-the-blank(s),Algebraic Expression,"

There are many cylinders with radius 5 units. Let h represent the height and V represent the volume of these cylinders.

+

 

+

Write an equation that represents the relationship between V and h. Use 3.14 as an approximation of π.

+

 

+

 V=

+

Use h as your variable.

",78.5h,78.5h,,,186281 +PSBBC6R,4,Fill-in-the-blank(s),Algebraic Expression,"

Write an equation that relates the volume V and height h.

+

 

+

V=

+

Use h as your variable.

+

 

+

Use pi to represent the π symbol. For example: 32π would be typed as 32pi.

+

 

+

+

 

",75pih,75pih,,,187219 +PSB6NG,3,Fill-in-the-blank(s),Numeric,"

The radius of Sphere B is double that of Sphere A. How many times greater is the volume of B?

+

 

+

times greater

",8,8,,,151596 +PRABQP26,1,Fill-in-the-blank(s),Algebraic Expression,"

A recipe for salad dressing calls for 13 tablespoon of vinegar for every tablespoon of oil. The equation V=13L gives the amount of vinegar needed (V) in terms of the amount of olive oil used (L). Write another equation describing the recipe, this time giving Lin terms of V

+

 

+

 

+

L=

+

Use V as your variable.

","3V, V/(1/3)","3V, V/(1/3)",,,595853 +PSB6NG,2,Fill-in-the-blank(s),Algebraic Expression,"

Sphere A has radius 2 cm. Sphere B has radius 4 cm.

+

 

+

Calculate the volume of Sphere B.

+

 

+

 cm3

+

Enter your answer in terms of π.

+

Use pi to represent the π symbol. For example:  32π would be typed as 32pi

",256/3pi,256/3pi,,,151429 +PSB6NG,1,Fill-in-the-blank(s),Algebraic Expression,"

Sphere A has radius 2 cm. Sphere B has radius 4 cm.

+

 

+

Calculate the volume of Sphere A.

+

 

+

 cm3

+

Enter your answer in terms of π.

+

Use pi to represent the π symbol. For example:  32π would be typed as 32pi

",32/3pi,32/3pi,,,151258 +PRABEK4Q,1,Fill-in-the-blank(s),Numeric,"

The two triangles are similar. Find x.

+

 

+

x=°

+

 

+

",28,28,,,155904 +PRABEHK6,1,Fill-in-the-blank(s),Numeric,"

A farmer has a water tank for cows in the shape of a cylinder with radius of 7 ft and a height of 3 ft. The tank comes equipped with a sensor to alert the farmer to fill it up when the water falls to 20% capacity. What is the volume of the tank be when the sensor turns on?

+

 

+

cubic feet

+

Use 3.14 as an approximation for π.

+

Round your answer the nearest whole number.

",92,92,,,165493 +PSBUA8,3,Fill-in-the-blank(s),Algebraic Expression,"

A cylinder has a radius of 4 cm and a height of 5 cm.

+

 

+

What is the volume of the cylinder when its radius is halved?

+

 

+

cm3

+

Enter your answer in terms of π

+

Use pi to represent the π symbol .  For example: 32π would be typed as 32pi

",20pi,20pi,,,91237 +PSBBB3X,3,Fill-in-the-blank(s),Numeric,"

Based on the model, how many points per game would you expect a player who attempts 4.5 free throws per game to have? Round your answer to the nearest tenth of a point per game.

+

 

+

points per game

+

 

+

",20.2,20.2,,,180839 +PSBDP9E,2,Fill-in-the-blank(s),Numeric,"

What is the perimeter of the rectangle?

+

 

+

cm

+

 

+

",22,22,,,595520 +PSBT2V,3,Fill-in-the-blank(s),Numeric,"

A car is traveling on a small highway and is either going 55 miles per hour or 35 miles per hour, depending on the speed limits, until it reaches its destination 200 miles away. Letting x represent the amount of time in hours that the car is going 55 miles per hour, and y being the time in hours that the car is going 35 miles per hour, an equation describing the relationship is: 55x+35y=200.

+

 

+

If the car spends no time going 35 miles per hour, how long would the trip take? 

+

 

+

hour(s)

+

Round your answer to the hundredths place.

",3.64,3.64,,,89478 +PSBMK9,1,Fill-in-the-blank(s),Numeric,"

Find a value of x that makes the equation true:

+

 

+
-(-2x + 1) = 9  14x
+
 
+
x=
",8-May,8-May,,,55154 +PRABEQAV,1,Fill-in-the-blank(s),Numeric,"
+
+
+

a and b represent the length of a leg of a right triangle, and c represents the length of its hypotenuse. Find the missing length, given the other two lengths.

+

 

+

a=12, b=5c=?

+

 

+

c=

+
+
+
+
+
 
+
",13,13,,,7859 +PRABQP47,1,Fill-in-the-blank(s),Numeric,"

A cone and cylinder have the same height and their bases are congruent circles. If the volume of the cylinder is 120 in3, what is the volume of the cone?

+

 

+
+

in3

+
",40,40,,,674266 +PRABEVSZ,1,Fill-in-the-blank(s),Algebraic Expression,"

There are 16 cups in a gallon. The equation c=16g gives the number of cups in terms of the number of gallons. Write another equation for this situation, giving the number of gallons in terms of the number of cups: 

+

 

+

g = 

+

Use c as your variable.

",1/16c,1/16c,,,1195 +PSBS5V,1,Fill-in-the-blank(s),Algebraic Expression,"

Here is the graph for one equation in a system of equations.

+

 

+

+

 

+

Write a second equation for the system so it has infinitely many solutions.

+

 

+

y=

+

Use x as your variable.

",3/2x-3,3/2x-3,,,84315 +PSBB6QU,1,Fill-in-the-blank(s),Numeric,"

Clare made $160 babysitting last summer. She put the money in a savings account that pays 3% interest per year. If Clare doesn’t touch the money in her account, she can find the amount she’ll have the next year by multiplying her current amount by 1.03.

+

 

+

How much money will Clare have in her account after 1 year?

+

 

+

$

",164.8,164.8,,,323397 +PSBBZQT,3,Fill-in-the-blank(s),Numeric,"

The high temperature this Sunday is expected to be 5 degrees warmer than the high temperature this Saturday. Using the line c=2t-89, how many more cups of lemonade should Lin expect to sell on Sunday than Saturday? 

+

 

+

more cups of lemonade

",10,10,,,296579 +PSBRR9,2,Fill-in-the-blank(s),Numeric,"

The deli owner found that the line s=-t+120 is a good fit for the data. Use this equation to predict how many bowls of soup they might sell on a day when the high temperature is 32 degrees.

+

 

+

bowls of soup

",88,88,,,76861 +PSBRR9,3,Fill-in-the-blank(s),Numeric,"

The high temperature this Saturday is expected to be 10 degrees colder than the high temperature this Friday. Using the line s=-t+120, how many more bowls of soup should the deli expect to sell on Saturday than Friday? 

+

 

+

more bowls of soup

",10,10,,,76975 +PSB3FD,1,Fill-in-the-blank(s),Numeric,"

In many schools, students have the choice between taking art, music, or some other elective.

+

 

+

At Euclid Middle School, there are 200 students in the 8th grade. 40 students are taking art. What percentage of 8th graders at Euclid Middle School are taking art?

+

 

+

%

",20,20,,,132871 +PSB3FD,3,Fill-in-the-blank(s),Numeric,"

At Newton Middle School, there are 320 students in the 8th grade. 54 are taking music. What percentage of 8th graders at Newton Middle School are taking music?

+

 

+

%

",16.875,16.875,,,133098 +PSBB6QU,2,Fill-in-the-blank(s),Numeric,"

How much money will Clare have in her account after 2 years?

+

 

+

$

",169.74,169.74,,,323576 +PSBB6QU,3,Fill-in-the-blank(s),Numeric,"

How much money will Clare have in her account after 5 years?

+

 

+

$

",185.48,185.48,,,323787 +PRABEQ5G,1,Fill-in-the-blank(s),Numeric,"

Find the value of the variable, to the nearest tenth.

+

 

+

+

 

+

x

",7.1,7.1,,,162344 +PRABEPM5,1,Fill-in-the-blank(s),Numeric,"

Find the area of a square if its side length is 37 units.

+

 

+

square unit

",Sep-49,Sep-49,,,424393 +PSBBRT8,1,Order / Sort,Ordering,"

Let a, b, c, d, e, and f be positive numbers.

+

 

+

Given these equations, arrange a, b, c, d, e, and f from least to greatest.

","

b3 = 8

,

f3 = 7

,

d3 = 9

,

e2 = 8

,

a2 = 9

,

c2 = 10

","

b3 = 8

,

f3 = 7

,

d3 = 9

,

e2 = 8

,

a2 = 9

,

c2 = 10

",,,252048 +PRABEQMW,1,Fill-in-the-blank(s),Numeric,"

Find the distance between the pair of points. If you get stuck, try plotting the points on graph paper.

+

 

+

X=(5,0) and Y=(-4,0)

+

 

+

units

",9,9,,,332409 +PRABEQME,1,Fill-in-the-blank(s),Numeric,"

What is the side length of a cube with a volume of  1,000 cubic centimeters?

+

 

+

centimeters

",10,10,,,330781 +PRABEQMC,1,Fill-in-the-blank(s),Numeric,"

What is the volume of a cube with a side length of  113 feet?

+

 

+

cubic feet

",11,11,,,330485 +PRABEQMB,1,Fill-in-the-blank(s),Numeric,"

What is the volume of a cube with a side length of 4 centimeters?

+

 

+

cubic centimeters

",64,64,,,330320 +PRABEQMF,1,Fill-in-the-blank(s),Algebraic Expression,"

What is the side length of a cube with a volume of 23 cubic inches?

+

 

+

inches

+

Type your answer in the following format:

+

cbrt(7) for 7 or 12cbrt(7) for127 

",cbrt(23),cbrt(23),,,330959 +PRABEQ7Q,1,Fill-in-the-blank(s),Numeric,"

Find the value of the variable, to the nearest tenth.

+

 

+

+

 

+

f

+
 
",5.4,5.4,,,162490 +PRABEQ44,1,Order / Sort,Ordering,

Order the following values from least to greatest:

,"

5303

,

192

,

121

,

273

,

π

,

48

","

5303

,

192

,

121

,

273

,

π

,

48

",,,162174 +PRABEPDG,1,Fill-in-the-blank(s),Numeric,"

Solve the equation and check your solution.

+

 

+

-2(3x-4)=4(x+3)+6

+

 

+

x= 

",-1,-1,,,155341 +PRABMT57,1,Fill-in-the-blank(s),Numeric,"

Solve the equation and check your solution.

+

 

+

12z+4-6=-2z+8

+

 

+

z=

",24/5,24/5,,,155556 +PSBPHS,1,Fill-in-the-blank(s),Numeric,"

Find the area of square ACEG.

+

 

+

A=square units

+

 

+

",100,100,,,65337 +PRABEQCF,1,Fill-in-the-blank(s),Numeric,"

A man is trying to zombie-proof his house. He wants to cut a length of wood that will brace a door against a wall. The wall is 4 feet away from the door, and he wants the brace to rest 2 feet up the door. About how long should he cut the brace?

+

 

+

+

 

+

feet

+

Round your answer to the nearest tenth. 

",4.5,4.5,,,487312 +PSBBSR,4,Fill-in-the-blank(s),Numeric,"

If the volume of each prism is 60 units3 what would be the height of prism C?

+

 

+

 

+

units

",5,5,,,7407 +PSBYWG,1,Fill-in-the-blank(s),Numeric,"

Find the distances between the three points shown.

+

 

+

+

 

+

The distance between (-14,9)  and (-14,-3) is   units.

",12,12,,,118249 +PSBYWG,2,Fill-in-the-blank(s),Numeric,"

The distance between (16,-3)  and (-14,-3) is   units.

",30,30,,,118376 +PSBYWG,3,Fill-in-the-blank(s),Algebraic Expression,"

The distance between (-14,9)  and (16,-3) is   units.

+

 

+

Type your answer in the following format: sqrt(7) for 7 or 12sqrt(7) for 127.

",sqrt(1044),sqrt(1044),,,118522 +PRABEQ7R,1,Fill-in-the-blank(s),Numeric,"

Find the value of the variable, to the nearest tenth.

+

 

+

+

 

+

d

",15.1,15.1,,,162661 +PSBBWD2,3,Fill-in-the-blank(s),Numeric,"

Find the length of a side of a square if its area is 0.49 square units.

+

 

+

units

",0.7,0.7,,,277038 +PRABEQ4F,1,Fill-in-the-blank(s),Numeric,"

Find the positive solution to m3=8. If the solution is irrational, write the solution using square root or cube root notation.

+

 

+

m=

+

If needed, type your answer in the following format:

+

sqrt(7) for 73v or 12sqrt(7) for 1273 

",2,2,,,161664 +PRABEQ4G,1,Fill-in-the-blank(s),Numeric,"
+
+
+

Find the positive solution to c3=343. If the solution is irrational, write the solution using square root or cube root notation.

+

 

+

c=

+

If needed, type your answer in the following format:

+

sqrt(7) for 73v or 12sqrt(7) for 1273 

+

 

+
+
+
+
+
 
+
",7,7,,,161838 +PRABMQEV,1,Fill-in-the-blank(s),Numeric,"

Take a 3-4-5 right triangle, add on the squares of the side lengths, and form a hexagon by connecting vertices of the squares as in the image. What is the area of this hexagon?

+

 

+

+

 

+

square units

",110,110,,,354090 +PRABESJE,1,Fill-in-the-blank(s),Numeric,"
+
+
+

Find the positive solution to y3=1. If the solution is irrational, write the solution using square root or cube root notation.

+

 

+

y=

+
+
+
",1,1,,,356901 +PRABESJF,1,Fill-in-the-blank(s),Numeric,"

Find the positive solution to w2=36. If the solution is irrational, write the solution using square root or cube root notation.

+

 

+

w=

",6,6,,,357082 +PRABESJD,1,Fill-in-the-blank(s),Numeric,"

Find the positive solution to z2=1. If the solution is irrational, write the solution using square root or cube root notation.

+

 

+

z=

",1,1,,,356718 +PRABESJG,1,Fill-in-the-blank(s),Numeric,"

Find the positive solution to h3=64. If the solution is irrational, write the solution using square root or cube root notation.

+

 

+

h=

",4,4,,,357261 +PSBCBY8,1,Fill-in-the-blank(s),Numeric,"

Here is a right square pyramid.

+

 

+

+

 

+

What is the measurement of the slant height l of the triangular face of the pyramid? If you get stuck, use a cross section of the pyramid.

+

 

+

units

",17,17,,,354627 +PRABEPMZ,1,Fill-in-the-blank(s),Numeric,"

Write the exact value of the side length, in units, of a square whose area in square units is 0.0001.

+

 

+

units

",0.01,0.01,,,423932 +PRABMECE,1,Fill-in-the-blank(s),Algebraic Expression," + + + + + + +
+

A farmer has a grassy patch of land enclosed by a fence in the shape of a square with a side length of 4 meters. To make it a suitable home for some animals, the farmer would like to carve out a smaller square to be filled with water, as in the figure.

+


What should the side length of the smaller square be so that half of the area is grass and half is water?

+

 

+

meters

+

 

+

Type your answer in the following format:

+

sqrt(7) for 7 or 12sqrt(7) for 7.

+
",sqrt(8),sqrt(8),,,307803 +PRABEPMD,1,Fill-in-the-blank(s),Algebraic Expression,"

Write the exact value of the side length, in units, of a square whose area in square units is 37.

+

 

+

units

+

If needed type your answer in the following format:

+

sqrt(7) for 7 or 12sqrt(7) for 127 

+

 

",sqrt(37),sqrt(37),,,423450 +PRABPT5M,1,Fill-in-the-blank(s),Numeric," + + + + + + +
+

One vertex of the equilateral triangle is in the center of the square, and one vertex of the square is in the center of the equilateral triangle. What is x?

+

 

+

x=°

+
",105,105,,,94804 +PRABEPN8,1,Fill-in-the-blank(s),Numeric,"

The high school is hosting an event for seniors but will also allow some juniors to attend. The principal approved the event for 200 students and decided the number of juniors should be 25% of the number of seniors.  How many juniors will be allowed to attend?  If you get stuck, try writing two equations that each represent the number of juniors and seniors at the event.

+

 

+

juniors

",40,40,,,146750 +PSBBSR,3,Fill-in-the-blank(s),Numeric,"

If the volume of each prism is 60 units3 what would be the height of prism B?

+

 

+

units

",10,10,,,7280 +PSBDCHG,2,Fill-in-the-blank(s),Numeric,"

Based on the model, how many points will a player have if he has 30 assists?

+

 

+

points

+

 

+

",46.2,46.2,,,533341 +PSBKZ4,1,Fill-in-the-blank(s),Numeric,"

A right triangle has sides of length 3, 4, and x.

+

 

+

Find x if it is the hypotenuse.

+

 

+

x=

",5,5,,,52069 +PSBCBU,2,Fill-in-the-blank(s),Algebraic Expression,"

a2=

+

 

+

Use the ^ symbol to represent an exponent.

+

For example: 52 should be typed as 5^2

+

 

",c^2-b^2,c^2-b^2,,,10564 +PSBCBU,3,Fill-in-the-blank(s),Algebraic Expression,"

b2=

+

 

+

Use the ^ symbol to represent an exponent.

+

For example: 52 should be typed as 5^2

+

 

",c^2-a^2,c^2-a^2,,,10729 +PRABP56U,1,Fill-in-the-blank(s),Numeric,"

The spiral in the figure is made by starting with a right triangle with both legs measuring one unit each. Then a second right triangle is built with one leg measuring one unit, and the other leg being the hypotenuse of the first triangle. A third right triangle is built on the second triangle’s hypotenuse, again with the other leg measuring one unit, and so on.

+

 

+

+

 

+

Find the length, x, of the hypotenuse of the last triangle constructed in the figure.

+

 

+

x=

",4,4,,,223006 +PRABKB2P,1,Fill-in-the-blank(s),Algebraic Expression,"

Find c.

+

 

+

+

 

+

c=units

+

 

+

Type your answer in the following format: sqrt(7) for 7 or 12sqrt(7) for 127

",sqrt(50),sqrt(50),,,222369 +PRABMCJQ,1,Fill-in-the-blank(s),Algebraic Expression,"

A right triangle has sides of length 2.4 cm and 6.5 cm. What is the length of the hypotenuse?

+

 

+

cm

+

 

+

Type your answer in the following format: sqrt(7) for 7 or 12sqrt(7) for 127

",sqrt(48.01),sqrt(48.01),,,222626 +PRABMCJP,1,Fill-in-the-blank(s),Algebraic Expression,"

Find b.

+

 

+

+

 

+

b= units

+

 

+
+
+
Type your answer in the following format: sqrt(7) for 7 or 12sqrt(7) for 127
+
+
",sqrt(18),sqrt(18),,,222494 +PRABMCJR,1,Fill-in-the-blank(s),Algebraic Expression,"

A right triangle has a side of length 14 and a hypotenuse of length 13.  What is the length of the other side?

+

 

+

units

+

 

+

Type your answer in the following format: sqrt(7) for 7 or 12sqrt(7) for 127

",sqrt(7/144),sqrt(7/144),,,222741 +PRABMCJS,1,Fill-in-the-blank(s),Numeric," + + + + + +
+
+

Find the value of x in the figure.

+

 

+

x=units

+
+
+

",3,3,,,222860 +PSBJU5,1,Fill-in-the-blank(s),Algebraic Expression,"

Elena wonders how much water it would take to fill her cup. She drops her pencil in her cup and notices that it just fits diagonally. (See the diagram.) The pencil is 17 cm long and the cup is 15 cm tall. How much water can the cup hold?

+

 

+

(The surface area of a cylinder is 2πr2+2πrh The volume of a cylinder is πr2h.)

+

 

+

+

 

+

cm3

+

 

+

Use pi to represent the π symbol. For example: 32π would be typed as 32pi

",240pi,240pi,,,46033 +PRABQP48,1,Fill-in-the-blank(s),Numeric,"

How long is the segment from -5, 2 to -5, -8?

+

 

+

units

",10,10,,,37999 +PSBBSR,2,Fill-in-the-blank(s),Numeric,"

If the volume of each prism is 60 units3 what would be the height of prism A?

+

 

+

 

+

units

",7.5,7.5,,,7158 +PSBBSR,5,Fill-in-the-blank(s),Numeric,"

If the volume of each prism is 60 units3 what would be the height of prism D?

+

 

+

 

+

units

",12,12,,,7514 +PRABEVX6,1,Fill-in-the-blank(s),Algebraic Expression,"

Find the length of the segment that joins the points (-5, 4) and (6, -3).

+

 

+

+

 

+

units

+

Type your answer in the following format: sqrt(7) for.7.

+

 

",sqrt(170),sqrt(170),,,46660 +PSBB6QT,2,Fill-in-the-blank(s),Numeric,"

What about whole numbers starting with 1 and ending with 1,000?

+

 

+

whole numbers

",31,31,,,324258 +PRABGZF3,1,Fill-in-the-blank(s),Numeric,"

A cube has side length of 4 cm. What is its volume?

+

 

+

cubic cm

",64,64,,,48585 +PSBX8G,3,Fill-in-the-blank(s),Numeric Expression,"

Write an expression for the surface area, in square units.

+

 

+

 

+

square units 

",6*17^2,6*17^2,,,115025 +PRABGZF5,1,Fill-in-the-blank(s),Algebraic Expression,"

A cube has side length of s units. What is its volume?  

+

 

+

cubic units

",sss,sss,,,48967 +PSBX8G,4,Fill-in-the-blank(s),Numeric Expression,"

Write an expression for the volume, in cubic units.

+

 

+

cubic inches

+

 

",17^3,17^3,,,115150 +PSBBUYK,1,Fill-in-the-blank(s),Drop Down,"

Identify the measurement as the diameter, radius, or circumference of the circular object. Then, estimate the other two measurements for the circle.

+

 

+

The distance across a sink drain is 3.8 cm.  

+

 

+

","

circumference

,

diameter

,

radius

",

diameter

,,,268814 +PSBTWZ,1,Fill-in-the-blank(s),Numeric,"

Find the area of the shaded region(s) of the figure.

+

+

 

+

 

+

cm2

",15,15,,,88950 +PSBBVFW,1,Fill-in-the-blank(s),Drop Down,"

Identify the measurement as the diameter, radius, or circumference of the circular object. Then, estimate the other two measurements for the circle.

+

 

+

The distance from the tip of a slice of pizza to the crust is 7 in.

+

 

+

","

circumference

,

radius

,

diameter

",

radius

,,,271552 +PSBBVBE,3,Fill-in-the-blank(s),Numeric,"

The fence around a circular pool is 75 ft long.

+

 

+

Estimate the radius of the circle: 

+

 

+

feet

",12,12,,,271219 +PSBBVFW,2,Fill-in-the-blank(s),Numeric,"

The distance from the tip of a slice of pizza to the crust is 7 in.

+

 

+

Estimate the diameter of the circle: 

+

 

+

inches

",14,14,,,271772 +PSBBVK9,2,Fill-in-the-blank(s),Numeric,"

Breaking a cookie in half creates a straight side 10 cm long.

+

 

+

Estimate the radius of the circle: 

+

 

+

cm

",5,5,,,272544 +PSBBVK9,3,Fill-in-the-blank(s),Numeric,"

Breaking a cookie in half creates a straight side 10 cm long.

+

 

+

Estimate the circumference of the circle: 

+

 

+

cm

+

Use 3.14 for π.  

+

Round your answer to the nearest whole number.

",31,31,,,272853 +PSBBVSF,3,Fill-in-the-blank(s),Numeric,"

The length of the metal rim around a glass lens is 190 mm.  

+

 

+

Estimate the radius of the circle: 

+

 

+

mm

+

Round your answer to the nearest whole number.

",30,30,,,273737 +PSBBUSX,1,Fill-in-the-blank(s),Drop Down,"

Identify the measurement as the diameter, radius, or circumference of the circular object. Then, estimate the other two measurements for the circle.

+

 

+

The length of the minute hand on a clock is 5 in.  

+

 

+

+

 

","

diameter

,

circumference

,

radius

",

radius

,,,267963 +PSBBVBE,1,Fill-in-the-blank(s),Drop Down,"

Identify the measurement as the diameter, radius, or circumference of the circular object. Then, estimate the other two measurements for the circle.

+

 

+

The fence around a circular pool is 75 ft long.

+

 

+

","

radius

,

circumference

,

diameter

",

circumference

,,,270634 +PSBBVK9,1,Fill-in-the-blank(s),Drop Down,"

Identify the measurement as the diameter, radius, or circumference of the circular object. Then, estimate the other two measurements for the circle.

+

 

+

Breaking a cookie in half creates a straight side 10 cm long.

+

 

+

","

radius

,

diameter

,

circumference

",

diameter

,,,272370 +PSBBVV9,1,Fill-in-the-blank(s),Drop Down,"

Identify the measurement as the diameter, radius, or circumference of the circular object. Then, estimate the other two measurements for the circle.

+

 

+

From the center to the edge of a DVD measures 60 mm.

+

 

+

 

","

diameter

,

circumference

,

radius

",

radius

,,,274114 +PSBBUYK,2,Fill-in-the-blank(s),Numeric,"

The distance across a sink drain is 3.8 cm.  

+

 

+

Estimate the radius of the circle:

+

 

+

  cm

",1.9,1.9,,,269095 +PSBBVSF,1,Fill-in-the-blank(s),Drop Down,"

Identify the measurement as the diameter, radius, or circumference of the circular object. Then, estimate the other two measurements for the circle.

+

 

+

The length of the metal rim around a glass lens is 190 mm.  

+

 

+

+

 

","

Radius

,

Circumference

,

Diameter

",

Circumference

,,,273221 +PRABQBHC,1,Fill-in-the-blank(s),Numeric,"

Your teacher will give you 1 square and some small, medium, and large right triangles. The area of the square is 1 square unit.

+

 

+

 

+

Find a way to use all of the pieces to compose a single large square. What is the area of this large square?

+

 

+

 

+

square units

",8,8,,,54202 +PSBG9Y,1,Fill-in-the-blank(s),Numeric,"

A librarian is curious about the habits of the library's patrons. He records the type of item that the first 10 patrons check out from the library.

+

 

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
patronitem type
1fiction book
2non-fiction book
3fiction book
4fiction book
5audiobook
6non-fiction book
7DVD
8non-fiction book
9fiction book
10DVD
+

 

+

Based on the information from these patrons, estimate the probability that the next patron will check out a fiction book?

+

 

+

",10-Apr,10-Apr,,,37467 +PSBC77E,3,Fill-in-the-blank(s),Exact Match,"

Divide. Express your answer as a decimal.

+

 

+

30 ÷ 12

+

 

+

","2.50, 2.5","2.50, 2.5",,,508286 +PSBBSR,1,Order / Sort,Ordering,"

There are 4 different prisms that all have the same volume. Here is what the base of each prism looks like.

+

 

+

+

 

+

Order the prisms from shortest to tallest.

","

,

,

,

","

,

,

,

",,,6946 +PSBBQKA,2,Fill-in-the-blank(s),Numeric,"

The volume of both of these trapezoidal prisms is 24 cubic units. Their heights are 6 and 8 units, as labeled. What is the area of a trapezoidal base of the prism with a height of 8 units?  

+

 

+

units2

+

 

+

",3,3,,,245152 +PSBBAK8,4,Fill-in-the-blank(s),Algebraic Expression,"

For diameter and circumference of a circle, what is the constant of proportionality?

+

 

+

 

+

Use pi to represent the symbol

+

For example:

+

32π would be typed as 32pi

+

 

+

","pi, 1/pi, 1/(pi)","pi, 1/pi, 1/(pi)",,,172894 +PSBBPPB,1,Fill-in-the-blank(s),Numeric,"

Noah drew a scaled copy of Polygon P and labeled it Polygon Q.  

+

+

 

+

If the area of Polygon P is 5 square units, what scale factor did Noah apply to Polygon P to create Polygon Q?

+

 

+

",3,3,,,240434 +PSBDBS6,1,Fill-in-the-blank(s),Numeric,"

This dot plot shows the number of coins in 10 students’ pockets.

+

 

+
+
 
+

What is the mean of this data?  

+

 

+

 coins

",3,3,,,529389 +PSBDBS6,3,Fill-in-the-blank(s),Numeric,"

This dot plot shows the number of coins in 10 students’ pockets.

+

 

+
+

 

+

What is the MAD (mean absolute deviation) of this data?  

+

 

+

 coins

",2.2,2.2,,,529581 +PSBCCG,2,Fill-in-the-blank(s),Numeric,"

The scale of a map says that 3 cm represents 5 km.

+

 

+

What actual distance is represented by 15 cm on the map?

+

 

+

kilometers

",25,25,,,10844 +PSBKZ4,2,Fill-in-the-blank(s),Algebraic Expression,"

A right triangle has sides of length 3, 4, and x.

+

 

+

Find x if it is one of the legs.

+

 

+

x=

+

 

+

Type your answer in the following format: sqrt(5) for 7

",sqrt(7) ,sqrt(7) ,,,52189 +PSBNYP,1,Fill-in-the-blank(s),Numeric,"

Here are two triangles.

+

 

+

+

 

+

What is the scale factor from triangle ABC to triangle A'B'C' ?

+

 

+

","1 1/3, 4/3","1 1/3, 4/3",,,62717 +PSB33P,2,Fill-in-the-blank(s),Algebraic Expression,"

Here are two line segments with lengths e and f

+

 

+

+

 

+

 

+

What is the length of f?

+

 

+

units

+

Type your answer in the following format: sqrt(7) for 7

",sqrt(18),sqrt(18),,,136831 +PSB33P,1,Fill-in-the-blank(s),Algebraic Expression,"

Here are two line segments with lengths e and f

+

 

+

+

 

+

 What is the length of e?

+

 

+

units

+

Type your answer in the following format: sqrt(7) for 7

",sqrt(17),sqrt(17),,,136694 +PSBBX35,1,Fill-in-the-blank(s),Numeric,"
+
+
+

Last month, there were 4 sunny days for every rainy day. If there were 30 days in the month, how many days were rainy? If you get stuck, consider using a tape diagram.

+

 

+

days

+
+
+
",6,6,,,286756 +PSBCC,2,Fill-in-the-blank(s),Numeric,"

Given the equation y = 3x + 2.5:

+

 

+

When x is -1.5, what value of y makes the equation true?

+
 
+

 

+

y =

",7,7,,,207 +PRABMSG3,1,Fill-in-the-blank(s),Numeric,"

Evaluate the expression. If the answer is not a whole number, write your answer as a fraction.

+

 

+

-24 · -76

+

 

+

",28,28,,,38268 +PSBBX6F,1,Fill-in-the-blank(s),Numeric,"

Noah entered a 100-mile bike race. He knows he can ride 32 miles in 160 minutes. At this rate, how long will it take him to finish the race? Use each table to find the answer.

+

 

+

minutes

+

 

+ + + + + + + +
+ + + + + + + + + + + + + + + + + + + +
 Distance (miles)Elapsed Time (minutes)
32160
1 
100 
+
+ + + + + + + + + + + + + + + + + + + + + + + +
Distance (miles)Elapsed Time (minutes)
32160
96 
4 
100 
+
+

 

",500,500,,,287230 +PRABFFFD,1,Fill-in-the-blank(s),Numeric,"

Andre is planting saplings (baby trees). It takes him 30 minutes to plant 3 saplings. If each sapling takes the same amount of time to plant, how long will it take Andre to plant 14 saplings? If you get stuck, consider using the table.

+

 

+

minutes

+

 

+ + + + + + + + + + + + + + + + + + + +
Number of SaplingsTime in Minutes
330
1 
4 
",140,140,,,406068 +PSBRSJ,1,Fill-in-the-blank(s),Numeric,"

Two horses start a race at the same time. Horse A gallops at a steady rate of 32 feet per second and Horse B gallops at a steady rate of 28 feet per second. After 5 seconds, how much farther will Horse A have traveled? 

+

 

+

feet

",20,20,,,76912 +PSBCAT8,1,Fill-in-the-blank(s),Numeric,"

A kangaroo hops 2 kilometers in 3 minutes. At this rate:

+

 

+

How long does it take the kangaroo to travel 5 kilometers?  

+

 

+

minutes

",7.5,7.5,,,347954 +PSBCAT8,2,Fill-in-the-blank(s),Numeric,"

A kangaroo hops 2 kilometers in 3 minutes. At this rate:

+

 

+

How far does the kangaroo travel in 2 minutes?

+

 

+

kilometers

",3-Apr,3-Apr,,,348162 +PSB2Z9,1,Fill-in-the-blank(s),Numeric,"

For the following equation, find y when x = -3.

+

 

+

y = 6x + 8

+

 

+

y =

",-10,-10,,,130584 +PSBQ8E,1,Fill-in-the-blank(s),Numeric,"

Based on her recipe, Elena knows that 5 servings of granola have 1,750 calories.

+

 

+

If she eats 2 servings of granola, how many calories does she eat?  

+

 

+

calories

",700,700,,,73890 +PSBQ8E,2,Fill-in-the-blank(s),Numeric,"

If she wants to eat 175 calories of granola, how many servings should she eat?  

+

 

+

servings

",2-Jan,2-Jan,,,74049 +PSBB9N5,2,Fill-in-the-blank(s),Numeric,"

Imagine you scale Triangle B by a scale factor of 12 to get Triangle C. How many times bigger will the side lengths of Triangle C be when compared with Triangle A?

+

 

+

",4-Jan,4-Jan,,,341117 +PSBB9N5,1,Fill-in-the-blank(s),Numeric,"

Triangle B is a scaled copy of Triangle A with scale factor 12.

+

 

+

How many times bigger are the side lengths of Triangle B when compared with Triangle A?

+

 

+

",2-Jan,2-Jan,,,341023 +PRABEPVY,1,Fill-in-the-blank(s),Numeric,"

Quadrilateral A has side lengths 6, 9, 9, and 12. Quadrilateral B is a scaled copy of Quadrilateral A, with its shortest side of length 2. What is the perimeter of Quadrilateral B?

+

 

+

",12,12,,,4480 +PSB5FH,2,Fill-in-the-blank(s),Algebraic Expression,"

The table below represents a proportional relationship.

+

 

+ + + + + + + + + + + + + + + + + + + + + + + +
dC
26.28
39.42
515.7
1031.4
+

 

+

Write an equation that represents the relationship.

+

 

+

Equation: C =

","3.14*d, 3.14d","3.14*d, 3.14d",,,144928 +PSBZF4,1,Order / Sort,Ordering,"

A scale drawing of a car is presented in the following three scales. Order the scale drawings from smallest to largest. (There are about 1.1 yards in a meter, and 2.54 cm in an inch.) 

","

1 inch to 1 meter

,

1 inch to 1 yard

,

1 inch to 1 foot

","

1 inch to 1 meter

,

1 inch to 1 yard

,

1 inch to 1 foot

",,,121497 +PSBFH9,1,Fill-in-the-blank(s),Numeric,"

These triangles are scaled copies of each other.

+

 

+

+

 

+

The area of the second triangle is how many times larger than the area of the first?

+

 

+

The area of Triangle G is times larger than the area of Triangle F.

",4,4,,,26892 +PSBBVCZ,1,Fill-in-the-blank(s),Algebraic Expression,"

Elena has some bottles of water that each holds 17 fluid ounces.

+

 

+

Write an equation that relates the number of bottles of water (b) to the total volume of water (w) in fluid ounces.

+

 

+

w =

+

Use b as your variable

",17b,17b,,,270760 +PSBEK6,6,Fill-in-the-blank(s),Numeric,"

What is the y-coordinate of your graph when the x-coordinate is 1?

+

 

+

(1, )

","5/8, 2/5, 5/4","5/8, 2/5, 5/4",,,22967 +PSBD4P2,1,Fill-in-the-blank(s),Numeric,"

Each small square in the grid represents 1 square unit. Find the area of the figure in square units.  

+

 

+

+

 

+

square units

",8,8,,,668703 +PSBB5M8,3,Fill-in-the-blank(s),Algebraic Expression,"
The length of segment AE is 5 centimeters. 
+
 
+
 
+
+
 
+
+

 

+

Name a segment that has the same length as segment AB.

+
+

 

+

segment

","DA, FA, CA, AE, AG, AB","DA, FA, CA, AE, AG, AB",,,317851 +PSBB5M8,2,Fill-in-the-blank(s),Numeric,"
The length of segment AE is 5 centimeters. 
+
 
+
 
+
+
 
+
+

 

+
+

What is the length of segment AB?

+

 

+

  centimeters

",5,5,,,317673 +PRABESVU,1,Fill-in-the-blank(s),Numeric,"

Priya drew a circle whose circumference is 25 cm. Clare drew a circle whose diameter is 3 times the diameter of Priya's circle. What is the circumference of Clare's circle?

+

 

+

cm

+

Use 3.14 for π .

+

Round to the nearest whole number.

",75,75,,,449437 +PRABESVA,1,Fill-in-the-blank(s),Numeric,"

Find the area of the polygon.

+

 

+

+

 

+

  cm2

",20,20,,,37379 +PSB7FG,2,Fill-in-the-blank(s),Numeric,"

A circle’s circumference is approximately 76 cm.

+

 

+

Estimate the diameter of the circle.  

+

 

+

cm

+

Use  3.14 for π.

+

Round your answer to the nearest whole number.

",24,24,,,155429 +PSBUPR,3,Fill-in-the-blank(s),Numeric,"

Use the diagram to find the measure of angle EBD.

+ + + + + + + +
mEBD = ° 
",130,130,,,92939 +PSBCQU6,3,Fill-in-the-blank(s),Numeric,"

Multiply. Express your answer as a decimal.

+

 

+

(0.3) · 60

+

 

+

",18,18,,,422084 +PRABQP66,1,Fill-in-the-blank(s),Exact Match,"

What is the decimal expansion of 169?

+

 

+

+

 

+

If your answer is a repeating decimal, type the repeated portion of the decimal only once. 

+

For example: for 3.66 you only type in 3.6 for 0.4545 you only type in 0.45

+

 

",1.7,1.7,,,316024 +PSBCQU6,1,Fill-in-the-blank(s),Exact Match,"

Multiply. Express your answer as a decimal.

+

 

+

12 · 13

+

 

+

","6.50, 6.5","6.50, 6.5",,,421838 +PSBRYP,2,Fill-in-the-blank(s),Numeric,"

A farm lets you pick 3 pints of raspberries for $12.00.

+

 

+

How many pints do you get per dollar?

+

 

+

pints

",12-Mar,12-Mar,,,77688 +PRABHHJ5,1,Fill-in-the-blank(s),Exact Fraction,"

Find the quotient. Write your answer as a fraction or a mixed number.

+

 

+

812÷11

+

 

+

",17/22,17/22,,,81470 +PSBB33G,2,Fill-in-the-blank(s),Exact Fraction,"

Here is line segment DE and its image D′E′ under a dilation.

+

 

+

+

What is the scale factor of the dilation?

+

 

+

",4-Jan,4-Jan,,,309708 +PSBB2KM,1,Fill-in-the-blank(s),Numeric,"

Triangle ABC is a scaled copy of triangle DEF. Side AB measures 12 cm and is the longest side of ABC. Side DE measures 8 cm and is the longest side of DEF.

+

 

+

Triangle ABC is a scaled copy of triangle DEF with what scale factor?

+

 

+

",1.5,1.5,,,301201 +PSB6SB,3,Fill-in-the-blank(s),Numeric,"

A store sells ice cream with assorted toppings. They charge $3.00 for an ice cream, plus 50 cents per ounce of toppings.

+

 

+

If Elena’s ice cream cost $1.50 more than Jada’s ice cream, how much more did Elena’s toppings weigh?

+

 

+

ounces of toppings

",3,3,,,152206 +PSB25J,2,Fill-in-the-blank(s),Numeric,"

Now find x when y = 2.

+

 

+

y = 23x

+

 

+

x =

",3,3,,,131367 +PSB282,1,Fill-in-the-blank(s),Numeric,"

For the following equation, find y when x = -3.

+

 

+

y = -x + 5

+

 

+

y =

",8,8,,,131672 +PRABD8HX,1,Fill-in-the-blank(s),Algebraic Expression,"

Write an equation for the line that passes through (2, 5) and (6, 7).

+

 

+

y =

+

Use x as your variable.

",0.5x+4,0.5x+4,,,18591 +PSB6SB,2,Fill-in-the-blank(s),Numeric,"

A store sells ice cream with assorted toppings. They charge $3.00 for an ice cream, plus 50 cents per ounce of toppings.

+

 

+

How much does an ice cream cost with 11 ounces of toppings?

+

 

+

$

",8.5,8.5,,,152091 +PSBBAB5,3,Fill-in-the-blank(s),Numeric,"

At a sandwich shop, any sandwich costs $4.50, plus $0.25 for each extra topping.

+

 

+

If Andre’s sandwich cost $2.00 more than Clare’s sandwich, how many more toppings did Andre add to his sandwich?

+

 

+

more toppings

",8,8,,,171630 +PSB64G,2,Fill-in-the-blank(s),Numeric,"

Here is the base of a prism.

+

 

+

+

 

+

 

+

If the height of the prism is 5 cm, what is its volume?  

+

 

+

cm3

",180,180,,,152894 +PSBXC8,1,Fill-in-the-blank(s),Algebraic Expression,"

The graph shows the height in inches, h, of a bamboo plant t months after it has been planted.

+

 

+ + + + + + + +
+

Write an equation that describes the relationship between h and t.

+

 

+

h =

+

Use t as your variable.

+
",3t+12,3t+12,,,109764 +PSB25J,1,Fill-in-the-blank(s),Numeric,"

For the following equation, find y when x = -3.

+

 

+

y = 23x

+

 

+

y =

",-2,-2,,,131134 +PSB282,2,Fill-in-the-blank(s),Numeric,"

Now find x when y = 2.

+

 

+

y = -x + 5

+
 
+

 

+

x =

",3,3,,,131899 +PSB3EU,2,Fill-in-the-blank(s),Numeric,"

Now find x when y = 2.

+

 

+

y = 1.5x + 11

+

 

+

x =

",-6,-6,,,132932 +PSB64G,5,Fill-in-the-blank(s),Numeric,"

Here is the base of a prism.

+

 

+

+

 

+

 

+

When the height doubled, what was the percent increase for the surface area?

+

 

+

%

+

Round the percent to the nearest tenths place.

",67.6,67.6,,,153479 +PRABFAHC,1,Fill-in-the-blank(s),Numeric,"

Clare is paid $90 for 5 hours of work. At this rate, how many seconds does it take for her to earn 25 cents?

+

 

+

seconds

",50,50,,,147205 +PSBUE2,3,Fill-in-the-blank(s),Numeric,"

Noah’s recipe for one batch of sparkling orange juice uses 4 liters of orange juice and 5 liters of soda water.

+

 

+

If someone uses 400 liters of orange juice, how much soda water would they need?

+

 

+

liters of soda water

",500,500,,,91811 +PSBUE2,2,Fill-in-the-blank(s),Numeric,"

Noah’s recipe for one batch of sparkling orange juice uses 4 liters of orange juice and 5 liters of soda water.

+

 

+

If someone mixes 36 liters of orange juice and 45 liters of soda water, how many batches would they make?

+

 

+

batches

",9,9,,,91684 +PRABE9GW,1,Fill-in-the-blank(s),Numeric,"

Elena has 80 unit cubes. What is the volume of the largest cube she can build with them?

+

 

+

cubic units

",64,64,,,601993 +PSBUE2,4,Fill-in-the-blank(s),Numeric,"

Noah’s recipe for one batch of sparkling orange juice uses 4 liters of orange juice and 5 liters of soda water.

+

 

+

If someone uses 455 liters of soda water, how much orange juice would they need?

+

 

+

liters of orange juice

",364,364,,,91913 +PSB64G,1,Fill-in-the-blank(s),Numeric,"

Here is the base of a prism.

+

 

+

+

 

+

If the height of the prism is 5 cm, what is its surface area?

+

 

+

 cm2

",222,222,,,152711 +PSBB6QT,1,Fill-in-the-blank(s),Numeric,"

Recall that a perfect square is a number of objects that can be arranged into a square. For example, 9 is a perfect square because 9 objects can be arranged into 3 rows of 3. 16 is also a perfect square, because 16 objects can be arranged into 4 rows of 4. In contrast, 12 is not a perfect square because you can’t arrange 12 objects into a square.

+

 

+

How many whole numbers starting with 1 and ending with 100 are perfect squares?

+

 

+

whole numbers

",10,10,,,324197 +PSBC8AZ,1,Fill-in-the-blank(s),Exact Match,"

Multiply. Express your answer as a decimal.

+

 

+
+
+
+
+

12 · 15

+
+
+
+
+

 

+

","7.50, 7.5","7.50, 7.5",,,508616 +PSBCEMX,5,Fill-in-the-blank(s),Numeric,"

How much yellow water should be used for 11 ml of blue water?

+

 

+

ml of yellow water

+

 

+

",33,33,,,370357 +PSBCQR6,1,Fill-in-the-blank(s),Exact Match,"

Divide. Express your answer as a decimal.

+

 

+

5 ÷ 2

+

 

+

","2.50, 2.5","2.50, 2.5",,,421173 +PSBCEMX,6,Fill-in-the-blank(s),Numeric,"

How much yellow water should be used for 8 ml of blue water?

+

 

+

ml of yellow water

+

 

+

",24,24,,,370431 +PSBC77E,1,Fill-in-the-blank(s),Exact Match,"

Divide. Express your answer as a decimal.

+

 

+
+
+
+
+

5 ÷ 4

+
+
+
+
+

 

+

",1.25,1.25,,,508017 +PSBC8AZ,3,Fill-in-the-blank(s),Exact Match,"

Multiply. Express your answer as a decimal.

+

 

+

(0.2) · 60

+

 

+

","12.0, 12","12.0, 12",,,508887 +PSBCEMX,3,Fill-in-the-blank(s),Numeric,"

How much yellow water should be used for 1 ml of blue water? 

+

 

+

ml of yellow water

+

 

+

",3,3,,,370138 +PRABPFQW,1,Fill-in-the-blank(s),Numeric,"

A square with side of 10 units overlaps a square with side of 8 units in such a way that its corner B is placed exactly at the center of the smaller square. As a result of the overlapping, the two sides of the large square intersect the two sides of the small square exactly at points C and E, as shown. The length of CD is 6 units.

+

 

+

+

 

+

What is the area of the overlapping region CDEB?

+

 

+

square units

",16,16,,,372037 +PSBC77E,4,Fill-in-the-blank(s),Exact Match,"

Divide. Express your answer as a decimal.

+

 

+

12 ÷ 30

+

 

+

",".4, 0.4",".4, 0.4",,,508402 +PSBC8AZ,2,Fill-in-the-blank(s),Exact Match,"

Multiply. Express your answer as a decimal.

+

 

+

34 · 200

+

 

+

","150.0, 150","150.0, 150",,,508769 +PSBRYP,3,Fill-in-the-blank(s),Numeric,"

A farm lets you pick 3 pints of raspberries for $12.00.

+

 

+

At this rate, how many pints can you afford for $20.00?

+

 

+

pints

",5,5,,,77847 +PSBDG4M,3,Fill-in-the-blank(s),Numeric,"

Lin runs 5 laps around a track in 6 minutes.

+

 

+

If Lin runs 21 laps at the same rate, how long does it take her?

+

 

+

  minutes

",25.2,25.2,,,559654 +PSBC8AZ,4,Fill-in-the-blank(s),Exact Match,"

Multiply. Express your answer as a decimal.

+

 

+

(0.75) · 20

+

 

+

","15, 15.0","15, 15.0",,,509009 +PSBCQR6,4,Fill-in-the-blank(s),Exact Match,"

Divide. Express your answer as a decimal.

+

 

+

4 ÷ 50

+

 

+

",".08, 0.08",".08, 0.08",,,421588 +PSBCRQ,3,Fill-in-the-blank(s),Numeric,"

A caterer needs to buy 21 pounds of pasta to cater a wedding. At a local store, 8 pounds of pasta cost $12. How much will the caterer pay for the pasta there?

+

 

+

$

",31.5,31.5,,,12985 +PSBDG4M,2,Fill-in-the-blank(s),Numeric,"

Lin runs 5 laps around a track in 6 minutes.

+

 

+

How many laps per minute is that?  

+

 

+

 laps per minute

",6-May,6-May,,,559546 +PRABG3FJ,1,Fill-in-the-blank(s),Numeric," + + + + + + + + + +
+

A window-washing crew can finish 15 windows in 18 minutes.

+

 

+

If this crew was assigned to wash all the windows on the outside of the Burj Khalifa, how long will the crew be washing at this rate?

+

 

+

minutes

+
 
","29,217.60","29,217.60",,,354136 +PSBRYP,4,Fill-in-the-blank(s),Numeric,"

A farm lets you pick 3 pints of raspberries for $12.00.

+

 

+

At this rate, how much will 8 pints of raspberries cost?

+

 

+

$

",32,32,,,78012 +PSBW43,1,Fill-in-the-blank(s),Numeric,"

For the situation, find the unit rates.

+

 

+

Tyler paid $16 for 4 raffle tickets.

+

 

+ + + + + + + + + + + +
+

a. What is the price per ticket?

+
+

$per ticket

+
+

b. How many tickets is that per dollar? 

+
+

ticket per dollar

+
+

 

","0.25, 4","0.25, 4",,,108670 +PRABHUQ4,1,Fill-in-the-blank(s),Numeric,"

Consecutive numbers follow one right after the other. An example of three consecutive numbers is 17, 18, and 19. Another example is -100, -99, -98.
 
How many sets of two or more consecutive positive integers can be added to obtain a sum of 100?

+

 

+

sets

",2,2,,,17667 +PSBBCRJ,2,Fill-in-the-blank(s),Numeric,"

If x is 6, what is y?

+

 

+

y =

",9,9,,,184908 +PSBDEV,1,Fill-in-the-blank(s),Numeric,"

Complete the equation so that it is true for all values of x.

+

 

+

3x=6=3(x+)

",2,2,,,16591 +PRABHN3R,1,Fill-in-the-blank(s),Exact Fraction,"

Find the value of k so that the line passing through the pair of points has the given slope.

+

 

+

 (-152, 316) and (-1322, k), slope = 0

+

 

+

",16-Mar,16-Mar,,,166028 +PSBBJXR,1,Fill-in-the-blank(s),Numeric,"

The triangle and the square have equal perimeters.

+

 

+

+

 

+
+

Find the value of x.

+

 

+

x=

+
",16,16,,,219253 +PSBDEV,3,Fill-in-the-blank(s),Algebraic Expression,"

Complete the equation so that it is true for all values of x.

+

 

+

15x-105=-2

+

Use x as your variable.

",3x,3x,,,16856 +PSB2BT,2,Fill-in-the-blank(s),Numeric,"

For what number of cups will the two stacks have the same height?

+

 

+

cups

",0,0,,,126461 +PSBCG4K,2,Fill-in-the-blank(s),Numeric,"

How many solutions does this system of equations have?

+

 

+

+

 

+

",0,0,,,384509 +PRABMTPA,1,Fill-in-the-blank(s),Numeric,"

Solve the equation and check your solution.

+

 

+

9  7w = 8w + 8

+

 

+

w=

",15-Jan,15-Jan,,,149101 +PRABP8NM,1,Fill-in-the-blank(s),Numeric,"

 

+

+

""""football / soccer ball"""" by Tobbi. Public Domain.

+

 

+

A soccer ball is a polyhedron with 12 black pentagonal faces and 20 white hexagonal faces. How many edges in total are on this polyhedron?

+

 

+

edges

+

 

",90,90,,,139860 +PSB26A,2,Fill-in-the-blank(s),Numeric,"

The temperature in degrees Fahrenheit, F, is related to the temperature in degrees Celsius, C, by the equation F=95C+32,

+

 

+

In parts of Alaska, the temperatures can reach -60 degrees Fahrenheit. How many degrees Celsius is this?

+

 

+

degrees Celsius

",-51 1/9,-51 1/9,,,131293 +PSBWDG,3,Fill-in-the-blank(s),Numeric,"

Here is an equation: 15(x-3)5=3(2x-3)

+

 

+

Check your solution.

+

 

+

x=

",0,0,,,104135 +PSBCC,3,Fill-in-the-blank(s),Numeric,"

Given the equation y = 3x + 2.5:

+

 

+

When y is 8.5, what value of x makes the equation true?

+
 
+

 

+

y =

",-2,-2,,,312 +PSBB96V,2,Fill-in-the-blank(s),Numeric,"

The table representing Tyler's walk shows other values of time and distance. Complete the table.

+

 

+ + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + +
time
(seconds)
distance
(meters)
00
2025
3037.5
4050
1
+
+

 

",1.25,1.25,,,343125 +PSB7JA,1,Fill-in-the-blank(s),Numeric,"

The Carousel on the National Mall has 4 rings of horses. Kiran is riding on the inner ring, which has a radius of 9 feet. Mai is riding on the outer ring, which is 8 feet farther out from the center than the inner ring is.

+
+

 

+

In one rotation of the carousel, how much farther does Mai travel than Kiran?

+

 

+

feet farther

+

Use 3.14 for π.

+

Round your answer to the tenths place.

+
","50.3, 50.2","50.3, 50.2",,,155994 +PSBCE8P,3,Fill-in-the-blank(s),Algebraic Expression,"

Three cylinders have a height of 8 cm.

+

Cylinder 1 has a radius of 1 cm.

+

Cylinder 2 has a radius of 2 cm.

+

Cylinder 3 has a radius of 3 cm.

+

Find the volume of each cylinder.

+

 

+

Cylinder 3 has a volume of  cm3

+

 

+

Enter your answer in terms of π.

+

Use pi to represent the π symbol. For example: 32π would be typed as 32pi.

",72pi,72pi,,,374368 +PSBCE8P,2,Fill-in-the-blank(s),Algebraic Expression,"

Three cylinders have a height of 8 cm.

+

Cylinder 1 has a radius of 1 cm.

+

Cylinder 2 has a radius of 2 cm.

+

Cylinder 3 has a radius of 3 cm.

+

Find the volume of each cylinder.

+

 

+

Cylinder 2 has a volume of  cm3

+

 

+

Enter your answer in terms of π.

+

Use pi to represent the π symbol. For example: 32π would be typed as 32pi.

",32pi,32pi,,,374220 +PSBCE8P,1,Fill-in-the-blank(s),Algebraic Expression,"

Three cylinders have a height of 8 cm.

+

Cylinder 1 has a radius of 1 cm.

+

Cylinder 2 has a radius of 2 cm.

+

Cylinder 3 has a radius of 3 cm.

+

Find the volume of each cylinder.

+

 

+

Cylinder 1 has a volume of  cm3

+

 

+

Enter your answer in terms of π.

+

Use pi to represent the π symbol. For example: 32π would be typed as 32pi.

",8pi,8pi,,,374058 +PSBTE8,2,Fill-in-the-blank(s),Algebraic Expression,"

A cylinder and cone have the same height and radius. The height of each is 5 cm, and the radius is 2 cm. Calculate the volume of the cone.

+

 

+

  cm3

+

Enter your answer in terms of π. Use pi to represent the π symbol. For example: 32π would be typed as 32pi

",20pi/3,20pi/3,,,86515 +PSBB8E7,2,Fill-in-the-blank(s),Algebraic Expression,"

+

 

+

 

+

Here are a cone, a sphere, and a cylinder that all have the same radii and heights.

+

 

+

The radius of the cylinder is 5 units. When necessary, express all answers in terms of π.

+

What is the volume of the cylinder?

+

 

+

cubic units

+

 

+

Use pi to represent the π symbol. For example: 32π would be typed as 32pi.

",250pi,250pi,,,333800 +PSBX6P,3,Fill-in-the-blank(s),Algebraic Expression,"

A cylinder has a radius of 3 cm and a height of 5 cm.

+

 

+

What is the volume of the cylinder when its height is halved?

+

 

+

 cm3

+

Enter your answer in terms of π.

+

Use pi to represent the symbol. For example: 32π would be typed as 32pi

",45/2pi,45/2pi,,,114806 +PSBBHR6,1,Fill-in-the-blank(s),Numeric,"

+

The volume of this sphere with radius r is V=288π.

+

 

+

This statement is true:  288π=43r3π.

+

 

+

What is the value of r for this sphere?

+

 

+

units

+

 

",6,6,,,212876 +PSBDG45,1,Fill-in-the-blank(s),Numeric,"

A car is traveling at a constant speed. Find the number of miles the car travels in 1 hour at the given rate.

+

 

+

 135 miles in 3 hours

+

 

+

miles

",45,45,,,558351 +PSBB8E7,3,Fill-in-the-blank(s),Algebraic Expression,"

+

 

+

 

+

Here are a cone, a sphere, and a cylinder that all have the same radii and heights.

+

 

+

The radius of the cylinder is 5 units. When necessary, express all answers in terms of π.

+

 

+

What is the volume of the cone?

+

 

+

cubic units

+

 

+

Use pi to represent the π symbol. For example: 32π would be typed as 32pi.

",250/3pi,250/3pi,,,333895 +PSB89M,1,Fill-in-the-blank(s),Numeric,"

A coin-operated bouncy ball dispenser has a large glass sphere that holds many spherical balls. The large glass sphere has a radius of 9 inches. Each bouncy ball has radius of 1 inch and sits inside the dispenser.

+

 

+

If there are 243 bouncy balls in the large glass sphere, what proportion of the large glass sphere’s volume is taken up by bouncy balls? 

+

 

+

+

Give your answer as a fraction.

",3-Jan,3-Jan,,,164833 +PSBT2V,2,Fill-in-the-blank(s),Numeric,"

A car is traveling on a small highway and is either going 55 miles per hour or 35 miles per hour, depending on the speed limits, until it reaches its destination 200 miles away. Letting x represent the amount of time in hours that the car is going 55 miles per hour, and y being the time in hours that the car is going 35 miles per hour, an equation describing the relationship is: 55x+35y=200.

+

 

+

If the car spends 3 hours going 55 miles per hour on the trip, how long does it spend going 35 miles per hour?

+

 

+

hour(s)

",1,1,,,89270 +PSBT2V,1,Fill-in-the-blank(s),Numeric,"

A car is traveling on a small highway and is either going 55 miles per hour or 35 miles per hour, depending on the speed limits, until it reaches its destination 200 miles away. Letting x represent the amount of time in hours that the car is going 55 miles per hour, and y being the time in hours that the car is going 35 miles per hour, an equation describing the relationship is: 55x+35y=200.

+

 

+

If the car spends 2.5 hours going 35 miles per hour on the trip, how long does it spend going 55 miles per hour?

+

 

+

hour(s)

+

Round your answer to the hundredths place.

",2.05,2.05,,,89069 +PSBJS4,6,Fill-in-the-blank(s),Numeric,"

The graph shows the temperature between noon and midnight in one day in a certain city.

+

 

+

+

 

+

 

+

When the input of the function is 8, what is the output?

+

 

+

",57,57,,,45704 +PSBX6P,2,Fill-in-the-blank(s),Algebraic Expression,"

A cylinder has a radius of 3 cm and a height of 5 cm.

+

 

+

What is the volume of the cylinder when its height is tripled?

+

 

+

 cm3

+

Enter your answer in terms of π.

+

Use pi to represent the symbol. For example: 32π would be typed as 32pi

",135pi,135pi,,,114637 +PSBX6P,1,Fill-in-the-blank(s),Algebraic Expression,"

A cylinder has a radius of 3 cm and a height of 5 cm.

+

 

+

What is the volume of the cylinder?

+

 

+

 cm3

+

Enter your answer in terms of π.

+

Use pi to represent the symbol. For example: 32π would be typed as 32pi

",45pi,45pi,,,114450 +PSBBC6R,3,Fill-in-the-blank(s),Numeric,"

Use the labeled point to find the radius of these cones.  Use 3.14 as an approximation for π.

+

 

+

units

+

 

+

",15,15,,,187127 +PRABP7YW,1,Fill-in-the-blank(s),Numeric,"

A thirsty crow wants to raise the level of water in a cylindrical container so that it can reach the water with its beak.

+

 

+
    +
  • The container has diameter of 2 inches and a height of 9 inches.
  • +
  • The water level is currently at 6 inches.
  • +
  • The crow can reach the water if it is 1 inch from the top of the container.
  • +
+

 

+

In order to raise the water level, the crow puts spherical pebbles in the container. If the pebbles are approximately 12 in diameter, what is the fewest number of pebbles the crow needs to drop into the container in order to reach the water?

+

 

+

",97,97,,,213558 +PSBTE8,1,Fill-in-the-blank(s),Algebraic Expression,"

A cylinder and cone have the same height and radius. The height of each is 5 cm, and the radius is 2 cm. Calculate the volume of the cylinder.

+

 

+

 cm3

+

Enter your answer in terms of π. Use pi to represent the π symbol. For example: 32π would be typed as 32pi

",20pi,20pi,,,86322 +PSBCBG7,2,Fill-in-the-blank(s),Algebraic Expression,"

A hemisphere fits snugly inside a cylinder with a radius of 6 cm. A cone fits snugly inside the same hemisphere.

+

 

+

What is the volume of the cone?

+

 

+

 cm3

+

Enter your answer in terms of π.

+

Use pi to represent the symbol.  For example: 32π would be typed as 32pi

",72pi,72pi,,,351813 +PRABEAZ4,1,Fill-in-the-blank(s),Numeric,"

Solve the system of equations:  y=7x+10y=-4x-23

+

 

+

(,)

","-11, -3","-11, -3",,,14761 +PSBFC9,1,Fill-in-the-blank(s),Algebraic Expression," + + + + + + +
+

A grain silo has a cone shaped spout on the bottom in order to regulate the flow of grain out of the silo. The diameter of the silo is 8 feet. The height of the cylindrical part of the silo above the cone spout is 12 feet while the height of the entire silo is 16 feet.

+

 

+

How many cubic feet of grain are held in the cone spout of the silo?

+

 

+

cubic feet

+

 

+

Use pi to represent the π symbol. For example: 32π would be typed as 32pi

+
",64/3pi,64/3pi,,,27604 +PSBB73F,3,Fill-in-the-blank(s),Numeric,"

A line contains the points (-1, 4) and (5, -3).

+

 

+

Calculate the slope of the line.

+

 

+

",-1.166666667,-1.166666667,,,332048 +PSB64G,3,Fill-in-the-blank(s),Numeric,"

Here is the base of a prism.

+

 

+

+

 

+

 

+

If the height of the prism is 10 cm, what is its surface area?  

+

 

+

cm2

",372,372,,,153106 +PSBFXP,1,Fill-in-the-blank(s),Numeric,"

Elena is feeding her neighbor’s dogs. Each dog gets 23 cup of dog food, and she uses 313 cups of food. How many dogs does her neighbor have?  

+

 

+

 dogs

",5,5,,,30601 +PSBC6AU,1,Fill-in-the-blank(s),Numeric,"

Solve the problem below.

+

 

+

What is 150% of 26?

+

 

+

",39,39,,,498428 +PSBU7R,3,Fill-in-the-blank(s),Algebraic Expression,"

Noah has a coupon for 30% off at his favorite clothing store. He uses it to buy a hoodie and a pair of jeans.

+

 

+

If the regular price of an item is x dollars, what is the discounted price in dollars?  

+

 

+

","7/10x, x-0.03x, 0.70x","7/10x, x-0.03x, 0.70x",,,96895 +PSBEKA,1,Fill-in-the-blank(s),Numeric,"

The scatter plot shows the weight and fuel efficiency data used in an earlier lesson along with a linear model represented by the equation y=-0.0114x+41.3021.

+

 

+

+

 

+

What is the value of the slope?  

+

 

+

",-0.0114,-0.0114,,,22573 +PSBRKJ,1,Fill-in-the-blank(s),Numeric,"

Solve the equation.

+

 

+

3x  5 = 16

+

 

+

x =

",-7,-7,,,75928 +PSBRPF,1,Fill-in-the-blank(s),Numeric,"

Solve the equation.

+

 

+

-4(y  2) = 12

+

 

+

y =

",-1,-1,,,76294 +PSBBNC8,1,Fill-in-the-blank(s),Algebraic Expression,"

A cone has a volume V, radius r, and a height of 12 cm.

+

 

+

A cone has the same height and 13 of the radius of the original cone. Write an expression for its volume.

+

 

+

",V/9,V/9,,,233319 +PRABETPT,1,Fill-in-the-blank(s),Numeric,"

A car dealership pays $8,350 for a car. They mark up the price by 17.4% to get the retail price. What is the retail price of the car at this dealership? 

+

 

+

$

",9802.9,9802.9,,,509509 +PRABG4ZE,1,Fill-in-the-blank(s),Numeric,"
+
+
+

Find the sum.

+

 

+
+
+
+

-240 + 370 =

",130,130,,,153749 +PRABG4ZD,1,Fill-in-the-blank(s),Numeric,"
+
+
+

Find the sum.

+
+
+
+
 
+

56+(-56)

+

 

+

",0,0,,,405832 +PSBDTTH,3,Fill-in-the-blank(s),Numeric,"

Here is some record keeping from a coffee shop about their paper cups. Cups are delivered 2,000 at a time.

+

 

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
daychange
Monday+2,000
Tuesday-125
Wednesday-127
Thursday+1,719
Friday-356
Saturday-782
Sunday0
+

 

+

How many cups do you think were used on Thursday?  

+

 

+

cups

",281,281,,,615367 +PSBDTTH,2,Fill-in-the-blank(s),Numeric,"

Here is some record keeping from a coffee shop about their paper cups. Cups are delivered 2,000 at a time.

+

 

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
daychange
Monday+2,000
Tuesday-125
Wednesday-127
Thursday+1,719
Friday-356
Saturday-782
Sunday0
+

 

+

Assume the starting amount of coffee cups is 0. How many paper cups are left at the end of the week?

+


paper cups

",2329,2329,,,615225 +PSBDG45,2,Fill-in-the-blank(s),Numeric,"

A car is traveling at a constant speed. Find the number of miles the car travels in 1 hour at the given rate.

+

 

+

22 miles in 12hour

+

 

+

  miles

",44,44,,,558648 +PSB64G,4,Fill-in-the-blank(s),Numeric,"

Here is the base of a prism.

+

 

+

+

 

+

 

+

If the height of the prism is 10 cm, what is its volume?  

+

 

+

cm3

",360,360,,,153291 +PRABEURW,1,Fill-in-the-blank(s),Numeric,"

The Colorado state flag consists of three horizontal stripes of equal height. The side lengths of the flag are in the ratio 2 : 3.  The diameter of the gold-colored disk is equal to the height of the center stripe. What percentage of the flag is gold?  

+

 

+

%

+

Round to the nearest hundredth of a percent.

+

 

+

","5.81, 5.82","5.81, 5.82",,,429590 +PSBB8DR,2,Fill-in-the-blank(s),Numeric Expression,"

Write an expression to represent this situation.

+

 

+

“On Tuesday at lunchtime, it was 29°C. By sunset, the temperature had dropped to 16°C.”

+

 

+

","29+(-13), 29-13, 29+-13","29+(-13), 29-13, 29+-13",,,333811 +PRABESGG,1,Fill-in-the-blank(s),Numeric,"

Add.

+
+
+
+
+

14.7 + 28.9

+
+
+
+
+

 

+

",43.6,43.6,,,585630 +PRABTTED,1,Fill-in-the-blank(s),Numeric,"

Solve the equation below.

+

 

+

p + 12 = 17

+

 

+

",5,5,,,194530 +PSBCNU9,1,Fill-in-the-blank(s),Numeric,"

It costs $3.45 to buy 34 foot of electrical wire. How much would it cost to purchase 712 feet of wire? 

+

 

+

$

",34.5,34.5,,,409731 +PRABTSUR,1,Fill-in-the-blank(s),Numeric,"

Find the product. 

+

 

+

-57 · 75 =

",-1,-1,,,278775 +PSBY88,1,Fill-in-the-blank(s),Numeric,"

A family eats at a restaurant. The bill is $42. The family leaves a tip and spends $49.77.

+

 

+

How much was the tip in dollars? 

+

 

+

$

",7.77,7.77,,,120069 +PSBTHK,2,Fill-in-the-blank(s),Numeric,"

A furniture store pays a wholesale price for a mattress. Then, the store marks up the retail price to 150% of the wholesale price. Later, they put the mattress on sale for 50% off of the retail price. A customer just bought the mattress for sale and paid $1,200.

+

 

+

What was the wholesale price, before the markup? 

+

 

+

$

","1,600","1,600",,,86791 +PRABETQH,1,Fill-in-the-blank(s),Numeric,"

The price of gold is often reported per ounce. At the end of 2005, this price was $513. At the end of 2015, it was $1,060. By what percentage did the price per ounce of gold increase?  

+

 

+

%

+

Round your answer to the nearest whole percent.

",107,107,,,121257 +PSBBGEE,3,Fill-in-the-blank(s),Numeric,"

During a special sales event, the dealership offers a 10% discount off of the retail price.

+

 

+

After the discount, how much will a customer pay for this vehicle?

+

 

+

$

",14256,14256,,,205498 +PRABET32,1,Fill-in-the-blank(s),Numeric,"

The baby giraffe weighed 132 pounds at birth. He gained weight at a steady rate for the first 7 months until his weight reached 538 pounds. How much did he gain each month?  

+

 

+

 pounds

",58,58,,,389120 +PRABTSUS,1,Fill-in-the-blank(s),Numeric,"

Find the product. 

+

 

+

-239 · 39 =

",-2,-2,,,278908 +PRABETXM,1,Fill-in-the-blank(s),Numeric,"

A school ordered 3 large boxes of board markers. After giving 15 markers to each of 3 teachers, there were 90 markers left. The diagram represents the situation. How many markers were originally in each box?   

+

 

+

+

 

+

markers

",45,45,,,118504 +PRABMSH5,1,Fill-in-the-blank(s),Numeric,"

Find the product.

+

 

+

(-7.3) • (5)

+

 

+

",-36.5,-36.5,,,65010 +PRABETR6,1,Fill-in-the-blank(s),Numeric,"

Find the product.

+

 

+

(100) • (-0.09)

+

 

+

",-9,-9,,,64437 +PSBBBKF,1,Fill-in-the-blank(s),Numeric,"

The tax rate at this restaurant is 9.5%

+

 

+ + + + + + + +
+

Another person’s subtotal is $24.95. How much will their sales tax be?

+

 

+

$

+

Round your answer to the hundredths place.

+
",2.37,2.37,,,178110 +PRABMSH4,1,Fill-in-the-blank(s),Numeric,"

Find the product.

+

 

+

(-7) • (-1.1)

+

 

+

",7.7,7.7,,,64758 +PRABTSUQ,1,Fill-in-the-blank(s),Numeric Expression,"

Find the product. 

+

 

+

23 · -45

+
 
+

 

+

",-0.533333333,-0.533333333,,,278653 +PSBCUKN,3,Fill-in-the-blank(s),Numeric,"

Use the new diagram to find a correct value for x.

+

 

+

",17,17,,,443136 +PRABQPQK,1,Fill-in-the-blank(s),Numeric,"

Solve the equation.

+

 

+

3(x + 8) = 21

+

 

+

x =

",-1,-1,,,90560 +PSBCUKN,1,Fill-in-the-blank(s),Numeric,"

Clare drew this diagram to match the equation 2x + 16 = 50 , but she got the wrong solution as a result of using this diagram. 

+

 

+

+

 

+

What value for x can be found using the diagram?

+

 

+

",32,32,,,442685 +PSBBQEE,2,Fill-in-the-blank(s),Algebraic Expression,"

""Pick a number, add -2, and multiply by 5.""

+

 

+

What would be a correct expression for this number puzzle?

+

 

+

",5(x-2),5(x-2),,,244242 +PSBED4,1,Fill-in-the-blank(s),Exact Match,"

Write the expression with fewer terms. 

+

 

+

10x − 3y + 2x

+

 

+

","-3y+12x, 12x-3y","-3y+12x, 12x-3y",,,22093 +PSBBGEE,2,Fill-in-the-blank(s),Numeric," + + + + + +
+

A car dealership pays a wholesale price of $12,000 to purchase a vehicle.

+

 

+

The car dealership wants to make a 32% profit.

+
+

 

+

After the markup, what is the retail price of the vehicle?

+

 

+

$

",15840,15840,,,205401 +PSBBKYY,2,Fill-in-the-blank(s),Numeric,"

A state park charges an entrance fee based on the number of people in a vehicle. A car containing 2 people is charged $14, a car containing 4 people is charged $20, and a van containing 8 people is charged $32.

+

 

+

If a bus is charged $122, how many people do you think it contains?

+

 

+

people

",38,38,,,225359 +PRABG428,1,Fill-in-the-blank(s),Algebraic Expression,"

Use the distributive property to write an expression that is equivalent to 5(-2x − 3). If you get stuck, use the boxes to help organize your work.

+

 

+

+

+

 

+

 

",-10x-15,-10x-15,,,147088 +PSBCRQU,3,Fill-in-the-blank(s),Numeric,"

Use long division to express the fraction as a decimal.

+

 

+

411=

+

If your answer is a repeating decimal, type the repeated portion of the decimal only once.

+

 

+

For example:    

+

for 3.66¯ you only type in 3.6               

+

for0.45¯ you only type in 0.45

",0.36,0.36,,,426703 +PSBBBKT,3,Fill-in-the-blank(s),Numeric,"

Evaluate the expression:

+

 

+

12 · -54

+

 

+

",-15,-15,,,177979 +PSBDGUS,1,Fill-in-the-blank(s),Numeric,"

A rectangular prism has dimensions of 2 cm by 2 cm by 5 cm. What is its surface area?   

+

 

+

 

+

+

 

+

square centimeters

",48,48,,,558257 +PRABEUC6,1,Fill-in-the-blank(s),Numeric,"

In this figure, angles R and S are complementary. Find the measure of angle S.

+

 

+

+

 

+

mS = °

",28,28,,,168990 +PSBZAQ,1,Fill-in-the-blank(s),Numeric,"

Crater Lake in Oregon is shaped like a circle with a diameter of about 5.5 miles.

+

 

+

How far is it around the perimeter of Crater Lake?

+

 

+

miles

+

Use 3.14 for π.

+

Round to the nearest whole number.

",17,17,,,120203 +PSBXTM,5,Fill-in-the-blank(s),Numeric,"

Calculate the value of the expression below.

+

 

+

(-18)(-3)

+

 

+

",6,6,,,112931 +PSBNQS,1,Fill-in-the-blank(s),Numeric,"

Find the value of the expression below.

+

 

+

-22 + 5

+
 
+

 

+

",-17,-17,,,60187 +PSBBCDJ,1,Fill-in-the-blank(s),Numeric,"

22% of 65 is 14.3. What is 22.6% of 65?

+

 

+

+

Round your answer to the nearest hundredths place.

",14.69,14.69,,,182437 +PSBXTM,3,Fill-in-the-blank(s),Numeric,"

Calculate the value of the expression below.

+

 

+

-183

+

 

+

",-6,-6,,,112644 +PSBBBKT,1,Fill-in-the-blank(s),Numeric,"

Evaluate the expression:

+

 

+

-12· 13

+

 

+

",-4,-4,,,177403 +PSBBBKT,4,Fill-in-the-blank(s),Numeric,"

Evaluate the expression:

+

 

+

-12 · -54

+

 

+

",15,15,,,178227 +PRABETRZ,1,Fill-in-the-blank(s),Numeric,"

Evaluate the expression. If the answer is not a whole number, write your answer as a fraction.

+

 

+

-4 · -6

+

 

+

",24,24,,,37975 +PRABMSG4,1,Fill-in-the-blank(s),Numeric,"

Evaluate the expression. If the answer is not a whole number, write your answer as a fraction.

+

 

+

4 ÷ -6

+

 

+

",-0.666666667,-0.666666667,,,38524 +PSB27H,2,Fill-in-the-blank(s),Numeric,"

The departure from the average is the difference between the actual amount of rain and the average amount of rain for a given month. The historical average for rainfall in Albuquerque, NM for June, July, and August is shown in the table.

+

 

+ + + + + + + + + + + + + +
JuneJulyAugust
0.671.51.57
+

 

+

 

+

The departure from the average rainfall last July was -0.36 inches. How much rain fell last July?

+

 

+

inches

",1.14,1.14,,,131027 +PSB27H,3,Fill-in-the-blank(s),Numeric,"

The departure from the average is the difference between the actual amount of rain and the average amount of rain for a given month. The historical average for rainfall in Albuquerque, NM for June, July, and August is shown in the table.

+

 

+ + + + + + + + + + + + + +
JuneJulyAugust
0.671.51.57
+

 

+

 

+

How much rain would have to fall in August so that the total amount of rain equals the average rainfall for these three months?

+

 

+

inches

",2.43,2.43,,,131322 +PRABETNX,1,Fill-in-the-blank(s),Numeric,"

Find the value of the expression.

+

 

+

14 · (-12)

+

 

+

",-3,-3,,,408499 +PRABMSES,1,Fill-in-the-blank(s),Numeric,"

Find the value of the expression.

+

 

+

-13 · 39

+

 

+

",-13,-13,,,25486 +PSB27H,4,Fill-in-the-blank(s),Numeric,"

The departure from the average is the difference between the actual amount of rain and the average amount of rain for a given month. The historical average for rainfall in Albuquerque, NM for June, July, and August is shown in the table.

+

 

+ + + + + + + + + + + + + +
JuneJulyAugust
0.671.51.57
+

 

+

 

+

What would the departure from the average be in August in that situation?

+

 

+

inches

",0.86,0.86,,,131590 +PSB27H,1,Fill-in-the-blank(s),Numeric,"

The departure from the average is the difference between the actual amount of rain and the average amount of rain for a given month. The historical average for rainfall in Albuquerque, NM for June, July, and August is shown in the table.

+

 

+ + + + + + + + + + + + + +
JuneJulyAugust
0.671.51.57
+

 

+

Last June only 0.17 inches of rain fell all month. What is the difference between the average rainfall and the actual rainfall for last June?

+

 

+

inches

",0.5,0.5,,,130668 +PRABMSET,1,Fill-in-the-blank(s),Numeric,"

Find the value of the expression.

+

 

+

-45 · (-75)

+

 

+

 

+

",60,60,,,25718 +PSBBEYJ,1,Fill-in-the-blank(s),Numeric,"

Mai is filling her fish tank. Water flows into the tank at a constant rate. How many gallons of water will be in the fish tank after 3 minutes?

+

 

+ + + + + + + + + + + + + + + + + + + + + + + +
time (minutes)water (gallons)
0.50.8
1 
3
 40
+

 

",4.8,4.8,,,196523 +PSBBEYJ,3,Fill-in-the-blank(s),Numeric,"

How long will it take to fill the tank with 40 gallons of water? 

+

 

+ + + + + + + + + + + + + + + + + + + + + + + +
time (minutes)water (gallons)
0.50.8
1 
3 
40
",25,25,,,196819 +PSB8S3,2,Fill-in-the-blank(s),Algebraic Expression,"

Write an expression equivalent to 4(x + 3) - 12x + 5 that only has two terms.

+

 

+

",-16x - 7,-16x - 7,,,162630 +PSBBVHN,2,Fill-in-the-blank(s),Numeric,"

Elena is 56 inches tall. 

+

 

+

What is her height in meters?  

+

 

+

meters

+

Round your answer to two decimal places.

",1.42,1.42,,,272435 +PRABEUGX,1,Fill-in-the-blank(s),Numeric,"

Solve the equation.

+

 

+

(8.5) · (-3) = a

+

 

+

a =

",-25.5,-25.5,,,55569 +PRABFCGD,1,Order / Sort,Ordering,"

Order from greatest to least:

+

 

+
    +
  • 55% of 180
  • +
  • 300% of 26
  • +
  • 12% of 700
  • +
","300% of 26, 12% of 700, 55% of 180","300% of 26, 12% of 700, 55% of 180",,,229674 +PSBBMGT,2,Fill-in-the-blank(s),Numeric,"

Last Sunday 1,575 people visited the amusement park. 56% of the visitors were adults, 16% were teenagers, and 28% were children ages 12 and under.

+

 

+

Find the number of teenagers that visited the park.

+

 

+

teenagers

",252,252,,,228285 +PRABFK9Q,1,Fill-in-the-blank(s),Numeric,"

The box plot displays the data on the response times of 100 mice to seeing a flash of light. How many mice are represented by the rectangle between 0.5 and 1 second?

+

 

+

mice

+

 

+

",50,50,,,55325 +PRABMSS4,1,Fill-in-the-blank(s),Numeric,"

Edge lengths are given in units. Find the surface area in square units.

+

 

+

 square units

+

 

+

",300,300,,,156599 +PSBBQGY,1,Fill-in-the-blank(s),Numeric,"

A rectangular prism with dimensions 5 inches by 13 inches by 10 inches was cut to leave a piece as shown in the image.

+

 

+

+

 

+

What is the volume of this piece?  

+

 

+

 in3

",350,350,,,244645 +PSB7BS,3,Fill-in-the-blank(s),Numeric,"
+

B is the intersection of line AC and line ED. Find the measure of each of the angles.

+
+

 

+

+

 

+

 

+
+

Give the measure of angle EBC.  °

+
",70,70,,,154426 +PRABFF38,1,Fill-in-the-blank(s),Numeric,"

Solve the equation.

+

 

+

 

+

26 = 100d

+

 

+

d =

",0.26,0.26,,,223535 +PSBCQFB,1,Fill-in-the-blank(s),Numeric,"

Find the area of the shaded triangle.

+

 

+

+

 

+

square units

",18,18,,,419590 +PSB7BS,1,Fill-in-the-blank(s),Numeric,"

B is the intersection of line AC and line ED. Find the measure of each of the angles.

+
+

 

+

+

 

+

Give the measure of angle ABF.  °

+
",130,130,,,153940 +PSB7BS,4,Fill-in-the-blank(s),Numeric,"
+

B is the intersection of line AC and line ED. Find the measure of each of the angles.

+
+

 

+

+

 

+

 

+
+

Give the measure of angle FBC.  °

+
",50,50,,,154657 +PSB7BS,5,Fill-in-the-blank(s),Numeric,"
+

B is the intersection of line AC and line ED. Find the measure of each of the angles.

+
+

 

+

+

 

+

 

+
+

Give the measure of angle DBG.  °

+
",45,45,,,154915 +PSBBGSD,1,Fill-in-the-blank(s),Numeric,"

Find the surface area of this prism.  

+

 

+

cm2

+

 

+

 

+

",270,270,,,207279 +PRABEDYA,1,Fill-in-the-blank(s),Numeric,"

Cell phone Plan A costs $70 per month and comes with a free $500 phone. Cell phone Plan B costs $50 per month but does not come with a phone. If you buy the $500 phone and choose Plan B, how many months is it until your cost is the same as Plan A's?

+

 

+

months

",25,25,,,233780 +PSBCDTH,1,Fill-in-the-blank(s),Numeric,"

A triangle has sides of length 7 cm, 4 cm, and 5 cm. How many unique triangles can be drawn that fit that description?  

+

 

+

unique triangle(s)

",1,1,,,365643 +PRABE6XY,1,Fill-in-the-blank(s),Numeric,"

Find the surface area of this triangular prism. All measurements are in meters.

+

 

+

 

+

+

 

+

 

+

square meters

",4.8,4.8,,,248279 +PRABMTPT,1,Fill-in-the-blank(s),Numeric,"

For what value of x do the expressions 23x + 2 and 43x - 6 have the same value? 

+

 

+

x =

",12,12,,,234184 +PRABFCA2,1,Fill-in-the-blank(s),Numeric,"

There is a 10% off sale on laptop computers. If someone saves $35 on a laptop, what was its original cost? If you get stuck, consider using the table.

+
+
+
+

 

+
+
$
+
 
+
+ + + + + + + + + + + + + + + + + +
Savings (dollars)Percentage
3510
?100
+
+
+
",350,350,,,240555 +PSBBUYK,3,Fill-in-the-blank(s),Numeric,"

The distance across a sink drain is 3.8 cm.  

+

 

+

Estimate the circumference of the circle: 

+

 

+

 cm

+

 

+

Use  3.14 for π

+

Round your answer to the nearest whole number.

",12,12,,,269382 +PRABFCBV,1,Fill-in-the-blank(s),Numeric,"

Lin and Andre start walking toward each other at the same time from opposite ends of 22-mile walking trail. Lin walks at a speed of 2.5 miles per hour. Andre walks at a speed of 3 miles per hour.

+

 

+

Here is a table showing the distances traveled and how far apart Lin and Andre were over time. Use the table to find how much time passes before they meet.

+

 

+

hours

+

 

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Elapsed Time (hour)Lin’s Distance (miles)Andre’s Distance (miles)Distance Apart (miles)
00022
12.5316.5
    
    
   0
",4,4,,,240818 +PRABEEXH,1,Fill-in-the-blank(s),Algebraic Expression,"

The point where the graphs of two equations intersect has y-coordinate 2. One equation is y = -3x + 5. Find the other equation if its graph has a slope of 1.

+

 

+

y =

+

Use x as your variable.

",x+1,x+1,,,1867 +PRABTGFN,1,Fill-in-the-blank(s),Numeric,"

Evaluate the expression if x is 25, y is -4, and z is -0.2.

+

 

+

y · x

+

 

+

",-1.6,-1.6,,,158903 +PRABQACZ,1,Fill-in-the-blank(s),Numeric,"

Here is a rough map of a neighborhood.

+

 

+

+

 

+

There are 4 mail routes during the week.

+

 

+
    +
  • On Monday, the mail truck follows the route A-B-E-F-G-H-A, which is 14 miles long.
  • +
  • On Tuesday, the mail truck follows the route B-C-D-E-F-G-B, which is 22 miles long.
  • +
  • On Wednesday, the truck follows the route A-B-C-D-E-F-G-H-A, which is 24 miles long.
  • +
  • On Thursday, the mail truck follows the route B-E-F-G-B.
  • +
+

 

+

How long is the route on Thursdays?

+

 

+

miles

",12,12,,,308662 +PSBBUSX,3,Fill-in-the-blank(s),Numeric,"

The length of the minute hand on a clock is 5 in.  

+

 

+

Estimate the circumference of the circle:

+

 

+

inches

+

Use 3.14 for π.

",31.4,31.4,,,268435 +PSBBUSX,2,Fill-in-the-blank(s),Numeric,"

The length of the minute hand on a clock is 5 in.  

+

 

+

Estimate the diameter of the circle: 

+

 

+

inches

",10,10,,,268157 +PRABESTV,1,Fill-in-the-blank(s),Numeric,"

A half circle is joined to an equilateral triangle with side lengths of 12 units. What is the perimeter of the resulting shape?

+

 

+

units

+

Use 3.14 for π

+

Round your answer to the nearest hundredth. 

+

 

+

",42.84,42.84,,,275547 +PRABERU7,1,Fill-in-the-blank(s),Numeric,"

On a flight from New York to London, an airplane travels at a constant speed. An equation relating the distance traveled in miles, d, to the number of hours flying, t, is t = 1500d. How long will it take the airplane to travel 800 miles?

+

 

+

hours

+

Round your answer to the nearest tenths place.

",1.6,1.6,,,42964 +PRABESVC,1,Fill-in-the-blank(s),Numeric,"

Jada’s bike wheels have a diameter of 20 inches. How far does she travel if the wheels rotate 37 times?  

+

 

+

inches

+

Use 3.14 for π.

+

Round your answer to the nearest whole number.

","2324, 2325","2324, 2325",,,101757 +PSBDR2D,1,Fill-in-the-blank(s),Numeric,"

Each small square in the graph paper represents 1 square unit. Find the area of the given figure in square units.

+

 

+

 

+

+

 

+

square units

",22,22,,,605478 +PSBB2R3,1,Fill-in-the-blank(s),Numeric,"

Kiran bent some wire around a rectangle to make a picture frame. The rectangle is 8 inches by 10 inches.

+

 

+

+

 

+

Find the perimeter of the wire picture frame. 

+

 

+

inches

+

Round to the nearest tenth.

",62.8,62.8,,,302084 +PRABEUMW,1,Fill-in-the-blank(s),Exact Match,"

A cube is cut into two pieces by a single slice that passes through points A, B, and C. What shape is the cross section?

+

 

+

+

+

 

+

 

+

 

","Rectangle, rectangle","Rectangle, rectangle",,,114275 +PRABESV5,1,Fill-in-the-blank(s),Numeric,"

The face of a clock has a circumference of 63 in. What is the area of the face of the clock?

+

 

+

 in2

+

 

+
+

Use 3.14 for π.

+

Round your answer to the nearest whole number.

+
","316, 314","316, 314",,,176149 +PRABG4R4,1,Fill-in-the-blank(s),Numeric,"

The side lengths of the state flag of Colorado are in the ratio 2 : 3. If a flag is 12 feet long, what is its height? 

+

 

+

feet

+

 

+

 

+

",8,8,,,114159 +PRABEVDF,1,Fill-in-the-blank(s),Numeric,"

What is the area of this trapezoid?   

+

 

+

+

 

+

square units

",204,204,,,1630 +PRABG43G,1,Fill-in-the-blank(s),Numeric,"

Point F is on line CD. Find the measure of angle CFE.

+

+

 

+

mCFE = °

",28,28,,,351554 +PSBB6KJ,3,Fill-in-the-blank(s),Exact Match,"

Esta es una recta numérica con algunos puntos marcados.

+

 

+

+

 

+

 

+

Escribe el número C como un decimal.

+

 

+

",2.25,2.25,,,323486 +PSBB6KJ,1,Fill-in-the-blank(s),Exact Match,"

Esta es una recta numérica con algunos puntos marcados.

+

 

+

+

 

+

 

+

Escribe el número B como un decimal.

+

 

+

","1.50, 1.5","1.50, 1.5",,,323318 +PSBZ28,1,Fill-in-the-blank(s),Numeric,"

A box is shaped like an octagonal prism. Here is what the base of the prism looks like.

+

+

 

+

If the height of the box is 7 inches, what is the volume of the box?  

+

 

+

inches3

",287,287,,,124486 +PSBZ28,3,Fill-in-the-blank(s),Numeric,"

A box is shaped like an octagonal prism. Here is what the base of the prism looks like.

+

+

 

+

If the volume of the box is 123 in3, what is the height of the box?  

+

 

+

inches

",3,3,,,124819 +PSBBMNM,4,Fill-in-the-blank(s),Numeric,"

Compute the volume of the prism when d = 12.

+

 

+

cubic units

+

 

+

",1,1,,,229303 +PSBBMNM,3,Fill-in-the-blank(s),Numeric,"

Compute the volume of the prism when d = 2.

+

 

+

cubic units

+

 

+

",16,16,,,229143 +PSBBBHE,1,Fill-in-the-blank(s),Numeric,"

Jada has a meal in a restaurant. She adds up the prices listed on the menu for everything they ordered and gets a subtotal of $42.00.

+

 

+ + + + + + + +
+

When the check comes, it says they also need to pay $3.99 in sales tax. What percentage of the subtotal is the sales tax?

+

 

+

%

+
",9.5,9.5,,,177693 +PSBFF,2,Fill-in-the-blank(s),Numeric,"

Diego has $11 and begins saving $5 each week toward buying a new phone. At the same time that Diego begins saving, Lin has $60 and begins spending $2 per week on supplies for her art class. 

+

 

+

After how many weeks will Diego and Lin have the same amount of money?

+

 

+

After weeks

+

 

+

 

",7,7,,,503 +PSBYMT,2,Fill-in-the-blank(s),Numeric,"

The second H-shaped polygon is a scaled copy of the first.

+

 

+

+

 

+

What scale factor takes the original polygon to its smaller copy?

+

 

+

",4-Jan,4-Jan,,,116350 +PSBCP64,2,Fill-in-the-blank(s),Numeric,"

For the triangle, a base and its corresponding height are labeled.

+

Find the area of the triangle.

+

 

+

+

 

+

square units

",16,16,,,418012 +PSB6A4,1,Fill-in-the-blank(s),Numeric,"

Find the area of the shaded region. 

+

 

+

+

 

+

cm2

",28,28,,,149451 +PSBBAK8,3,Fill-in-the-blank(s),Algebraic Expression,"

For radius and circumference of a circle, what is the constant of proportionality?

+

 

+

 

+

Use pi to represent the symbol

+

For example:

+

32π would be typed as 32pi

+

 

+

","2pi, 1/(2pi)","2pi, 1/(2pi)",,,172629 +PSBBYA9,3,Fill-in-the-blank(s),Numeric,"

A cashier worked an 8-hour day, and earned $58.00. The double number line shows the amount she earned for working different numbers of hours.

+

 

+

 

+

+

 

+

 

+

How much does the cashier earn if she works 3 hours? 

+

 

+

$

",21.75,21.75,,,287949 +PRABFAGF,1,Fill-in-the-blank(s),Numeric,"

The olive trees in an orchard produce 3,000 pounds of olives a year. It takes 20 pounds of olives to make 3 liters of olive oil.

+

 

+

How many liters of olive oil can this orchard produce in a year? If you get stuck, consider using the table.

+

 

+

liters

+

 

+ + + + + + + + + + + + + + + + + + + +
Olives (pounds)Olive Oil (liters)
203
100 
3,000 
",450,450,,,284919 +PSBBDRK,1,Fill-in-the-blank(s),Numeric,"

Here is a diagram and its corresponding equation. Find the solution to the equation.

+

 

+ + + + + + + +
4(x + 7) = 38 
+

 

+

x =

",2 1/2,2 1/2,,,190220 +PSBGWX,1,Fill-in-the-blank(s),Numeric,"

One inch is around 21120 centimeters.

+

 

+

+

 

+

How many centimeters long is 3 inches?  

+

 

+

centimeters

",7 13/20,7 13/20,,,35549 +PSBDHRQ,1,Fill-in-the-blank(s),Numeric,"

Use the tape diagram to answer the question: How many 25s are in 112?

+

 

+

25s are in 112

+

 

+

 

+

",3 3/4,3 3/4,,,563384 +PSBBYW,1,Fill-in-the-blank(s),Numeric,"

You can use a rectangle to represent (0.3) · (0.5).

+

+

What must the side length of each square represent for the rectangle to correctly represent (0.3) · (0.5)

+

 

+

units

",0.1,0.1,,,8390 +PRABFEMT,1,Fill-in-the-blank(s),Numeric,"

The daily recommended allowance of calcium for a sixth grader is 1,200 mg. One cup of milk has 25% of the recommended daily allowance of calcium. How many milligrams of calcium are in a cup of milk? If you get stuck, consider using the double number line.

+

 

+

milligrams

+

 

+

 

+

",300,300,,,210383 +PSBCBAC,2,Fill-in-the-blank(s),Numeric,"

Find the weight of one circle. 

+

 

+

w =units

+

 

+

",6 1/4,6 1/4,,,350665 +PRABEUP2,1,Fill-in-the-blank(s),Numeric,"

You find a crystal in the shape of a prism. Find the volume of the crystal.

+

 

+

  mm3

+

 

+

The point B is directly underneath point E, and the following lengths are known:

+ + + + + + + +
+
    +
  • From A to B: 2 mm
  • +
  • From B to C: 3 mm
  • +
  • From A to F: 6 mm
  • +
  • From B to E: 10 mm
  • +
  • From C to D: 7 mm
  • +
  • From A to G: 4 mm
  • +
+

 

+
+

 

",166,166,,,246416 +PSB64G,6,Fill-in-the-blank(s),Numeric,"

Here is the base of a prism.

+

 

+

+

 

+

 

+

When the height doubled, what was the percent increase for the volume?  

+

 

+

%

",100,100,,,153688 +PRABET92,1,Fill-in-the-blank(s),Numeric,"

Here is a square and some regular octagons.

+

 

+

In this pattern, all of the angles inside the octagons have the same measure. The shape in the center is a square. Find the measure of one of the angles inside one of the octagons.  

+
+

 

+

+

 

+
+

degrees

",135,135,,,130937 +PRABEUGH,1,Fill-in-the-blank(s),Numeric,"

Segments AB, EF, and CD intersect at point C, and angle ACD is a right angle. Find the value of g.

+

 

+

+

 

+

mg = °

",37,37,,,188665 +PRABQPRC,1,Fill-in-the-blank(s),Numeric,"

What is the area of this trapezoid? 

+

 

+

+

 

+

units2

",312,312,,,12774 +PSBB6KJ,2,Fill-in-the-blank(s),"Exact Fraction, Exact Match","

Esta es una recta numérica con algunos puntos marcados.

+

 

+

+

 

+

 

+

Escribe el número en C de dos maneras diferentes: como fracción y como decimal.

+

 

+ + + + + + + +
+

fracción:  

+

+
+

decimal:

+

 

+
","2.25, 2 1/4, 9/4","2.25, 2 1/4, 9/4",,,323395 +PSBEB6,1,Fill-in-the-blank(s),Numeric,"

A group of students was asked, “How many children are in your family?” The responses are displayed in the dot plot.

+

 

+

+

 

+

 

+

How many students responded to the questions?

+

 

+

students

",20,20,,,21754 +PSBJWY,1,Fill-in-the-blank(s),Numeric,"

In a word game, 1 letter is worth 1 point. This dot plot shows the scores for 20 common words.

+

 

+

+

 

+

What is the median score?  

+

 

+

points

+

 

+

 

",6.5,6.5,,,46015 +PSBCR72,1,Fill-in-the-blank(s),Numeric,"

The two triangles displayed are scaled copies of one another. 

+

 

+

+

 

+

Find the scale factor. 

+

 

+

","4/3, 3/4","4/3, 3/4",,,429837 +PRABFGYV,1,Fill-in-the-blank(s),Numeric,"

Complete the calculation so that the problem shows the correct difference.

+

 

+ + + + + + +
    1-     0.015
+

 

+

1 - = 0.015

",0.985,0.985,,,94291 +PRABESV4,1,Fill-in-the-blank(s),Algebraic Expression,"

Find the area of the shaded region. Express your answer in terms of π.   

+

 

+

+

 

+

 

+

in2

+

 

+

Use pi to represent π.

+

For example: 32π would be typed as 32pi

",540 - 65.25pi,540 - 65.25pi,,,175875 +PSBBU3Q,2,Fill-in-the-blank(s),Numeric,"

This figure is made from a part of a square and a part of a circle. 

+

 

+

+

 

+
+
+
+
+

 

+
+
+
+
+

What is the area of this figure, to the nearest square unit?  

+

 

+

square units

",95,95,,,270027 +PSBF6A,2,Fill-in-the-blank(s),Numeric,"

Now solve the problem.

+

 

+

56 is what percent of 70?  

+

 

+

%

+

 

+

",80,80,,,31856 +PSBB72,1,Fill-in-the-blank(s),Numeric,"

Lines AC and BD intersect at E.

+ + + + + + + +
+

What is the measure of angle BEC?

+

 

+

°

+
",120,120,,,9804 +PSBCHZZ,1,Fill-in-the-blank(s),Numeric,"

In the picture triangle A'B'C' is an image of triangle ABC after a rotation. The center of rotation is E.

+

+

 

+

 

+

What is the length of side AB

+

 

+

units

",9,9,,,388718 +PSBU7P,1,Fill-in-the-blank(s),Numeric,"

Lines AB and CD intersect at E.

+

 

+ + + + + + + +
+

What is the measure of angle AED?

+

 

+

°

+
",130,130,,,96584 +PSBBEUD,1,Fill-in-the-blank(s),Numeric,"

Noah is planning his birthday party. Here is a tree showing all of the possible themes, locations, and days of the week that Noah is considering.

+

 

+

How many themes is Noah considering?

+

 

+

themes

+

",3,3,,,194307 +PSBUPR,1,Fill-in-the-blank(s),Numeric,"

Use the diagram to find the measure of angle ABC.

+ + + + + + + +
mABC = ° 
",130,130,,,92551 +PSBBDV8,1,Fill-in-the-blank(s),Numeric,"

A group of hikers park their car at a trail head and walk into the forest to a campsite. The next morning, they head out on a hike from their campsite walking at a steady rate. The graph shows their distance in miles, d, from the car after h hours of hiking.

+

 

+

+

 

+

How far is the campsite from their car?

+

 

+

miles

",4,4,,,190411 +PSBQ8P,1,Multiple Choice (select 1),Multiple Choice,"

Elena and Han are discussing how to write the repeating decimal  as a fraction. Hans says that  equals . ""I calculated  because the decimal begins repeating after 3 digits. Then I subtracted to get . Then I multiplied by 100 to get rid of the decimal: . And finally, I divided to get ."" Elena says that  equals . ""I calculated  because one digit repeats. Then I subtracted to get . Then I did what Han did to get  and .

+

 

+

Do you agree with either of them?

",,,Han is correct || Elena is correct || Both are correct || Neither is correct,Both are correct,74236 +PRABQM8U,1,Multiple Choice (select all),Check All That Apply,

Select all the true statements.

,,,"Given a box plot, it is always possible to calculate the mean of the data. || Given a box plot, it is always possible to calculate the median of the data. || Given a box plot, it is always possible to construct a corresponding dot plot. || Given a dot plot, it is always possible to construct a corresponding box plot. || Given a histogram, it is always possible to construct a corresponding box plot.","Given a box plot, it is always possible to calculate the median of the data. || Given a dot plot, it is always possible to construct a corresponding box plot.",193572 +PSBCC5E,3,Multiple Choice (select 1),Multiple Choice,"

Which data set has the smaller MAD? 

+

 

+

",,,South Africa || Australia,Australia,361422 +PRABE64M,1,Multiple Choice (select all),Check All That Apply,"

Here is a diagram that describes the cups of green and white paint in a mixture.

+

 

+ + + + + + + + + + + +
green paint (cups)
white paint (cups)
+

 

+

Select all the statements that accurately describe this diagram.

",,,"The ratio of cups of white paint to cups of green paint is 2 to 4. || For every cup of green paint, there are two cups of white paint. ||

The ratio of cups of green paint to cups of white paint is 4 : 2.

|| For every cup of white paint, there are two cups of green paint. ||

The ratio of cups of green paint to cups of white paint is 2 : 4.

","The ratio of cups of white paint to cups of green paint is 2 to 4. ||

The ratio of cups of green paint to cups of white paint is 4 : 2.

|| For every cup of white paint, there are two cups of green paint.",88681 +PSBB73F,1,Multiple Choice (select 1),Multiple Choice,"

A line contains the points (-1, 4) and (5, -3).

+

 

+

Without doing any calculations, determine whether the slope of this line is positive or negative.

",,,Positive || Negative,Negative,331866 +PRABPVSV,1,Multiple Choice (select 1),Multiple Choice,"

Which equation matches the hanger diagram?

+

 

",,,"

 x ⋅ x = 1 ⋅ 1 ⋅ 1 ⋅ 1 ⋅ 1 

||

x = 25

||

x + 3 = 5

||

2x = 5

",

2x = 5

,367186 +PSBCW9S,1,Multiple Choice (select 1),Multiple Choice,"
+
+
+

Determine if the following is true or false.

+

 

+

l-5l > 3

+
+
+
",,1,True || False,TRUE,458552 +PRABQMW2,1,Multiple Choice (select all),Check All That Apply,"

Diego’s dog weighs more than 10 kilograms and less than 15 kilograms.

+

Select all the inequalities that must be true if w is the weight of Diego’s dog in kilograms.

+

 

",,,w > 10 || w < 10 || w > 11 || w < 11 || w > 15 || w < 15,w > 10 || w < 15,410688 +PSBJS4,5,Multiple Choice (select 1),Multiple Choice,"

The graph shows the temperature between noon and midnight in one day in a certain city.

+

 

+

+

 

+

 

+

Does this graph show that the temperature is a function of time, or is time a function of temperature?

",,,Temperature is a function of time || Time is a function of temperature,Temperature is a function of time,45592 +PSBVBV,1,Multiple Choice (select 1),Multiple Choice,"

Jada and Noah wanted to find the total volume of a cube and a rectangular prism. They know the prism's volume is 20 cubic units, and they know the cube has side lengths of 10 units. Jada says the total volume is 27,000 cubic units. Noah says it is 1,020 cubic units. Here is how each of them reasoned:

+

 

+

 

+ + + + + + + + + + + +
+

Jada's Method:

+
+

Noah's Method:

+
+

20 + 10³

+

30³

+

27,000

+
+

20 + 10³

+

20 + 1,000

+

1,020

+ 
+

 

+

 

+

Do you agree with either of them?

",,,Agree with both || Agree with Jada || Agree with Noah || Disagree with both,Agree with Noah,97579 +PSBEUG,5,Multiple Choice (select 1),Multiple Choice,"

On the second graph, which point shows Andre’s consumption and which shows Jada’s consumption?

",,,"The rightmost point shows Andre's consumption, the leftmost point shows Jada's consumption || The rightmost point shows Jada's consumption, the leftmost point shows Andre's consumption","The rightmost point shows Jada's consumption, the leftmost point shows Andre's consumption",24277 +PRABJGFX,1,Multiple Choice (select all),Check All That Apply,"

Select all the expressions equivalent to

",,,1. 2⋅(x+3) || 2. (x+3)2 || 3. 2⋅x+2⋅3  || 4. 2⋅x+3 || 5. (2⋅x)+3  || 6. (2+x)3,1. 2⋅(x+3) || 2. (x+3)2 || 3. 2⋅x+2⋅3 ,109572 +PSB2UH,2,Multiple Choice (select 1),Multiple Choice,

Is 100 a solution of 10 − 0.035d > 4?

,,,Yes || No,Yes,129703 +PSBBWDP,1,Multiple Choice (select 1),Multiple Choice,"

Decide which calculation shows the correct way to find 0.3 - 0.006

",,,"

+

 

||

+

 

||

+

 

||

","

",277053 +PSBR54,1,Multiple Choice (select 1),Multiple Choice,"

Jada and Elena learned that 8% of students have asthma. They want to know the probability that in a team of 4 students, at least one of them has asthma. To simulate this, they put 25 slips of paper in a bag. Two of the slips say “asthma.” Next, they take four papers out of the bag and record whether at least one of them says “asthma.” They repeat this process 15 times.

+

 

+
    +
  • +

    Jada says they could improve the accuracy of their simulation by using 100 slips of paper and marking 8 of them.

    +
  • +
+

 

+
    +
  • +

    Elena says they could improve the accuracy of their simulation by conducting 30 trials instead of 15.

    +
  • +
+

 

+

Do you agree with either of them?

",,,I agree with Elena || I agree with Jada || I agree with both of them || I agree with neither of them,I agree with Elena,78469 +PSBB6PY,3,Multiple Choice (select 1),Multiple Choice,"

",,,< || = || >,>,323873 +PSBB6HD,1,Multiple Choice (select 1),Multiple Choice,"

Una cinta tiene 30 pulgadas de longitud. Debes cortarla en varios trozos, todos de la misma longitud.

+

 

+

¿Puedes cortar la cinta en trozos de 4 pulgadas?

",,,Sí || No,No,322962 +PRABEQDX,1,Multiple Choice (select all),Check All That Apply,

Which scales are equivalent to 1 inch to 1 foot? Select all that apply.

,,,"

1 to 12 

||

112 to 1 

||

100 to 12 

||

5 to 60 

||

36 to 3 

||

9 to 108 

","

1 to 12 

||

112 to 1 

||

5 to 60 

||

9 to 108 

",123653 +PSBDG6F,1,Multiple Choice (select 1),Multiple Choice,"

Which weighs more: a watermelon that weighs 7.5 kilograms or a baby that weighs 12 pounds?

+

 

+

Note: 1 pound is about 0.45 kilograms.

",,,a watermelon that weighs 7.5 kilograms || a baby that weighs 12 pounds,a watermelon that weighs 7.5 kilograms,559856 +PRABEBM6,1,Multiple Choice (select all),Check All That Apply,"

The solution to a system of equations is (6, -3). Choose two equations that might make up the system.

",,,

y = -3x + 6

|| y = 2x - 9 || y = -5x + 27 || y = 2x - 15 || y = -4x + 27,y = -5x + 27 || y = 2x - 15,91020 +PRABQP6S,1,Multiple Choice (select all),Check All That Apply,"

Select all the expressions that equal 78.

",,,"

7-2·710

||

(73)5

||

(73)47-4

||

(74)-2

||

767-2

","

7-2·710

||

767-2

",552296 +PSBR6F,1,Multiple Choice (select 1),Multiple Choice,

A stack of books is 72 inches tall. Each book is 2 inches thick. Which expression tells us how many books are in the stack? 

,,,72 ⋅ 2 || 72 − 2 || 2 ÷ 72 || 72 ÷ 2,72 ÷ 2,78941 +PSBDA,1,Multiple Choice (select 1),Multiple Choice,"

For the following pair of shapes, decide whether or not they are congruent. 

+

 

+

",,,"Yes, they are congruent || No, they are not congruent","No, they are not congruent",336 +PRABQKVG,1,Multiple Choice (select 1),Multiple Choice,"

Kiran has used 45 of the pieces in his jigsaw puzzle. He has used 120 pieces. How many pieces are in the whole puzzle?

",,150,96 || 125 || 150 || 216,150,518730 +PRABFFDV,1,Multiple Choice (select all),Check All That Apply,"

Which expression has the same value as (0.06) · (0.154)?   Select all that apply.

",,,"

6 · 1100 · 154 · 11,000

||

6 · 154 · 1100,000

||

6 · (0.1) · 154 · (0.01)

||

6 · 154 · (0.00001)

||

0.00924

","

6 · 1100 · 154 · 11,000

||

6 · 154 · 1100,000

||

6 · 154 · (0.00001)

||

0.00924

",8563 +PSB32P,1,Multiple Choice (select 1),Multiple Choice,"

Decide if the responses will produce numerical data or categorical data.

+

 

+

How did you get to school this morning?

",,,Categorical || Numerical,Categorical,136547 +PSBBMWY,1,Multiple Choice (select all),Check All That Apply,

Select all the quadrilaterals that you think can be decomposed into two identical triangles using only one line.

,,,"

||

||

||

||

||

","

||

||

||

",230682 +PSBC296,3,Multiple Choice (select 1),Multiple Choice,

Is the line y=x a good fit for the data?

,,,Yes || No,Yes,480902 +PRABQMT7,1,Multiple Choice (select all),Check All That Apply,"

Given that x is -4, select all the true statements.

+

 

+

+

 

",,,Point A is at |6| || Point B is at -x || Point C is at |-2.5| || Point D is at |3| || Point E is at |x| || Point F is at -|6|,Point C is at |-2.5| || Point D is at |3| || Point E is at |x|,49529 +PRABQPMU,1,Multiple Choice (select all),Check All That Apply,"

Select all the situations that can be represented by the tape diagram.

+

 

+

",,,"Noah walked a family’s dog 5 times this past month and earned the same amount each time. To thank him, the family gave him an extra $6 at the end of the month. Noah earned $106 from dog walking. || A family of 5 drove to a soccer game. They paid $6 for parking, and all of their tickets were the same price. They paid $106 in total. || 5 bags of coins each contain 6 nickels and the same number of pennies. Altogether, the bags contain 106 coins. || Kiran is baking 5 batches of muffins. Each batch needs the same amount of sugar in the muffins, and each batch needs six extra teaspoons of sugar for the topping. Kiran uses 106 total teaspoons of sugar. || Priya buys 5 cases of water, each with the same number of bottles. The store clerk gives her an extra 6 bottles before she leaves. She leaves with a total of 106 bottles.","5 bags of coins each contain 6 nickels and the same number of pennies. Altogether, the bags contain 106 coins. || Kiran is baking 5 batches of muffins. Each batch needs the same amount of sugar in the muffins, and each batch needs six extra teaspoons of sugar for the topping. Kiran uses 106 total teaspoons of sugar.",90188 +PSB7YF,1,Multiple Choice (select 1),Multiple Choice,"

There are 2 mixtures of light purple paint.

+

 

+
    +
  • Mixture A is made with 5 cups of purple paint and 2 cups of white paint.
  • +
  • Mixture B is made with 15 cups of purple paint and 8 cups of white paint.
  • +
+

 

+

Which mixture is a lighter shade of purple?

",,,Mixture A || Mixture B,Mixture B,158226 +PSB724,5,Multiple Choice (select 1),Multiple Choice,"

Overall, which group of students—sixth- or seventh-grade—sent more text messages?

",,,Sixth-grade students || Seventh-grade students || Neither,Neither,158855 +PRABFKN9,1,Multiple Choice (select all),Check All That Apply,

Here are descriptions of data sets. Select all descriptions of data sets that could be graphed as dot plots.

,,,

Class size for the classes at an elementary school

||

Colors of cars in a parking lot

||

Favorite sport of each student in a sixth-grade class

||

Birth weights for the babies born during October at a hospital

||

Number of goals scored in each of 20 games played by a school soccer team

,

Class size for the classes at an elementary school

||

Birth weights for the babies born during October at a hospital

||

Number of goals scored in each of 20 games played by a school soccer team

,285834 +PRABQPKU,1,Multiple Choice (select all),Check All That Apply,"

Select all expressions that are equivalent to -4(x + 2) - 2x + 4.

",,,-6x - 4 || -4x + 2 - 2x + 4 || -10x || -4x + -8 - 2x + 4 || -4x - 2x - 8 + 4,-6x - 4 || -4x + -8 - 2x + 4 || -4x - 2x - 8 + 4,163965 +PRABEU62,1,Multiple Choice (select all),Check All That Apply,

Select all the statements that are true for any value of x.

,,,"

7x + (2x + 7) = 9x + 7

||

7x + (2x - 1) = 9x + 1

||

12x + 3 - 12x = 3

||

5x - (8 - 6x) = -x - 8

||

0.4x - (0.2x + 8) = 0.2x - 8

||

6x - (2x - 4) = 4x + 4

","

7x + (2x + 7) = 9x + 7

||

12x + 3 - 12x = 3

||

0.4x - (0.2x + 8) = 0.2x - 8

||

6x - (2x - 4) = 4x + 4

",277314 +PSBXP5,1,Multiple Choice (select 1),Multiple Choice,"

A large fish tank is filled with table tennis balls with numbers written on them. Jada chooses 10 table tennis balls from the tank and writes down their numbers.

+ + + + + + + + + + + + + + + +
1351324153
+

 

+

 A second tank is filled with golf balls with numbers written on them. Jada chooses 10 golf balls from the tank and writes down their numbers.

+ + + + + + + + + + + + + + + +
1452622148
+

 

+

To win a prize, Jada must get a a ball with an even number. Should she try to win the prize using the tank of table tennis balls or the tank of golf balls? 

",,,tank of table tennis balls || tank of golf balls,tank of golf balls,111989 +PSBEQY,2,Multiple Choice (select 1),Multiple Choice,"

The mean age for the population is 35 years. If Elena picks a new sample of size 10 from this population, should she expect her sample mean to be within 1 year of the population mean?

",,,Yes || No,No,23659 +PRABEVAH,1,Multiple Choice (select all),Check All That Apply,"

A heron is perched in a tree 50 feet above sea level. Directly below the heron, a pelican is flying 17 feet above sea level. Directly below the birds is a trout, swimming 23 feet below sea level.

+

 

+

Select all the true statements.

",,,The difference in height between the pelican and the heron is -33 feet. || The difference in height between the pelican and the heron is 33 feet. || The distance between the heights of the pelican and heron is -33 feet. || The difference in height between the pelican and the trout is -40 feet. || The difference in height between the pelican and the trout is 40 feet. || The distance between the heights of the pelican and the trout is 40 feet.,The difference in height between the pelican and the heron is -33 feet. || The difference in height between the pelican and the trout is 40 feet. || The distance between the heights of the pelican and the trout is 40 feet.,114294 +PSBBMT9,1,Multiple Choice (select 1),Multiple Choice,"

Decide whether the equation is true or false.

+

 

+

",,0,True || False,FALSE,230244 +PSBH8S,10,Multiple Choice (select 1),Multiple Choice,"

Spinning this spinner will result in yellow.

+

 

+

",,,impossible || unlikely || equally likely as not || likely || certain,impossible,42864 +PRABEPN5,1,Multiple Choice (select 1),Multiple Choice,"

A square has vertices (0,0), (5,2), (3,7), and (-2,5). Which of these statements is true?

",,,The square’s side length is 5. || The square’s side length is between 5 and 6. || The square’s side length is between 6 and 7. || The square’s side length is 7.,The square’s side length is between 5 and 6.,146523 +PSBX69,9,Multiple Choice (select 1),Multiple Choice,"

For the statement below, decide if it is true or false. 

+

 

+

There is no solution for the equation for line ℓ that has y=0.

",,0,True || False,FALSE,114103 +PSBS2E,1,Multiple Choice (select 1),Multiple Choice,"

Decide whether the equation is true or false.

+

 

+

9 · 9 · 3 = 35

+
 
",,1,True || False,TRUE,83709 +PRABFGVX,1,Multiple Choice (select all),Check All That Apply,"

Choose the expressions that do not represent the total area of the rectangle. Select all that apply.

+

 

+

",,,5t + 4t || t + 5 + 4 || 9t || 4 · 5 · t || t(5 + 4),t + 5 + 4 || 4 · 5 · t,189623 +PSBGTE,1,Multiple Choice (select 1),Multiple Choice,"

Here are two triangles.

+

+

Is Triangle B a rotation of Triangle A?

+
 
",,,Yes || No,No,35246 +PRABQN9B,1,Multiple Choice (select all),Check All That Apply,

Select all expressions whose value is negative.

,,,"

154

||

154

||

154

||

8  · 34

||

(8) ·34

","

154

||

154

||

8  · 34

",24305 +PRABMTN8,1,Multiple Choice (select 1),Multiple Choice,"

For the equation, decide if it is always true or never true.

+

 

+

3(x  5) = 2(x  5) + x

",,,Always True || Never True,Never True,148466 +PRABQNYY,1,Multiple Choice (select all),Check All That Apply,"

The shape is composed of squares and quarter circles. Select all the expressions that represent its perimeter.

+

",,,42 + 14π || 7 + 7 + 7 + 7 + 7 + 7 + 3.5π + 3.5 π + 3.5π + 3.5π || 91 + 14π || 147 + 49π || 7 + 7 + 7 + 7 + 7 + 7 + 7 + 7 + 7 + 7,42 + 14π || 7 + 7 + 7 + 7 + 7 + 7 + 3.5π + 3.5 π + 3.5π + 3.5π,27039 +PSBZP8,3,Multiple Choice (select 1),Multiple Choice,

Did the bakery owner receive more or spend more money on May 5? 

,,,

Receive More Money

||

Spend More Money

,

Receive More Money

,123053 +PRABE57G,1,Multiple Choice (select 1),Multiple Choice,"

What is the surface area of this rectangular prism?

+

 

+

",,,16 square units || 32 square units || 48 square units || 64 square units,64 square units,273669 +PSBPP,1,Multiple Choice (select 1),Multiple Choice,"

When asked to draw a triangle with two 45º angles and a side length of 8 cm, Diego drew this triangle.

+

 

+

+

 

+

Do you agree with Diego’s answer?

",,,Yes || No,Yes,1442 +PRABETYD,1,Multiple Choice (select all),Check All That Apply,"

Select all the equations that match the diagram.

+

 

+

",,,"

x + 5 = 18

||

18 ÷ 3 = x + 5

||

3(x + 5) = 18

||

x + 5 = 13 · 18

||

3x + 5 = 18

","

18 ÷ 3 = x + 5

||

3(x + 5) = 18

||

x + 5 = 13 · 18

",156494 +PRABFJXB,1,Multiple Choice (select 1),Multiple Choice,"

One night, it is  24°C warmer in Tucson than it was in Minneapolis. If the temperatures in Tucson and Minneapolis are opposites, what is the temperature in Tucson?

",,,"

-24°C

||

-12°C

||

12°C

||

24°C

","

12°C

",39966 +PSB5HF,1,Multiple Choice (select 1),Multiple Choice,"

A map of Colorado says that the scale is 1 inch to 20 miles or 1 to 1,267,200. Are these two ways of reporting the scale the same?

",,,Yes || No,Yes,145212 +PRABQPTZ,1,Multiple Choice (select 1),Multiple Choice,"

For two weeks, the highest temperature each day was recorded in four different cities. Lines l, m, n, and are graphs of the temperature over time in Lubbock, Memphis, New Orleans, and Phoenix.

+

 

+

+


Which statement is true?

",,,"The high temperature in Lubbock increased as time passed. || The high temperature in Memphis decreased steadily. || Initially, the high temperature was warmer in Phoenix than in Memphis. || The high temperature in Phoenix rose faster than the temperature in NewOrleans.",The high temperature in Memphis decreased steadily.,79163 +PRABQMB3,1,Multiple Choice (select all),Check All That Apply,"

Select all the equations represented by this tape diagram.

+

",,,3.9 + ? = 8.6 || 8.6 + 3.9= ? || 8.6 = ? + 3.9 || 8.6 - 3.9 = ? || ? - 3.9 = 8.6,3.9 + ? = 8.6 || 8.6 = ? + 3.9 || 8.6 - 3.9 = ?,427819 +PRABQKJE,1,Multiple Choice (select all),Check All That Apply,"

Select all the true statements.

+

 

+

+

 

",,,The ratio of triangles to squares is 2 to 6. || The ratio of squares to smiley faces is 2 : 4. || The ratio of smiley faces to triangles is 4 to 2. || There are three triangles for every square. || There are two smiley faces for every square. || There are two triangles for every smiley face.,The ratio of squares to smiley faces is 2 : 4. || There are three triangles for every square. || There are two smiley faces for every square.,2196 +PSBCRM2,1,Multiple Choice (select 1),Multiple Choice,"

Decide whether the inequality statement is true or false. 

+

 

+

3 > -8

",,1,True || False,TRUE,426543 +PSBCM2F,1,Multiple Choice (select 1),Multiple Choice,"

Which has a greater value: 7.4  0.0022 or 7.39  0.0012

",,,7.4 − 0.0022 || 7.39 − 0.0012,7.4 − 0.0022,405351 +PRABE9UJ,1,Multiple Choice (select all),Check All That Apply,

Diego estimates that there will need to be 3 pizzas for every 7 kids at his party. Select all the statements that express this ratio.

,,,

The ratio of kids to pizzas is 7 : 3.

|| The ratio of pizzas to kids is 3 to 7. ||

The ratio of kids to pizzas is 3 : 7.

|| The ratio of pizzas to kids is 7 to 3. || For every 7 kids there need to be 3 pizzas.,

The ratio of kids to pizzas is 7 : 3.

|| The ratio of pizzas to kids is 3 to 7. || For every 7 kids there need to be 3 pizzas.,83745 +PSBX69,15,Multiple Choice (select 1),Multiple Choice,"

For the statement below, decide if it is true or false. 

+

 

+

There is a point whose coordinates make the equations of all three lines true.

",,0,True || False,FALSE,114797 +PSBBWBK,1,Multiple Choice (select 1),Multiple Choice,"

A student said we cannot subtract 1.97 from 20 because 1.97 has two decimal digits and 20 has none.

+

 

+

Do you agree with his statement? 

",,,Agree || Disagree,Disagree,276696 +PSBN6A,1,Multiple Choice (select 1),Multiple Choice,"

The x-axis represents the number of hours before or after noon, and the y-axis represents the temperature in degrees Celsius.

+

 

+

+

 

+

At 9 a.m., it was below freezing. In what quadrant would this point be plotted? 

",,,Quadrant I || Quadrant II || Quadrant III || Quadrant IV,Quadrant III,63054 +PRABFK39,1,Multiple Choice (select 1),Multiple Choice,"

Here is a dot plot that shows the ages of teachers at a school.

+

 

+
+
+
+
+

Which of these statements is true of the data set shown in the dot plot?

+

 

+

+
+
+
+
",,,The mean is less than the median. || The mean is approximately equal to the median. || The mean is greater than the median. || The mean cannot be determined.,The mean is greater than the median.,188655 +PSBTTV,2,Multiple Choice (select 1),Multiple Choice,

There are 10 people on the team. Do they save money if they buy an extra shirt?

,,,Yes || No,Yes,87609 +PSBB2ZW,1,Multiple Choice (select 1),Multiple Choice,"

When asked to draw a quadrilateral with all four sides measuring 5 cm, Jada drew a square.

+

+


Do you agree with Jada’s answer?

",,,Yes || No,Yes,303405 +PRABECYV,1,Multiple Choice (select all),Check All That Apply,"

Which of the changes would keep the hanger in balance?

+

 

+

Select all that apply.

+

 

+

+

 

+

 

",,,"
+

Adding two circles on the left and a square on the right

+
||

Adding 2 triangles to each side

||

Adding two circles on the right and a square on the left

||

Adding a circle on the left and a square on the right

||

Adding a triangle on the left and a square on the right

","
+

Adding two circles on the left and a square on the right

+
||

Adding 2 triangles to each side

||

Adding two circles on the right and a square on the left

",498517 +PSBJXX,1,Multiple Choice (select 1),Multiple Choice,"

Which square—large, medium, or small—covers more of the plane?

+

 

+

",,,

large

||

medium

||

small

,

large

,46209 +PRABQMBQ,1,Multiple Choice (select 1),Multiple Choice,

A woodworker wants to cut a board that is 8.225 feet long into 5 equal-length pieces. How long will each of the cut boards be?

,,,0.1645 feet || 1.645 feet || 4.1125 feet || 41.125 feet,1.645 feet,278232 +PRABQJS9,1,Multiple Choice (select all),Check All That Apply,

Select all the triangles that have an area of 45 square units.

,,,"

||

||

||

||

","

||

",383830 +PRABPG8F,1,Multiple Choice (select 1),Multiple Choice,

Suppose you have a pint of grape juice and a pint of milk. You pour 1 tablespoon of the grape juice into the milk and mix it up. Then you pour 1 tablespoon of this mixture back into the grape juice. Which liquid is more contaminated?

,,,Milk || Grape Juice,Milk,350776 +PSB5Y4,1,Multiple Choice (select 1),Multiple Choice,"

A rectangular solid has a square base with side length l, height 8, and volume V. Is the relationship between and V a proportional relationship?

",,,Yes || No,No,147904 +PRABQPRY,1,Multiple Choice (select all),Check All That Apply,"

Select all the points that are 5 units away from (6, 2). 

",,,"(1, 2) || (6, 5) || (11, 7) || (30, 10) || (6, -3) || (11, 2)","(1, 2) || (6, -3) || (11, 2)",1910 +PRABQP43,1,Multiple Choice (select 1),Multiple Choice,"

Which is closest to the difference in the volume of the two cylinders? 

+

 

+ + + + + + + +
",,,"

15,795 cm³

|| 2,534 cm³ || 806 cm³ || 512 cm³",806 cm³,674243 +PSBCKT6,1,Multiple Choice (select 1),Multiple Choice,"

For the pair of numbers below, select the number that is greater.

",,,"

42 · 107

||

8.5 · 108

","

8.5 · 108

",399091 +PRABFG2Q,1,Multiple Choice (select all),Check All That Apply,"
+

Select all expressions that are equal to 3 · 3 · 3 · 3 · 3.

+
",,,"

3 · 5

||

35

||

34 · 3

||

5 · 3

||

53

","

35

||

34 · 3

",86722 +PSBHYF,1,Multiple Choice (select 1),Multiple Choice,"

To decompose a quadrilateral into two identical shapes, Clare drew a dashed line as shown in the diagram.

+

 

+

+

 

+
She said the that two resulting shapes have the same area. Do you agree?
",,,Yes || No,Yes,41185 +PSBBREW,1,Multiple Choice (select 1),Multiple Choice,"

Tyler said this net cannot be a net for a square prism because not all the faces are square.
 

+

Do you agree with Tyler's statement?

+

",,,Yes || No,No,249682 +PSB7HB,1,Multiple Choice (select 1),Multiple Choice,

Which of the following graphs could represent the volume of water in a cylinder as a function of its height?

,,,"

 

||

||

","

 

",155954 +PRABERFN,1,Multiple Choice (select 1),Multiple Choice,"

Which scale is equivalent to 1 cm to 1 km?

+
 
",,,"1 to 1,000 || 10,000 to 1 || 1 to 100,000 || 100,000 to 1 || 1 to 1,000,000","1 to 100,000",146478 +PRABQK7Z,1,Multiple Choice (select all),Check All That Apply,"

Select all the expressions that represent the total area of the rectangle.

+

",,,"

15c + 15

||

 15 · c + 15 · 15

||

15(c + 15)

||

3c

||

15c + 3

","

 15 · c + 15 · 15

||

15(c + 15)

||

15c + 3

",56749 +PRABPMNH,1,Multiple Choice (select all),Check All That Apply,

Select all the expressions that have the same value. 

,,,

24

||

26

||

28

||

43

||

82

||

88

,

26

||

43

||

82

,427433 +PRABE5HQ,1,Multiple Choice (select all),Check All That Apply,

Select all parallelograms that have a correct height labeled for the given base.

,,,"

||

||

||

","

||

||

",375655 +PRABQM98,1,Multiple Choice (select all),Check All That Apply,"

Quadrilateral ABCD is a scaled copy of quadrilateral EFGH. Select all of the true statements.

+

 

+

",,,Segment BC is half the length of segment EF. || Segment CD is half the length of segment GH. || The measure of angle ADC is equal to the measure of angle EHG. || The length of segment AB is 3 units. || The area of ABCD is half the area of EFGH.,Segment CD is half the length of segment GH. || The measure of angle ADC is equal to the measure of angle EHG. || The length of segment AB is 3 units.,12006 +PRABFEYB,1,Multiple Choice (select all),Check All That Apply,"

Select all the expressions that are equal to .

",,,"30 || 3,000 || 1,000 × 3 || 10 × 3 || 10 × 10 × 10 || 100 ||

1,000

","10 × 10 × 10 ||

1,000

",104252 +PRABQMB4,1,Multiple Choice (select all),Check All That Apply,"

Select all the equations represented by this tape diagram.

+

 

+

",,,4 + 3 = ? || 3 + 3 + 3 + 3 = ? || ? = 4 · 3 || ? = 3 · 3 · 3 · 3 || 4 ÷ 3= ? || 4 = ? ÷ 3,3 + 3 + 3 + 3 = ? || ? = 4 · 3 || 4 = ? ÷ 3,427946 +PSBYUC,5,Multiple Choice (select 1),Multiple Choice,"

At which time period, 8:05–8:09 or 8:25–8:29, was there a greater change to the number of bottles in the machine? 

",,,"8:05-8:09 || 8:25-8:29 || Both, same amount of change to the number of bottles","Both, same amount of change to the number of bottles",117977 +PRABEUF6,1,Multiple Choice (select all),Check All That Apply,"

Select all the inequalities that have the same solutions as -4x<20

",,,-x < 5 || 4x > -20 || 4x < -20 || x < -5 || x > 5 || x > -5,-x < 5 || 4x > -20 || x > -5,110803 +PRABFS5R,1,Multiple Choice (select all),Check All That Apply,"

Select the unit from the list that you would use to measure the object.

+

 

+

The length of the border between the United States and Canada

",,,centimeters || cups || feet || gallons || grams || inches || kilograms || kilometers || liters || meters || miles || milliliters || millimeters || ounces || pounds || quarts || tons || yards,kilometers || miles,174042 +PRABETPU,1,Multiple Choice (select 1),Multiple Choice,"

A store has a 20% off sale on pants. With this discount, the price of one pair of pants before tax is $15.20. What was the original price of the pants?

",,,$3.04 || $12.16 || $18.24 || $19.00,$19.00 ,509942 +PRABQKNX,1,Multiple Choice (select 1),Multiple Choice,"

A mixture of purple paint contains 6 teaspoons of red paint and 15 teaspoons of blue paint. To make the same shade of purple paint using 35 teaspoons of blue paint, how much red paint would you need? Use the double number line diagram to help if needed.

+
",,,12 teaspoons || 14 teaspoons || 18 teaspoons || 26 teaspoons,14 teaspoons,115193 +PSBB5SU,1,Multiple Choice (select 1),Multiple Choice,"

Andre draws this tape diagram for :

+

+


Andre says that because there are 4 groups of  and  left. Do you agree with Andre?

",,,Agree || Disagree,Disagree,318653 +PRABQMFM,1,Multiple Choice (select 1),Multiple Choice,

Which expression is equal to 73?

,,,"

7 · 7 · 7

||

21

||

37

||

10

",

7 · 7 · 7

,350322 +PSBBZA9,1,Multiple Choice (select 1),Multiple Choice,"

The students in art class are designing a stained-glass window to hang in the school entryway. The window will be 3 feet tall and 4 feet wide. Here is their design.

+

 

+

+

 

+

They have raised $100 for the project. The colored glass costs $5 per square foot and the clear glass costs $2 per square foot. The material they need to join the pieces of glass together costs 10 cents per foot and the frame around the window costs $4 per foot.

+

 

+

A local community member sees the school’s stained glass window and really likes the design. They ask the students to create a larger copy of the window using a scale factor of 3. Would $450 be enough to buy the materials for the larger window?

",,,Yes || No,No,294072 +PSBEQM,1,Multiple Choice (select all),Check All That Apply,"

Select all of the parallelograms.

+

 

+

",,,A || B || C || D || E,B || C,23769 +PSBNHS,1,Multiple Choice (select 1),Multiple Choice,"

A brownie recipe calls for 1 cup of sugar and 12 cup of flour to make one batch of brownies.  To make multiple batches, the equation f = 12s where f is the number of cups of flour and s is the number of cups of sugar represents the relationship. Which graph also represents the relationship? 

",,,"

+

 

||

+

 

||

","

+

 

",60015 +PSBDHVR,1,Multiple Choice (select 1),Multiple Choice,"

At a farmer’s market, two vendors sell fresh milk. One vendor sells 2 liters for $3.80, and another vendor sells 1.5 liters for $2.70. Which is the better deal? 

",,,2 liters for $3.80 || 1.5 liters for $2.70,1.5 liters for $2.70,564260 +PRABG6MX,1,Multiple Choice (select 1),Multiple Choice,"

Clare’s recipe for banana bread won’t fit in her favorite pan. The pan is inches by 11 inches by 2 inches. The batter fills the pan to the very top, and when baking, the batter spills over the sides. To avoid spills, there should be about an inch between the top of the batter and the rim of the pan.

+

 

+

Clare has another pan that is 9 inches by 9 inches by inches. If she uses this pan, will the batter spill over during baking? 

",,,Yes || No,Yes,167762 +PRABFKET,1,Multiple Choice (select all),Check All That Apply,

Here are some bank transactions from a bank account last week. Which transactions represent negative values?

,,,Monday: $650 paycheck deposited || Tuesday: $40 withdrawal from the ATM at the gas pump || Wednesday: $20 credit for returned merchandise || Thursday: $125 deducted for cell phone charges || Friday: $45 check written to pay for book order || Saturday: $80 withdrawal for weekend spending money || Sunday: $10 cash-back reward deposited from a credit card company,Tuesday: $40 withdrawal from the ATM at the gas pump || Thursday: $125 deducted for cell phone charges || Friday: $45 check written to pay for book order || Saturday: $80 withdrawal for weekend spending money,63725 +PRABEU65,1,Multiple Choice (select all),Check All That Apply,"

Suppose you are interested in learning about how much time seventh grade students at your school spend outdoors on a typical school day.

+

 

+

Select all the samples that are a part of the population you are interested in.

",,,The 20 students in a seventh grade math class. || The first 20 students to arrive at school on a particular day. || The seventh grade students participating in a science fair put on by the four middle schools in a school district. || The 10 seventh graders on the school soccer team. || The students on the school debate team.,The 20 students in a seventh grade math class. || The 10 seventh graders on the school soccer team.,100451 +PRABEVCW,1,Multiple Choice (select 1),Multiple Choice,"

Which number line shows all the values of x that make the inequality -3x + 1 < 7 true?

+

 

+

+
 
",,,"

A

||

B

||

C

||

D

","

D

",189992 +PSBBME6,1,Multiple Choice (select 1),Multiple Choice,"

Decide whether the equation is true or false.

+

 

+

2⋅ 4

",,0,True || False,FALSE,228008 +PRABEUKM,1,Multiple Choice (select all),Check All That Apply,"

Select all the equations that match the tape diagram.

+

 

+

",,,35 = 8 + x + x + x + x + x + x || 35 = 8 + 6x || 6 + 8x = 35 || 6x + 8 = 35 || 6x + 8x = 35x || 35 − 8 = 6x,35 = 8 + x + x + x + x + x + x || 35 = 8 + 6x || 6x + 8 = 35 || 35 − 8 = 6x,274694 +PSB5BQ,1,Multiple Choice (select 1),Multiple Choice,"

In one version of trail mix, there are 3 cups of peanuts mixed with 2 cups of raisins. In another version of trail mix, there are 4.5 cups of peanuts mixed with 3 cups of raisins. Are the ratios equivalent for the two mixes?

",,,Yes || No,Yes,143888 +PSBH8S,5,Multiple Choice (select 1),Multiple Choice,

No one in your class will be late to class next week.

,,,impossible || unlikely || equally likely as not || likely || certain,impossible || unlikely || equally likely as not || likely || certain,42389 +PRABESCX,1,Multiple Choice (select all),Check All That Apply,"

Quadrilateral A has side lengths 3, 4, 5, and 6. Quadrilateral B is a scaled copy of Quadrilateral A with a scale factor of 2.

+

 

+

Select all of the following that are side lengths of Quadrilateral B.

",,,5 || 6 || 7 || 8 || 9,6 || 8,247183 +PSBBWKR,1,Multiple Choice (select 1),Multiple Choice,"

The school store sells pencils for $0.30 each, hats for $14.50 each, and binders for $3.20 each. Elena would like to buy 3 pencils, a hat, and 2 binders. She estimated that the cost will be less than $20.

+

 

+

Do you agree with her estimate? 

",,,Agree || Disagree,Disagree,277881 +PSBEUG,1,Multiple Choice (select 1),Multiple Choice,"

Andre and Jada were in a hot dog eating contest. Andre ate 10 hot dogs in 3 minutes. Jada ate 12 hot dogs in 5 minutes.

+

 

+

Here are two different graphs that both represent this situation.

+

+

 

+

 

+

 

+

 

+

 

+

 

+

 

+

 

+

 

+

 

+

 

+

 

+

 

+

 

+

 

+

On the first graph, which point shows Andre’s consumption, and which shows Jada’s consumption?

",,,"The rightmost point shows Andre's consumption, the leftmost point shows Jada's consumption || The rightmost point shows Jada's consumption, the leftmost point shows Andre's consumption","The rightmost point shows Jada's consumption, the leftmost point shows Andre's consumption",23819 +PSBDADV,1,Multiple Choice (select 1),Multiple Choice,"

Diego said that the answer to the question “How many groups of 56 are in 1?” is 65   or 115. Do you agree with his statement?

",,,Agree || Disagree,Agree,521139 +PRABFFX7,1,Multiple Choice (select all),Check All That Apply,"

A cube has a side length of 8 inches.

+

 

+

Select all the values that represent the cube’s volume in cubic inches.

",,,8² || 8³ || 6 · 8² || 6 · 8 || 8 · 8 · 8,8³ || 8 · 8 · 8,558716 +PSBTS,1,Multiple Choice (select 1),Multiple Choice,"

A company tests two new products to make sure they last for more than a year.

+

 

+
    +
  • Product 1 had 950 out of 1,000 test items last for more than a year.
  • +
  • Product 2 had 150 out of 200 last for more than a year.
  • +
+

 

+

If you had to choose one of these two products to use for more than a year, which one is more likely to last?

",,,Product 1 || Product 2,Product 1,1805 +PRABJGVV,1,Multiple Choice (select all),Check All That Apply,"

An item costs x dollars and then a 20% discount is applied. Select all the expressions that could represent the price of the item after the discount. 

",,,"

20100x

||

x-20100x

||

(1-0.20)x

||

100-20100x

||

0.80x

||

(100-20)x

","

x-20100x

||

(1-0.20)x

||

100-20100x

||

0.80x

",137922 +PSBBT4K,4,Multiple Choice (select 1),Multiple Choice,"

The equation c = 2.95g shows how much it costs to buy gas at a gas station on a certain day. In the equation, c represents the cost in dollars, and g represents how many gallons of gas were purchased.

+

 

+

Jada’s mom remarks, “You can get about a third of a gallon of gas for a dollar.” Is she correct?

",,,Yes || No,Yes,263961 +PRABEVS9,1,Multiple Choice (select all),Check All That Apply,"

A rectangle has length x and width y.

+

 

+

+

 

+
+

Select all the statements that must be true. 

+
",,,The perimeter is x + y. || The perimeter is xy. || The perimeter is 2(x + y). || The perimeter is 2xy. || The perimeter is 2x + 2y. || The area is x + y. || The area is xy. || The area is 2xy.,The perimeter is 2(x + y). || The perimeter is 2x + 2y. || The area is xy.,1366 +PSBBSW7,2,Multiple Choice (select 1),Multiple Choice,"

Han and Priya want to know the mean height of the 30 students in their dance class. They each select a random sample of 5 students.

+

 

+
    +
  • The mean height for Han's sample is 59 inches.
  • +
  • The mean height for Priya's sample is 61 inches.
  • +
+

 

+

Are the population means different?

",,,Yes || No,No,257090 +PRABFMAH,1,Multiple Choice (select all),Check All That Apply,"

Pineapples were packed in three large crates. For each crate, the weight of every pineapple in the crate was recorded. Here are three box plots that summarize the weights in each crate.

+

 

+

+

 

+

Select all of the statements that are true, according to the box plots.

",,,A. The weights of the pineapples in Crate 1 were the most variable. || B. The heaviest pineapple was in Crate 1. || C. The lightest pineapple was in Crate 1. || D. Crate 3 had the greatest median weight and the greatest IQR. || E. More than half the pineapples in Crate 1 and Crate 3 were heavier than the heaviest pineapple in Crate 2.,A. The weights of the pineapples in Crate 1 were the most variable. || B. The heaviest pineapple was in Crate 1. || E. More than half the pineapples in Crate 1 and Crate 3 were heavier than the heaviest pineapple in Crate 2.,80061 +PRABEUF9,1,Multiple Choice (select all),Check All That Apply,"

Select all expressions that are equivalent to 5x  15  20x + 10.

",,,"

5x - (15 + 20x) + 10

||

5x + -15 + -20x + 10

||

5(x - 3 - 4x + 2)

||

-5 (-x + 3 + 4x + -2)

||

-15x - 5

||

-5(3x + 1)

||

-15x - 13

",

5x - (15 + 20x) + 10

||

5x + -15 + -20x + 10

||

5(x - 3 - 4x + 2)

||

-5 (-x + 3 + 4x + -2)

||

-15x - 5

||

-5(3x + 1)

,43371 +PRABQMBJ,1,Multiple Choice (select all),Check All That Apply,

Select all the expressions that are greater than 3.

,,,1.67 + 1.4 || 2.97 + 0.004 || 3.017 - 0.05 || 4.5 - 1.47 || 5.503 - 2.52,1.67 + 1.4 || 4.5 - 1.47,8476 +PSBCNNT,1,Multiple Choice (select 1),Multiple Choice,"

The equation S = 50 + 45w represents the savings S, after w weeks working and depositing money into a savings account at the bank.

+

 

+

Is there a proportional relationship between S and w?

",,,Yes || No,No,408662 +PSBBMXK,4,Multiple Choice (select 1),Multiple Choice,"

For this sample, the mean absolute deviation is 19.6, and the interquartile range is 15. Which of these values is associated with the measure of center that you chose?

",,,Mean absolute deviation (MAD) || Interquartile range (IQR),Interquartile range (IQR),230845 +PSBBRED,2,Multiple Choice (select 1),Multiple Choice,

Is the height of the candle a function of time?

,,,Yes || No,Yes,249681 +PSBBZMW,3,Multiple Choice (select 1),Multiple Choice,

Now compare the volumes of these boxes in cubic centimeters. Which box will hold the most 1-centimeter cubes? 

,,,"Box A || Box B || Box C || Boxes A,B,C fits the same number of 1-centimeter cubes",Box C,295992 +PRABE57Z,1,Multiple Choice (select all),Check All That Apply,

Select all the polyhedra.

,,,"

||

||

||

||

","

||

||

",250066 +PSBH8S,1,Multiple Choice (select 1),Multiple Choice,"

Label each event with one of these options:

+

impossible,   unlikely,   equally likely as not,   likely,   certain

+

 

+

You will win grand prize in a raffle if you purchased 2 out of the 100 tickets.

",,,impossible || unlikely || equally likely as not || likely || certain,unlikely,41980 +PSBX69,11,Multiple Choice (select 1),Multiple Choice,"

For the statement below, decide if it is true or false. 

+

 

+

The coordinates of point H are solutions to the equation for line .

",,1,True || False,TRUE,114342 +PRABPUBW,1,Multiple Choice (select 1),Multiple Choice,

All of these sequences of transformations would return a shape to its original position except?

,,,"Translate 3 units up, then 3 units down. ||

Reflect over line p, then reflect over line p again.

|| Translate 1 unit to the right, then 4 units to the left, then 3 units to the right. ||

Rotate 120° counterclockwise around center C, then rotate 220° counterclockwise around center C again.

","

Rotate 120° counterclockwise around center C, then rotate 220° counterclockwise around center C again.

",40538 +PSBB3M4,1,Multiple Choice (select 1),Multiple Choice,"

A student got 16 out of 21 questions correct on a quiz. Use mental estimation to answer these questions.

+

 

+

Did the student answer less than or more than 80% of the questions correctly?

",,,Less than 80% || More than 80%,Less than 80%,307360 +PRABFKZ5,1,Multiple Choice (select all),Check All That Apply,"

Select all the expressions that represent the total area of the large rectangle.

+

 

+

",,,"

5(x + y)

||

5 + xy

||

5x + 5y

||

2(5 + x + y)

||

5xy

","

5(x + y)

||

5x + 5y

",6876 +PRABQPSC,1,Multiple Choice (select all),Check All That Apply,

Select all the true statements.​

,,,Dilations always increase the length of line segments. || Dilations take perpendicular lines to perpendicular lines. || Dilations of an angle are congruent to the original angle. || Dilations increase the measure of angles. || Dilations of a triangle are congruent to the original triangle. || Dilations of a triangle are similar to the original triangle.,Dilations take perpendicular lines to perpendicular lines. || Dilations of an angle are congruent to the original angle. || Dilations of a triangle are similar to the original triangle.,239691 +PRABETDC,1,Multiple Choice (select all),Check All That Apply,

Select all ratios that are equivalent to 4 : 5.

,,,2 : 2.5 || 2 : 3 || 3 : 3.75 || 7 : 8 || 8 : 10 || 14 : 27.5,2 : 2.5 || 3 : 3.75 || 8 : 10,363127 +PRABEVKU,1,Multiple Choice (select all),Check All That Apply,

Select all the tables that could represent proportional relationships.

,,," + + + + + + + + + + + + + + + + + + +
xy
23
57.5
1015
|| + + + + + + + + + + + + + + + + + + +
xy
00
37
614
|| + + + + + + + + + + + + + + + + + + +
xy
02
24
46
"," + + + + + + + + + + + + + + + + + + +
xy
23
57.5
1015
|| + + + + + + + + + + + + + + + + + + +
xy
00
37
614
",152397 +PSBUC9,7,Multiple Choice (select 1),Multiple Choice,"

Mai, Clare, and Noah are making signs to advertise the school dance. It takes Mai 6 minutes to complete a sign, it takes Clare 8 minutes to complete a sign, and it takes Noah 5 minutes to complete a sign. They keep working at the same rate for a half hour.

+

 

+

Will all three students complete a sign at the same time?

",,,Yes || No,No,91453 +PRABEU32,1,Multiple Choice (select 1),Multiple Choice,"

Diego measured the length of a pen to be 22 cm. The actual length of the pen is 23 cm.

+

 

+
+

Which of these is closest to the percent error for Diego’s measurement?

+
",,,4.3% || 4.5% || 95.7% || 104.5%,4.30%,247727 +PRABQPKS,1,Multiple Choice (select 1),Multiple Choice,"

Tyler has run 15 miles this month. For the rest of the month, he plans to run the same number of miles each day. There are 12 days left in the month. Before the end of the month, Tyler needs to run at least 35 miles to meet his goal.

+

 

+

Which of these inequalities describes this situation, where m is the number of miles Tyler runs each day to meet his goal?

",,,

12m - 15 ≥ 35

||

12m - 15 ≤ 35

||

35 ≥ 15 + 12m

||

35 ≤ 15 + 12m

,

35 ≤ 15 + 12m

,163692 +PSBCM74,1,Multiple Choice (select all),Check All That Apply,"

Select all of the equations that describe the situation. If you get stuck, draw a diagram.

+

 

+

 

+

Clare has 8 fewer books than Mai. If Mai has 26 books, how many books does Clare have?

",,,

26 − 8

||

26 8

||

26

||

26 − x

,

26 − 8

||

26

||

26 − x

,406161 +PSBBFAV,2,Multiple Choice (select 1),Multiple Choice,"

How do you travel to school on most days? Choose one.

+

 

+
 
",,,Walk || Bike || Scooter or Skateboard || Car || School Bus || Public Transport || Other,Walk || Bike || Scooter or Skateboard || Car || School Bus || Public Transport || Other,198387 +PSBBK6,2,Multiple Choice (select 1),Multiple Choice,"

Is 23 < 34, or is 34 < 23?

",,,"

 

+

23 < 34

+

 

||

 

+

34 < 23

+

 

","

 

+

23 < 34

+

 

",6476 +PSB5RF,1,Multiple Choice (select 1),Multiple Choice,"

Mai says that the equation 2x + 2 = x + 1 has no solution because the left hand side is double the right hand side. Do you agree with Mai?

",,,Yes || No,No,146473 +PSBMSN,1,Multiple Choice (select 1),Multiple Choice,"

Jada poured 3.7 liters of water into a partially-filled bucket. The bucket then contained 15.3 liters.

+

 

+

Which diagram (A, B, or C) represents this situation?

",,,"

||

||

","

",55944 +PSBBZ52,3,Multiple Choice (select 1),Multiple Choice,"

If the comic book authors give the new hero the ability to fly, will that please most of the readers?

",,,Yes || No,No,298561 +PSB962,1,Multiple Choice (select 1),Multiple Choice,"

Jada wants to know if there is a meaningful difference in the mean number of friends on social media for teens and adults. She looks at the friend count for the 10 most popular of her friends and the friend count for 10 of her parents’ friends. She then computes the mean and MAD of each sample and determines there is a meaningful difference.

+

 

+

Jada’s dad later tells her he thinks she has not come to the right conclusion. Jada checks her calculations and everything is right. Do you agree with her dad?

",,,Yes || No,Yes,170227 +PSBCBXY,1,Multiple Choice (select 1),Multiple Choice,"

Decide whether the quantity can be represented by a positive number or by a negative number. 

+

 

+

The aquarium leaked 2 gallons of water.

",,,positive || negative,negative,354353 +PSBBD5P,3,Multiple Choice (select 1),Multiple Choice,"

Noah says that 24 ·32 = 66. Tyler says that 24 ·42 = 162.

+

 

+

Do you agree with Tyler?

",,,Yes || No,Yes,192377 +PSBC47,1,Multiple Choice (select 1),Multiple Choice,"

 

+

+

The actual length of Walls A, C, and D are 2.5 m, 4 m, and 3.75 m, respectively.

+

 

+

If Noah wanted to draw another floor plan on which Wall C was 20 cm, would 1 cm to 5 m be the right scale to use?

",,,Yes || No,No,15259 +PRABFF3K,1,Multiple Choice (select all),Check All That Apply,"

Select all the expressions that equal 3.150.45.

",,,"

(3.15) · (0.45)

||

(3.15) ÷ (0.45)

||

(3.15) · 10.45

||

(3.15) ÷ 45100

||

(3.15) · 10045

||

0.453.15

","

(3.15) ÷ (0.45)

||

(3.15) · 10.45

||

(3.15) ÷ 45100

||

(3.15) · 10045

",222661 +PRABFGVZ,1,Multiple Choice (select all),Check All That Apply,"

Select all the expressions that are equivalent to 4b.

",,,"

b + b + b + b

||

b +4

||

2b + 2b

||

b · b · b · b

||

b ÷ 14

","

b + b + b + b

||

2b + 2b

||

b ÷ 14

",189763 +PRABFS44,1,Multiple Choice (select all),Check All That Apply,"

Select the unit from the list that you would use to measure the object.

+

 

+

The weight or mass of a pencil

",,,centimeters || cups || feet || gallons || grams || inches || kilograms || kilometers || liters || meters || miles || milliliters || millimeters || ounces || pounds || quarts || tons || yards,grams || ounces,172779 +PSBX7,6,Multiple Choice (select 1),Multiple Choice,

Can -8 be a solution to n in this context? 

,,,Yes || No,No,2951 +PSBZYY,1,Multiple Choice (select 1),Multiple Choice,"

Here is a scatter plot that shows weights and fuel efficiencies of 20 different types of cars.

+

If a car weighs 1,750 kg, would you expect its fuel efficiency to be closer to 22 mpg or to 28 mpg?

",,,22 mpg || 28 mpg,22 mpg,124523 +PRABQP6D,1,Multiple Choice (select all),Check All That Apply,"

Select all the expressions that are equal to .

",,,"7,610 ÷ 50 || 762 ÷ 6 || 76.1 ÷ 0.05 || 7.61 ÷ 0.5 || 0.761 ÷ 0.005","7,610 ÷ 50 || 0.761 ÷ 0.005",505841 +PRABUZ7Y,1,Multiple Choice (select 1),Multiple Choice,"

A standard number cube has the numbers 1 through 6 on its faces. 

+

 

+

A standard number cube is rolled. What is the probability of rolling a number less than or equal to 2?

",,,"

16

||

26

||

36

||

46

","

26

",349910 +PSBBE7Q,6,Multiple Choice (select 1),Multiple Choice,"

Which is faster, light through ice or light through diamond?

",,,Light through ice || Light through diamond,Light through ice,198635 +PSBQCW,1,Multiple Choice (select 1),Multiple Choice,"

Here are two calculations of 0.2 + 0.05.

+

 

+ + + + + + + +
     0 . 2+  0 . 0 5     0 . 2 5     0 . 2+  0 . 0 5     0 . 0 7
+

 

+

Which one is correct?

",,,"

     0 . 2+  0 . 0 5     0 . 2 5

||

     0 . 2+  0 . 0 5     0 . 0 7

","

     0 . 2+  0 . 0 5     0 . 2 5

",69196 +PSBBZQC,1,Multiple Choice (select 1),Multiple Choice,"

 Is the statement true or false?

+

 

+

45100·72=4572·100

",,0,True || False,FALSE,296344 +PSBB47J,1,Multiple Choice (select 1),Multiple Choice,"

Clare has a -liter bottle full of water. A cone-shaped paper cup has diameter 10 cm and slant height 13 cm as shown. Can she pour all the water into one paper cup, or will it overflow?

+

 

+

(The volume of a cone is  and  liter = 500 cubic centimeters.)

+

 

+

",,,She can pour all the water into one paper cup. || The paper cup will overflow.,The paper cup will overflow.,315454 +PSBBCDY,6,Multiple Choice (select 1),Multiple Choice,"

Can Jada use these data displays to find the exact mean?

+

 

+

",,,yes || no,no,182704 +PSBDHBJ,1,Multiple Choice (select 1),Multiple Choice,"

The equation F = 95C + 32 relates temperature measured in degrees Celsius, C, to degrees Fahrenheit, F.

+

 

+

Is the relationship between C and F proportional?

",,,Yes || No,No,560745 +PRABEVSX,1,Multiple Choice (select all),Check All That Apply,"

Jada is three years older than twice her brother’s age.

+

 

+

Select all the equations that correctly represent the relationship between Jada’s age j and her brother’s age b.

",,,"

j=2b+3

||

j=2(b+3)

||

j=b2-3

||

b=2j+3

||

b=j-32

||

b=j2-3

","

j=2b+3

||

b=j-32

",162424 +PRABUZ7Z,1,Multiple Choice (select all),Check All That Apply,

Select all the events that have a probability of 0.

,,,"Choosing a red block from a bag with 9 white blocks and 1 red block. || Rolling a 6, three times in a row, on a standard number cube. || Rolling a 7 on a standard number cube. || Opening a 400-page book to exactly page 231. || Opening a 400-page book a page number greater than 450.",Rolling a 7 on a standard number cube. || Opening a 400-page book a page number greater than 450.,349992 +PSB9XX,1,Multiple Choice (select 1),Multiple Choice,"

For the pair, some of the angles of two triangles in degrees are given. Use the information to decide if the triangles are similar or not.

+

 

+

 

+

Triangle G: 121, ___, ___; Triangle H: 70, ___, ___

",,,similar || not similar,not similar,168820 +PSBBMUY,2,Multiple Choice (select 1),Multiple Choice,"

Driving at a constant speed of 70 mph, will it be possible to make this trip in 3 hours?

",,,Yes || No,No,230204 +PRABEVJY,1,Multiple Choice (select 1),Multiple Choice,"

Which of these points is closest to the point (7, 1)?

",,,"(4, 1) || (7, -1) || (7, 4) || (11, 1)","(7, -1)",3724 +PSBCWRE,1,Multiple Choice (select 1),Multiple Choice,"

This diagram shows two small squares and three rectangles each composed of 10 small squares.

+

+

 

+

Priya says that this diagram can represent 320. Do you agree with Priya?

",,,yes || no,yes,455397 +PSB5S8,1,Multiple Choice (select 1),Multiple Choice,"

If two rectangles have the same perimeter, do they have to be congruent?

",,,Yes || No,No,146791 +PRABEPR3,1,Multiple Choice (select all),Check All That Apply,"

Select all the irrational numbers in the list.

+
 
+
23-12345146491, -99, -100
",,,"

23

||

-12345

||

14

||

64

||

91

||

-99

||

-100

","

14

||

-99

",15689 +PRABEVSQ,1,Multiple Choice (select all),Check All That Apply,"

Select all the lines that have a slope of 

+

 

+

",,,A || B || C || D || E,A || E,239904 +PRABQN9C,1,Multiple Choice (select 1),Multiple Choice,"

A sunken ship is resting at 3,000 feet below sea level. Directly above the ship, a whale is swimming 1,960 feet below sea level. Directly above the ship and the whale is a plane flying at 8,500 feet above sea level.

+

 

+

Select the true statement.

",,,"The distance between the heights of the whale and the plane is -10,460 feet. || The difference in height between the whale and the plane is 10,460 feet. || The difference in height between the whale and the ship is -1,040 feet. || The distance between the heights of the whale and the ship is 1,040 feet.","The distance between the heights of the whale and the ship is 1,040 feet.",24438 +PRABQP58,1,Multiple Choice (select all),Check All That Apply,"

Select all the expressions that equal 6-10.

",,,"

6-5·62

||

1625

||

6-52

||

6-367

||

65·6-368

","

1625

||

6-52

||

6-367

",263664 +PSB5BQ,1,Multiple Choice (select 1),Multiple Choice,"

In one version of trail mix, there are 3 cups of peanuts mixed with 2 cups of raisins. In another version of trail mix, there are 4.5 cups of peanuts mixed with 3 cups of raisins. Are the ratios equivalent for the two mixes?

",,,Yes || No,Yes,143888 +PRABQMA7,1,Multiple Choice (select all),Check All That Apply,"

Diego drew this line plot showing the width, in inches, of all the bolts in a storage bin. Select all the true statements.

+

 

+

",,,"

There are 12 bolts in the storage bin.

||

The widest bolt is 78 inches wide.

||

Half of the bolts are less than 12 inch wide.

||

None of the bolts is exactly 28 inches wide.

||

None of the bolts is exactly 68 inches wide.

||

The difference between the maximum and minimum width of the bolts is 1 inch.

","

There are 12 bolts in the storage bin.

||

None of the bolts is exactly 68 inches wide.

||

The difference between the maximum and minimum width of the bolts is 1 inch.

",256500 +PRABQM3S,1,Multiple Choice (select all),Check All That Apply,"

Mai’s backpack weighs 9 pounds. Han’s backpack weighs 8.3 pounds. Priya’s backpack weighs 7.75 pounds, and Kiran’s backpack weighs 6.125 pounds. Select all the true statements.

",,,Han’s backpack is 2.175 pounds heavier than Kiran’s. || Mai’s backpack is 2.25 pounds heavier than Priya’s. || Han’s backpack is 16.05 pounds heavier than Priya’s. || Kiran’s backpack and Han’s backpack together weigh 14.3125 pounds. || The backpacks weigh 31.175 pounds together.,Han’s backpack is 2.175 pounds heavier than Kiran’s. || The backpacks weigh 31.175 pounds together.,61905 +PRABQKS6,1,Multiple Choice (select all),Check All That Apply,

Select all the expressions that are greater than 1.

,,,"

5 ÷ 910

||

35 ÷ 6

||

45 ÷ 37

||

235 ÷ 135

||

125 ÷ 135

","

5 ÷ 910

||

45 ÷ 37

||

235 ÷ 135

",588511 +PRABQMWG,1,Multiple Choice (select all),Check All That Apply,"

Select all the numbers that point A could reasonably represent on this number line.

+

 

+

",,,0.65 || 1.3 || 1.5 || 1.6 || 1.65,1.6 || 1.65,488652 +PSBBZ52,2,Multiple Choice (select 1),Multiple Choice,

Are most of the sample proportions within 0.1 of your estimate for the population proportion?

,,,Yes || No,Yes,298486 +PRABEVC7,1,Multiple Choice (select 1),Multiple Choice,

How many degrees are there in a right angle?

,,90,60 || 90 || 180 || 360,90,115085 +PSBFMC,2,Multiple Choice (select 1),Multiple Choice,

Jada says that she found three different ways to complete the first question correctly. Do you think this is possible? 

,,,Yes - It is possible || No - It is not possible,Yes - It is possible,28640 +PRABQJSQ,1,Multiple Choice (select all),Check All That Apply,"

Select all the line segments that appear to be parallel to a.

+

 

+

",,,

segment a

||

segment b

||

segment c

||

segment d

||

segment e

||

segment f

,

segment d

||

segment e

,104004 +PSBJDF,1,Multiple Choice (select 1),Multiple Choice,"

Han has a number cube that he suspects is not so standard.

+

 

+
    +
  • Han rolls the cube 100 times, and it lands on a six 40 times.
  • +
  • Kiran rolls the cube 50 times, and it lands on a six 21 times.
  • +
  • Lin rolls the cube 30 times, and it lands on a six 11 times.
  • +
+

 

+
+
+
+

Based on these results, is there evidence to help prove that this cube is not a standard number cube?

+
+
+
",,,Yes || No,Yes,43700 +PSB96F,8,Multiple Choice (select 1),Multiple Choice,"

+

Which model does a better job of predicting the price of a used car from its year?

",,,Model A || Model B,Model A,170383 +PRABJKPQ,1,Multiple Choice (select all),Check All That Apply,

Select all expressions that are equal to 8 − 12 − (6 + 4).

,,,

8 - 6 - 12 + 4

||

8 - 12 - 6 - 4

||

8 - 12 + (6 + 4)

||

8 - 12 - 6 + 4

||

8 - 4 - 12 - 6

,

8 - 12 - 6 - 4

||

8 - 4 - 12 - 6

,214651 +PSBTXU,7,Multiple Choice (select 1),Multiple Choice,"

A group of students is timed while sprinting 100 meters. Each student’s speed can be found by dividing 100 m by their time. Is the statement true or false? 

+

 

+

 Time is a function of speed.

",,1,True || False,TRUE,88965 +PRABE55W,1,Multiple Choice (select all),Check All That Apply,

Select all the polygons.

,,,"

||

||

||

||

||

","

||

",243115 +PSBPP,2,Multiple Choice (select 1),Multiple Choice,

Is there a different triangle Diego could have drawn that would answer the question? 

,,,Yes || No,Yes,1606 +PSBCBAF,1,Multiple Choice (select 1),Multiple Choice,"

A baseball fits snugly inside a transparent display cube. The length of an edge of the cube is 2.9 inches.

+

 

+

Is the baseball’s volume greater than, less than, or equal to 2.93 cubic inches?

",,,greater than 2.9³ || less than 2.9³ || equal to 2.9³,less than 2.9³,350639 +PRABFENA,1,Multiple Choice (select all),Check All That Apply,

Which figure is a triangular prism? Select all that apply.

,,,"

||

||

||

||

","

||

||

",36768 +PRABFBN2,1,Multiple Choice (select 1),Multiple Choice,

A large soup pot holds 20 quarts. What could be its volume in liters?

,,,

7.57

||

19

||

21

||

75.7

,

19

,14371 +PRABQPJ6,1,Multiple Choice (select 1),Multiple Choice,"

This hanger is in balance. There are two labeled weights of 4 grams and 12 grams. The three circles each have the same weight. What is the weight of each circle, in grams? 

+

 

+

",,,"

38

||

1

||

83

||

8

","

83

",308146 +PSBDAN7,1,Multiple Choice (select 1),Multiple Choice,"

Kiran says that -2<-5. Do you agree with Kiran?

",,,Agree || Disagree,Disagree,522597 +PRABFGZR,1,Multiple Choice (select all),Check All That Apply,

Select all the expressions that are equivalent to 64.

,,,

26

||

28

||

43

||

82

||

164

||

322

,

26

||

43

||

82

,297160 +PSBCRRZ,1,Multiple Choice (select 1),Multiple Choice,"

Decide whether the inequality statement is true or false. 

+

 

+

-12.5 > -12

",,0,True || False,FALSE,427265 +PSBBJTA,1,Multiple Choice (select 1),Multiple Choice,"

25 kilogram of soil fills 13 of a container. Can 1 kilogram of soil fit in the container?

",,,Yes || No,Yes,218537 +PSBKEB,1,Multiple Choice (select 1),Multiple Choice,"

Figure B is the image of Figure A when reflected across line ℓ. Are Figure A and Figure B congruent?

+

 

+

+
 
",,,Yes || No,Yes,48569 +PSBBTFY,1,Multiple Choice (select 1),Multiple Choice,"

Which skateboarder is faster: Jada, who travels 2 miles in 12 minutes at a constant speed, or Clare, who travels 2 miles in 10 minutes at a constant speed?

",,,"Jada, who travels 2 miles in 12 minutes at a constant speed || Clare, who travels 2 miles in 10 minutes at a constant speed","Clare, who travels 2 miles in 10 minutes at a constant speed",260638 +PSBCU6,2,Multiple Choice (select 1),Multiple Choice,"

Ten people can dig five holes in three hours. If n people digging at the same rate dig m holes in d hours:

+

 

+

Is n proportional to d when m = 5?

",,,Yes || No,No,13854 +PRABE9ZA,1,Multiple Choice (select all),Check All That Apply,"

Here is a diagram that represents the pints of red and yellow paint in a mixture.

+

 

+

+

 

+

Select all statements that accurately describe the diagram.

",,,"The ratio of yellow paint to red paint is 2 to 6. || For every 3 pints of red paint, there is 1 pint of yellow paint. || For every pint of yellow paint, there are 3 pints of red paint. || For every pint of yellow paint there are 6 pints of red paint. ||

The ratio of red to yellow paint is 6 : 2

","The ratio of yellow paint to red paint is 2 to 6. || For every 3 pints of red paint, there is 1 pint of yellow paint. || For every pint of yellow paint, there are 3 pints of red paint. ||

The ratio of red to yellow paint is 6 : 2

",39085 +PSBDFK7,1,Multiple Choice (select 1),Multiple Choice,"

Here are the approximate populations of three cities in the United States, expressed in scientific notation: San Jose: ; Washington: ; Atlanta: 

+


Lin says that about  more people live in San Jose than in Atlanta. Do you agree with her?

",,,Yes || No,Yes,551634 +PRABEVSP,1,Multiple Choice (select 1),Multiple Choice,"

Which pair of triangles must​ be similar?

+
 
",,,Triangles 1 and 2 each have a 35º angle. || Triangles 3 and 4 are both isosceles. They each have a 40º angle. || Triangle 5 has a 30º angle and a 90º angle. Triangle 6 has a 30º angle and a 70º angle. || Triangle 7 has a 50º angle and a 25º angle. Triangle 8 has a 50º angle and a 105º angle.,Triangle 7 has a 50º angle and a 25º angle. Triangle 8 has a 50º angle and a 105º angle.,239815 +PSBURX,2,Multiple Choice (select 1),Multiple Choice,

Is there more than one point R that works for part a?

,,,Yes || No || Not enough information,No,93881 +PRABQKWC,1,Multiple Choice (select 1),Multiple Choice,"

Which statement shows correct reasoning for finding 12 ÷ 38?

",,,"

Multiply 12 by 8, then divide by 3.

||

Multiply 12 by 3, then divide by 8.

||

Multiply 3 by 8, then divide by 12.

||

Multiply 12 by 18, then multiply by 3.

","

Multiply 12 by 8, then divide by 3.

",21032 +PRABFK3V,1,Multiple Choice (select 1),Multiple Choice,"

The dot plots show the amounts of time that ten U.S. students and ten Australian students took to get to school. Which statement is true about the MAD of the Australian data set?

+

 

+

",,,It is significantly less than the MAD of the U.S. data set. || It is exactly equal to the MAD of the U.S. data set. || It is approximately equal to the MAD of the U.S. data set. || It is significantly greater than the MAD of the U.S. data set.,It is significantly greater than the MAD of the U.S. data set.,363244 +PRABQMW3,1,Multiple Choice (select all),Check All That Apply,

Select all the numbers that are common multiples of 4 and 6.

,,,1 || 2 || 10 || 12 || 24 || 40 || 60,12 || 24 || 60,410833 +PRABQJQT,1,Multiple Choice (select all),Check All That Apply,"

Select all the expressions that give the area of the figure in square units.

+

",,,7 x 5 || (7 + 5) x (5 + 2) || (7 x 3) + (5 x 2) || 7 x 5 x 5 x 2 x 2 x 3 || (7 x 5) - (2 x 2),(7 x 3) + (5 x 2) || (7 x 5) - (2 x 2),543878 +PSBDSKY,1,Multiple Choice (select 1),Multiple Choice,"

A ribbon is 24 inches long. You need to cut it into pieces so that all the pieces are the same length.

+

 

+

Can you cut the ribbon into 5-inch pieces?

",,,Yes || No,No,608636 +PSBBAQY,1,Multiple Choice (select 1),Multiple Choice,"

Which is a better deal, 5 tickets for $12.50 or 8 tickets for $20.16? 

",,,5 tickets for $12.50 || 8 tickets for $20.16,5 tickets for $12.50,173472 +PRABQPRM,1,Multiple Choice (select all),Check All That Apply,"

Select all the true statements.

+
 
",,,Two rhombuses with the same side lengths are always congruent. || Two squares with the same side lengths are always congruent. || Two quadrilaterals with the same side lengths are always congruent. || Two rectangles with the same side lengths are always congruent. || Two parallelograms with the same side lengths are always congruent.,Two squares with the same side lengths are always congruent. || Two rectangles with the same side lengths are always congruent.,504583 +PRABFERD,1,Multiple Choice (select 1),Multiple Choice,

Mai had $14.50. She spent $4.35 at the snack bar and $5.25 at the arcade. What is the exact amount of money Mai has left?

,,,

$9.60

||

$10.60

||

$4.90

||

$5.90

,

$4.90

,274984 +PSBX69,3,Multiple Choice (select 1),Multiple Choice,"

For the statement below, decide if it is true or false. 

+

 

+

The coordinates of the point G make both the equation for line m and the equation for line n true.

+

 

",,1,True || False,TRUE,113306 +PRABQK7R,1,Multiple Choice (select all),Check All That Apply,"

Select all the equations represented by this tape diagram.

+

 

+

",,,6 + 6 + 6 + 6 + 6 = ? || 5 + 6 = ? || ? = 6 · 5 || ? = 6 · 6 · 6 · 6 · 6 || ? ÷ 5 = 6 || 5 = ? ÷ 6,6 + 6 + 6 + 6 + 6 = ? || ? = 6 · 5 || ? ÷ 5 = 6 || 5 = ? ÷ 6,299836 +PRABQPJB,1,Multiple Choice (select all),Check All That Apply,"

Select all the triangles that can be rotated to match up with Triangle 1.

+

 

+

",,,"

||

||

||

","

||

",11215 +PSBZX3,1,Multiple Choice (select 1),Multiple Choice,"

Choose the inequality that best matches the given situation.

+

 

+

The Chemistry Club is experimenting with different mixtures of water with a certain chemical (sodium polyacrylate) to make fake snow.
To make each mixture, the students start with some amount of water, and then add 17 of that amount of the chemical, and then 9 more grams of the chemical. The chemical is expensive, so there can’t be more than a certain number of grams of the chemical in any one mixture.

",,,"

17x+926.25

||

9x+1726.25

||

26.25x+917

||

17x+26.259

","

17x+926.25

",124358 +PRABQN7F,1,Multiple Choice (select 1),Multiple Choice,"

It takes Diego 124 of an hour to complete a lap on a circular bike track. The track is 13 mile long. What is Diego’s bike speed?

",,,"

18 mile per hour

||

18 hours per mile

||

8 miles per hour

||

8 hours per mile

",

8 miles per hour

,75212 +PSB5PB,1,Multiple Choice (select 1),Multiple Choice,"

Here are some line segments.

+

 

+

+

 

+

Which segment is a dilation of BC using A as the center of dilation and a scale factor of 23?

+
 
",,,ED || GJ || FH,FH,145792 +PSBVKV,1,Multiple Choice (select 1),Multiple Choice,

Which shaded region is larger?

,,,"

||

","

",99309 +PSBCN7,1,Multiple Choice (select 1),Multiple Choice,"

Priya, Jada, Han, and Diego are playing a game. They stand in a circle in this order and take turns playing a game.

+

Priya says, SAFE. Jada, standing to Priya's left, says, OUT and leaves the circle. Han is next: he says, SAFE. Then Diego says, OUT and leaves the circle. At this point, only Priya and Han are left. They continue to alternate. Priya says, SAFE. Han says, OUT and leaves the circle. Priya is the only person left, so she is the winner. Priya says, “I knew I’d be the only one left, since I went first.”

+

Record this game on paper a few times with different numbers of players. Does the person who starts always win?

",,,Yes || No,No,12541 +PRABEVTP,1,Multiple Choice (select 1),Multiple Choice,"

A sphere has radius 2.7 centimeters.

+

 

+

+

 

+

What is its volume, to the nearest cubic centimeter?

",,82,23 || 26  || 62 || 82,82,297864 +PRABQMBS,1,Multiple Choice (select 1),Multiple Choice,"

Which is closest to the quotient ?

",,,"1,000 || 10,000 || 100,000 || 1,000,000","1,000,000",278455 +PSBEUH,1,Multiple Choice (select all),Check All That Apply,"

Here is a circle with center H and some line segments and curves joining points on the circle.

+

 

+

Identify examples of diameter.

+

+

 

",,,AE || AH || BH || BF || CE || DG || DH || EH || FH || GH,AE || DG,23899 +PRABP75T,1,Multiple Choice (select all),Check All That Apply,"

Salt and sugar give two distinctly different tastes, one salty and the other sweet. In a mixture of salt and sugar, it is possible for the mixture to be salty, sweet or both. Will any of these mixtures taste exactly the same?

",,,"Mixture A: 2 cups water, 4 teaspoons salt, 0.25 cup sugar || Mixture B: 1.5 cups water, 3 teaspoons salt, 0.2 cup sugar || Mixture C: 1 cup water, 2 teaspoons salt, 0.125 cup sugar || None of these mixtures taste the same.","Mixture A: 2 cups water, 4 teaspoons salt, 0.25 cup sugar || Mixture C: 1 cup water, 2 teaspoons salt, 0.125 cup sugar",48435 +PSBB6YN,2,Multiple Choice (select 1),Multiple Choice,"

Based on the dot plots, which estimate is more likely to be accurate? 

",,,Sample 1 || Sample 2,Sample 1,325378 +PSB3HJ,1,Multiple Choice (select 1),Multiple Choice,"

True or false:

The points (6, 13), (21, 33), and (99, 137) all lie on the same line. The equation of the line is y = 43x + 5. 

",,1,True || False,TRUE,133257 +PRABQPSK,1,Multiple Choice (select 1),Multiple Choice,"

Select the true statement.

+
 
",,,Dilations of an angle must be congruent to the original angle. || Dilations of a triangle must be congruent to the original triangle. || Dilations of a segment must be congruent to the original segment. || Dilations of a circle must be congruent to the original circle.,Dilations of an angle must be congruent to the original angle.,28184 +PSBD3T,1,Multiple Choice (select all),Check All That Apply,"

It took Priya 5 minutes to fill a cooler with 8 gallons of water from a faucet that was flowing at a steady rate. Let w be the number of gallons of water in the cooler after t minutes.

+

 

+

Which of the following equations represent the relationship between w and t? Select all that apply.

",,,w = 1.6t || w = 0.625t || t = 1.6w || t = 0.625w,w = 1.6t || t = 0.625w,19877 +PSBB6PY,4,Multiple Choice (select 1),Multiple Choice,"

",,,< || = || >,<,323959 +PSBB93N,1,Multiple Choice (select 1),Multiple Choice,"

Jada says: “If you multiply a number by 0.001, the decimal point of the number moves three places to the left.”

+

 

+

Do you agree with her statement?

",,,I agree || I disagree,I agree,343445 +PSB6EU,1,Multiple Choice (select 1),Multiple Choice,"

A cylinder can be constructed from a piece of paper by curling it so that you can glue together two opposite edges (the dashed edges in the figure).

+

 

+

+

If you wanted to increase the volume inside the resulting cylinder, would it make more sense to double x, y , or does it not matter?

",,,Double x || Double y || It does not matter,Double x,150182 +PSBBFSQ,2,Multiple Choice (select 1),Multiple Choice,

Which student’s scores show greater variability?

,,,Student A || Student B,Student B,201945 +PRABQMXJ,1,Multiple Choice (select 1),Multiple Choice,"

There are 9 children in a class who take the bus to school, and there are 15 total children in the class. What percentage of the children take the bus to school?

",,,90% || 60% || 9% || 0.6%,60%,4091 +PRABFMAG,1,Multiple Choice (select all),Check All That Apply,"

Here is a box plot that summarizes data for the time, in minutes, that a fire department took to respond to 100 emergency calls. 

+

+

 

+

Select all the statements that are true, according to the box plot.

",,,

Most of the response times were under 13 minutes.

||

Fewer than 30 of the response times were over 13 minutes.

||

More than half of the response times were 11 minutes or greater.

||

There were more response times that were greater than 13 minutes than those that were less than 9 minutes.

||

About 75% of the response times were 13 minutes or less.

,

Most of the response times were under 13 minutes.

||

Fewer than 30 of the response times were over 13 minutes.

||

About 75% of the response times were 13 minutes or less.

,65288 +PSBNT9,1,Multiple Choice (select all),Check All That Apply,

Which graphs could not represent a proportional relationship?

,,,"

||

||

||

","

||

",61559 +PRABQTPR,1,Multiple Choice (select all),Check All That Apply,"

The shape is composed of three squares and two semicircles. Select all the expressions that correctly calculate the perimeter of the shape.

+

 

+

+

 

",,,40 + 20π || 80 + 20π || 120 + 20π || 300 + 100π || 10 + 10 + 10π + 10 + 10 + 10π,40 + 20π || 10 + 10 + 10π + 10 + 10 + 10π,270690 +PRABE6XR,1,Multiple Choice (select all),Check All That Apply,"

Prism A and Prism B are rectangular prisms.

+
    +
  • Prism A is 3 inches by 2 inches by 1 inch.
  • +
  • Prism B is 1 inch by 1 inch by 6 inches.
  • +
+

 

+

Select all statements that are true about the two prisms.

",,,They have the same volume || They have the same number of faces || More inch cubes can be packed into Prism A than into Prism B || The two prisms have the same surface area || The surface area of Prism B is greater than that of Prism A,They have the same volume || They have the same number of faces || The surface area of Prism B is greater than that of Prism A,248037 +PSBBYDD,1,Multiple Choice (select 1),Multiple Choice,"

A grocery store sells bags of oranges in two different sizes.

+

 

+
    +
  • The 3-pound bags of oranges cost $4.
  • +
  • The 8-pound bags of oranges for $9.
  • +
+

 

+

Which oranges cost less per pound?

",,,

The 8-pound bags

||

The 3-pound bags

,

The 8-pound bags

,288360 +PRABQPTJ,1,Multiple Choice (select 1),Multiple Choice,

Which of these points is closest to the y-axis?

,,,"(-6, 0) || (-2, 12) || (4, 2) || (5, 1)","(-2, 12)",3634 +PSBCBCJ,5,Multiple Choice (select 1),Multiple Choice,

Were the distances in the second data set more variable or less variable compared to those in the first round? 

,,,

More Variable

||

Less Variable

,

Less Variable

,351005 +PSBBB8S,1,Multiple Choice (select 1),Multiple Choice,

One rectangle measures 2 units by 7 units. A second rectangle measures 11 units by 37 units. Are these two figures scaled versions of each other?

,,,Yes || No,No,181638 +PSBDC9D,1,Multiple Choice (select 1),Multiple Choice,"

Sports drinks use sodium (better known as salt) to help people replenish electrolytes. Here are the nutrition labels of two sports drinks.

+

 

+

+

 

+

Which of these drinks is saltier?

",,,Drink A || Drink B,Drink A,537832 +PSBVHJ,1,Multiple Choice (select 1),Multiple Choice,"

A scientist wants to know if there is a meaningful difference between two groups of gels that grow bacteria. He randomly selects five gels from each group, and counts the number of bacteria spots on each gel:

+

 

+

Group A: 9, 12, 13, 14, 17

+

Group B: 6, 5, 8, 13, 8

+

 

+

Is there a meaningful difference between the two groups?

",,,Yes || No,Yes,98828 +PSBS9K,1,Multiple Choice (select 1),Multiple Choice,"

28 students travel on a field trip. They bring a van that can seat 12 students. Elena and Kiran’s teacher asks parents to drive cars that seat 3 children each to transport the rest of the students.

+

 

+

Elena wonders if she should use the inequality  or  to figure out how many cars are needed. Kiran doesn’t think it matters in this case. Do you agree with Kiran?

",,,Yes || No,Yes,85212 +PSBBR99,3,Multiple Choice (select 1),Multiple Choice,

Is there an association between the country’s budget and their spending in these areas? 

,,,Yes || No,Yes,254278 +PRABE3GZ,1,Multiple Choice (select all),Check All That Apply,"

Select all segments that could represent a corresponding height if the side m is the base.

+

 

+

+

 

+

 

",,,

e

||

f

||

g

||

h

||

j

||

k

||

n

,

e

||

f

||

j

||

k

,504115 +PSB6H3,1,Multiple Choice (select 1),Multiple Choice,"

Two plots of land have very different shapes. Noah said that both plots of land have the same area. Do you agree with Noah?

+

 

+

",,,Yes || No,Yes,150868 +PRABEUQ8,1,Multiple Choice (select 1),Multiple Choice,"

Each set of three numbers represents the lengths, in units, of the sides of a triangle. Which set can not be used to make a triangle?

",,,"7, 6, 14 || 4, 4, 4 || 6, 6, 2 || 7, 8, 13","7, 6, 14",130499 +PRABQPTY,1,Multiple Choice (select all),Check All That Apply,"

Select all the points that are on the graph of the line 2x + 4y = 20.

",,,"(0, 5) || (0, 10) || (1, 2) || (1, 4) || (5, 0) || (10, 0)","(0, 5) || (10, 0)",79065 +PRABFG35,1,Multiple Choice (select all),Check All That Apply,"

Lin says, “I took the number 8, and then multiplied it by the square of 3.” Select all expressions that equal Lin’s answer.

",,,8 ⋅ 3² || (8 · 3)² || 8 · 2³ || 3² · 8 || 24² || 72,8 ⋅ 3² || 3² · 8 || 72,46101 +PSBBFAV,11,Multiple Choice (select 1),Multiple Choice,"

If you could meet one of these celebrities, who would you choose?

+

 

+
 
",,,A city or state leader || A champion athlete || A movie star || A musical artist || A best-selling author,A city or state leader || A champion athlete || A movie star || A musical artist || A best-selling author,199218 +PRABQTFC,1,Multiple Choice (select 1),Multiple Choice,"

A map of Utah is shown. Which area is closest to the area of Utah?

+

 

+

",,,"1,240 square miles || 87,150 square miles || 94,500 square miles || 119,000 square miles","87,150 square miles",606133 +PSBNVZ,1,Multiple Choice (select 1),Multiple Choice,"

Lin wants to know if flipping a quarter really does have a probability of 12 of landing heads up, so she flips a quarter 10 times. It lands heads up 3 times and tails up 7 times. Has she proven that the probability is not 12?

",,,Yes || No,No,61911 +PSBBG5E,1,Multiple Choice (select 1),Multiple Choice,"

Noah is growing three different types of trees. He is keeping track of the height of each tree over time.

+

 

+
    +
  • This equation represents the height (in feet) of the first tree over months. h = 3.5m

  • +
+ + + + + + + + + + + +
The second tree’s information is in the table: This graph shows how long, in months, it takes the third tree to grow feet.
+

 

+ + + + + + + + + + + + + + + + + + + + + + + +
time (months)height of tree (feet)
25
410
512.5
820
+
+

Which tree is growing the slowest?

",,,First tree || Second tree || Third tree,Third tree,209506 +PSB9FG,1,Multiple Choice (select 1),Multiple Choice,"

Lin and Noah are packing small cubes into a cube with an edge length of inches. Lin is using cubes with an edge length of inch, and Noah is using cubes with an edge length of inch.

+

 

+

Who would need more cubes to fill the -inch cube? Be prepared to explain your reasoning.

",,,Lin || Noah,Noah,165863 +PSB3SQ,2,Multiple Choice (select 1),Multiple Choice,"

Place the decimal point in the appropriate location in the quotient:

+

 

+

+
 
",,6,0.608571 || 6.08571 || 60.8571 || 608.571 || 6085.71 || 60857.1,6.08571,134923 +PRABETY5,1,Multiple Choice (select all),Check All That Apply,"

Select all expressions that represent a correct solution to the equation 6(x+4)=20.

",,,"

(20 − 4) ÷ 6

||

1620 - 4

||

20 − 6 − 4

||

20 ÷ 6 − 4

||

1620 - 24

||

(20 − 24) ÷ 6

","

20 ÷ 6 − 4

||

1620 - 24

||

(20 − 24) ÷ 6

",369393 +PSBBBFB,1,Multiple Choice (select 1),Multiple Choice,"

Are these two triangles identical?

+

 

+
+
+

+
+
",,,Yes || No,No,177311 +PSBCVBZ,1,Multiple Choice (select 1),Multiple Choice,"

Andre ran 2 kilometers in 15 minutes, and Jada ran 3 kilometers in 20 minutes. Both ran at a constant speed.

+

 

+

Did they run at the same speed?

",,,Yes || No,No,447809 +PSBB27S,1,Multiple Choice (select 1),Multiple Choice,"

In a certain city in France, they gain 2 minutes of daylight each day after the spring equinox (usually in March), but after the autumnal equinox (usually in September) they lose 2 minutes of daylight each day.

+

 

+

Which of the graphs is most likely to represent the graph of daylight for the month after the spring equinox?

",,,"

||

||

||

","

",304444 +PRABQKRY,1,Multiple Choice (select 1),Multiple Choice,

Lin’s family has completed 70% of a trip. They have traveled 35 miles. How far is the trip? 

,,,24.5 miles || 50 miles || 59.5 miles || 200 miles,50 miles,560450 +PSBBACU,5,Multiple Choice (select 1),Multiple Choice,"
+

On which item did she spend the most amount of money? 

+
",,,doughnuts || straws || hot dogs || pizza || apples || french fries,pizza,171657 +PRABFS48,1,Multiple Choice (select all),Check All That Apply,"

Select the unit from the list that you would use to measure the object.

+

 

+

The length of a fingernail clipping

",,,centimeters || cups || feet || gallons || grams || inches || kilograms || kilometers || liters || meters || miles || milliliters || millimeters || ounces || pounds || quarts || tons || yards,millimeters,173266 +PSBNEN,3,Multiple Choice (select 1),Multiple Choice,"

Lin and Diego travel in cars on the highway at constant speeds. Decide who was traveling faster.

+

 

+

After stopping for lunch, they travel at different speeds. To travel the next 60 miles, it takes Lin 65 minutes and it takes Diego 70 minutes.

",,,Lin || Diego,Lin,59398 +PSBBS47,1,Multiple Choice (select all),Check All That Apply,"

Here are three fractions: 345668. Two of these fractions are equivalent to each other. Which two?

",,,"

34

||

56

||

68

","

34

||

68

",258570 +PSB9FG,2,Multiple Choice (select 1),Multiple Choice,"

If Lin and Noah use their small cubes to find the volume of the -inch cube, would they get the same value?

",,,Yes || No,Yes,166007 +PSBVEV,1,Multiple Choice (select 1),Multiple Choice,"

Two classes of students took an exam.

+

 

+

Here is a list of the scores in Class A:

+

 

+

65, 70, 70, 80, 80, 85, 85, 85, 90, 90, 100

+

 

+

Here is a box plot that shows the scores in Class B:

+

 

+
+
 
+
 
+
 
+
Which class had better overall results on the exam?
",,,Class A || Class B,Class A,98217 +PSBBHTM,1,Multiple Choice (select all),Check All That Apply,"

+

A cylinder with diameter 3 centimeters and height 8 centimeters is filled with water. Decide which figures described here, if any, could hold all of the water from the cylinder. 

",,,"1. Cone with a height of 8 centimeters and a radius of 3 centimeters. || 2. Cylinder with a diameter of 6 centimeters and height of 2 centimeters. || 3. Rectangular prism with a length of 3 centimeters, width of 4 centimeters, and height of 8 centimeters. || 4. Sphere with a radius of 2 centimeters.","1. Cone with a height of 8 centimeters and a radius of 3 centimeters. || 2. Cylinder with a diameter of 6 centimeters and height of 2 centimeters. || 3. Rectangular prism with a length of 3 centimeters, width of 4 centimeters, and height of 8 centimeters.",213135 +PRABJKA9,1,Multiple Choice (select all),Check All That Apply,

Select all of the statements that are true. Be prepared to explain your reasoning.

,,,1. 4 - 2(3 + 7) = 4 - 2 · 3 - 2 · 7 || 2. 4 - 2(3 + 7) = 4 + -2 · 3 + -2 · 7 || 3. 4 - 2(3 + 7) = 4 - 2 · 3 + 2 · 7 || 4. 4 - 2(3 + 7) = 4 - (2 · 3 + 2 · 7),1. 4 - 2(3 + 7) = 4 - 2 · 3 - 2 · 7 || 2. 4 - 2(3 + 7) = 4 + -2 · 3 + -2 · 7 || 4. 4 - 2(3 + 7) = 4 - (2 · 3 + 2 · 7),537870 +PSBV9Y,7,Multiple Choice (select 1),Multiple Choice,

Could a dot plot be used to represent Kiran’s data? 

,,,Yes || No,No,103419 +PSBSY3,1,Multiple Choice (select 1),Multiple Choice,"

Which is larger: the number of meters across the Milky Way, or the number of cells in all humans? 

+
+

 

+

Some useful information:

+
    +
  • The Milky Way is about 100,000 light years across.
  • +
  • There are about 37 trillion cells in a human body.
  • +
  • One light year is about 1016 meters.
  • +
  • The world population is about 7 billion.
  • +
+
",,,The number of meters across the Milky Way || The number of cells in all humans,The number of cells in all humans,83409 +PRABQP5V,1,Multiple Choice (select 1),Multiple Choice,"

Which is closest to the product 19,898·0.002?

",,40,"4,000 || 400 || 40 || 4",40,156504 +PSBGHR,4,Multiple Choice (select 1),Multiple Choice,"

Based on your scatter plot, do taller students in your class tend to have bigger hands? 

",,,yes || no,yes,33514 +PRABDYEC,1,Multiple Choice (select 1),Multiple Choice,"

The point (-4, 1) is rotated 180 degrees counterclockwise using center (-3, 0). What are the coordinates of the image?

",,,"

(-5, -2)

||

(-4, -1)

||

(-2, -1)

||

(4, -1)

","

(-2, -1)

",274206 +PSBDVUA,1,Multiple Choice (select all),Check All That Apply,"

Select all pairs of lines that appear to be perpendicular.

+

 

+

",,,m and p || m and r || m and s || m and t || p and r || p and s || p and t || r and s || r and t || s and t,p and s || p and t,627401 +PRABJJPE,1,Multiple Choice (select all),Check All That Apply,"

The stage manager of the school musical is trying to figure out how many sandwiches he can order with the $83 he collected from the cast and crew. Sandwiches cost $5.99 each, so he lets x represent the number of sandwiches he will order and writes 5.99x ≤ 83. He solves this to 2 decimal places, getting x ≤ 13.86.

+

Which of these are valid statements about this situation? (Select all that apply.)

",,,1. He can call the sandwich shop and order exactly 13.86 sandwiches. || 2. He can round up and order 14 sandwiches. || 3. He can order 12 sandwiches. || 4. He can order 9.5 sandwiches. || 5. He can order 2 sandwiches. || 6. He can order -4 sandwiches.,3. He can order 12 sandwiches. || 4. He can order 9.5 sandwiches. || 5. He can order 2 sandwiches.,104597 +PRABFFG7,1,Multiple Choice (select 1),Multiple Choice,"
+

Which of the polygons has the greatest area?

+
",,,

A rectangle that is 3.25 inches wide and 6.1 inches long.

||

A square with side length of 4.6 inches.

||

A parallelogram with a base of 5.875 inches and a height of 3.5 inches.

||

A triangle with a base of 7.18 inches and a height of 5.4 inches.

,

A square with side length of 4.6 inches.

,215152 +PRABQUFF,1,Multiple Choice (select 1),Multiple Choice,"
Below is a dot plot showing how much time customers spent in a store, rounded to the nearest five minutes.
+
 
+
+
 
+
Which of the following is a representative sample of this population?
",,,"

||

||

||

","

",99239 +PSBNB9,1,Multiple Choice (select 1),Multiple Choice,

Here are some expressions. All but one of them equals 16. Find the one that is not equal to 16.

,,,"

23 · 2

||

42

||

252

||

82

","

82

",59107 +PRABQP59,1,Multiple Choice (select 1),Multiple Choice,"

About 3.9×107 people live in California. About 1.3×106 people live in Maine. About how many more people live in California than live in Maine?

",,,"

2.6×106

||

2.6×107

||

3.77×106

||

3.77 ×107

","

3.77 ×107

",263739 +PSB6EU,3,Multiple Choice (select 1),Multiple Choice,"

If you wanted to increase the surface area of the resulting cylinder, would it make more sense to double x, y, or does it not matter?

",,,Double x || Double y || It does not matter,Double x,150288 +PSBCB3Y,1,Multiple Choice (select 1),Multiple Choice,"

Decide whether the quantity can be represented by a positive number or by a negative number. 

+

 

+

Kiran gave a gift of $10.

",,,positive || negative,negative,355221 +PRABQM5R,1,Multiple Choice (select all),Check All That Apply,"

The dot plot shows the number of hours 20 sixth grade students spent studying in a week.

+

 

+

+

 

+

 

+

Select all true statements about the data used to build the dot plot.

",,,The difference between the most hours and the least hours spent studying was 6 hours. || The mean amount of study time was 5 hours. || Nine students studied for at least 4 hours. || Most students studied less than 4 hours. || Only 1% of the students studied more than 6 hours.,The difference between the most hours and the least hours spent studying was 6 hours. || Nine students studied for at least 4 hours. || Most students studied less than 4 hours.,150918 +PRABEDDX,1,Multiple Choice (select 1),Multiple Choice,"

Using the data in the scatter plot, what can you tell about the slope of a good model?

+

 

+

",,,The slope is positive. || The slope is zero. || The slope is negative. || There is no association.,The slope is negative.,68821 +PSB2SG,3,Multiple Choice (select 1),Multiple Choice,

Can you put copies of an equilateral triangle together to form a right angle? 

,,,Yes || No,No,129121 +PRABFFJY,1,Multiple Choice (select 1),Multiple Choice,

One ounce of a yogurt contains of 1.2 grams of sugar. How many grams of sugar are in 14.25 ounces of yogurt?

,,,

0.171 grams

||

1.71 grams

||

17.1 grams

||

171 grams

,

17.1 grams

,204910 +PSBBBHZ,1,Multiple Choice (select 1),Multiple Choice,"

Are these triangles identical?

+

 

+
+
+

+
+
",,,Yes || No,No,177761 +PSBJS4,4,Multiple Choice (select 1),Multiple Choice,"

The graph shows the temperature between noon and midnight in one day in a certain city.

+

 

+

+

 

+

 

+

Did the temperature change more between 1:00 p.m. and 3:00 p.m. or between 3:00 p.m. and 5:00 p.m.?

",,,Between 1:00 p.m. and 3:00 p.m. || Between 3:00 p.m. and 5:00 p.m.,Between 1:00 p.m. and 3:00 p.m.,45497 +PRABEURH,1,Multiple Choice (select 1),Multiple Choice,"

Use a protractor to try to draw each triangle.

+

 

+

Which of these triangles is impossible to draw?

",,,Triangle 1: A triangle where one angle measures 20 degrees and another angle measures 45 degrees. || Triangle 2: A triangle where one angle measures 120 degrees and another angle measures 50 degrees. || Triangle 3: A triangle where one angle measures 90 degrees and another angle measures 100 degrees.,Triangle 3: A triangle where one angle measures 90 degrees and another angle measures 100 degrees.,107995 +PRABEB54,1,Multiple Choice (select all),Check All That Apply,

Select all the representations that are appropriate for comparing exam score to number of hours of sleep the night before the exam.

,,,Histogram || Scatter plot || Dot plot || Table || Box plot,Scatter plot || Table,327381 +PRABPUGM,1,Multiple Choice (select 1),Multiple Choice," + + + + + + +
+

Here is a balanced hanger diagram:

+

 

+

A circle has a mass of 3 grams and a square has a mass of 2 grams. Which is the mass of a triangle?

+
",,,"

95 grams

||

113 grams

||

3 grams

||

7 grams

",

3 grams

,360720 +PRABPUCY,1,Multiple Choice (select all),Check All That Apply,

Select all the true statements.

,,,Two squares with the same length sides are always congruent. || Two rectangles with the same length sides are always congruent. || Two rhombuses with the same length sides are always congruent. || Two parallelograms with the same length sides are always congruent. || Two quadrilaterals with the same side lengths are always congruent.,Two squares with the same length sides are always congruent. || Two rectangles with the same length sides are always congruent.,544776 +PRABEPNA,1,Multiple Choice (select all),Check All That Apply,"

Select all the expressions that are equivalent to 10-6.

",,,"

11,000,000

||

11,000,000

||

1106

||

108 · 10-2

||

1106

||

110 · 10 · 10 · 10 · 10 · 10

","

11,000,000

||

1106

||

1106

||

110 · 10 · 10 · 10 · 10 · 10

",425079 +PRABTVKH,1,Multiple Choice (select 1),Multiple Choice,

La familia de Lin ha completado el 60% de un viaje. Ellos han viajado 30 millas. ¿Qué tan largo es todo el viaje?

,,,50 millas || 48 millas || 30 millas || 18 millas,50 millas,320133 +PSBDZX2,2,Multiple Choice (select all),Check All That Apply,"

Identify all pairs of perpendicular lines in the diagram.

+

 

+

",,,g and i || f and j || f and i || j and i || h and g || h and f || h and j || h and i || g and f || g and j,h and g || h and f,651370 +PSBBUSP,1,Multiple Choice (select 1),Multiple Choice,"

A class measured the radius and circumference of various circular objects. The results are plotted on the graph.

+

 

+
+
+
+
+
+
 
+
Does there appear to be a proportional relationship between the radius and circumference of a circle?
+
+
+
+
",,,Yes || No,Yes,268402 +PRABQMAT,1,Multiple Choice (select all),Check All That Apply,"

Select all statements that show correct reasoning for finding 15÷29.

",,,"

Multiply 15 by 2, then divide by 9.

||

Multiply 15 by 9, then divide by 2.

||

Multiply 15 by 19, then multiply by 2.

||

Multiply 15 by 9, then multiply by 12.

","

Multiply 15 by 9, then divide by 2.

||

Multiply 15 by 9, then multiply by 12.

",319778 +PRABFGRQ,1,Multiple Choice (select 1),Multiple Choice,"

Which of these is a solution to the equation 18 = 25 · x?

+

 

",,,"

 

+

240

+

 

||

 

+

516

+

 

||

 

+

1140

+

 

||

 

+

1740

+

 

","

 

+

516

+

 

",113676 +PSBFC,1,Multiple Choice (select 1),Multiple Choice,"

For the following pair of shapes, decide whether or not they are congruent. 

+

 

+

",,,"Yes, they are congruent || No, they are not congruent","Yes, they are congruent",577 +PSBWRH,1,Multiple Choice (select 1),Multiple Choice,"

 The graph shows how much snow fell after a certain amount of time measured in hours.

+

 

+

+

 

+

Do you think that there may be a proportional relationship between the number of hours and the amount of snow that fell?

",,,Yes || No,No,106336 +PSBBCQT,3,Multiple Choice (select 1),Multiple Choice,

Does it appear in your equation?

,,,Yes || No,Yes || No,184505 +PSBS86,1,Multiple Choice (select all),Check All That Apply,"

+

 

+

Which of these rectangles have the same area as Rectangle R but different perimeter?

",,,Rectangle A. || Rectangle B. || Rectangle C. || Rectangle D. || Rectangle E. || Rectangle F.,Rectangle B. || Rectangle C.,85020 +PRABQNYZ,1,Multiple Choice (select all),Check All That Apply,"

Select all true statements.

+

 

+

+
 
",,,Circle A has a circumference of π. || Circle B has a circumference of π. || Circle B has an area of π. || Circle C has an area of π. || π is the constant of proportionality relating the radius of a circle to its circumference. || π is the constant of proportionality relating the diameter of a circle to its circumference.,Circle A has a circumference of π. || Circle B has an area of π. || π is the constant of proportionality relating the diameter of a circle to its circumference.,27175 +PRABG5Z5,1,Multiple Choice (select all),Check All That Apply,

Select all the equations that can be used to answer the question: “How many rhombuses are in a trapezoid?”

,,,"

23 ÷ ? = 1

||

1 ÷ 23 = ?

||

? ÷ 23 = 1

||

? · 23 = 1

||

1 · 23 = ?

","

1 ÷ 23 = ?

||

? · 23 = 1

",46664 +PRABEVAG,1,Multiple Choice (select all),Check All That Apply,

Select all the true statements.

,,,"

2.3 + (-2.3) is equal to zero.

||

(-3.7) + (-4.1) is positive.

||

-2.6 - -124 is positive.

||

52 + -2.5 is negative.

||

72 - (-100) is negative.

","

2.3 + (-2.3) is equal to zero.

||

-2.6 - -124 is positive.

",69320 +PRABQPCJ,1,Multiple Choice (select all),Check All That Apply,

Select all the equations that are true when x is -6.

,,,"

18 = x + x +x

||

4 = x + 10

||

12 = 2x

||

9 - x = 3

||

x2 = 3

||

18 = x ·3

","

4 = x + 10

||

12 = 2x

||

x2 = 3

",179454 +PSBB8W,6,Multiple Choice (select all),Check All That Apply,"

A city has a higher elevation than Coachella, CA.

+

 

+

Select all numbers that could represent the city’s elevation.

",,,-11 feet || -35 feet || 4 feet || -8 feet || 0 feet,-11 feet || 4 feet || -8 feet || 0 feet,10141 +PSBTXU,1,Multiple Choice (select 1),Multiple Choice,"

A group of students is timed while sprinting 100 meters. Each student’s speed can be found by dividing 100 m by their time. Is the statement true or false? 

+

 

+

Speed is a function of time.

",,1,True || False,TRUE,87902 +PSBBCW4,1,Multiple Choice (select 1),Multiple Choice,"

Elena said, “I think this line is a good fit because half of the points are on one side of the line and half of the points are on the other side.” Do you agree?

+

+
 
",,,Yes || No,No,185871 +PRABE57H,1,Multiple Choice (select 1),Multiple Choice,"

Which description can represent the surface area of this trunk?

+

 

+

",,,The number of square inches that cover the top of the trunk. || The number of square feet that cover all the outside faces of the trunk. || The number of square inches of horizontal surface inside the trunk. || The number of cubic feet that can be packed inside the trunk.,The number of square feet that cover all the outside faces of the trunk.,273879 +PRABEG3A,1,Multiple Choice (select 1),Multiple Choice,"

The points (2,4) and (6,7) lie on a line. What is the slope of the line?

",,,"

2

||

1

||

43

||

34

","

34

",325132 +PSBS7T,1,Multiple Choice (select 1),Multiple Choice,"

Decide whether the equation is true or false.

+

 

+

41 = 4 · 1

",,1,True || False,TRUE,84944 +PSBCDCF,1,Multiple Choice (select 1),Multiple Choice,"

Adult elephant seals generally weigh about 5,500 pounds. If you weighed 5 elephant seals, would you expect each seal to weigh exactly 5,500 pounds?

",,,Yes || No,No,362897 +PSBBQJ,1,Multiple Choice (select 1),Multiple Choice,"

Predict if the mean is greater than, less than, or approximately equal to the median.

+

 

+

Backpack weights of 55 sixth-grade students

+

",,,Greater than || Less than || Equal to,Greater than,7018 +PRABESYD,1,Multiple Choice (select all),Check All That Apply,"

Select all stories that the tape diagram can represent.

+

 

+
",,,"There are 87 children and 39 adults at a show. The seating in the theater is split into 4 equal sections. || There are 87 first graders in after-care. After 39 students are picked up, the teacher puts the remaining students into 4 groups for an activity. || Lin buys a pack of 87 pencils. She gives 39 to her teacher and shared the remaining pencils between herself and 3 friends. || Andre buys 4 packs of paper clips with 39 paper clips in each. Then he gives 87 paper clips to his teacher. || Diego’s family spends $87 on 4 tickets to the fair and a $39 dinner.","There are 87 first graders in after-care. After 39 students are picked up, the teacher puts the remaining students into 4 groups for an activity. || Lin buys a pack of 87 pencils. She gives 39 to her teacher and shared the remaining pencils between herself and 3 friends. || Diego’s family spends $87 on 4 tickets to the fair and a $39 dinner.",55274 +PRABQM9A,1,Multiple Choice (select all),Check All That Apply,

Select all the true statements. 

,,,"

Given a dot plot, it is always possible to construct a corresponding histogram.

||

Given a dot plot, it is always possible to calculate the mean of the data.

||

Given a box plot, it is always possible to calculate the IQR of the data.

||

Given a histogram, it is always possible to calculate the mean of the data.

||

Given a histogram, it is always possible to calculate the median of the data.

","

Given a dot plot, it is always possible to construct a corresponding histogram.

||

Given a dot plot, it is always possible to calculate the mean of the data.

||

Given a box plot, it is always possible to calculate the IQR of the data.

",591536 +PSBWMQ,3,Multiple Choice (select 1),Multiple Choice,

Whose estimate is more accurate?

,,,Tyler's || Kiran's,Kiran's,105511 +PRABESMB,1,Multiple Choice (select all),Check All That Apply,"

In football, the team that has the ball has four chances to gain at least ten yards. If they don't gain at least ten yards, the other team gets the ball. Positive numbers represent a gain and negative numbers represent a loss. Select all of the sequences of four plays that result in the team getting to keep the ball.

+

 

",,,"8, -3, 4, 21 || 30, -7, -8, -12 || 2, 16, -5, -3 || 5, -2, 20, -1 || 20, -3, -13, 2","8, -3, 4, 21 || 2, 16, -5, -3 || 5, -2, 20, -1",67623 +PSBBC4S,1,Multiple Choice (select 1),Multiple Choice,"

Is the area of the shaded rectangle 6(2m) or 6(m2)?

+

 

+

",,,6(2 - m) || 6(m - 2),6(m - 2),186704 +PRABFKNR,1,Multiple Choice (select all),Check All That Apply,

Here is a list of questions about the students and teachers at a school. Select all the questions that are statistical questions.

,,,

What is the most popular lunch choice?

||

What school do these students attend?

||

How many math teachers are in the school?

||

What is a common age for the teachers at the school?

||

About how many hours of sleep do students generally get on a school night?

||

How do students usually travel from home to school?

,

What is the most popular lunch choice?

||

What is a common age for the teachers at the school?

||

About how many hours of sleep do students generally get on a school night?

||

How do students usually travel from home to school?

,262608 +PRABQKVF,1,Multiple Choice (select 1),Multiple Choice,

Which expression is less than 1?

,,,"

4 ÷ 23

||

34 ÷ 23

||

148 ÷ 158

||

248 ÷ 158

","

148 ÷ 158

",518589 +PSBB2TW,3,Multiple Choice (select 1),Multiple Choice,"

For the inequality, decide whether the solution is represented by x < 4.5 or x > 4.5.

+

 

+

-2(x + 3.2) < -15.4

",,,x < 4.5 || x > 4.5,x > 4.5,302522 +PRABQK7P,1,Multiple Choice (select all),Check All That Apply,"

Without computing, select all of the expressions that have the same value as 74·(29+56).

",,,74 • 29 + 56 || 74 + (29 + 56) || 74 + (56 • 29) || (74 • 29) + (74 • 56) || (56 + 29) • 74,(74 • 29) + (74 • 56) || (56 + 29) • 74,299546 +PSBS57,1,Multiple Choice (select 1),Multiple Choice,"

Here is a scatter plot that shows the years when some used cars were made and their prices in 2016, together with the graph of a linear model for the relationship between year and price.

+

+


Is the slope positive or negative?

",,,Positive || Negative,Positive,84521 +PRABG2WD,1,Multiple Choice (select 1),Multiple Choice,"

True or false?

+

 

+

15 · 45 = 455

",,1,True || False,TRUE,348598 +PRABQKSF,1,Multiple Choice (select all),Check All That Apply,"

Select all the fractions that are greater than 12.

",,,"

35

||

713

||

715

||

107

||

100200

||

10002001

","

35

||

713

||

107

",133202 +PSBN2F,1,Multiple Choice (select all),Check All That Apply,

Which of the following changes would you represent using a negative number? 

,,,

A loss of 4 points

||

A gain of 50 yards

||

A loss of $10

||

An elevation above sea level

,

A loss of 4 points

||

A loss of $10

,62772 +PSBBMV2,1,Multiple Choice (select 1),Multiple Choice,"

Decide whether the equation is true or false.

+

 

+

82 43

",,1,True || False,TRUE,230550 +PSBEMQ,1,Multiple Choice (select 1),Multiple Choice,"

Noah thinks the answers to these two questions will be the same. Do you agree with him?

+

 

+
    +
  • This year, a herd of bison had a 10% increase in population. If there were 550 bison in the herd last year, how many are in the herd this year?
  • +
+

 

+
    +
  • This year, another herd of bison had a 10% decrease in population. If there are 550 bison in the herd this year, how many bison were there last year?
  • +
",,,Yes || No,No,23144 +PSBBZ52,7,Multiple Choice (select 1),Multiple Choice,

Should the authors of either of these series give their new hero the ability to fly?

,,,Beyond Human || Mysterious Planets,Beyond Human,298906 +PSBBCY4,1,Multiple Choice (select 1),Multiple Choice,"

Noah said, “I think this line is a good fit because it passes through the leftmost point and the rightmost point.” Do you agree?

+

+
 
",,,Yes || No,No,186153 +PRABQKJF,1,Multiple Choice (select all),Check All That Apply,

Select all the ratios that are equivalent to 9 : 6.

,,,6 : 9 || 3 : 2 || 13 : 10 || 5 : 2 || 18 : 12,3 : 2 || 18 : 12,2319 +PRABEDC7,1,Multiple Choice (select all),Check All That Apply,"

Here is a scatter plot:

+

 

+

+

 

+

Select all the following that describe the association in the scatter plot:

",,,Linear association || Non-linear association || Positive association || Negative association || No association,Linear association || Positive association,233989 +PSB5PB,2,Multiple Choice (select 1),Multiple Choice,"

Here are some line segments.

+

 

+

+

 

+

 

+

Which segment is a dilation of BC using A as the center of dilation and a scale factor of 32?

",,,ED || GJ || FH,GJ,145971 +PSBCQHC,1,Multiple Choice (select 1),Multiple Choice,"

A baseball team sells snacks at their games to raise money. At their last game, they made 78 as much money as they made at their first game.

+

 

+

 

+

Did they make more money at their first or last game?

+

 

",,,First game || Last game,Last game,420156 +PSBCNC3,1,Multiple Choice (select all),Check All That Apply,"

Select all of the equations that describe the situation. If you get stuck, draw a diagram.

+

 

+

 

+

Kiran scored 223 more points in a computer game than Tyler. If Kiran scored 409 points, how many points did Tyler score?

",,,

223 409 − z

||

409 − 223 z

||

409 223 z

||

409 223 z

,

223 409 − z

||

409 − 223 z

||

409 223 z

,406962 +PSBH8S,9,Multiple Choice (select 1),Multiple Choice,"

Spinning this spinner will result in green.

+

 

+

",,,impossible || unlikely || equally likely as not || likely || certain,equally likely as not,42766 +PSB3HE,1,Multiple Choice (select 1),Multiple Choice,"

A cube has side length 10 inches. Jada says the surface area of the cube is 600 in2, and Noah says the surface area of the cube is 3,600 in2. Here is how each of them reasoned:

+ + + + + + + +
+

Jada’s Method:

+

⋅ 102
⋅ 100
600

+
+

Noah’s Method:

+

⋅ 102
602
3,600

+
+

 

+
+
+

Do you agree with either of them?

+
+
",,,Agree with Jada || Agree with Noah,Agree with Jada,133477 +PRABEURT,1,Multiple Choice (select all),Check All That Apply,

Select all the situations where knowing the volume of an object would be more useful than knowing its surface area.

,,,Determining the amount of paint needed to paint a barn. || Determining the monetary value of a piece of gold jewelry. || Filling an aquarium with buckets of water. || Deciding how much wrapping paper a gift will need. || Packing a box with watermelons for shipping. || Charging a company for ad space on your race car. || Measuring the amount of gasoline left in the tank of a tractor.,Determining the monetary value of a piece of gold jewelry. || Filling an aquarium with buckets of water. || Packing a box with watermelons for shipping. || Measuring the amount of gasoline left in the tank of a tractor.,156797 +PRABTV8G,1,Multiple Choice (select all),Check All That Apply,"

Selecciona todos los números que el punto podría representar en esta recta numérica.

+

+

 

",,,2.5 || 2.25 || 2.2 || 2.0 || 1.2,2.25 || 2.2,325103 +PSB36P,1,Multiple Choice (select 1),Multiple Choice,"

Decide if the responses will produce numerical data or categorical data.

+

 

+

What is the last thing you ate or drank?

",,,Categorical || Numerical,Categorical,137297 +PSBC9HN,1,Multiple Choice (select 1),Multiple Choice,"

Noah and his friends are going to an amusement park. The total cost of admission for 8 students is $100, and all students share the cost equally. Noah brought $13 for his ticket.

+

 

+

Did he bring enough money to get into the park?

",,,Yes || No,Yes,515874 +PSBB6MU,1,Multiple Choice (select all),Check All That Apply,"

The number line shows values of x that make the inequality x > 1 true.

+

 

+

+

 

+

Select all the values of x from this list that will make the inequality x > 1 true. 

",,,3 || -3 || 1 || 700 || 1.05,3 || 700 || 1.05,323597 +PSBFD,3,Multiple Choice (select 1),Multiple Choice,"

Jada drank 2 liters of water yesterday. Andre drank 14 times as much water as Jada. Lin drank three times as much water as Andre.

+

 

+

 

+

Did Lin drink more or less water than Jada drank?

",,,More || Less,Less,648 +PRABQM9B,1,Multiple Choice (select 1),Multiple Choice,"

Here is a dot plot of a data set. 

+

 

+

 

+

Which statement is true about the mean of the data set?

",,,The mean is less than 8. || The mean is equal to 8. || The mean is greater than 8. || There is not enough information to determine the mean.,The mean is less than 8.,591659 +PRABE55W,1,Multiple Choice (select all),Check All That Apply,

Select all the polygons.

,,,"

||

||

||

||

||

","

||

",243115 +PRABEH47,1,Multiple Choice (select 1),Multiple Choice,"

Elena noticed that, nine years ago, her cousin Katie was twice as old as Elena was then. Then Elena said, “In four years, I’ll be as old as Katie is now!” If Elena is currently e years old and Katie is k years old, which system of equations matches the story?

",,,"

k-9=2ee+4=k

||

2k=e-9e=k+4

||

k=2e-9e+4=k+4

||

k-9=2(e-9)e+4=k

","

k-9=2(e-9)e+4=k

",105121 +PRABG4ZK,1,Multiple Choice (select all),Check All That Apply,"

Select all of the choices that are equal to (-5)-(-12).

",,,

-7

||

7

||

The difference between -5 and -12.

||

The difference between -12 and -5.

||

(-5) + 12

||

(-5) + (-12)

,

7

||

The difference between -5 and -12.

||

(-5) + 12

,162021 +PSBCWKM,1,Multiple Choice (select 1),Multiple Choice,"
+
+
+
+ + + + + + + +
+

 

+
 
+

 

+
+
+
+
+

Sails come in many shapes and sizes. The sail on the right is a triangle. Is it a right triangle?

",,,Yes || No,No,454526 +PSBBK3R,2,Multiple Choice (select 1),Multiple Choice,

Are there more numbers that have this property?

,,,Yes || No,Yes,226116 +PSBGHR,6,Multiple Choice (select 1),Multiple Choice,"

Based on your scatter plot, is hand span a linear function of height? 

",,,yes || no,no,33779 +PRABEGJC,1,Multiple Choice (select 1),Multiple Choice,"

Two paper drink cups are shaped like cones. The small cone can hold 6 oz of water. The large cone is 43 the height and 43 the diameter of the small cone. Which of these could be the amount of water the large cone holds?

",,,8 cm || 14 oz || 4.5 oz || 14 cm,14 oz,50592 +PSBCS3Z,1,Multiple Choice (select 1),Multiple Choice,"

Han says that you can wrap a 5-foot rope around a wheel with a 2-foot diameter because 52 is less than pi. Do you agree with Han?

",,,Yes || No,No,434672 +PRABQPTT,1,Multiple Choice (select 1),Multiple Choice,"

Which expression is equivalent to 6(2y-5)?

",,,12y - 5 || 5 - 12y || 12y - 30 || 30 - 12y,12y - 30,35781 +PSBRC,1,Multiple Choice (select 1),Multiple Choice,"

For the pair of shapes, decide whether or not Shape A is congruent to Shape B. 

+

 

+

 

",,,"Yes, they are congruent || No, they are not congruent","Yes, they are congruent",1864 +PRABQN9D,1,Multiple Choice (select all),Check All That Apply,"

Let x = -56 and y = 43.

+

 

+

 

+

+

 

+

 

+

Select all the expressions that have a positive value.

",,,"

x · y

||

yx

||

xy

||

x + y

||

x - y

||

y - x

",

x + y

||

y - x

,24564 +PRABQMBC,1,Multiple Choice (select 1),Multiple Choice,"

Which estimate is closest to the actual value of (2.99548)(1.8342)?

",,5,4.8 || 5.5 || 6.2 || 8.3,5.5,8234 +PRABEP2C,1,Multiple Choice (select all),Check All That Apply,"

m, p, and z represent the lengths of the three sides of this right triangle.

+

 

+

Select all the equations that represent the relationship between m, p, and z.

+

",,,m² + p² = z² || m² = p² + z² || m² = z² + p² || p² + m² = z² || z² + p² = m² || p² + z² = m²,m² = p² + z² || m² = z² + p² || z² + p² = m² || p² + z² = m²,9217 +PRABQP6F,1,Multiple Choice (select all),Check All That Apply,"

Select all the expressions that equal 34·32.

",,,"

36

||

38

||

93

||

96

||

98

","

36

||

93

",506037 +PSB4BS,1,Multiple Choice (select 1),Multiple Choice,"

Which of the following is the correct value of (0.22) · (0.4)

",,,

8.8

||

0.88

||

0.088

||

0.0088

,

0.088

,138228 +PRABHK6E,1,Multiple Choice (select 1),Multiple Choice,"

Which is larger, 52 or 33?

",,,

|| 3³,3³,141384 +PSB2G7,1,Multiple Choice (select 1),Multiple Choice,"

Four different stores posted ads about special sales on 15-oz cans of baked beans.

+

 

+

Which store is offering the best deal?

+

 

+
 
",,,8 for $6 || 10 for $10 || 2 for $3 || $0.80 each,8 for $6,127489 +PSBB6PY,5,Multiple Choice (select 1),Multiple Choice,"

",,,< || = || >,<,324036 +PRABKDUG,1,Multiple Choice (select 1),Multiple Choice,"

State whether the following is in scientific notation.

+

 

+

5.23 x 108

",,,Already in scientific notation || Not in scientific notation,Already in scientific notation,258045 +PRABHGR2,1,Multiple Choice (select all),Check All That Apply,"

All of these triangles are congruent. Sometimes we can take one figure to another with a translation. Choose the triangles that are images of triangle ABC under a translation.

+

 

",,,A. || B. || C. || D. || E. || F. || G. || H.,B. || F. || H.,3160 +PRABEVHS,1,Multiple Choice (select all),Check All That Apply,"

Lin wants to know if students in elementary school generally spend more time playing outdoors than students in middle school. She selects a random sample of size 20 from each population of students and asks them how many hours they played outdoors last week. Suppose that the MAD for each of her samples is about 3 hours.

+

 

+

Select all pairs of sample means for which Lin could conclude there is a meaningful difference between the two populations

",,,"Elementary school: 12 hours, middle school: 10 hours || Elementary school: 14 hours, middle school: 9 hours || Elementary school: 13 hours, middle school: 6 hours || Elementary school: 13 hours, middle school: 10 hours || Elementary school: 7 hours, middle school: 15 hours","Elementary school: 13 hours, middle school: 6 hours || Elementary school: 7 hours, middle school: 15 hours",9612 +PRABQK69,1,Multiple Choice (select 1),Multiple Choice,"

Which is closest to the quotient 5,278 ÷ 0.05?

",,,"1,000,000 || 100,000 || 10,000 || 1,000","100,000",590968 +PRABQPHA,1,Multiple Choice (select all),Check All That Apply,"

Select all the triangles that can be rotated to match up with Triangle 1.

+

 

+

",,,"

||

||

||

","

||

",98785 +PSBFEK,1,Multiple Choice (select 1),Multiple Choice,

Mai and Priya were on scooters. Mai traveled 15 meters in 6 seconds. Priya travels 22 meters in 10 seconds. Who was moving faster?

,,,Mai || Priya,Mai,27697 +PSBTXU,3,Multiple Choice (select 1),Multiple Choice,"

A group of students is timed while sprinting 100 meters. Each student’s speed can be found by dividing 100 m by their time. Is the statement true or false? 

+

 

+

Time is a function of distance.

",,0,True || False,FALSE,88255 +PRABQNAA,1,Multiple Choice (select 1),Multiple Choice,"

A scale drawing of a rectangular parking lot is 6 inches long and 5 inches wide. The actual parking is 240 feet long. What is the area of the actual parking lot, in square feet?

+

 

+

",,,"48,000 || 1,200 || 200 || 30","48,000",12289 +PRABQJRF,1,Multiple Choice (select all),Check All That Apply,

Select all triangles that appear to be a right triangle.

,,,"

||

||

||

||

||

","

||

||

",544510 +PSB9VC,1,Multiple Choice (select 1),Multiple Choice,"

For the pair, some of the angles of two triangles in degrees are given. Use the information to decide if the triangles are similar or not.

+

 

+

 

+

Triangle E: 63, 45, ___; Triangle F: 14, 71, ___

",,,similar || not similar,not similar,168353 +PSBT77,3,Multiple Choice (select 1),Multiple Choice,"

Based on this data, would you expect 1956 to have closer to 50,000 cases or closer to 100,000 cases?

",,,"Closer to 50,000 cases || Closer to 100,000 cases","Closer to 50,000 cases",90685 +PSBDT5,1,Multiple Choice (select 1),Multiple Choice,"

A plant measured x inches tall last week and 8 inches tall this week.

+

 

+

Select the expression that represents the number of inches the plant grew this week.

+
 
",,,x - 8 || 8 - x,8 - x,19255 +PRABQMAS,1,Multiple Choice (select all),Check All That Apply,"

Select all equations that represent this question:

+

 

+

Priya is stacking building blocks to make a tower. She takes a break when the tower is 212 feet tall, which is 58 of the height of the tower she wants to build. How tall is the tower when finished?

",,,"

58 · ? = 212

||

58 ÷ 212 = ?

||

212 · ? = 58

||

212 · 58 = ?

||

212 · 85 = ?

||

212 ÷ 58 = ?

","

58 · ? = 212

||

212 · 85 = ?

||

212 ÷ 58 = ?

",319658 +PSBBCB2,1,Multiple Choice (select 1),Multiple Choice,"

Ants have 6 legs. Elena and Andre write equations showing the proportional relationship between the number of ants, a, to the number of ant legs l. Elena writes a = 6 · l and Andre writes l = 16· a. Do you agree with either of the equations?

",,,Andre is correct || Elena is correct || Both are correct || Neither are correct,Neither are correct,182080 +PSB65U,1,Multiple Choice (select 1),Multiple Choice,"

State whether you agree with the statement below. 

+

 

+

A city that has an elevation of 15 meters is closer to sea level than a city that has an elevation of -10 meters.

",,,Agree || Disagree,Disagree,153861 +PSBBC95,5,Multiple Choice (select 1),Multiple Choice,

Decide whether the two groups are very different or not.

,,,Yes || No,Yes,187772 +PRABFGWF,1,Multiple Choice (select all),Check All That Apply,"

Select all the expressions that are equivalent to 16x +36.

",,,"

16(x + 20)

||

x(16 + 36)

||

4(4x + 9)

||

2(8x + 18)

||

2(8x + 36)

","

4(4x + 9)

||

2(8x + 18)

",35632 +PSBBB4U,3,Multiple Choice (select 1),Multiple Choice,"

Could she have bought 1 pretzel, 1 drink, and 5 bags of popcorn?

",,,Yes || No,No,181066 +PSBBRY5,1,Multiple Choice (select 1),Multiple Choice,"

Can you decompose this triangle and rearrange its parts to form a rectangle?

+

 

+
+

+
",,,Yes. || No.,Yes.,253000 +PSBBNG,3,Multiple Choice (select all),Check All That Apply,"

Which measure of center - the mean or the median - better describes a typical value for this distribution?

+

 

+

",,,Mean || Median,Mean || Median,6843 +PSBSC7,2,Multiple Choice (select all),Check All That Apply,"

Select all the values that are solutions to :

",,,3 || -3 || 4 || -4 || 4.001 || -4.001,3 || -3 || 4 || -4 || -4.001,80087 +PSBS3F,1,Multiple Choice (select 1),Multiple Choice,"

Noah and Lin both solved the equation 14a = 2(a − 3).

+

 

+
+
+
+
+ + + + + + + + + + + +
+

Noah's solution:

+
+

Lin's solution: 

+
14a=2(a-3)14a=2a-612a=-6    a= -1214a=2(a-3)7a=a-36a=-3  a=-12  
+

 

+

Do you agree with either of them? 

+
+
+
+
",,,Noah's Solution || Lin's Solution || Both Solutions || Neither Solutions,Both Solutions,83813 +PSBCBAP,3,Multiple Choice (select 1),Multiple Choice,"

Here is a picture of an older version of the flag of Great Britain. There is a rigid transformation that takes Triangle 1 to Triangle 2, another that takes Triangle 1 to Triangle 3, and another that takes Triangle 1 to Triangle 4.

+

 

+

+

 

+

Do all eight triangles in the flag have the same area? 

",,,Yes || No || Not enough information,No,350622 +PRABEVCX,1,Multiple Choice (select all),Check All That Apply,"

Select all expressions that are equivalent to 6x + 1  (3x  1).

",,,6x + 1 - 3x - 1 || 6x + -3x + 1 + 1 || 3x + 2 || 6x - 3x + 1 - 1 || 6x + 1 + -3x - -1,6x + -3x + 1 + 1 || 3x + 2 || 6x + 1 + -3x - -1,190106 +PSBJTV,1,Multiple Choice (select 1),Multiple Choice,"

Jada explains how she finds 1523:

+

 

+

“I know that ten 23's is 230, so five 23's will be half of 230, which is 115.

+

15 is 10 plus 5, so 15 · 23 is 230 plus 115, which is 345.""

+

 

+

Do you agree with Jada?

",,,Yes || No,Yes,45675 +PSB38Y,1,Multiple Choice (select 1),Multiple Choice,"

Decide if the responses will produce numerical data or categorical data.

+

 

+

How many minutes did it take you to get ready this morning - from waking up to leaving for school?

",,,Categorical || Numerical,Numerical,137690 +PSBDJFQ,2,Multiple Choice (select 1),Multiple Choice,

Is there a different triangle Noah could draw that would answer the question? 

,,,Yes || No,Yes,567463 +PRABQKWA,1,Multiple Choice (select 1),Multiple Choice,"

Priya ran 112 miles today, and Tyler ran 334 miles. How many times the length of Priya’s run was Tyler’s run?

",,,"

458 times as far

||

94 times as far

||

52 times as far

||

25 times as far

","

52 times as far

",20788 +PSBBBKX,1,Multiple Choice (select 1),Multiple Choice,"
    +
  • Circle A has a diameter of approximately 20 inches and an area of approximately 300 in2.

  • +
  • Circle B has a diameter of approximately 60 inches.
  • +
+

 

+

Which of these could be the area of Circle B? 

",,,"About 100 in² || About 300 in² || About 900 in² || About 2,700 in²","About 2,700 in²",178083 +PSB6BE,1,Multiple Choice (select all),Check All That Apply,"

m, n, a, b, and c all represent positive integers. Consider these two equations: 

+

 

+

m = a + b + c      n = abc

+

 

+

Which of these statements are true? Select all that apply.

",,,"If a is tripled, m is tripled. || If a, b, and c are all tripled, then m is tripled. || If a is tripled, n is tripled. || If a, b, and c are all tripled, then n is tripled.","If a, b, and c are all tripled, then m is tripled. || If a is tripled, n is tripled.",149599 +PSBC8XC,4,Multiple Choice (select 1),Multiple Choice,

Is d proportional to n?

,,,Yes || No,Yes,511978 +PRABEVHJ,1,Multiple Choice (select all),Check All That Apply,"

Select all the numbers that represent point A.

+

 

+

",,,"

0.25

||

0.5

||

0.75

||

12

||

34

||

1216

","

0.75

||

34

||

1216

",5125 +PSBDXP,1,Multiple Choice (select 1),Multiple Choice,"

Lin draws this tape diagram for :

+

 

+

 

+

+

 

+

 

+

Lin says that  because there are 5 groups of  and  left. Do you agree with Lin?

+

 

",,,Agree || Disagree,Disagree,20000 +PSBYH6,1,Multiple Choice (select 1),Multiple Choice,"

Which estimate is closest to the actual value of the expression? 

+

 

+

",,5,4 || 4.5 || 5,5,116435 +PRABFS47,1,Multiple Choice (select all),Check All That Apply,"

Select the unit from the list that you would use to measure the object.

+

 

+

The length of a hippopotamus

",,,centimeters || cups || feet || gallons || grams || inches || kilograms || kilometers || liters || meters || miles || milliliters || millimeters || ounces || pounds || quarts || tons || yards,feet || meters || yards,173140 +PSBUSE,1,Multiple Choice (select 1),Multiple Choice,"

Here is an equation, and the steps Clare wrote to solve it:

+

 

+

14x-2x+3=3(5x+9)        12x+3=3(5x+9)      3(4x+1)=3(5x+9)           4x+1=5x+9                   1=x+9               -8=x

+

 

+

Here is the same equation, and the steps Lin wrote to solve it:

+

 

+

14x2x+3=3(5x+9)         12x+3=3(5x+9)         12x+3=15x+27                12x=15x+24               -3x=24                    x=-8

+

 

+

Are both of their solutions correct?

",,,Yes || No,Yes,93475 +PRABFEH4,1,Multiple Choice (select all),Check All That Apply,"
+

A television screen has length 1612 inches, width w inches, and area 462 square inches. Select all the equations that represent the relationship of the side lengths and area of the television.

+
",,,"

w · 462 = 1612

||

1612 · w = 462

||

462 ÷ 1612 = w

||

462 ÷ w = 1612

||

1612 · 462 = w

","

1612 · w = 462

||

462 ÷ 1612 = w

||

462 ÷ w = 1612

",243888 +PSBB3KR,1,Multiple Choice (select 1),Multiple Choice,"

Jada y Noah querían hallar el volumen total de un cubo y un prisma rectangular. Ellos saben que el volumen del prisma es 20 unidades cúbicas y también que el cubo tiene longitudes de lado de 10 unidades.

+

 

+

Jada dice que el volumen total es 27,000 unidades cúbicas. Noah dice que es 1,020 unidades cúbicas. Así fue como cada uno razonó:

+

 

+ + + + + + + + + + + +
+

Método de Jada

+
+

Método de Noah

+
+

20 + 10³

+

30³

+

27,000

+
+

20 + 10³

+

20 + 1,000

+

1,020

+ 
+

 

+

¿Estás de acuerdo con alguno de los dos?

",,,Acuerdo con ambos || Acuerdo con Jada || Acuerdo con Noah || Acuerdo con ninguno,Acuerdo con Noah,307185 +PSBBUBF,1,Multiple Choice (select 1),Multiple Choice,"

Students are conducting a class experiment to see if there is a meaningful difference between two groups of plants that have begun to sprout leaves. The teacher randomly selects 8 plants from each group and counts the number of leaves on each plant.

+


Group A: 2, 2, 3, 3, 5, 5, 5, 7

+

Group B: 10, 9, 7, 8, 10, 12, 14, 10

+

 

+


Is there a meaningful difference between the two groups?

",,,yes || no,yes,265806 +PRABQKNP,1,Multiple Choice (select all),Check All That Apply,

Select all the ratios that are equivalent to 8 : 6.

,,,

4 : 3

||

6 : 8

||

16 : 12

||

10 : 8

||

7 : 5

,

4 : 3

||

16 : 12

,115064 +PSBU7J,1,Multiple Choice (select 1),Multiple Choice,"

A restaurant is offering 2 specials: 10 burritos for $12, or 6 burritos for $7.50. Noah needs 60 burritos for his party. Should he buy 6 orders of the 10-burrito special or 10 orders of the 6-burrito special? 

",,,10 burritos for $12 || 6 burritos for $7.50,10 burritos for $12,96695 +PRABQN7D,1,Multiple Choice (select 1),Multiple Choice,"

Clare has a recipe for yellow cake. She uses 913 cups of flour to make 4 cakes. Noah will follow the same recipe. He will make cakes using cups of flour.

+

 

+

Which of these equations represent the relationship between and f?

",,,"

c = 163f

||

c = 316f

||

c = 37f

||

c = 73f

","

c = 37f

",97850 +PRABEAY2,1,Multiple Choice (select all),Check All That Apply,"

Here is an equation that represents a function: 72x+12y=60.

+

 

+

Select all the different equations that describe the same function:

",,,"

120y+720x=600

||

y=5-6x

||

2y+12x=10

||

y=5+6x

||

x=56-y6

||

7x+2y=6

||

x=56+y6

","

120y+720x=600

||

y=5-6x

||

2y+12x=10

||

x=56-y6

",292178 +PSBCKRX,1,Multiple Choice (select 1),Multiple Choice,"

For the pair of numbers below, select the number that is greater.

",,,"

2 · 106 

||

7.839 · 106 

","

7.839 · 106 

",398730 +PSB2J,1,Multiple Choice (select 1),Multiple Choice,"

Is Figure B a scaled copy of Figure A?

+

 

+

",,,Yes || No,No,3378 +PRABPUH8,1,Multiple Choice (select 1),Multiple Choice,"

Noah gathered data at his school among 7th and 8th graders to see if there was an association between grade level and handedness. This table and graph show his data, but the number of right-handed 8th graders is missing.

+ + + + + + + +
+ + + + + + + + + + + + + + + + + + +
 left-handedright-handed
7th grade1172
8th grade24 
+
+

 

+

Noah found there was no evidence of an association between grade level and handedness. Which of these could be the number of right-handed 8th graders?

",,157,33 || 85 || 107 || 157,157,636346 +PRABE5HU,1,Multiple Choice (select 1),Multiple Choice,"

If the side that is 6 units long is the base of this parallelogram, what is its corresponding height?

+

 

+

",,,6 units || 4.8 units || 4 units || 5 units,4 units,375982 +PRABFGWH,1,Multiple Choice (select all),Check All That Apply,"

Select all the expressions that are equivalent to 12z.

",,,"

z + z

||

z ÷ 2

||

z · z

||

14z + 14z

||

2z

","

z ÷ 2

||

14z + 14z

",541977 +PRABQM3R,1,Multiple Choice (select all),Check All That Apply,

Select all the expressions that are greater than 5.

,,,4.88 + 0.009 || 3.76 + 1.3 || 5.012 - 0.04 || 7.702 - 2.71 || 6.5 - 1.49,3.76 + 1.3 || 6.5 - 1.49,61764 +PRABEVRV,1,Multiple Choice (select 1),Multiple Choice,"

Which of these expressions is equivalent to -2(x-5) ?

",,,-2x − 5 || -2x + 5 || -2x + 10 || -2x − 10,-2x + 10,53138 +PRABD877,1,Multiple Choice (select all),Check All That Apply,

Select all equations that have graphs with the same y-intercept.

,,,"

y=3x-8

||

y=3x-9

||

y=3x+8

||

y=5x-8

||

y=2x-8

||

y=13x-8

","

y=3x-8

||

y=5x-8

||

y=2x-8

||

y=13x-8

",17046 +PSB3J,2,Multiple Choice (select 1),Multiple Choice,"

Which day had the least number of people?

+

 

+

",,,Day 1 || Day 2 || Day 3,Day 1,3501 +PSBZT4,1,Multiple Choice (select 1),Multiple Choice,"

Decide whether the table could represent a proportional relationship.

+

 

+

The number of wheels on a group of buses.

+

 

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + +
number of busesnumber of wheelswheels per bus
530 
848 
1060 
1590 
",,,"

Yes, it is proportional

||

No, it is not proportional

","

Yes, it is proportional

",123317 +PRABG3XQ,1,Multiple Choice (select 1),Multiple Choice,"

Is the value of the expression closer to 121, or 112?

+

 

+

9 ÷ 20

+

 

",,,"

12

||

1

||

112

","

12

",128010 +PRABMTN5,1,Multiple Choice (select 1),Multiple Choice,"

For the equation, decide if it is always true or never true.

+

 

+

x + 12 = x  12

",,,Always True || Never True,Never True,147962 +PRABFFDM,1,Multiple Choice (select all),Check All That Apply,"

Select all the equations that represent the hanger.

+

 

+

",,,"

x + x + x = 1 + 1 + 1 + 1+ 1 + 1

||

x · x · x = 6

||

3x = 6

||

x + 3 = 6

||

x · x · x = 1 · 1 · 1 · 1 · 1 · 1

","

x + x + x = 1 + 1 + 1 + 1+ 1 + 1

||

3x = 6

",123623 +PSBCBZ4,1,Multiple Choice (select 1),Multiple Choice,"

Decide whether the quantity can be represented by a positive number or by a negative number. 

+

 

+

Andre received a gift of $10.

",,,positive || negative,positive,354803 +PRABFEZG,1,Multiple Choice (select 1),Multiple Choice,

Which parallelogram has an area of 60 square units?

,,,"

||

||

||

","

",433197 +PRABE3HF,1,Multiple Choice (select 1),Multiple Choice,"

Two copies of this triangle are used to compose a parallelogram.

+

 

+

Which parallelogram cannot be a result of the composition? If you get stuck, consider using tracing paper.

+

 

+

",,,"

||

||

||

","

",42371 +PSBBMH,1,Multiple Choice (select all),Check All That Apply,"

The diagram shows several lines. You can only see part of the lines, but they actually continue forever in both directions.

+

 

+

+

 

+

Which lines are images of line f under a translation?

",,,g || h || i || j,h || i,6467 +PSBCMM5,1,Multiple Choice (select 1),Multiple Choice,"

Jada collects data about the number of letters people get in the mail each week. The population distribution is shown in the dot plot.

+

 

+

+

 

+

Which of the following dot plots are likely to represent the means from samples of size 10 from this population?

",,,"

||

","

",403293 +PSBEUH,3,Multiple Choice (select all),Check All That Apply,"

Here is a circle with center H and some line segments and curves joining points on the circle.

+

 

+

Identify examples of radius.

+

+

 

",,,AE || AH || BH || BF || CE || DG || DH || EH || FH || GH,AH || DH || EH || GH,24350 +PSBFD,1,Multiple Choice (select 1),Multiple Choice,"

Jada drank 2 liters of water yesterday. Andre drank 14 times as much water as Jada. Lin drank three times as much water as Andre.

+

 

+

 

+

Did Andre drink more or less water than Jada?

",,,More || Less,Less,438 +PRABQP5M,1,Multiple Choice (select all),Check All That Apply,

Select all the numbers that are greater than 1.

,,,"

23

||

0.63

||

75

||

57

||

132

||

322

","

23

||

75

||

322

",337576 +PSBBPHJ,1,Multiple Choice (select 1),Multiple Choice,"

Diego has 75% of $10. Noah has 25% of $30. Diego thinks he has more money than Noah, but Noah thinks they have an equal amount of money. Who is right?

",,,Diego || Noah,Noah,239810 +PRABQP24,1,Multiple Choice (select all),Check All That Apply,"

A rectangular prism has length l, width w, and height h. Select all the statements that must be true. 

+

",,,

The volume is (lwh)².

||

The volume is 2(lwh).

||

The volume is (lwh).

||

The surface area is 2(lwh).

||

The surface area is 2(lw) + 2(wh) + 2(lh).

||

The surface area is 2(lw) · 2(wh) · 2(lh).

,

The volume is (lwh).

||

The surface area is 2(lw) + 2(wh) + 2(lh).

,674301 +PSBBSPP,1,Multiple Choice (select 1),Multiple Choice,"

A random sample of 15 items were selected.

+

 

+

 

+

For this data set, is the mean or median a better measure of center?

",,,mean || median,median,255819 +PSBCC9B,1,Multiple Choice (select 1),Multiple Choice,"

Jada thinks the perimeter of this rectangle can be represented with the expression a+a+b+b. Andre thinks it can be represented with 2a+2b.

+

 

+

+

 

+
+
+
+
+

Do you agree with either, both, or neither of them?

+
+
+
+
",,,Jada || Andre || Both || Neither,Both,362327 +PSBC8XC,9,Multiple Choice (select 1),Multiple Choice,

Is r proportional to n?

,,,Yes || No,No,512430 +PRABD5BR,1,Multiple Choice (select all),Check All That Apply,"

A rectangle has length 6 and height 4.

+

Which of these would tell you that quadrilateral ABCD is definitely not similar to this rectangle? Select all that apply.

",,,"AB = BC || m∠ABC = 105° || AB = 8 || BC = 8 || BC=2·AB || 2·AB=3·BC","AB = BC || m∠ABC = 105° || BC=2·AB",237321 +PRABFFX5,1,Multiple Choice (select 1),Multiple Choice,"

Polyhedron P is a cube with a corner removed and relocated to the top of P. Polyhedron Q is a cube. How do their surface areas compare?

+

 

+

",,,P’s surface area is less than Q’s surface area. || P’s surface area is equal to Q’s surface area. || P’s surface area is greater than Q’s surface area. || There is not enough information given to compare their surface areas.,P’s surface area is greater than Q’s surface area.,55545 +PRABEUP5,1,Multiple Choice (select all),Check All That Apply,"

Select all equations that represent a relationship between angles in the figure.

+
+

 

+

+
",,,90 − 30 = b || 30 + b = a + c || a + c + 30 + b = 180 || a = 30 || a = c = 30 || 90 + a + c = 180,90 − 30 = b || 30 + b = a + c || a + c + 30 + b = 180 || 90 + a + c = 180,246605 +PRABQMBF,1,Multiple Choice (select all),Check All That Apply,"

This line plot shows the amount of time, in seconds, that it took 20 sixth graders to run a 50-meter dash.

+

+

 

+

 

+

Select all the true statements.

",,,The fastest time was 7.0 seconds. || No runner recorded a time of 7.2 seconds. || The fastest 5 students’ total time was 36.3 seconds. || Exactly half of the students were faster than 7.7 seconds. || The difference between the fastest and slowest times was 0.9 seconds.,No runner recorded a time of 7.2 seconds. || The fastest 5 students’ total time was 36.3 seconds. || The difference between the fastest and slowest times was 0.9 seconds.,256627 +PRABER4B,1,Multiple Choice (select all),Check All That Apply,

Which of these scales are equivalent to 3 cm to 4 km? Select all that apply. Recall that 1 inch is 2.54 centimeters.

,,,

0.75 cm to 1 km

||

1 cm to 12 km

||

6 mm to 2 km

||

0.3 mm to 40 m

||

1 in to 7.62 km

,

0.75 cm to 1 km

||

0.3 mm to 40 m

,257011 +PRABKDVC,1,Multiple Choice (select 1),Multiple Choice,

The Pythagorean Theorem is:

,,,True for all triangles || True for all right triangles || True for some right triangles || Never true,True for all right triangles,196678 +PSBRZZ,1,Multiple Choice (select 1),Multiple Choice,"

A rare and delicate plant will only produce flowers from 10% of the seeds planted. To see if it is worth planting 5 seeds to see any flowers, the situation is going to be simulated. Which of the following options is the best simulation?

",,,"

Another plant can be genetically modified to produce flowers 10% of the time. Plant 30 groups of 5 seeds each and wait 6 months for the plants to grow and count the fraction of groups that produce flowers.

||

Roll a standard number cube 5 times. Each time a 6 appears, it represents a plant producing flowers. Repeat this process 30 times and count the fraction of times at least one number 6 appears.

||

Have a computer produce 5 random digits (0 through 9). If a 9 appears in the list of digits, it represents a plant producing flowers. Repeat this process 300 times and count the fraction of times at least one number 9 appears.

||

Create a spinner with 10 equal sections and mark one of them “flowers.” Spin the spinner 5 times to represent the 5 seeds. Repeat this process 30 times and count the fraction of times that at least 1 “flower” was spun.

","

Have a computer produce 5 random digits (0 through 9). If a 9 appears in the list of digits, it represents a plant producing flowers. Repeat this process 300 times and count the fraction of times at least one number 9 appears.

",77989 +PSBBA4W,1,Multiple Choice (select 1),Multiple Choice,"

Triangle ABC is dilated using D as the center of dilation with scale factor 2. 

+

+

The image is triangle A'B'C'. Clare says the two triangles are congruent, because their angle measures are the same. Do you agree? 

",,,Yes || No,No,175643 +PSBCWSX,2,Multiple Choice (select all),Check All That Apply,

Select all the fractions that are equal to 0.082.

,,,"

820100

||

8201000

||

821000

||

82010

||

8210

||

82100

","

821000

",455995 +PRABE64M,1,Multiple Choice (select all),Check All That Apply,"

Here is a diagram that describes the cups of green and white paint in a mixture.

+

 

+ + + + + + + + + + + +
green paint (cups)
white paint (cups)
+

 

+

Select all the statements that accurately describe this diagram.

",,,"The ratio of cups of white paint to cups of green paint is 2 to 4. || For every cup of green paint, there are two cups of white paint. ||

The ratio of cups of green paint to cups of white paint is 4 : 2.

|| For every cup of white paint, there are two cups of green paint. ||

The ratio of cups of green paint to cups of white paint is 2 : 4.

","The ratio of cups of white paint to cups of green paint is 2 to 4. ||

The ratio of cups of green paint to cups of white paint is 4 : 2.

|| For every cup of white paint, there are two cups of green paint.",88681 +PRABQKZG,1,Multiple Choice (select all),Check All That Apply,"

Rectangle A is 10 times as long as Rectangle B.

+

+

If Rectangle A is 50 units long, select all the ways to find the length of Rectangle B.

",,,"

Multiply 50 by 10.

||

Divide 50 by 10.

||

Multiply 50 by 110.

||

Divide 50 by 110.

||

Multiply 10 by 50.

||

Divide 10 by 50.

","

Divide 50 by 10.

||

Multiply 50 by 110.

",457262 +PSBBE7Q,4,Multiple Choice (select 1),Multiple Choice,

There is one speed that you cannot plot on the bottom number line. Which is it?

,,,space || water || copper wire (electricity) || diamond || ice || olive oil,diamond,198440 +PRABTVKK,1,Multiple Choice (select 1),Multiple Choice,"

En una clase de 15 niños, 9 de ellos toman el bus a la escuela. ¿Qué porcentaje de los niños de la clase toman el bus a la escuela?

",,,90% || 60% || 9% || 0.6%,60%,320333 +PSBCTT,1,Multiple Choice (select 1),Multiple Choice,"

Lin is reading a 47-page book. She read the first 20 pages in 35 minutes.

+

If she continues to read at the same rate, will she be able to complete this book in under 1 hour?

",,,Yes || No,No,13384 +PSBBA2A,1,Multiple Choice (select all),Check All That Apply,

Select all numbers that are solutions to the inequality k > 5.

,,,4 || 5 || 6 || 5.2 || 5.01 || 0.5,6 || 5.2 || 5.01,175247 +PSBBEGX,1,Multiple Choice (select all),Check All That Apply,

Select all numbers that are solutions to the inequality w < 1.

,,,5 || -5 || 0 || 0.9 || -1.3,-5 || 0 || 0.9 || -1.3,194547 +PSBBTU4,1,Multiple Choice (select 1),Multiple Choice,"

Mini muffins cost $3.00 per dozen.

+

 

+
    +
  • Andre says, “I have $2.00, so I can afford 8 muffins.”

  • +
  • Elena says, “I want to get 16 muffins, so I’ll need to pay $4.00.""
  • +
+

 

+

Do you agree with either of them?

",,,I agree with Andre || I agree with Elena || I agree with both || I don't agree with either,I agree with both,262715 +PSBR45,1,Multiple Choice (select 1),Multiple Choice,

Andre types 208 words in 4 minutes. Noah types 342 words in 6 minutes. Who types faster?

,,,Andre || Noah,Noah,78634 +PSBBHQ2,2,Multiple Choice (select 1),Multiple Choice,

Did more cubic inches or cubic centimeters fit in the cardboard box?

,,,cubic inch || cubic centimeter,cubic centimeter,212653 +PSB6J5,1,Multiple Choice (select all),Check All That Apply,"

Here are three fractions: 23, 45, 69. Two of these fractions are equivalent to each other. Which two?  

",,,"

23

||

45

||

69

","

23

||

69

",151128 +PRABQJVF,1,Multiple Choice (select 1),Multiple Choice,"

Polyhedron P is a cube with a corner removed and relocated to the top of P. Polyhedron Q is a cube with the same size base as Polyhedron P. How do their surface areas compare?

+

 

+

",,,Q’s surface area is less than P’s surface area. || Q’s surface area is equal to P’s surface area. || Q’s surface area is greater than P’s surface area. || There is not enough information given to compare their surface areas.,Q’s surface area is less than P’s surface area.,502927 +PSBC2H,1,Multiple Choice (select 1),Multiple Choice,"

The graph shows the temperature between noon and midnight in City A on a certain day.

+

 

+

+

 

+

The table shows the temperature, T, in degrees Fahrenheit, for h hours after noon, in City B.

+

 

+ + + + + + + + + + + + + + + + + + + + + +
h123456
T827875625859
+

 

+

Which city was warmer at 4:00 p.m.?

",,,City A || City B || Neither city,City B,14567 +PRABET5V,1,Multiple Choice (select all),Check All That Apply,

Jada has a scale map of Kansas that fits on a page in her book. The page is 5 inches by 8 inches. Kansas is about 210 miles by 410 miles. Select all scales that could be a scale of the map. (There are 2.54 centimeters in an inch.)

,,,1 in to 1 mi || 1 cm to 1 km || 1 in to 10 mi || 1 ft to 100 mi || 1 cm to 200 km || 1 in to 100 mi || 1 cm to 1000 km,1 cm to 200 km || 1 in to 100 mi,386124 +PRABETDM,1,Multiple Choice (select all),Check All That Apply,"

If x represents a positive number, select all expressions whose value is greater than x.

",,,"

1 - 14x

||

1 + 14x

||

78x

||

98x

","

1 + 14x

||

98x

",56910 +PRABD4SY,1,Multiple Choice (select 1),Multiple Choice,"

Which of these four figures are congruent to this figure?

+

 

+

",,,"

||

||

||

","

",241939 +PSBCDYX,1,Multiple Choice (select 1),Multiple Choice,"

Mai poured 2.6 liters of water into a partially filled pitcher. The pitcher then contained 10.4 liters. 

+

 

+

Which diagram represents this situation?

",,,"

||

||

","

",366543 +PRABEUGV,1,Multiple Choice (select all),Check All That Apply,"

Select all the expressions that are equivalent to -36x + 54y  90.

",,,"

-9 (4x - 6y - 10)

||

-18 (2x - 3y +5)

||

-6 (6x +9y -15)

||

18 (-2x +3y -5)

||

-2 (18x - 27y +45)

||

2 (-18x +54y - 90)

","

-18 (2x - 3y +5)

||

18 (-2x +3y -5)

||

-2 (18x - 27y +45)

",303522 +PRABQPK5,1,Multiple Choice (select 1),Multiple Choice,

Which of these sequences of transformations would return a shape to its original position?

,,,"Translate 5 units right, then 5 units down. || Translate 3 units down, then 2 units up, and then 1 unit down. || Rotate 120° counterclockwise around center C, then rotate 240° clockwise around C again. || Reflect over line l, then reflect over line l again.","Reflect over line l, then reflect over line l again.",275670 +PRABQPT2,1,Multiple Choice (select all),Check All That Apply,"

Jada earns twice as much money per hour as Diego. Diego earns twice as much money per hour as Lin.

+

 

+

Select all the graphs that could represent how much Jada, Diego, and Lin earn for different amounts of time worked.

",,,"

||

||

||

||

","

||

",79256 +PSBX69,13,Multiple Choice (select 1),Multiple Choice,"

For the statement below, decide if it is true or false. 

+

 

+

There are exactly two solutions of the equation for line .

",,0,True || False,FALSE,114584 +PSBE3P,3,Multiple Choice (select 1),Multiple Choice,"

A class measured the radius r, circumference C, and area of various circular objects. The results are recorded in this table.

+

 

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + +
r(cm)C(cm)A(cm2)
42550
531.578.5
850201
1275452
+

 

+

 

+

Does the equation A = 12 · r  · C describe the relationships in the table?

",,,Yes || No,Yes,25874 +PSBGXA,1,Multiple Choice (select 1),Multiple Choice,

The side lengths of Triangle B are all 5 more than the side lengths of Triangle A. Can Triangle B be a scaled copy of Triangle A?

,,,Yes || No,Yes,36042 +PSBB9D3,1,Multiple Choice (select 1),Multiple Choice,"

The reading on a car’s speedometer has 1.6% maximum error. The speed limit on a road is 65 mph.

+

 

+

The speedometer reads 64 mph. Is it possible that the car is going over the speed limit?

",,,Yes || No,Yes,339221 +PSBB52F,1,Multiple Choice (select 1),Multiple Choice,"

Is 312 cups more or less than 1 liter? (Note: 1 cup ≈ 236.6 milliliters)

",,,More || Less,Less,319813 +PSBBSQ,1,Multiple Choice (select 1),Multiple Choice,"

Predict if the mean is greater than, less than, or approximately equal to the median.

+

 

+

Ages of 30 people at a family dinner party

+

",,,Greater than || Less than || Equal to,Less than,7452 +PRABEUA5,1,Multiple Choice (select all),Check All That Apply,

Select all the situations where knowing the surface area of an object would be more useful than knowing its volume.

,,,Placing an order for tiles to replace the roof of a house. || Estimating how long it will take to clean the windows of a greenhouse. || Deciding whether leftover soup will fit in a container. || Estimating how long it will take to fill a swimming pool with a garden hose. || Calculating how much paper is needed to manufacture candy bar wrappers. || Buying fabric to sew a couch cover. || Deciding whether one muffin pan is enough to bake a muffin recipe.,Placing an order for tiles to replace the roof of a house. || Estimating how long it will take to clean the windows of a greenhouse. || Calculating how much paper is needed to manufacture candy bar wrappers. || Buying fabric to sew a couch cover.,53711 +PSBDKZF,1,Multiple Choice (select 1),Multiple Choice,"

The school orchestra sells snacks at their concerts to raise money. At the spring concert, they made 98 as much money as they made at their fall concert.

+

 

+

Did they make more money at the spring or the fall concert?

",,,Spring concert || Fall concert,Spring concert,576826 +PRABD5B8,1,Multiple Choice (select all),Check All That Apply,"

Select all the points that are on the line through (0,5) and (2,8).

+

 

",,,"

(4,11)

||

(5,10)

||

(6,14)

||

(30,50)

||

(40,60)

","

(4,11)

||

(6,14)

||

(30,50)

",146496 +PRABE52Q,1,Multiple Choice (select all),Check All That Apply,"

Andre drew a line connecting two opposite corners of a parallelogram. Select all true statements about the triangles created by the line Andre drew.

+

 

+

",,,"

Each triangle has two sides that are 3 units long.

||

Each triangle has a side that is the same length as the diagonal line.

||

Each triangle has one side that is 3 units long.

||

When one triangle is placed on top of the other and their sides are aligned, we will see that one triangle is larger than the other.

||

The two triangles have the same area as each other.

",

Each triangle has a side that is the same length as the diagonal line.

||

Each triangle has one side that is 3 units long.

||

The two triangles have the same area as each other.

,421017 +PRABHAFY,1,Multiple Choice (select 1),Multiple Choice,"

The students in art class are designing a stained-glass window to hang in the school entryway. The window will be 3 feet tall and 4 feet wide. Here is their design.

+

 

+

+

 

+

They have raised $100 for the project. The colored glass costs $5 per square foot and the clear glass costs $2 per square foot. The material they need to join the pieces of glass together costs 10 cents per foot and the frame around the window costs $4 per foot.

+

 

+
Do they have enough money to cover the cost of making the window?
",,,Yes || No,Yes,294382 +PRABETNR,1,Multiple Choice (select all),Check All That Apply,"

In a video game, Clare scored 50% more points than Tyler. If c is the number of points that Clare scored and t is the number of points that Tyler scored, which equations are correct? Select all that apply.

",,,

c = 1.5t

||

c = t + 0.5

||

c = t + 0.5t

||

c = t + 50

||

c = (1 + 0.5)t

,

c = 1.5t

||

c = t + 0.5t

||

c = (1 + 0.5)t

,204231 +PRABQKS7,1,Multiple Choice (select 1),Multiple Choice,"

Jada has read 35 of a book. She has read 75 pages so far. How many pages are in the whole book?

+

 

",,,45 pages || 105 pages || 120 pages || 125 pages,125 pages,588631 +PRABG427,1,Multiple Choice (select all),Check All That Apply,

Select all the expressions that are equivalent to 4 − x.

,,,x − 4 || 4 + -x || -x + 4 || -4 + x || 4 + x,4 + -x || -x + 4,146878 +PSBFNZ,1,Multiple Choice (select all),Check All That Apply,"

Select all quadrilaterals that are scaled copies of the unlabeled rectangle. 

+

 

+

",,,"

+

 

||

+

 

||

+

 

||

+

 

||

+

 

||

+

 

||

+

 

||

+

 

","

+

 

||

+

 

||

+

 

||

+

 

",28656 +PSBD3T,5,Multiple Choice (select 1),Multiple Choice,

Was the cooler filling faster before or after Priya changed the rate of water flow?

,,,Before || After,Before,20510 +PSBWQA,1,Multiple Choice (select 1),Multiple Choice,"

The science teacher gives daily homework. For a random sample of days throughout the year, the median number of problems is 5 and the IQR is 2. The Spanish teacher also gives daily homework. For a random sample of days throughout the year, the median number of problems is 10 and the IQR is 1. If you estimate the median number of science homework problems to be 5 and the median number of Spanish problems to be 10, which is more likely to be accurate?

",,,Science || Spanish,Spanish,106008 +PRABKCT3,1,Multiple Choice (select 1),Multiple Choice,"

The table shows the area of a square for specific side lengths.

+

 

+ + + + + + + + + + + + + + + + + +
side length (inches)0.5123
area (square inches)0.25149
+

 

+

The area A of a circle with radius r is given by the equation A=π·r2 .

+

Is the area of a square with side length 2 inches greater than or less than the area of a circle with radius 1.2 inches?

",,,Greater than || Less than,Less than,269076 +PSBB39,1,Multiple Choice (select 1),Multiple Choice,"

Let’s look at a square and a rhombus.

+

+

Priya says, “These polygons are similar because their side lengths are all the same.” Clare says, “These polygons are not similar because the angles are different.” Do you agree with either Priya or Clare?

",,,Priya || Clare || Neither,Clare,9287 +PRABQP57,1,Multiple Choice (select all),Check All That Apply,"

Select all the expressions that equal 4×106.

",,,"

2×1082×10-2

||

40×105

||

406

||

400,000

||

1.2×1093×102

","

2×1082×10-2

||

40×105

||

1.2×1093×102

",263567 +PRABQWBZ,1,Multiple Choice (select all),Check All That Apply,"

Nothing can go faster than the speed of light, which is 299,792,458 meters per second. Which of these are possible?

",,,Traveling a billion meters in 5 seconds || Traveling a meter in 2.5 nanoseconds. (A nanosecond is a billionth of a second.) || Traveling a parsec in a year. (A parsec is about 3.26 light years and a light year is the distance light can travel in a year.),Traveling a billion meters in 5 seconds,222861 +PSBBT89,2,Multiple Choice (select 1),Multiple Choice,

Which class had less variability in the amount of time spent on homework?

,,,Class A || Class B,Class B,265301 +PRABFK4C,1,Multiple Choice (select all),Check All That Apply,"

The dot plots show how much time, in minutes, students in a class took to complete each of five different tasks.  Select all the dot plots of tasks for which the mean time is approximately equal to the median time.

+

 

+

 

",,,"

+

                                        Time in Minutes

||

+

                                        Time in Minutes

||

+

                                           Time in Minutes

||

+

                                            Time in Minutes

||

+

                                            Time in Minutes

","

+

                                        Time in Minutes

||

+

                                           Time in Minutes

",188925 +PRABET72,1,Multiple Choice (select all),Check All That Apply,"

Select all the stories that can be represented by the diagram.

+

 

+

+

 

",,,"Andre studies 7 hours this week for end-of-year exams. He spends 1 hour on English and an equal number of hours each on math, science, and history. || Lin spends $3 on 7 markers and a $1 pen. || Diego spends $1 on 7 stickers and 3 marbles. || Noah shares 7 grapes with 3 friends. He eats 1 and gives each friend the same number of grapes. || Elena spends $7 on 3 notebooks and a $1 pen.","Andre studies 7 hours this week for end-of-year exams. He spends 1 hour on English and an equal number of hours each on math, science, and history. || Noah shares 7 grapes with 3 friends. He eats 1 and gives each friend the same number of grapes. || Elena spends $7 on 3 notebooks and a $1 pen.",314711 +PSBYTD,1,Multiple Choice (select 1),Multiple Choice,"

A student said, “To find the value of 109.2÷6, I can divide 1,092 by 60.”

+

 

+

Do you agree with this statement? 

",,,Yes || No,Yes,117735 +PSBJDY,1,Multiple Choice (select 1),Multiple Choice,"

Jada, Diego, and Elena each use the same spinner that has four (not necessarily equal sized) sections marked A, B, C, and D.

+
    +
  • +

    Jada says, ""The probability of spinning B is 0.3 because I spun 10 times, and it landed on B 3 times.""

    +
  • +
  • +

    Diego says, ""The probability of spinning B is 20% because I spun 5 times, and it landed on B once.""

    +
  • +
  • +

    Elena says, ""The probability of spinning B is 27 because I spun 7 times, and it landed on B twice.""

    +
  • +
+

 

+

Based on their methods, which probability estimate do you think is the most accurate?

",,,Jada's || Diego's || Elena's,Jada's,43505 +PRABQPS4,1,Multiple Choice (select 1),Multiple Choice,"

Here is a dot plot showing how many books are read by each student per month.

+

 

+

+

 

+

Which of these is a representative sample of the population?

",,,"

||

||

||

","

",258429 +PSBBCDY,2,Multiple Choice (select 1),Multiple Choice,"

Is the mean or the median a more appropriate measure of center for this data set?

+

 

+

",,,mean || median,median,182285 +PRABQM8V,1,Multiple Choice (select 1),Multiple Choice,"

Here’s a dot plot of a data set.

+

 

+

+

 

+

 

+

Which statement is true about the mean of the data set?

",,,The mean is less than 5. || The mean is equal to 5. || The mean is greater than 5. || There is not enough information to determine the mean.,The mean is equal to 5.,193691 +PSBCB6T,1,Multiple Choice (select 1),Multiple Choice,"

Decide whether the quantity can be represented by a positive number or by a negative number. 

+

 

+

A climber descended 550 feet.

",,,

Positive

||

Negative

,

Negative

,355654 +PSBYP4,1,Multiple Choice (select 1),Multiple Choice,"

Which estimate is closest to the actual value of the expression? 

+

 

+

",,13,13 || 13.25 || 13.5,13,117298 +PSBBJRE,1,Multiple Choice (select all),Check All That Apply,"

Select all the expressions that are equivalent to 16− 12 − 244

+

 

",,,4 + 16x − 12(1 + 2x) || 40x − 16 || 16x − 24x − 4 + 12 || -8x − 8 || 10(1.6x - 1.2 - 2.4x + 4),4 + 16x − 12(1 + 2x) || -8x − 8,218163 +PSBNNV,1,Multiple Choice (select 1),Multiple Choice,

Are two squares with the same side lengths scaled copies of one another?

,,,Yes || No,Yes,60631 +PRABP9VA,1,Multiple Choice (select all),Check All That Apply,"

Elena mixed 2 cups of white paint with 6 tablespoons of blue paint.

+

 

+
+
+
+
+

Here is a diagram that represents this situation.

+

 

+

+

 

+

Select all the statements that correctly describe this situation. 

+
+
+
+
",,,"

The ratio of cups of white paint to tablespoons of blue paint is 2 : 6.

|| For every cup of white paint, there are 2 tablespoons of blue paint. || There is 1 cup of white paint for every 3 tablespoons of blue paint. || There are 3 tablespoons of blue paint for every cup of white paint. || For each tablespoon of blue paint, there are 3 cups of white paint. || For every 6 tablespoons of blue paint, there are 2 cups of white paint. || The ratio of tablespoons of blue paint to cups of white paint is 6 to 2.","

The ratio of cups of white paint to tablespoons of blue paint is 2 : 6.

|| There is 1 cup of white paint for every 3 tablespoons of blue paint. || There are 3 tablespoons of blue paint for every cup of white paint. || For every 6 tablespoons of blue paint, there are 2 cups of white paint. || The ratio of tablespoons of blue paint to cups of white paint is 6 to 2.",54134 +PSBXZW,3,Multiple Choice (select 1),Multiple Choice,

Is the price of the phone this month the same as it was two months ago?

,,,No || Yes,No,113830 +PRABQMT5,1,Multiple Choice (select 1),Multiple Choice,"

These four numbers are plotted on a number line:  -45, 12, 18, -34

+

 

+

Which is the correct ordering on the number line, from left to right?

",,,"

12, 18, -34, -45

||

-45, -34, 12, 18

||

-34, -45, 18, 12

||

-45, -34, 18, 12

","

-45, -34, 18, 12

",49246 +PSBTHR,1,Multiple Choice (select 1),Multiple Choice,"

Are any of these numbers a solution to the equation 

+
    +
  • 1
  • +
+

 

+
    +
  • +
+

 

+
    +
  • +
+

 

+
    +
  • +
",,,Yes || No,No,86904 +PSBCBF7,1,Multiple Choice (select 1),Multiple Choice,"

Which group of blocks is the bluest?

+

 

+

+
 
",,,A || B || C || D || E,A || D,351684 +PRABFGU9,1,Multiple Choice (select all),Check All That Apply,"

Select all the expressions that represent the area of the large, outer rectangle.

+

 

+

",,,5(2 + 4) || 5 · 2 + 4 || 5 · 2 + 5 · 4 || 5 · 2 · 4 || 5 + 2 + 4 || 5 · 6,5(2 + 4) || 5 · 2 + 5 · 4 || 5 · 6,113030 +PSB5Z9,1,Multiple Choice (select 1),Multiple Choice,"

A small company is selling a new board game, and they need to know how many to produce in the future.

+

 

+

After 12 months, they sold 4 thousand games; after 18 months, they sold 7 thousand games; and after 36 months, they sold 15 thousand games.

+

 

+

Could this information be reasonably estimated using a single linear model?

+

 

",,,Yes || No,Yes,148105 +PRABEU3Y,1,Multiple Choice (select 1),Multiple Choice,"

Priya has a recipe for banana bread. She uses 712 cups of flour to make 3 loaves of banana bread.

+

 

+
+

Andre will follow the same recipe. He will make b loaves of banana bread using f cups of flour.

+

 

+

Which of these equations represents the relationship between b and f?

+
",,,"

b=29f

||

b=25f

||

b=52f

||

b=92f

","

b=25f

",247330 +PRABERVX,1,Multiple Choice (select all),Check All That Apply,"

On a map of Chicago, 1 cm represents 100 m. Select all statements that express the same scale.

",,,5 cm on the map represents 50 m in Chicago || 1 mm on the map represents 10 m in Chicago || 1 km in Chicago is represented by 10 cm on the map || 100 cm in Chicago is represented by 1 m on the map.,1 mm on the map represents 10 m in Chicago || 1 km in Chicago is represented by 10 cm on the map,160506 +PSB3AD,1,Multiple Choice (select 1),Multiple Choice,"

A line contains the points (-3, -2) and (7, 2).

+

 

+

Without doing any calculations, determine whether the slope of this line is positive or negative.

+
 
",,,positive || negative,positive,132090 +PRABFKYU,1,Multiple Choice (select all),Check All That Apply,"

A preschool teacher is rearranging four boxes of playing blocks so that each box contains an equal number of blocks. Currently Box 1 has 32 blocks, Box 2 has 18, Box 3 has 41, and Box 4 has 9.

+

 

+

Select all the ways he could make each box have the same number of blocks.

",,,"

Remove all the blocks and make four equal piles of 25, then put each pile in one of the boxes.

||

Remove 7 blocks from Box 1 and place them in Box 2.

||

Remove 21 blocks from Box 3 and place them in Box 4.

||

Remove 7 blocks from Box 1 and place them in Box 2, and remove 21 blocks from Box 3 and place them in Box 4.

||

Remove 7 blocks from Box 1 and place them in Box 2, and remove 16 blocks from Box 3 and place them in Box 4.

","

Remove all the blocks and make four equal piles of 25, then put each pile in one of the boxes.

||

Remove 7 blocks from Box 1 and place them in Box 2, and remove 16 blocks from Box 3 and place them in Box 4.

",6735 +PSB873,1,Multiple Choice (select 1),Multiple Choice,"

After buying the supplies, you start painting the east wall. It takes you 96 minutes to put two coats of paint on that wall (not including a lunch break between the two coats).

+

 

+

Your friend stops by to see how you are doing and comments that you are 25% finished with the painting. Are they correct?

",,,"

Yes,  your friend is correct.

||

No,  your friend is not correct.

","

No,  your friend is not correct.

",164620 +PSBBK4C,1,Multiple Choice (select 1),Multiple Choice,

Decide which story can be represented by the system of equations y = x + 6 and x + y = 100.

,,,"

Diego’s teacher writes a test worth 100 points. There are 6 more multiple choice questions than short answer questions.

||

Lin and her younger cousin measure their heights. They notice that Lin is 6 inches taller, and their heights add up to exactly 100 inches.

","

Lin and her younger cousin measure their heights. They notice that Lin is 6 inches taller, and their heights add up to exactly 100 inches.

",225929 +PSBDDKB,1,Multiple Choice (select 1),Multiple Choice,"

This is a dot plot of the scores on a video game for a population of 50 teenagers.

+

+

 

+

The three dot plots together are the scores of teenagers in three samples from this population. Which of the three samples is most representative of the population?

",,,"

||

||

","

",539841 +PSBCKP4,1,Multiple Choice (select 1),Multiple Choice,"

For the pair of numbers below, select the number that is greater.

",,,"

17·108   

||

4·108

","

17·108   

",398365 +PRABQPQX,1,Multiple Choice (select 1),Multiple Choice,

What is a 90° angle called? 

,,,acute || obtuse || right || straight,right,12623 +PRABQK67,1,Multiple Choice (select 1),Multiple Choice,

A runner is preparing for a marathon that is cut into 5 equal sections. The marathon is 42.195 kilometers long. How long is each section of the marathon?

,,,210.975 km || 21.0975 km || 8.439 km || 0.8439 km,8.439 km,590738 +PRABQP64,1,Multiple Choice (select 1),Multiple Choice,"

What is the length of the line segment?

+

 

+

",,,"

8

||

128

||

16

||

260

","

128

",315827 +PRABQNER,1,Multiple Choice (select 1),Multiple Choice,"

A map of Utah is shown. Which area is closest to the area of Utah in square kilometers?

+

 

+

",,,"274,963 || 244,905 || 225,808 || 1,997","225,808",444018 +PSBH8S,2,Multiple Choice (select 1),Multiple Choice,

You will wait less than 10 minutes before ordering at a fast food restaurant.

,,,impossible || unlikely || equally likely as not || likely || certain,likely,42091 +PRABHRJQ,1,Multiple Choice (select all),Check All That Apply,"

Select all the expressions that are solutions to 5 = 23x.

",,,"

 

+

5 · 23

+

 

||

 

+

523

+

 

||

 

+

5 ÷ 23

+

 

||

 

+

152

+

 

||

 

+

103

+

 

","

 

+

523

+

 

||

 

+

5 ÷ 23

+

 

||

 

+

152

+

 

",21566 +PSB4AR,2,Multiple Choice (select all),Check All That Apply,"

In the graphed function, which values of x give an output of 0?

+

 

+

",,,0 || 1 || 2 || 3 || 4 || 5 || 6 || 7 || 8 || 9 || 10 || 11 || 12 || 13 || 14,0 || 5 || 10,138133 +PSBH8S,6,Multiple Choice (select 1),Multiple Choice,

The next baby born at a hospital will be a boy.

,,,impossible || unlikely || equally likely as not || likely || certain,equally likely as not,42491 +PSBCNJG,1,Multiple Choice (select 1),Multiple Choice,"

The two lines represent the distance, over time, that two cars are traveling. Which car is traveling faster?

+

",,,Car A || Car B,Car B,408074 +PRABQN7E,1,Multiple Choice (select 1),Multiple Choice,"

A graduated cylinder actually contains 7.5 milliliters of water. When Han measures the volume of the water inside the graduated cylinder, his measurement is 7 milliliters. Which of these is closest to the percent error for Han’s measurement?

",,,107.1% || 93.3% || 7.1% || 6.7%,6.70%,97961 +PSBGXA,1,Multiple Choice (select 1),Multiple Choice,

The side lengths of Triangle B are all 5 more than the side lengths of Triangle A. Can Triangle B be a scaled copy of Triangle A?

,,,Yes || No,Yes,36042 +PSBBYZR,1,Multiple Choice (select all),Check All That Apply,"

For the situation, select all the equations that represent it.

+

 

+

Apples cost $1.60 per pound at the farmer’s market. They cost 1.5 times as much at the grocery store. How much do the apples cost per pound at the grocery store?

",,,"

y = (1.5) · (1.60)

||

y = 1.60 ÷ 1.5

||

(1.5)y = 1.60

||

y1.5 = 1.60

","

y = (1.5) · (1.60)

||

y1.5 = 1.60

",292175 +PSBWXS,1,Multiple Choice (select all),Check All That Apply,"

Here is a figure that looks like the letter A, along with several other figures. Which figures are scaled copies of the original A? 

+

 

+

",,,Figure 1 || Figure 2 || Figure 3 || Figure 4,Figure 2 || Figure 4,107252 +PSBBCDY,4,Multiple Choice (select 1),Multiple Choice,"

Can Jada use these data displays to find the exact median?

+

 

+

",,,yes || no,yes,182483 +PSBWPH,1,Multiple Choice (select 1),Multiple Choice,"

The graph shows the height of a plant after a certain amount of time measured in days.

+

 

+

+

 

+

Do you think that there may be a proportional relationship between the number of days and the height of the plant?

",,,Yes || No,Yes,105953 +PSB67U,1,Multiple Choice (select 1),Multiple Choice,"

State whether you agree with the statement below. 

+

 

+

A city that has an elevation of -17 meters is closer to sea level than a city that has an elevation of -40 meters.

",,,Agree || Disagree,Agree,154138 +PRABER4Y,1,Multiple Choice (select 1),Multiple Choice,"
+

Kiran and Mai are standing at one corner of a rectangular field of grass looking at the diagonally opposite corner. Kiran says that if the the field were twice as long and twice as wide, then it would be twice the distance to the far corner. Mai says that it would be more than twice as far, since the diagonal is even longer than the side lengths.

+

 

+

Do you agree with either of them?

+
",,,

I agree with Kiran.

||

I agree with Mai.

||

I agree with both.

||

I agree with neither.

,

I agree with Kiran.

,347917 +PSBCG3,1,Multiple Choice (select 1),Multiple Choice,"

Clare says, “This classroom is 11 meters long. A meter is longer than a yard, so if I measure the length of this classroom in yards, I will get less than 11 yards.”

+

 

+

Do you agree with Clare?

",,,Yes || No,No,11608 +PRABQPRF,1,Multiple Choice (select 1),Multiple Choice,

Which of these describes a unique polygon?

,,,"A quadrilateral with 4 right angles || A triangle with angles 30°, 80°, and 70° || A triangle with side lengths 7 cm and 8 cm and a 70° angle || A triangle with each side length 5 inches",A triangle with each side length 5 inches,558308 +PRABQPS3,1,Multiple Choice (select all),Check All That Apply,"

Elena would like to know the average speed that people drive on her street. She tracks the speed of 30 random cars that drive through with a speedometer. The mean of Elena’s sample is 30 miles per hour, and the MAD (mean absolute deviation) is 3.

+


Select all the true statements.

",,,Elena would be more likely to get an accurate estimate of the mean speed of the population by sampling 60 cars instead of sampling 30 cars. || The median speed of the sample must be between 25 and 35 miles per hour. || Another random sample of 30 cars is likely to have a mean between 24 and 36 miles per hour. || The mean speed of these 30 cars is likely to be the same as the mean speed of a second sample of 30 cars. || The mean speed of these random 30 cars is likely to be the same as the mean of all cars that drive in a residential area.,Elena would be more likely to get an accurate estimate of the mean speed of the population by sampling 60 cars instead of sampling 30 cars. || Another random sample of 30 cars is likely to have a mean between 24 and 36 miles per hour.,266053 +PRABG424,1,Multiple Choice (select 1),Multiple Choice,"

Decide whether the solution is represented by x < 2.5 or x > 2.5.

+

 

+

-25 > -5(x + 2.5)

+
 
",,,x < 2.5 || x > 2.5,x > 2.5,237641 +PSBBYA,1,Multiple Choice (select 1),Multiple Choice,"

These two box plots show the distances of a standing jump, in inches, for a random sample of 10-year-olds and a random sample of 15-year-olds.

+

 

+

+

 

+

Is there a meaningful difference in median distance for the two populations?

+
 
",,,Yes || No,Yes,8405 +PRABEUG6,1,Multiple Choice (select all),Check All That Apply,

Select all expressions that show x increased by 35%.

,,,"

1.35x

||

35100x

|| + + + + + +
x+35100x
||

(1+0.35)x

||

100+35100x

||

(100+35)x

","

1.35x

|| + + + + + +
x+35100x
||

(1+0.35)x

||

100+35100x

",235425 +PRABEUDQ,1,Multiple Choice (select 1),Multiple Choice,"

Which event is more likely: rolling a standard number cube and getting an even number, or flipping a coin and having it land heads up?

",,,Rolling an even number || A coin landing heads-up || The events are equally likely,The events are equally likely,63338 +PRABETNT,1,Multiple Choice (select 1),Multiple Choice,"

Which decimal is the best estimate of the fraction 2940?

",,0,0.5 || 0.6 || 0.7 || 0.8,0.7,204565 +PRABEGKG,1,Multiple Choice (select all),Check All That Apply,"

Select all the points that are on a line with slope 2 that also contains the point (2, -1).

",,,"

(3, 1)

||

(1, 1)

||

(1, -3)

||

(4, 0)

||

(6, 7)

","

(3, 1)

||

(1, -3)

||

(6, 7)

",50741 +PRABPVSU,1,Multiple Choice (select all),Check All That Apply,

Select all of the equations where x = 3 is a solution.

,,,"

x - 3 = 0

||

1 + x = 2

||

9 - x = 3

||

6 = 2x

||

15x = 3

||

x2 = 9

","

x - 3 = 0

||

6 = 2x

||

x2 = 9

",367058 +PRABQPZY,1,Multiple Choice (select all),Check All That Apply,

Select all the equations that have no solution.

,,,x + 6 = 5 + x || -2(x - 3) = -2x + 6 || 4 - 4x = 3x + 2 || 4(x + 1) = 3(x + 2) || 5 - 3x = -3x + 4,x + 6 = 5 + x || 5 - 3x = -3x + 4,77227 +PRABFARX,1,Multiple Choice (select 1),Multiple Choice,"

Which polyhedron can be assembled from this net?

+

 

+

",,,

A triangular pyramid

||

A trapezoidal prism

||

A rectangular pyramid

||

A triangular prism

,

A triangular pyramid

,78121 +PSBCC5E,1,Multiple Choice (select 1),Multiple Choice,"

The dot plots show the amounts of time that ten South African students and ten Australian students took to get to school. Without calculating, answer the questions.

+

 

+

+

 

+

Which data set has the smaller mean? 

",,,South Africa || Australia,Australia,361179 +PRABE3F9,1,Multiple Choice (select all),Check All That Apply,"

The area of this shape is 24 square units. Which of these statements is true about the area? Select all that apply.

+

 

+

",,,The area can be found by counting the number of squares that touch the edge of the shape. || It takes 24 grid squares to cover the shape without gaps and overlaps. || The area can be found by multiplying the side lengths that are 6 units and 4 units. || The area can be found by counting the grid squares inside the shape. || The area can be found by adding 4 x 3 and 6 x 2,It takes 24 grid squares to cover the shape without gaps and overlaps. || The area can be found by counting the grid squares inside the shape. || The area can be found by adding 4 x 3 and 6 x 2,47557 +PSBBEJZ,2,Multiple Choice (select 1),Multiple Choice,

Use the graph to decide who got paid more after distributing 14 flyers.

,,,Elena || Jada,Elena,195004 +PRABG3XR,1,Multiple Choice (select 1),Multiple Choice,"

Is the value of the expression closer to 121, or 112?

+

 

+

7 ÷ 5

",,,"

12

||

1

||

112

","

112

",128126 +PRABEVAW,1,Multiple Choice (select all),Check All That Apply,"

Select all the situations that can be represented by the tape diagram.

+

 

+

",,,"Clare buys 4 bouquets, each with the same number of flowers. The florist puts an extra flower in each bouquet before she leaves. She leaves with a total of 99 flowers. || Andre babysat 5 times this past month and earned the same amount each time. To thank him, the family gave him an extra $4 at the end of the month. Andre earned $99 from babysitting. || A family of 5 drove to a concert. They paid $4 for parking, and all of their tickets were the same price. They paid $99 in total. || 5 bags of marbles each contain 4 large marbles and the same number of small marbles. Altogether, the bags contain 99 marbles. || Han is baking five batches of muffins. Each batch needs the same amount of sugar in the muffins, and each batch needs four extra teaspoons of sugar for the topping. Han uses 99 total teaspoons of sugar.","Andre babysat 5 times this past month and earned the same amount each time. To thank him, the family gave him an extra $4 at the end of the month. Andre earned $99 from babysitting. || A family of 5 drove to a concert. They paid $4 for parking, and all of their tickets were the same price. They paid $99 in total.",308259 +PSBE24,1,Multiple Choice (select 1),Multiple Choice,"

Is the equation true or false?

+

 

+

8.4 × 10× 2 = (8.4 × 2) × 10(3×2)

",,0,True || False,FALSE,25844 +PRABMTN7,1,Multiple Choice (select 1),Multiple Choice,"

For the equation, decide if it is always true or never true.

+

 

+

x  3 = 2x  3  x

",,,Always True || Never True,Always True,148285 +PSB3Z,1,Multiple Choice (select 1),Multiple Choice,"

Which weighs more: a pumpkin that weighs 3.2 kilograms, or a cat that weighs 9 pounds?

+

 

+

Note: 1 pound is about 0.45 kilograms.

",,,a pumpkin that weighs 3.2 kilograms || a cat that weighs 9 pounds,a cat that weighs 9 pounds,3578 +PSBCR9A,1,Multiple Choice (select 1),Multiple Choice,"

Which figure is a scaled copy of Figure A? 

+

 

+

",,,Figure B || Figure C,Figure C,430037 +PSBDPJN,2,Multiple Choice (select 1),Multiple Choice,"

Which group shows greater variability? 

",,,Group P || Group Q,Group Q,591238 +PRABJK5Z,1,Multiple Choice (select all),Check All That Apply,"

Given a and b are numbers, and 180, which statements also must be true?

",,,a = 180 - b || a - 180 = b || 360 = 2a + 2b || a = 90 and b = 90,a = 180 - b || 360 = 2a + 2b,86798 +PSBB5Z7,1,Multiple Choice (select 1),Multiple Choice,"

¿Qué pesa más: una calabaza que pesa 3.2 kilogramos o un gato que pesa 9 libras?  

+

 

+

Nota: 1 libra es aproximadamente 0.45 kilogramos.

",,,Calabaza || Gato,Gato,319877 +PRABEPMB,1,Multiple Choice (select all),Check All That Apply,"

A square has an area of 81 square feet. Select all the expressions that equal the side length of this square, in feet.

",,,"

812

||

81

||

9

||

9

||

3

","

81

||

9

",423100 +PRABERFN,1,Multiple Choice (select 1),Multiple Choice,"

Which scale is equivalent to 1 cm to 1 km?

+
 
",,,"1 to 1,000 || 10,000 to 1 || 1 to 100,000 || 100,000 to 1 || 1 to 1,000,000","1 to 100,000",146478 +PSBJ4N,1,Multiple Choice (select 1),Multiple Choice,"

Which shape has a larger area: a rectangle that is 7 inches by  inch, or a square with side length of  inches?

",,,Rectangle || Square,Square,47078 +PSBCC7E,1,Multiple Choice (select 1),Multiple Choice,"

Two high school basketball teams have identical records of 15 wins and 2 losses. Sunnyside High School's mean score is 50 points and its MAD is 4 points. Shadyside High School's mean score is 60 points and its MAD is 15 points.

+

 

+

Lin read the records of each team’s score. She likes the team that had nearly the same score for every game it played. Which team do you think Lin likes?

",,,Sunnyside High School || Shadyside High School,Sunnyside High School,361989 +PRABEB5P,1,Multiple Choice (select all),Check All That Apply,

Select all the representations that are appropriate for comparing bite strength to weight for different carnivores.

,,,Histogram || Scatter plot || Dot plot || Table || Box plot,Scatter plot || Table,6116 +PSBCMZ4,1,Multiple Choice (select 1),Multiple Choice,

A rectangle has side lengths of 6 units and 3 units. Could you make a quadrilateral that is not identical using the same four side lengths?

,,,Yes || No,Yes,405080 +PSBTKM,2,Multiple Choice (select 1),Multiple Choice,"

Can you find a rational number that is exactly ?

",,,Yes || No,No,87272 +PSBCA6B,3,Multiple Choice (select 1),Multiple Choice,"

Two larger cubes are made out of unit cubes. Cube A is 2 by 2 by 2. Cube B is 4 by 4 by 4. The side length of Cube B is twice that of Cube A.

+

 

+

Is the volume of Cube B also twice that of Cube A?

+

 

+

",,,Yes || No,No,349875 +PSBH69,1,Multiple Choice (select 1),Multiple Choice,"

Which other expression has the same value as (-14)-(-8)?

+
 
",,,(-14) + 8 || 14 − (-8) || 14 + (-8) || (-14) + (-8),(-14) + 8,42642 +PSBHYF,3,Multiple Choice (select 1),Multiple Choice,"

Did Clare partition the figure into two identical shapes? 

+

 

+

",,,Yes || No,No,41469 +PRABMQH8,1,Multiple Choice (select all),Check All That Apply,"

Triangle Z is a scale copy of Triangle M.

+

+


Select all the sets of values that could be the side lengths of Triangle Z. 

",,,"

8,11,14

|| 10,17.5,25 || 6,9,11 || 6,10.5,15 || 8,14,20","10,17.5,25 || 6,10.5,15 || 8,14,20",569234 +PRABQP4K,1,Multiple Choice (select all),Check All That Apply,

Select all the relationships that demonstrate a negative association between variables.

,,,Number of absences from school and final grades || Outside temperature and ice cream sales || Price of houses and house sales || Number of rainy days and car accidents || Number of hours playing video games and grades,Number of absences from school and final grades || Price of houses and house sales || Number of hours playing video games and grades,77355 +PSBMYW,3,Multiple Choice (select 1),Multiple Choice,"

Which movie has a dot plot with ages that that center at about 30 years?

+

 

+

",,,Movie A || Movie B || Movie C,Movie C,57280 +PSB9QG,1,Multiple Choice (select 1),Multiple Choice,"

For the pair, some of the angles of two triangles in degrees are given. Use the information to decide if the triangles are similar or not.

+

 

+

 

+

Triangle A: 53, 71, ___; Triangle B: 53, 71, ___

",,,similar || not similar,similar,167382 +PRABQP6T,1,Multiple Choice (select 1),Multiple Choice,"

About 3.2×108 people live in the United States. About 3.9×107 people live in Canada. And about 1.1×108 people live in Mexico. About how many people live in all three countries altogether?

",,,"

4.69×107

||

4.69×108

||

8.2×107

||

8.2×108

","

4.69×108

",552392 +PRABFH7A,1,Multiple Choice (select all),Check All That Apply,"

The temperature at dawn is 6°C away from 0. Select all the temperatures that are possible.

",,,"

-12°C

||

-6°C

||

0°C

||

6°C

||

12°C

","

-6°C

||

6°C

",6346 +PSBCBW4,1,Multiple Choice (select 1),Multiple Choice,"

Andre and Jada are discussing how to write 1720 as a decimal.

+

 

+
+
    +
  • Andre says he can use long division to divide 17 by 20 to get the decimal.
  • +
+

 

+
    +
  • Jada says she can write an equivalent fraction with a denominator of 100 by multiplying by 55, then writing the number of hundredths as a decimal.
  • +
+

 

+

Do both of these strategies work?

+
",,,yes || no,yes,353991 +PSBBFAV,7,Multiple Choice (select 1),Multiple Choice,

Do you have any siblings? 

,,,Yes || No,Yes || No,198852 +PSBBZMW,1,Multiple Choice (select 1),Multiple Choice,"

Here are the nets of three cardboard boxes that are all rectangular prisms. The boxes will be packed with 1-centimeter cubes. All lengths are in centimeters.

+

+

 

+

Compare the surface areas of the boxes. Which box will use the least cardboard?

",,,"Box A || Box B || Box C || Boxes A,B,C uses the same amount of cardboard",Box A,295788 +PSBBBY3,1,Multiple Choice (select 1),Multiple Choice,"

A scientist is interested in whether certain species of butterflies like certain types of local flowers. The scientist captures butterflies in two zones with different flower types and records the number caught.

+

 

+ + + + + + + + + + + + + + + + + + +
 zone 1zone 2
eastern tiger swallowtail1634
monarch2446
+

 

+

 

+

Does the data show an association between butterfly type and zone? 

",,,Yes || No,No,180312 +PSB8AF,1,Multiple Choice (select 1),Multiple Choice,"

 

+

Clare started with a rectangular piece of paper. She folded up one corner, and then folded up the other corner, as shown in the photos.

+ + + + + + + + +
+

Try this yourself with any rectangular paper. Fold the left corner up at any angle, and then fold the right corner up so that the edges of the paper meet.

+

 

+

Clare thought that the angle at the bottom looked like a 90 degree angle. Does yours also look like it is 90 degrees?

",,,Yes || No,Yes,160140 +PRABEVCV,1,Multiple Choice (select 1),Multiple Choice,"

Lin got a $50 gift card to an online music store. She uses the gift card to buy an album for $9.99. She also wants to use the gift card to buy some songs. Each song costs $1.29.

+

 

+

Which of these inequalities describes this situation, where n is the number of songs Lin wants to buy? 

+
 
",,,9.99 + 1.29n ≥ 50 || 9.99 + 1.29n ≤ 50 || 9.99 - 1.29n ≥ 50 || 9.99 - 1.29n ≤ 50,9.99 + 1.29n ≤ 50,189877 +PRABQMFK,1,Multiple Choice (select 1),Multiple Choice,

Which expression is equivalent to 20c − 8d?

,,,

2(10c + 4d)

|| 4(5c − 8d) || 4(5c − 2d) || c(20 − 8d),4(5c − 2d),427575 +PSBDW5,1,Multiple Choice (select all),Check All That Apply,"

For the situation, select all the equations that represent it.

+

 

+

Jada’s cat weighs 3.45 kg. Andre’s cat weighs 1.2 kg more than Jada’s cat. How much does Andre’s cat weigh?

",,,"

x = 3.45 + 1.2

||

x = 3.45 - 1.2

||

x + 1.2 = 3.45

||

x - 1.2 = 3.45

","

x = 3.45 + 1.2

||

x - 1.2 = 3.45

",19761 +PRABMTN6,1,Multiple Choice (select 1),Multiple Choice,"

For the equation, decide if it is always true or never true.

+

 

+

2(x + 3) = 5x + 6  3x 

",,,Always True || Never True,Always True,148145 +PSBFRY,1,Multiple Choice (select 1),Multiple Choice,"

Diego is 165 cm tall. Andre is 1.7 m tall. Who is taller, Diego or Andre?

",,,Diego || Andre,Andre,29501 +PRABQTPQ,1,Multiple Choice (select 1),Multiple Choice,

A circle has radius 50 cm. Which of these is closest to its area?

,,,"157 cm² || 314 cm² || 7,854 cm² || 15,708 cm²","7,854 cm²",270553 +PRABERUD,1,Multiple Choice (select all),Check All That Apply,

Which of these scales is equivalent to the scale 1 cm to 5 km? Select all that apply.

,,,3 cm to 15 km || 1 mm to 150 km || 5 cm to 1 km || 5 mm to 2.5 km || 1 mm to 500 m,3 cm to 15 km || 5 mm to 2.5 km || 1 mm to 500 m,165767 +PRABQP3S,1,Multiple Choice (select 1),Multiple Choice,"

Which point is on the graph of the function y = 3x + 2?

",,,"(1, 5) || (2, 3) || (3, 2) || (5, 1)","(1, 5)",144266 +PSBBT89,1,Multiple Choice (select 1),Multiple Choice,"

Two different classes took a survey to determine the number of minutes spent on
homework one evening. Here is a box plot showing the results from Class A:

+

+

 

+

Here are the results from Class B:

+

10, 15, 20, 20, 25, 30, 30, 35, 40, 45, 45, 45, 60, 60, 80

+

 

+

In which class did students spend less time on their homework?

",,,Class A || Class B,Class B,265140 +PRABQPCM,1,Multiple Choice (select all),Check All That Apply,"

Select all expressions that are equivalent to 5n-30.

",,,n + n + n + n + n - 30 || 5(n - 30) || (n - 6) · 5 || 5n - 30n || 5n + -30,n + n + n + n + n - 30 || (n - 6) · 5 || 5n + -30,609697 +PSB4AR,1,Multiple Choice (select all),Check All That Apply,"

The table and graph represent two functions. Use the table and graph to answer the questions.

+

 

+

+

 

+ + + + + + + + + + + + + + + + + + + + + +
x123456
y3-1045-1
+

 

+

For which values of x is the output from the table less than the output from the graph?

",,,1 || 2 || 3 || 4 || 5 || 6,2 || 3,137984 +PRABEVHN,1,Multiple Choice (select all),Check All That Apply,

Select all the measures of variability or spread.

,,,mean || IQR (interquartile range) || MAD (mean absolute deviation) || median || range,IQR (interquartile range) || MAD (mean absolute deviation) || range,529857 +PSB2FK,4,Multiple Choice (select 1),Multiple Choice,"

If Mai is given the option to flip a coin and win if it comes up heads, is that a better option for her to win?

",,,Yes || No,Yes,126872 +PSBDPQ,1,Multiple Choice (select 1),Multiple Choice,"

For a suitcase to be checked on a flight (instead of carried by hand), it can weigh at most 50 pounds. Andre’s suitcase weighs 23 kilograms.

+

 

+

Can Andre check his suitcase? (Note: 10 kilograms  22 pounds)

",,,Yes || No,No,18501 +PSBCWTH,2,Multiple Choice (select 1),Multiple Choice,"

A circular lawn has a row of bricks around the edge. The diameter of the lawn is about 40 feet.

+

 

+

+

 

+

 

+

Which is the best estimate for the total length of the bricks? 

",,,"

125 feet

||

125 square feet

||

1,250 feet

||

1,250 square feet

",

125 feet

,456048 +PRABHGFH,1,Multiple Choice (select all),Check All That Apply,"

Which of these triangles are translations of Triangle A? Select all that apply.

+

 

+

+
 
",,,Triangle B || Triangle C || Triangle D || Triangle E || Triangle F,Triangle B || Triangle D,495451 +PSB88X,1,Multiple Choice (select 1),Multiple Choice,"

Jada and Lin are comparing inches and feet. Jada says that the constant of proportionality is 12, Lin says it is 112. Do you agree with either one of them?

",,,I agree with only Lin || I agree with only Jada || I agree with both Jada and Lin || I agree with neither Jada or Lin,I agree with both Jada and Lin,164771 +PSBDZX2,1,Multiple Choice (select all),Check All That Apply,"

Identify all pairs of parallel lines in the diagram.

+

 

+

",,,g and f || h and g || h and f || h and j || h and i || g and j || g and i || f and j || f and i || j and i,g and f,651306 +PSBBSQ,3,Multiple Choice (select all),Check All That Apply,"

Which measure of center- the mean or the median- better describes a typical value for the following distribution?

+

 

+

",,,Mean || Median,Median,7682 +PSBCJYT,1,Multiple Choice (select 1),Multiple Choice,"

Lin knows that there are 4 quarts in a gallon. She wants to convert 6 quarts to gallons, but cannot decide if she should multiply 6 by 4 or divide 6 by 4 to find her answer.

+

 

+

What should she do? If you get stuck, consider drawing a double number line or using a table.

",,,Multiply 6 by 4 || Divide 6 by 4,Divide 6 by 4,394101 +PSBBZSQ,1,Multiple Choice (select 1),Multiple Choice,"

Is the statement true or false?

+

 

+

16% of 250 is equal to 250% of 16

",,1,True || False,TRUE,296749 +PRABEVDK,1,Multiple Choice (select 1),Multiple Choice,"

A square pyramid is sliced parallel to the base and halfway up the pyramid.

+

 

+

Which of these describes the cross-section?

+

 

+

",,,A square smaller than the base || A quadrilateral that is not a square || A square the same size as the base || A triangle with a height the same as the pyramid,A square smaller than the base,68115 +PSBCGVT,1,Multiple Choice (select 1),Multiple Choice,"

The points (-2, 0) and (0, -6) are each on the graph of a linear equation. Is (2, 6) also on the graph of this linear equation?

",,,Yes || No,No,383239 +PRABE64M,1,Multiple Choice (select all),Check All That Apply,"

Here is a diagram that describes the cups of green and white paint in a mixture.

+

 

+ + + + + + + + + + + +
green paint (cups)
white paint (cups)
+

 

+

Select all the statements that accurately describe this diagram.

",,,"The ratio of cups of white paint to cups of green paint is 2 to 4. || For every cup of green paint, there are two cups of white paint. ||

The ratio of cups of green paint to cups of white paint is 4 : 2.

|| For every cup of white paint, there are two cups of green paint. ||

The ratio of cups of green paint to cups of white paint is 2 : 4.

","The ratio of cups of white paint to cups of green paint is 2 to 4. ||

The ratio of cups of green paint to cups of white paint is 4 : 2.

|| For every cup of white paint, there are two cups of green paint.",88681 +PRABETDJ,1,Multiple Choice (select 1),Multiple Choice,"

At the beginning of the month, there were 80 ounces of peanut butter in the pantry. Since then, the family ate 0.3 of the peanut butter. How many ounces of peanut butter are in the pantry now?

",,,0.7 • 80 || 0.3 • 80 || 80 - 0.3 || (1 + 0.3) • 80,0.7 • 80,55885 +PRABFENN,1,Multiple Choice (select all),Check All That Apply,"
+

An orange has about 14 cup of juice. How many oranges are needed to make 212 cups of juice?

+

 

+

Select all the equations that represent this question.

+
",,,"

? · 14 = 212

||

14 ÷ 212 = ?

||

? ·  212 = 14

||

212 ÷ 14 = ?

","

? · 14 = 212

||

212 ÷ 14 = ?

",277226 +PRABQP5J,1,Multiple Choice (select 1),Multiple Choice,

Which segment has a length of 10 units?

,,,"

(3, 4) to (30, 40)

||

(0,0) to (10, 10)

||

(-1, -2) to (9, -2)

||

(-2, 8) to (-3, 7)

","

(-1, -2) to (9, -2)

",337475 +PRABQMFN,1,Multiple Choice (select all),Check All That Apply,

Select all the expressions that have the same value.

,,,

33

||

34

||

62

||

63

||

92

||

93

,

34

||

92

,350462 +PRABEU33,1,Multiple Choice (select 1),Multiple Choice,"

A car is 180 inches long. A truck is 75% longer than the car.

+

 

+
+

How long is the truck?

+
",,,135 inches || 240 inches || 255 inches || 315 inches,315 inches,248005 +PRABQM33,1,Multiple Choice (select all),Check All That Apply,"

Jada drew this line plot showing the hat sizes, in inches, of all the players on her softball team.

+

 

+

+

 

+

 

+

Select all the true statements.

",,,"

There are six players on the team.

||

The largest hat size is 8 inches.

||

Half of the hat sizes are less than 758 inches.

||

None of the players has a hat size of 768 inches.

||

 The difference between the maximum and minimum hat size is 78 inch.

","

The largest hat size is 8 inches.

||

Half of the hat sizes are less than 758 inches.

||

 The difference between the maximum and minimum hat size is 78 inch.

",4926 +PRABQP23,1,Multiple Choice (select all),Check All That Apply,"

Noah is three years younger than four times the age of his brother. Select all the equations that correctly represent the relationship between Noah's age n and his brother's age b.

",,,"

n=3-4b

||

n=4b-3

||

 n=4(b-3)

|| + + + + + +
b=n + 34
|| + + + + + +
b=4n-3
||

b=n4+3

","

n=4b-3

|| + + + + + +
b=n + 34
",674289 +PRABET9P,1,Multiple Choice (select 1),Multiple Choice,

Diego is solving the inequality 100 − 3≥ -50. He solves the equation 100 − 3-50 and gets 50. What is the solution to the inequality?

,,,x < 50 || x ≤ 50 || x > 50 || x ≥ 50,x ≤ 50,51606 +PRABFDGX,1,Multiple Choice (select all),Check All That Apply,"

Select all the equations that can represent the question: “How many groups of 45 are in 1?”

",,,"

? · 1 = 45

||

1 · 45 = ?

||

45 ÷ 1 = ?

||

? · 45 = 1

||

1 ÷ 45 = ?

","

? · 45 = 1

||

1 ÷ 45 = ?

",522821 +PSBCAMJ,1,Multiple Choice (select 1),Multiple Choice,"

The solution to 5  3x > 35 is either x > -10 or - 10 > x.

+

 

+

Which solution is correct?

",,,x > -10 || -10 > x,-10 > x,346366 +PSBKZU,1,Multiple Choice (select all),Check All That Apply,"

Select all the expressions that are equivalent to 

",,,9 - 10n || 14 - 3n || 14 - 21n || (2 - 3n) · 7 || 7 · 2 · (-3n),14 - 21n || (2 - 3n) · 7,51977 +PSBBSYB,1,Multiple Choice (select 1),Multiple Choice,"

State whether the following is in scientific notation.

+

 

+

36 x 105

",,,Already in scientific notation || Not in scientific notation,Not in scientific notation,257525 +PSBBSVC,1,Multiple Choice (select 1),Multiple Choice,"

State whether the following is in scientific notation.

+

 

+

48,200

",,,Already in scientific notation || Not in scientific notation,Not in scientific notation,257027 +PRABEG66,1,Multiple Choice (select 1),Multiple Choice,

An ice cream shop offers two ice cream cones. The waffle cone holds 12 ounces and is 5 inches tall. The sugar cone also holds 12 ounces and is 8 inches tall. Which cone has a larger radius? 

,,,waffle cone || sugar cone,waffle cone,115951 +PSBKYN,1,Multiple Choice (select 1),Multiple Choice,

There are 25 prime numbers between 1 and 100. There are 46 prime numbers between 1 and 200. Which situation below is more likely?

,,,"
    +
  • A computer produces a random number between 1 and 100 that is prime.
  • +
||
    +
  • A computer produces a random number between 1 and 200 that is prime.
  • +
","
    +
  • A computer produces a random number between 1 and 100 that is prime.
  • +
",51557 +PSBBU49,1,Multiple Choice (select 1),Multiple Choice,"

Do 4x and 15+x have the same value when x is 5?

",,,Yes || No,Yes,270010 +PSBTE,1,Multiple Choice (select 1),Multiple Choice,"

For the pair of shapes, decide whether or not Shape A is congruent to Shape B. 

+

 

+

 

",,,"Yes, they are congruent || No, they are not congruent","No, they are not congruent",2234 +PRABESMD,1,Multiple Choice (select 1),Multiple Choice,"
+
+
+
+
+

Which question cannot be answered by the solution to the equation 3x = 27?

+

3

+
+
+
+
+
",,,Elena read three times as many pages as Noah. She read 27 pages. How many pages did Noah read? || Lin has 27 stickers. She gives 3 stickers to each of her friends. With how many friends did Lin share her stickers? || Diego paid $27 to have 3 pizzas delivered and $35 to have 4 pizzas delivered. What is the price of one pizza? || The coach splits a team of 27 students into 3 groups to practice skills. How many students are in each group?,Diego paid $27 to have 3 pizzas delivered and $35 to have 4 pizzas delivered. What is the price of one pizza?,67861 +PRABQPYS,1,Multiple Choice (select 1),Multiple Choice,"

Which graph is a translation of line n?

+

  

+

",,,Line A || Line B || Line C || Line D,Line D,172034 +PSBCRJR,1,Multiple Choice (select 1),Multiple Choice,"

Decide whether the inequality statement is true or false. 

+

 

+

-5 > 2

",,0,True || False,FALSE,426185 +PSBCB4Y,2,Multiple Choice (select 1),Multiple Choice,"

After Lin makes her way down the hall, will the 30th locker have no stickers, 1 sticker, or 2 stickers? 

",,,no stickers || 1 sticker || 2 stickers,1 sticker,355558 +PSBBZU2,1,Multiple Choice (select 1),Multiple Choice,"

If you knew that two angles were complementary and were given the measure of one of those angles, would you be able to find the measure of the other angle?

+

 

",,,Yes || No,Yes,297072 +PSBB27S,2,Multiple Choice (select 1),Multiple Choice,

Which of the graphs is most likely to represent the graph of daylight for the month after the autumnal equinox?

,,,"

||

||

||

 

","

",304606 +PSBBVT7,1,Multiple Choice (select all),Check All That Apply,"

Mai, Clare, and Tyler are hiking from a parking lot to the summit of a mountain. They pass a sign that gives distances.

+

 

+

Parking lot: 34 mile

+

Summit: 112 miles

+

 

+
    +
  • Mai says: “We are one-third of the way there.”

  • +
  • Clare says: “We have to go twice as far as we have already gone.”

  • +
  • Tyler says: “The total hike is three times as long as what we have already gone.”
  • +
  •  
  • +
+

 

+

Do you agree with any of them?  Select those you agree with. 

",,,Mai || Claire || Tyler,Mai || Claire || Tyler,274139 +PRABPTTC,1,Multiple Choice (select all),Check All That Apply,"

Select all the equations that have a solution of 27.

",,,"

x2=27

||

 x²=414

||

x²=449

||

x2=621

||

x3=8343

||

x3=67

","

x²=449

||

x3=8343

",478012 +PRABQNGF,1,Multiple Choice (select all),Check All That Apply,"

The ages of people dining in two restaurants are shown in the following box plots.

+

 

+

+

 

+

Select all the statements that must be true. 

",,,The median age of people dining in Restaurant B is greater than the median age of people dining in Restaurant A. || The MAD (mean absolute deviation) for Restaurant B is greater than the MAD (mean absolute deviation) for Restaurant A. || The youngest person was dining in Restaurant A. || The IQR (interquartile range) for Restaurant A is equal to the IQR (interquartile range) for Restaurant B. || Every person dining in Restaurant B is older than everyone dining in Restaurant A.,The median age of people dining in Restaurant B is greater than the median age of people dining in Restaurant A. || The youngest person was dining in Restaurant A.,258280 +PSBB3YN,1,Multiple Choice (select 1),Multiple Choice,"

Jada is using a computer’s random number generator to produce 6 random whole numbers between 1 and 100 so she can use a random sample. The computer produces the numbers: 1, 2, 3, 4, 5, and 6.

+

 

+

Should she use these numbers or have the computer generate a new set of random numbers?

",,,Use these numbers || Use new set of random numbers,Use these numbers,308995 +PRABEWFS,1,Multiple Choice (select 1),Multiple Choice,

Data collected from a survey of American teenagers aged 13 to 17 was used to estimate that 29% of teens believe in ghosts. This estimate was based on data from 510 American teenagers. What is the population that people carrying out the survey were interested in?

,,,All people in the United States. || The 510 teens that were surveyed. || All American teens who are between the ages of 13 and 17. || The 29% of the teens surveyed who said they believe in ghosts.,All American teens who are between the ages of 13 and 17.,310109 +PSBC99E,2,Multiple Choice (select 1),Multiple Choice,

Determine which data set is Tyler’s.

,,,Data Set A || Data Set B || Data Set C || Data Set D,Data Set B,520423 +PSBBQFD,1,Multiple Choice (select all),Check All That Apply,

Select all the prisms.

,,,"

||

||

||

||

","

||

||

||

",244435 +PSBZC7,1,Multiple Choice (select 1),Multiple Choice,

Suppose Quadrilaterals A and B are both squares. Are A and B necessarily scale copies of one another?

,,,Yes || No,Yes,120984 +PSBDMDU,1,Multiple Choice (select 1),Multiple Choice,"

A container of fuel dispenses fuel at the rate of 5 gallons per second. If y represents the amount of fuel remaining in the container, and x represents the number of seconds that have passed since the fuel started dispensing, then x and y satisfy a linear relationship.

+

In the coordinate plane, will the slope of the line representing that relationship have a positive, negative, or zero slope?

",,,Positive || Negative || Zero,Negative,578697 +PSB633,1,Multiple Choice (select 1),Multiple Choice,"

State whether you agree with the statement below. 

+

 

+

A temperature of 35 degrees Fahrenheit is as cold as a temperature of -35 degrees Fahrenheit.

",,,Agree || Disagree,Disagree,153519 +PSBS38,1,Multiple Choice (select 1),Multiple Choice,"

Decide whether the equation is true or false.

+

 

+

7 + 7 + 7 = 3 + 3 + 3 + 3 + 3 + 3 + 3

",,1,True || False,TRUE,84110 +PSBNRS,1,Multiple Choice (select 1),Multiple Choice,"

Quadrilateral A has side lengths 2, 3, 5, and 6. Quadrilateral B has side lengths 4, 5, 8, and 10. Could one of the quadrilaterals be a scaled copy of the other?

",,,Yes || No,No,61151 +PRABQM8Z,1,Multiple Choice (select all),Check All That Apply,"

Rectangle A measures 9 inches by 3 inches. Rectangle B is a scaled copy of Rectangle A.

+

Select all of the measurement pairs that could be the dimensions of Rectangle B.

",,,4.5 inches by 1.5 inches || 8 inches by 2 inches || 10 inches by 4 inches || 13.5 inches by 4.5 inches || 90 inches by 30 inches,4.5 inches by 1.5 inches || 13.5 inches by 4.5 inches || 90 inches by 30 inches,115930 +PRABEJTK,1,Multiple Choice (select all),Check All That Apply,"

Select all the expressions that are equal to 410-3:

",,,"

4·110·110·110

||

4·(-10)·(-10)·(-10)

||

4·0.001

||

4·0.0001

||

0.004

||

0.0004

","

4·110·110·110

||

4·0.001

||

0.004

",490287 +PRABFDJM,1,Multiple Choice (select 1),Multiple Choice,"

Which question can be represented by the equation 4 ÷ 27 = ?

",,,"

What is 4 groups of 27?

||

How many 27s are in 4?

||

What is 27 of 4?

||

How many 4s are in 27?

","

How many 27s are in 4?

",184230 +PRABQPCF,1,Multiple Choice (select all),Check All That Apply,"

Lin is collecting coins. After giving away 13 coins, she has 75 coins remaining.

+

 

+

Select all the equations Lin can solve to find x, the number of coins she started with.

",,,"

x + 13 = 75

||

x - 13 = 75

||

x = 75 - 13

||

13x = 75

||

x = 75 + 13

||

x = 75 · 13

||

x = 7513

","

x - 13 = 75

||

x = 75 + 13

",178406 +PRABFG4K,1,Multiple Choice (select all),Check All That Apply,"

Which expressions are solutions to the equation 2.4y = 13.75?  Select all that apply.

+

 

+

 

",,,"

13.75 - 1.4

||

13.75 · 2.4

||

13.75 ÷ 2.4

||

13.752.4

||

2.4 ÷ 13.75

","

13.75 ÷ 2.4

||

13.752.4

",47917 +PRABQNDA,1,Multiple Choice (select all),Check All That Apply,"

The graph shows the cost C in dollars of w pounds of peanuts, a proportional relationship.

+

 

+

Select all the true statements.

+

 

+

",,,"2.5 pounds of peanuts costs $1. || 1 pound of peanuts costs $2.50. || 5 pounds of peanuts cost $12.50. || 9 pounds of peanuts cost $19.50. || The point (4, 10) is on the graph of the proportional relationship.","1 pound of peanuts costs $2.50. || 5 pounds of peanuts cost $12.50. || The point (4, 10) is on the graph of the proportional relationship.",409398 +PRABD477,1,Multiple Choice (select 1),Multiple Choice,"

Triangle DEF is a dilation of triangle ABC with scale factor 2. In triangle ABC, the largest angle measures 82°. What is the largest angle measure in triangle DEF?

",,,"

41°

||

82°

||

123°

||

164°

","

82°

",47390 +PRABQTD5,1,Multiple Choice (select 1),Multiple Choice,

Which graph represents a proportional relationship?

,,,"

||

||

||

","

",561011 +PSB47G,3,Multiple Choice (select 1),Multiple Choice,"

If x represents a number, does 25·x always represent 40% of that number?

",,,Yes || No,Yes,143123 +PSB5Y4,2,Multiple Choice (select 1),Multiple Choice,"

A different rectangular solid has length l, width 10, height 5, and volume V. Is the relationship between l and V a proportional relationship?

",,,Yes || No,Yes,148013 +PSBW2X,1,Multiple Choice (select 1),Multiple Choice,"

Tyler says that Figure B is a scaled copy of Figure A because all of the peaks are half as tall.

+

Do you agree with Tyler?

+

",,,Yes || No,No,108073 +PRABQMXH,1,Multiple Choice (select 1),Multiple Choice,"

It took 4 hours to drive 240 miles. At this rate, how long does it take to drive 90 miles?

",,,"

60 hours

||

6 hours

||

223 hours

||

112 hours

","

112 hours

",3980 +PRABEU6P,1,Multiple Choice (select all),Check All That Apply,"

Jada is collecting stickers. After getting 15 more stickers, she has 60 stickers in total.

+

 

+

Select all the equations Jada can solve to find x, the number of stickers she started with.

",,,"

x + 15 = 60

||

x − 15 = 60

||

x = 60 + 15

||

x = 60 − 15

||

15x = 60

||

 x = 60 · 15

||

x = 6015

",

x + 15 = 60

||

x = 60 − 15

,61779 +PSBCA6B,1,Multiple Choice (select 1),Multiple Choice,"

Two larger cubes are made out of unit cubes. Cube A is 2 by 2 by 2. Cube B is 4 by 4 by 4. The side length of Cube B is twice that of Cube A.

+

 

+

Is the surface area of Cube B also twice that Cube A?

+

 

+

",,,Yes || No,No,349598 +PSBR8T,1,Multiple Choice (select 1),Multiple Choice,"

Here is a story: Lin bought 4 bags of apples Each bag had the same number of apples. After eating 1 apple from each bag, she had 28 apples left.

+

 

+

Which diagram best represents the story? 

",,,"

||

||

","

",78866 +PRABEVX3,1,Multiple Choice (select all),Check All That Apply,"

Select all the right triangles, given the lengths of the sides.

+

+

 

",,,A. || B. || C. || D. || E.,A. || E.,46379 +PRABECZR,1,Multiple Choice (select all),Check All That Apply,

Select all the situations for which only zero or positive solutions make sense.

,,,

Measuring temperature in degrees Celsius at an Arctic outpost each day in January.

||

The height of a candle as it burns over an hour.

||

The elevation above sea level of a hiker descending into a canyon.

||

The number of students remaining in school after 6:00 p.m.

||

A bank account balance over a year.

||

The temperature in degrees Fahrenheit of an oven used on a hot summer day.

,

The height of a candle as it burns over an hour.

||

The number of students remaining in school after 6:00 p.m.

||

The temperature in degrees Fahrenheit of an oven used on a hot summer day.

,187169 +PSBBSFM,2,Multiple Choice (select 1),Multiple Choice,"

Which grade has the most students?

+

 

+

",,,Sixth grade || Seventh grade || Eighth grade,Sixth grade,255003 +PSBCZP4,2,Multiple Choice (select 1),Multiple Choice,"

Consider the statement: “A square with side lengths of  inch has an area of  square inches.” Do you agree?

",,,Agree || Disagree,Disagree,471899 +PSBN96,6,Multiple Choice (select 1),Multiple Choice,"

Which has more mass, the Burj Khalifa or the mass of the pennies it cost to build the Burj Khalifa?

",,,Burj Khalifa || Mass of pennies,Burj Khalifa,63961 +PSBHU8,1,Multiple Choice (select 1),Multiple Choice,"

If you mix blue and yellow paint in different ratios, you will get different shades of green paint. If the ratios are equivalent, the shades of green will be the same.

+

 

+
    +
  • Clare mixed a batch of green paint using 8 cups of yellow paint and 5 cups of blue paint.

  • +
  • Jada mixed another batch of green paint using 6 cups of yellow paint and 4 cups of blue paint.
  • +
+

 

+

Are these two batches the same shade of green?

+

 

",,,yes || no,no,40938 +PRABEUAV,1,Multiple Choice (select all),Check All That Apply,

You know x is a number less than 4. Select all the inequalities that must be true.

,,,x < 2 || x + 6 < 10 || 5x < 20 || x - 2 > 2 || x < 8,x + 6 < 10 || 5x < 20 || x < 8,73862 +PSBB8HF,2,Multiple Choice (select 1),Multiple Choice,

Are the swimmers on the 1984 team closer in age to one another than the swimmers on the 2016 team are to one another? 

,,,Yes || No,Yes,334286 +PSBBYTM,1,Multiple Choice (select 1),Multiple Choice,"

Here are two polygons on a grid.

+

 

+

+

 

+

Is PQRST a scaled copy of ABCDE?

",,,Yes || No,No,290885 +PRABQKNN,1,Multiple Choice (select all),Check All That Apply,"

Select all the true statements.

+

 

+

",,,The ratio of triangles to squares is 2 to 4. ||

The ratio of squares to smiley faces is 6 : 4.

|| The ratio of smiley faces to triangles is 6 to 4. || There are two squares for every triangle. || There are two triangles for every smiley face. || There are three smiley faces for every triangle.,The ratio of triangles to squares is 2 to 4. || There are two squares for every triangle. || There are three smiley faces for every triangle.,114950 +PSBBHSS,1,Multiple Choice (select 1),Multiple Choice,

Did it take more feet or meters to measure the indicated length?

,,,more feet || more meters,more feet,212942 +PRABQMT6,1,Multiple Choice (select all),Check All That Apply,

Select all the numbers that are a common multiple of 8 and 12.

,,,96 || 80 || 48 || 32 || 24 || 20 || 4,96 || 48 || 24,49409 +PRABQK7X,1,Multiple Choice (select all),Check All That Apply,

Select all the equations where x = 5 is a solution.

,,,"

x - 4 = 9

||

1 + x = 6

||

2 = 7 - x

||

10x = 5

||

110x = 12

||

x2 = 5

","

1 + x = 6

||

2 = 7 - x

||

110x = 12

",56477 +PRABETRF,1,Multiple Choice (select 1),Multiple Choice,"

Noah picked 3 kg of cherries. Jada picked half as many cherries as Noah. How many total kgs of cherries did Jada and Noah pick?

+
 
",,,3 + 0.5 || 3 - 0.5 || (1 + 0.5) · 3 || 1 + 0.5 · 3,(1 + 0.5) · 3,341602 +PSBBMG6,1,Multiple Choice (select 1),Multiple Choice,"

Kiran started his homework before 7:00 p.m. and finished his homework after 8:00 p.m. Let h represent the number of hours Kiran worked on his homework.

+

 

+

Decide if the statement it is definitely true, definitely not true, or possibly true.

+

 

+

h>1

+
 
",,,Definitely True || Definitely Not True || Possibly True,Definitely True,227553 +PSBB6PY,6,Multiple Choice (select 1),Multiple Choice,"

",,,< || = || >,=,324144 +PRABESGF,1,Multiple Choice (select all),Check All That Apply,"

Last week, the price, in dollars, of a gallon of gasoline was g. This week, the price of gasoline per gallon increased by 5%. Which expressions represent this week's price, in dollars, of a gallon of gasoline? Select all that apply.

",,,

g + 0.05

||

g + 0.05g

||

1.05g

||

0.05g

||

(1 + 0.05)g

,

g + 0.05g

||

1.05g

||

(1 + 0.05)g

,586483 +PSB6CY,1,Multiple Choice (select 1),Multiple Choice,"

Clare sketches a rectangular prism with a height of 11 and a square base and labels the edges of the base s. She asks Han what he thinks will happen to the volume of the prism if she triples s.

+

 

+

Han says the volume will be 9 times bigger. Is he right?

",,,Yes || No,Yes,149928 +PRABEEMF,1,Multiple Choice (select all),Check All That Apply,"

Select all of the given points in the coordinate plane that lie on the graph of the linear equation 4x  y = 3.

+
 
",,,"

(-1, -7)

||

(0, 3)

||

34, 0

||

(1, 1)

||

(2, 5)

||

(4, -1)

","

(-1, -7)

||

34, 0

||

(1, 1)

||

(2, 5)

",231799 +PRABFK4A,1,Multiple Choice (select 1),Multiple Choice,"

Priya asked each of five friends to attempt to throw a ball in a trash can until they succeeded. She recorded the number of unsuccessful attempts made by each friend as: 1, 8, 6, 2, 4. Priya made a mistake: The 8 in the data set should have been 18.

+

 

+

How would changing the 8 to 18 affect the mean and median of the data set?

",,,The mean would decrease and the median would not change. || The mean would increase and the median would not change. || The mean would decrease and the median would increase. || The mean would increase and the median would increase.,The mean would increase and the median would not change.,64548 +PSBJMA,3,Multiple Choice (select 1),Multiple Choice,

Which tomato variety should the farmer choose?

,,,Variety A || Variety B,Variety B,44782 +PRABQTPS,1,Multiple Choice (select all),Check All That Apply,"

Select all of the true statements.

+
 
",,,π is the area of a circle of radius 1. || π is the area of a circle of diameter 1. || π is the circumference of a circle of radius 1. || π is the circumference of a circle of diameter 1. || π is the constant of proportionality relating the diameter of a circle to its circumference. || π is the constant of proportionality relating the radius of a circle to its area.,π is the area of a circle of radius 1. || π is the circumference of a circle of diameter 1. || π is the constant of proportionality relating the diameter of a circle to its circumference.,270843 +PSBDBBT,1,Multiple Choice (select 1),Multiple Choice,"
+

Tyler and Priya were both measuring angle TUS.TU

+
+
 
+
 
+
Priya thinks the angle measures 40 degrees. Tyler thinks the angle measures 140 degrees. Do you agree with either of them?
+
",,,Tyler is correct || Priya is correct || Neither,Priya is correct,526525 +PRABEVTE,1,Multiple Choice (select 1),Multiple Choice,"

This table shows a linear relationship between the amount of water in a tank and time.

+

 

+ + + + + + + + + + + + + + + + + + + +
time(minutes)water(gallons)
030
520
1010
+

 

+

Which of these statements is true?

",,,The water in the tank is increasing at a rate of 2 gallons per minute. || The water in the tank is increasing at a rate of 10 gallons per minute. || The water in the tank is decreasing at a rate of 2 gallons per minute. || The water in the tank is decreasing at a rate of 10 gallons per minute.,The water in the tank is decreasing at a rate of 2 gallons per minute.,340440 +PRABQP5W,1,Multiple Choice (select all),Check All That Apply,"

Select all the expressions that equal 28·24.

",,,"

24

||

212

||

46

||

232

||

432

","

212

||

46

",156590 +PSBCE5U,3,Multiple Choice (select 1),Multiple Choice,"

At a farm, animals are fed bales of hay and buckets of grain. Each bale of hay is in the shape a rectangular prism. The base has side lengths 2 feet and 3 feet, and the height is 5 feet. Each bucket of grain is a cylinder with a diameter of 3 feet. The height of the bucket is 5 feet, the same as the height of the bale.

+

 

+

Which is larger in volume, the bale or the bucket?

",,,Bale || Bucket,Bucket,373766 +PSBQGS,1,Multiple Choice (select 1),Multiple Choice,"

A pollster attends a rally and surveys many of the participants about whether they associate with political Party A or political Party B and whether they are for or against Proposition 3.14 going up for vote soon. The results are sorted into the table shown.

+

 

+ + + + + + + + + + + + + + + + + + +
 foragainst
party A832165
party B80160
+

 

+
    +
  • A news station reports these results by saying, “A poll shows that about the same number of people from both parties are voting against Proposition 3.14.”
  • +
+

 

+
    +
  • A second news station shows this graphic. +

     

    +
  • +
+

+

 

+

Are any of the news reports misleading? 

",,,Yes || No,Yes,69854 +PSBB6PY,2,Multiple Choice (select 1),Multiple Choice,"

",,,< || = || >,<,323761 +PRABFBN3,1,Multiple Choice (select 1),Multiple Choice,"

Clare wants to mail a package that weighs 412 pounds. What could this weight be in kilograms?

",,,"

2.04

||

4.5

||

9.92

||

4,500

",

2.04

,14554 +PSBBMXK,1,Multiple Choice (select 1),Multiple Choice,"

A movie rating website has many people rate a new movie on a scale of 0 to 100. Here is a dot plot showing a random sample of 20 of these reviews.

+

 

+

+

 

+

Would the mean or median be a better measure for the center of this data?

",,,Median || Mean,Median,230527 +PSBDDG2,1,Multiple Choice (select 1),Multiple Choice,"

Suppose 45% of all the students at Andre’s school brought in a can of food to contribute to a canned food drive. Andre picks a representative sample of 25 students from the school and determines the sample’s percentage.

+

 

+

He expects the percentage for this sample will be 45%. Do you agree? 

+

 

",,,Yes || No,No,539325 +PSBMYW,1,Multiple Choice (select 1),Multiple Choice,"

A movie theater is showing three different movies. The dot plots represent the ages of the people who were at the Saturday afternoon showing of each of these movies.

+

+

 

+

One of these movies was an animated movie rated G for general audiences. Do you think it was movie A, B, or C?

",,,Movie A || Movie B || Movie C,Movie B,57030 +PSBBXQS,1,Multiple Choice (select all),Check All That Apply,

Select all the pairs that could be reasonable approximations for the diameter and circumference of a circle. 

,,,5 meters and 22 meters || 19 inches and 60 inches || 33 centimeters and 80 centimeters,19 inches and 60 inches,284643 +PRABFS5J,1,Multiple Choice (select all),Check All That Apply,"

Select the unit from the list that you would use to measure the object.

+

 

+

The weight or mass of a chalkboard or whiteboard

",,,centimeters || cups || feet || gallons || grams || inches || kilograms || kilometers || liters || meters || miles || milliliters || millimeters || ounces || pounds || quarts || tons || yards,kilograms || pounds,173917 +PRABQNEM,1,Multiple Choice (select 1),Multiple Choice,

Here are the dimensions of some rectangles. Which rectangle has an area of 12 square units and a perimeter of 14 units?

,,,a length of 1 units and a width of 12 units || a length of 6 units and a width of 1 unit || a length of 6 units and a width of 2 units || a length of 3 units and a width of 4 units,a length of 3 units and a width of 4 units,668776 +PSBCP3V,1,Multiple Choice (select 1),Multiple Choice,"

Lin says that she can map Polygon A to Polygon B using only reflections. Do you agree with Lin? 

+

 

+

",,,I agree with Lin. || I do not agree with Lin. || Not enough information.,I agree with Lin.,417638 +PSBCBVV,1,Multiple Choice (select 1),Multiple Choice,"

Decide whether the quantity can be represented by a positive number or by a negative number. 

+

 

+

Tyler’s puppy gained 5 pounds.

",,,positive || negative,positive,353939 +PRABQP63,1,Multiple Choice (select all),Check All That Apply,"

Select all the numbers that are solutions to the equation x2=15.

",,,"

225

||

225

||

7.5

||

15

||

-15

","

15

||

-15

",315734 +PRABETPA,1,Multiple Choice (select all),Check All That Apply,"

The sales tax rate in New Mexico is 5.125%.  Select all the equations that represent the sales tax, t, you would pay in New Mexico for an item of cost c?

",,,"

t = 5.125c

||

t = 0.5125c

||

t = 0.05125c

||

t = c ÷ 0.05125

||

t = 5.125100c

","

t = 0.05125c

||

t = 5.125100c

",502720 +PSBCV8G,1,Multiple Choice (select 1),Multiple Choice,"

Are Figures A and B congruent? 

+

",,,Yes || No,No,452369 +PRABEVDJ,1,Multiple Choice (select all),Check All That Apply,

Select all the conditions for which it is possible to construct a triangle.

,,,"A triangle with angle measures 60°, 80°, and 80° || A triangle with side lengths 4 cm, 5 cm, and 6 cm || A triangle with side lengths 4 cm, 5 cm, and 15 cm || A triangle with side lengths 4 cm and 5 cm and a 50° angle || A triangle with angle measures 30° and 60°, and a 3 cm side length  ","A triangle with side lengths 4 cm, 5 cm, and 6 cm || A triangle with side lengths 4 cm and 5 cm and a 50° angle || A triangle with angle measures 30° and 60°, and a 3 cm side length  ",483519 +PSBBACU,1,Multiple Choice (select all),Check All That Apply,"

The manager of the concession stand keeps records of all of the supplies she buys and all of the items she sells. The table shows some of her records for Tuesday.

+

 

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
itemquantityvalue in dollars
doughnuts-5837.70
straws3,000-10.35
hot dogs-3948.75
pizza13-116.87
apples-4014.00
french fries-88132.00
+

 

+

Which items did she sell? 

",,,doughnuts || straws || hot dogs || pizza || apples || french fries,doughnuts || hot dogs || apples || french fries,171270 +PRABPP7F,1,Multiple Choice (select 1),Multiple Choice,

Which expression is equivalent to 2(3x - 4)?

,,,3x - 4 || 5x - 6 || 6x - 4 || 6x - 8,6x - 8,195291 +PRABFG5R,1,Multiple Choice (select all),Check All That Apply,"

Here is a true statement -8.7 < -8.4.  Select all of the statements that are equivalent to -8.7 < -8.4.

",,,

-8.7 is further to the right on the number line than -8.4.

||

-8.7 is further to the left on the number line than -8.4.

||

-8.7 is less than -8.4.

||

-8.7 is greater than -8.4.

||

-8.4 is less than -8.7.

||

-8.4 is greater than -8.7.

,

-8.7 is further to the left on the number line than -8.4.

||

-8.7 is less than -8.4.

||

-8.4 is greater than -8.7.

,428161 +PRABE3GV,1,Multiple Choice (select all),Check All That Apply,

Which three of these parallelograms have the same area as each other?

,,,"

+

 

+

 

||

||

 

+

||

","

+

 

+

 

||

||

",503653 +PRABQXHZ,1,Multiple Choice (select 1),Multiple Choice,"

 

+

+

 

+

For the numbers a and b represented in the figure, which expression is equal to ?

",,,|a| + |b| || |a| - |b| || |b| - |a|,|b| - |a|,338572 +PRABP75T,1,Multiple Choice (select all),Check All That Apply,"

Salt and sugar give two distinctly different tastes, one salty and the other sweet. In a mixture of salt and sugar, it is possible for the mixture to be salty, sweet or both. Will any of these mixtures taste exactly the same?

",,,"Mixture A: 2 cups water, 4 teaspoons salt, 0.25 cup sugar || Mixture B: 1.5 cups water, 3 teaspoons salt, 0.2 cup sugar || Mixture C: 1 cup water, 2 teaspoons salt, 0.125 cup sugar || None of these mixtures taste the same.","Mixture A: 2 cups water, 4 teaspoons salt, 0.25 cup sugar || Mixture C: 1 cup water, 2 teaspoons salt, 0.125 cup sugar",48435 +PRABQNYX,1,Multiple Choice (select 1),Multiple Choice,

A circle has radius 40 cm. Which of these is closest to its area?

,,,"10,053 cm² || 5,026 cm² || 251 cm² || 126 cm²","5,026 cm²",26908 +PRABEPMA,1,Multiple Choice (select all),Check All That Apply,

Select all the expressions that are equivalent to 38.

,,,"

324

||

83

||

3·3·3·3·3·3·3·3

||

342

||

363-2

||

36·102

","

324

||

3·3·3·3·3·3·3·3

||

342

||

363-2

",278747 +PSBYB5,4,Multiple Choice (select 1),Multiple Choice,

Are all of the possible outcomes equally likely?

,,,Yes || No,Yes,115545 +PSB6V2,2,Multiple Choice (select 1),Multiple Choice,

Did the average price of gas ever get below $2?

,,,Yes || No,Yes,152568 +PSBQG8,2,Multiple Choice (select 1),Multiple Choice,"

To represent , Elena drew another diagram. She also started by drawing 4 rectangles. She then replaced all 4 rectangles with 40 squares and crossed out 3 squares to represent subtraction of 0.03, leaving 37 squares in her diagram.

+

+

 

+

Is her diagram correct? Discuss your reasoning with a partner.

",,,Yes || No,Yes,70102 +PSBBKGB,1,Multiple Choice (select 1),Multiple Choice,

Triangle P has a base of 12 inches and a corresponding height of 8 inches. Triangle Q has a base of 15 inches and a corresponding height of 6.5 inches. Which triangle has a greater area? 

,,,Triangle P || Triangle Q,Triangle Q,222283 +PRABEDCQ,1,Multiple Choice (select 1),Multiple Choice,"

The linear model for some butterfly data is given by the equation y = 0.238x + 4.642. Which of the following best describes the slope of the model?

+

 

+

 

+

+
 
",,,"For every 1 mm the wingspan increases, the length of the butterfly increases 0.238 mm. || For every 1 mm the wingspan increases, the length of the butterfly increases 4.642 mm. || For every 1 mm the length of the butterfly increases, the wingspan increases 0.238 mm. || For every 1 mm the length of the butterfly increases, the wingspan increases 4.642 mm.","For every 1 mm the wingspan increases, the length of the butterfly increases 0.238 mm.",173897 +PRABQKVH,1,Multiple Choice (select 1),Multiple Choice,"

Andre used 412 sticks of butter to make multiple batches of brownies. The recipe calls for 34 of a stick of butter for each batch. How many batches did he make?

",,,"

6 batches

||

412 batches

||

338 batches

||

16 of a batch

",

6 batches

,518845 +PRABPUDC,1,Multiple Choice (select all),Check All That Apply,"

Lines CE and AD intersect at B.

+

+

Select all the true statements.

",,,The measure of angle CBA is equal to the measure of angle DBE. ||

The sum of the measures of angles CBA and DBE is 180 degrees.

|| The measure of angle CBD is equal to the measure of angle ABE. || The sum of the measures of angles CBD and CBA is 180 degrees. || The sum of the measures of angles CBA and DBE is 90 degrees.,The measure of angle CBA is equal to the measure of angle DBE. || The measure of angle CBD is equal to the measure of angle ABE. || The sum of the measures of angles CBD and CBA is 180 degrees.,544905 +PSBYKS,1,Multiple Choice (select 1),Multiple Choice,"

Which estimate is closest to the actual value of the expression? 

+

 

+

",,2,2 || 2.5 || 3,2.5,116703 +PSBW5U,3,Multiple Choice (select 1),Multiple Choice,"

For the situation, decide if it requires Noah to calculate surface area or volume. 

+

 

+

Noah is planning to use a box with a trapezoid base to hold modeling clay. He is unsure if the clay will all fit in the box.

",,,surface area || volume,volume,108867 +PRABQMAK,1,Multiple Choice (select 1),Multiple Choice,"

Mai biked 634 miles today, and Noah biked 412 miles. How many times the length of Noah’s bike ride was Mai’s bike ride?

",,,"

23 times as far

||

32 times as far

||

94 times as far

||

2438 times as far

","

32 times as far

",319507 +PRABEJDM,1,Multiple Choice (select all),Check All That Apply,

Select all the true statements:

,,,"

28·29=217

||

82·92=722

||

82·92=724

||

28·29=417

","

28·29=217

||

82·92=722

",9879 +PRABFDGD,1,Multiple Choice (select 1),Multiple Choice,"

Which question can be represented by the equation  ? ·  18 = 3

",,,"

How many 3s are in 18?

||

What is 3 groups of 18?

||

How many 18s are in 3?

||

What is 18 of 3?

","

How many 18s are in 3?

",517428 +PSBU9U,1,Multiple Choice (select 1),Multiple Choice,"

Two planes travel at a constant speed. Plane A travels 2,800 miles in 5 hours. Plane B travels 3,885 miles in 7 hours. Which plane is faster?

",,,Plane A || Plane B,Plane A,97062 +PRABQMFH,1,Multiple Choice (select 1),Multiple Choice,

Which expression is equal to 64

,,,"

10

||

24

||

46

||

6 · 6 · 6 · 6

",

6 · 6 · 6 · 6

,427314 +PSBBG,1,Multiple Choice (select 1),Multiple Choice,"

For the following pair of shapes, decide whether or not they are congruent. 

+

 

+

",,,"Yes, they are congruent || No, they are not congruent.","Yes, they are congruent",54 +PRABQP5U,1,Multiple Choice (select all),Check All That Apply,"

Select all the expressions that are equal to 362·5.9.

",,,"361 · 6.9 || 3.62 · 5,900 || 36.2 · 59 || 36,200 · 0.059 || 0.362 · 0.0059","36.2 · 59 || 36,200 · 0.059",156407 +PSB76J,2,Multiple Choice (select 1),Multiple Choice,"

Jada has d dimes. She has more than 30 cents but less than a dollar.

+

 

+

Can d be 10?

",,,Yes || No,No,159146 +PSBH8S,4,Multiple Choice (select 1),Multiple Choice,

A four-year-old child is over 6 feet tall.

,,,impossible || unlikely || equally likely or unlikely || likely || certain,impossible || unlikely,42284 +PSBBD9R,2,Multiple Choice (select 1),Multiple Choice,

Which group shows greater variability?

,,,

Group A

|| group B,

Group A

,193337 +PSB5P,1,Multiple Choice (select 1),Multiple Choice,"

This is another diagram of an unbalanced hanger.

+
+

Andre writes the following inequality: sDo you agree with his inequality?

",,,Yes || No,No,3858 +PRABD4TG,1,Multiple Choice (select 1),Multiple Choice,"

The point (-2, -3) is rotated 90 degrees counterclockwise using center (0, 0). What are the coordinates of the image?

",,,"

(-3,-2)

||

(-3,2)

||

(3,-2)

||

(3,2)

","

(3,-2)

",148617 +PRABD49X,1,Multiple Choice (select 1),Multiple Choice,"

The quadrilateral PQRS in the diagram is a parallelogram.

+

 

+

Let P'Q'R'S' be the image of PQRS after applying a dilation centered at a point O (not shown) with a scale factor of 3.

+

 

+

+

 

+

Which of the following is true?

",,,"P'Q' = PQ || P'Q' = 3PQ ||

PQ = 3P'Q'

||

P'Q' = 13PQ

",P'Q' = 3PQ,170317 +PSBCWTH,1,Multiple Choice (select 1),Multiple Choice,"

A circular lawn has a row of bricks around the edge. The diameter of the lawn is about 40 feet.

+

 

+

+

 

+

Which is the best estimate for the amount of grass in the lawn?

",,,"

125 feet

||

125 square feet

||

1,250 feet

||

1,250 square feet

","

1,250 square feet

",455884 +PSBDEVN,1,Multiple Choice (select 1),Multiple Choice,"

If you mix red and white paint in different ratios, you will get different shades of pink paint. If the ratios are equivalent, the shades of pink will be the same.

+

 

+
    +
  • +

    Mai mixed a batch of pink paint using 5 cups of red paint and 3 cups of white paint.

    +
  • +
+

 

+
    +
  • +

    Priya mixed another batch of pink paint using 7 cups of red paint and 4 cups of white paint.

    +
  • +
+

 

+

Are these two batches the same shade of pink?

",,,Yes || No,No,547864 +PRABEPK5,1,Multiple Choice (select 1),Multiple Choice,"

Evaluate (3.1×104) · (2×106). Choose the correct answer:

",,,"

5.1×1010

||

5.1×1024

||

6.2×1010

||

6.2×1024

","

6.2×1010

",278407 +PSBRVH,1,Multiple Choice (select 1),Multiple Choice,"

Three runners are training for a marathon. One day, they all run about ten miles, each at their own constant speed.

+
    +
  • This graph shows how long, in minutes, it takes Runner #1 to run miles.
  • +
+

+
    +
  • The equation that relates Runner #2’s distance (in miles) with time (in minutes) is t = 8.5d.

  • +
  • Runner #3’s information is in the table:
  • +
+

 

+ + + + + + + + + + + + + + + + + + + + + + + + + + + +
distance (miles)time (minutes)
218
436
654
872
1090
+



+

Which of the three runners has the fastest pace? 

",,,Runner #1 || Runner #2 || Runner #3,Runner #2,77471 +PSBWYC,1,Multiple Choice (select 1),Multiple Choice,"

A driver is traveling at a constant speed on Interstate 90 outside Chicago. If she traveled from Point A to Point B in 8 minutes, did she obey the speed limit of 55 miles per hour?

+

 

+

",,,Yes || No,No,107470 +PSBZWK,1,Multiple Choice (select 1),Multiple Choice,"

Choose the inequality that best matches the given situation.

+

 

+

The Garden Club is planting fruit trees in their school’s garden. There is one large tree that needs 5 pounds of fertilizer. The rest are newly planted trees that need 12 pound fertilizer each.

",,,"

25x+512

||

12x+525

||

12x+255

||

5x+1225

","

12x+525

",124074 +PRABESJW,1,Multiple Choice (select all),Check All That Apply,

Select all quantities that are proportional to the diagonal length of a square.

,,,

Area of a square

||

Perimeter of a square

||

Side length of a square

,

Perimeter of a square

||

Side length of a square

,123973 +PRABQPRP,1,Multiple Choice (select all),Check All That Apply,"

Clare created Figure A. Then she created Figure B by translating Triangle C and then translating Triangle D.

+

 

+

+

 

+

 

+

Select all the true statements.

",,,Figure A is congruent to Figure B || Figure B is a translation of Figure A. || Triangle C is congruent to Triangle C’. || Triangle D’ is congruent to Triangle D.,Triangle C is congruent to Triangle C’. || Triangle D’ is congruent to Triangle D.,504848 +PSBUC9,1,Multiple Choice (select 1),Multiple Choice,"

Mai, Clare, and Noah are making signs to advertise the school dance. It takes Mai 6 minutes to complete a sign, it takes Clare 8 minutes to complete a sign, and it takes Noah 5 minutes to complete a sign. They keep working at the same rate for a half hour.

+

 

+

Will Mai and Clare complete a sign at the same time?

",,,Yes || No,Yes,90598 +PSBCEUM,1,Multiple Choice (select 1),Multiple Choice,"

Elena says that the thermometer shown here reads -2.5C because the line of the liquid is above -2C. Jada says that it is -1.5C.

+

 

+

Do you agree with either one of them? 

+

",,,Elena is correct || Jada is correct || Both are correct || Neither are correct,Jada is correct,371766 +PRABFFTG,1,Multiple Choice (select 1),Multiple Choice,

A bag of pennies weighs 5.1 kilograms. Each penny weighs 2.5 grams. About how many pennies are in the bag?

,,,"

20

||

200

||

2,000

||

20,000

","

2,000

",132787 +PSB3YT,1,Multiple Choice (select 1),Multiple Choice,"

Decide if the response will produce numerical data or categorical data.

+

 

+

What is your favorite breakfast food?

",,,Categorical || Numerical,Categorical,136119 +PRABD4S8,1,Multiple Choice (select all),Check All That Apply,

Rectangle A measures 12 cm by 3 cm. Rectangle B is a scaled copy of Rectangle A. Select all of the measurement pairs that could be the dimensions of Rectangle B.

,,,6 cm by 1.5 cm || 10 cm by 2 cm || 13 cm by 4 cm || 18 cm by 4.5 cm || 80 cm by 20 cm,6 cm by 1.5 cm || 18 cm by 4.5 cm || 80 cm by 20 cm,24106 +PSBBMSP,1,Multiple Choice (select 1),Multiple Choice,"

Decide whether the equation is true or false.

+

 

+

",,0,True || False,FALSE,229909 +PSB27N,1,Multiple Choice (select all),Check All That Apply,

Which of these solids are prisms? 

,,,"

||

||

||

||

||

","

||

||

||

",131558 +PSBBU49,2,Multiple Choice (select 1),Multiple Choice,"

Are 4x and 15+x equivalent expressions?

",,,Yes || No,No,270175 +PRABE57J,1,Multiple Choice (select 1),Multiple Choice,

Which figure has a greater surface area?

,,,"

||

|| They have the same surface area. || The answer cannot be determined.",They have the same surface area.,274073 +PRABPQDZ,1,Multiple Choice (select all),Check All That Apply,

Select all of the data sets for which you would use the mean to describe the center of the data.

,,,"

||

||

blue, red, blue, yellow, blue

||

||

71, 73, 75, 72, 78, 79, 70

","

||

||

71, 73, 75, 72, 78, 79, 70

",99379 +PRABET85,1,Multiple Choice (select 1),Multiple Choice,

Which inequality is true when the value of is -3?

,,,-x − 6 < -3.5 || -x − 6 > 3.5 || -x − 6 > -3.5 || x − 6 > -3.5,-x − 6 > -3.5,347843 +PRABEU6Z,1,Multiple Choice (select all),Check All That Apply,"

Select all expressions that can be subtracted from 9x to result in the expression 3x+5.

",,,-5 + 6x || 5 - 6x || 6x + 5 || 6x - 5 || -6x + 5,-5 + 6x || 6x - 5,277069 +PSBBMJW,1,Multiple Choice (select 1),Multiple Choice,

A shopper needs 24 sandwich rolls. The store sells identical rolls in 2 differently sized packages. They sell a six-pack for $5.28 and a four-pack for $3.40. Should the shopper buy 4 six-packs or 6 four-packs?

,,,4 six-packs || 6 four-packs,6 four-packs,228746 +PSBN8P,1,Multiple Choice (select 1),Multiple Choice,"
+
+
+
+
+

Jada and Priya are trying to solve the equation 23 + x = 4.


+
    +
  • +

    Jada says, ""I think we should multiply each side by 32 because that is the reciprocal of 23.""

    +
  • +
  • +

    Priya says, ""I think we should add -23 to each side because that is the opposite of 23.""



    +
  • +
+

Which person's strategy should they use?

+
+
+
+
+
",,,Priya || Jada,Priya,63357 +PSBB2TW,1,Multiple Choice (select 1),Multiple Choice,"

For the inequality, decide whether the solution is represented by x < 4.5 or x > 4.5.

+

 

+

-24 > -6(x  0.5)

+
 
",,,x < 4.5 || x > 4.5,x > 4.5,302140 +PRABQP44,1,Multiple Choice (select 1),Multiple Choice,"

A sphere has a volume of 972πcm3. What is its radius in centimeters? 

",,9,4.5 || 9 || 11 || 18,9,348910 +PSBED,1,Multiple Choice (select 1),Multiple Choice,"
+
+

Two cylinders, a and b, each started with different amounts of water.

+

 

+

The graph shows how the height of the water changed as the volume of water increased in each cylinder.

+

 

+

Which cylinder has the larger radius?

+

 

+
+
+
+
+

+
+
+
 
",,,

Cylinder a

||

Cylinder b

,

Cylinder b

,488 +PRABESJ8,1,Multiple Choice (select all),Check All That Apply,"

The point 3, 65 lies on the graph representing a proportional relationship. Which of the following points also lie on the same graph? Select all that apply.

",,,"

(1, 0.4)

||

1.5, 610

||

65, 3

||

4, 115

||

(15, 6)

","

(1, 0.4)

||

1.5, 610

||

(15, 6)

",296114 +PSBUC9,3,Multiple Choice (select 1),Multiple Choice,"

Mai, Clare, and Noah are making signs to advertise the school dance. It takes Mai 6 minutes to complete a sign, it takes Clare 8 minutes to complete a sign, and it takes Noah 5 minutes to complete a sign. They keep working at the same rate for a half hour.

+

 

+

Will Mai and Noah complete a sign at the same time? 

",,,Yes || No,Yes,90903 +PRABFJZD,1,Multiple Choice (select 1),Multiple Choice,"

A corn field has an area of 28.6 acres. It requires about 15,000,000 gallons of water. About how many gallons of water per acre is that?

",,,"

5,000

||

50,000

||

500,000

||

5,000,000

","

500,000

",63719 +PRABQK7Q,1,Multiple Choice (select all),Check All That Apply,"

Select all the equations represented by this tape diagram.

+

 

+

",,,2.5 + ? = 3.8 || 3.8 = ? + 2.5 || 3.8 - 2.5 = ? || 3.8 + 2.5 = ? || ? - 2.5 = 3.8,2.5 + ? = 3.8 || 3.8 = ? + 2.5 || 3.8 - 2.5 = ?,299700 +PRABEUGF,1,Multiple Choice (select all),Check All That Apply,"

M is a point on line segment KL. NM is a line segment. Select all the equations that represent the relationship between the measures of the angles in the figure.

+

 

+

",,,a = b || a + b = 90 || b = 90 - a || a + b = 180 || 180 - a = b || 180 = b - a,a + b = 180 || 180 - a = b,189053 +PRABQJTA,1,Multiple Choice (select all),Check All That Apply,

Select all the parallelograms that have an area of 12 square units.

,,,"

||

||

||

||

","

||

||

",383961 +PSBB4EW,1,Multiple Choice (select 1),Multiple Choice,"

Elena drank 3 liters of water yesterday. Jada drank 34 times as much water as Elena. Lin drank twice as much water as Jada.

+

 

+

 

+

Did Jada drink more or less water than Elena?

+

 

",,,More || Less,Less,311102 +PRABEPD8,1,Multiple Choice (select all),Check All That Apply,

Select all the expressions that are equivalent to 4-3.

,,," + + + + + +
-12
|| + + + + + +
2-6
||

143

||

14·14·14

||

12

||

(-4)·(-4)·(-4)

||

8-122

"," + + + + + +
2-6
||

143

||

14·14·14

",105610 +PRABQK7Y,1,Multiple Choice (select 1),Multiple Choice,"

Which equation matches the hanger diagram?

+

",,,"

x · x · x = 1 · 1 · 1 · 1

||

x = 34

||

3x = 4

||

x + 1 = 4

",

3x = 4

,56614 +PSB724,3,Multiple Choice (select 1),Multiple Choice,

Which data set has greater spread? 

,,,Sixth-grade students || Seventh-grade students,Sixth-grade students,158585 +PRABQP6E,1,Multiple Choice (select 1),Multiple Choice,"

Which is closest to the quotient 2,967 ÷ 0.003?

",,,"1,000 || 10,000 || 100,000 || 1,000,000","1,000,000",505947 +PSBBTX3,1,Multiple Choice (select 1),Multiple Choice,"

Here are the approximate populations of three countries, expressed in scientific notation: Panama: 4 × 106; Peru: 3.2 × 107; Thailand: 7 × 107.

+

 

+

Lin says that more than 20 times as many people live in Thailand than in Panama. Is this correct?

",,,Yes || No,No,262979 +PRABHUKJ,1,Multiple Choice (select 1),Multiple Choice,"

Without solving, identify whether this equation has a solution that is positive, negative, or zero:

+

 

+

3x - 5 = -3

",,,

Positive

||

Negative

||

Zero

,

Positive

,190961 +PRABG2WG,1,Multiple Choice (select 1),Multiple Choice,"

True or false?

+

 

+

",,1,True || False,TRUE,348936 +PSBS86,2,Multiple Choice (select all),Check All That Apply,"

+

 

+

Which rectangles have the same perimeter as Rectangle R but different area?

",,,Rectangle A. || Rectangle B. || Rectangle C. || Rectangle D. || Rectangle E. || Rectangle F.,Rectangle D. || Rectangle F.,85142 +PRABFDG5,1,Multiple Choice (select 1),Multiple Choice,"

Andre is walking from home to a festival that is 158 kilometers away. He takes a quick rest after walking 13 kilometers.

+

 

+

In this situation, which question can be represented by the equation: 

+

?158=13?

",,,What fraction of the trip has Andre completed? || How many more kilometers does he have to walk to get to the festival? || What fraction of the trip is left? || How many kilometers is it from home to the festival and back home?,What fraction of the trip has Andre completed?,184060 +PRABEQCP,1,Multiple Choice (select 1),Multiple Choice,"

A line contains the point (3, 5). If the line has negative slope, which of these points could also be on the line?

",,,"

(2, 0)

||

(4, 7)

||

(5, 4)

||

(6, 5)

","

(5, 4)

",487616 +PSBDVZB,1,Multiple Choice (select 1),Multiple Choice,"

The Empire State Building in New York City is about 1,450 feet high (including the antenna at the top) and 400 feet wide. Andre wants to make a scale drawing of the front view of the Empire State Building on an 812-inch-by-11-inch piece of paper. Select a scale that you think is the most appropriate for the scale drawing.

+

 

",,,

1 inch to 1 foot

||

1  inch to 100 feet

||

1  inch to 1 mile

||

1  centimeter to 1 meter

||

1 centimeter to 50 meters

||

1  centimeter to 1 kilometer

,

1 centimeter to 50 meters

,628100 +PSB2SG,1,Multiple Choice (select 1),Multiple Choice,"

An equilateral triangle’s angles each have a measure of 60 degrees.

+

 

+

Can you put copies of an equilateral triangle together to form a straight angle?

",,,Yes || No,Yes,128818 +PRABHRJV,1,Multiple Choice (select all),Check All That Apply,"

Select all the expressions that represent the large rectangle's total area.

+

 

+

",,,3(5 + b) || 5(b + 3) || 5b + 15 || 15 + 5b || 3 · 5 + 3b,5(b + 3) || 5b + 15 || 15 + 5b,69182 +PSB75H,1,Multiple Choice (select 1),Multiple Choice,

Which one of these relationships is different than the other three? 

,,,"

||

||

||

","

",159061 +PRABQPK3,1,Multiple Choice (select 1),Multiple Choice,"

In which pair of figures can Figure A be taken to Figure B by a rotation?

+

 

+

",,,Pair 1 || Pair 2 || Pair 3 || Pair 4,Pair 3,275383 +PRABQKJG,1,Multiple Choice (select 1),Multiple Choice,"

A mixture of orange paint contains 8 teaspoons of red paint and 12 teaspoons of yellow paint. To make the same shade of orange paint using 18 teaspoons of red paint, how much yellow paint would you need? Use the double number line diagram to help if needed. 

+

 

+

",,,27 teaspoons || 24 teaspoons || 22 teaspoons || 12 teaspoons,27 teaspoons,2433 +PSBDH8V,1,Multiple Choice (select 1),Multiple Choice,"

Your teacher will give your group several pairs of triangles. Each group member should take 1 or 2 pairs. 

+

 

+ + + + + + + + + + + + + + + +
+

 

+

Which pair(s) of triangles do you have? 

",,,P || Q || R || S || T || U || V || W,P || Q || R || S || T || U || V || W,566156 +PRABE9HG,1,Multiple Choice (select all),Check All That Apply,

Diego makes green paint by mixing 10 tablespoons of yellow paint and 2 tablespoons of blue paint. Which of these mixtures produce the same shade of green paint as Diego’s mixture? Select all that apply.

,,,"
+

For every 5 tablespoons of blue paint, mix in 1 tablespoon of yellow paint.

+
||

Mix tablespoons of blue paint and yellow paint in the ratio 1:5.

||

Mix tablespoons of yellow paint and blue paint in the ratio 15 to 3.

||

Mix 11 tablespoons of yellow paint and 3 tablespoons of blue paint.

||

For every tablespoon of blue paint, mix in 5 tablespoons of yellow paint.

","

Mix tablespoons of blue paint and yellow paint in the ratio 1:5.

||

Mix tablespoons of yellow paint and blue paint in the ratio 15 to 3.

||

For every tablespoon of blue paint, mix in 5 tablespoons of yellow paint.

",373794 +PRABHAAH,1,Multiple Choice (select 1),Multiple Choice,"

A circular field is set into a square with an 800 m side length. Estimate the field's area.

+

 

+

+
 
",,,"About 5,000 m² || About 50,000 m² || About 500,000 m² || About 5,000,000 m² || About 50,000,000 m²","About 500,000 m²",7396 +PSBBCQT,4,Multiple Choice (select 1),Multiple Choice,"

Is (9, 11) also on the line?

+

",,,Yes || No,Yes,184584 +PSBBMG6,5,Multiple Choice (select 1),Multiple Choice,"

Kiran started his homework before 7:00 p.m. and finished his homework after 8:00 p.m. Let h represent the number of hours Kiran worked on his homework.

+

 

+

Decide if the statement it is definitely true, definitely not true, or possibly true.

+

 

+

h<1

",,,Definitely True || Definitely Not True || Possibly True,Definitely Not True,228072 +PRABEVTC,1,Multiple Choice (select all),Check All That Apply,"

Select all the functions whose graphs include the point (16, 4).

",,,"

y=2x

||

y=x2

||

y=x+12

||

y=x-12

||

y=14x

","

y=x-12

||

y=14x

",340198 +PRABP8EV,1,Multiple Choice (select 1),Multiple Choice,"

In many countries, the standard paper size is not 8.5 inches by 11 inches (called “letter” size), but instead 210 millimeters by 297 millimeters (called “A4” size). Are these two rectangle sizes scaled copies of one another?

",,,Yes || No,No,81610 +PRABQJS8,1,Multiple Choice (select 1),Multiple Choice,"

What is the area of this parallelogram?

+

 

+

+
 
",,,30 cm² || 24 cm² || 22 cm² || 12 cm²,24 cm²,383708 +PSBX69,5,Multiple Choice (select 1),Multiple Choice,"

For the statement below, decide if it is true or false. 

+

 

+

x=0 is a solution of the equation for line n.

",,0,True || False,FALSE,113562 +PRABHS2G,1,Multiple Choice (select all),Check All That Apply,"

Andre collected data measured in centimeters.

+

 

+ + + + + + + + + + + + + + + + + +
8.510.57.89.58.19.010.29.611.210.912.79.8
+

 

+

What could he be investigating? Select all that apply.

",,,

The weight of a dozen eggs.

||

The length of leaves from a tree.

||

The height of cups and mugs in a cupboard.

||

The length of songs on a music CD.

||

The length of colored pencils in a box.

,

The length of leaves from a tree.

||

The height of cups and mugs in a cupboard.

||

The length of colored pencils in a box.

,339343 +PRABEE27,1,Multiple Choice (select 1),Multiple Choice,"

Here are two points: (-3,4), (1,7). What is the slope of the line between them?

",,,"

43

||

34

||

16

||

23

","

34

",306325 +PRABFEZH,1,Multiple Choice (select all),Check All That Apply,

Select all the triangles that have an area of 30 square units.

,,,"

||

||

||

||

","

||

",55302 +PRABE3F4,1,Multiple Choice (select 1),Multiple Choice,"

Priya decomposed a square into 16 smaller, equal-size squares and then cut out 4 of the small squares and attached them around the outside of original square to make a new figure.

+

 

+
+
+
+
+

How does the area of her new figure compare with that of the original square? 

+

 

+

+
+
+
+
",,,The area of the new figure is greater. || The two figures have the same area. || The area of the original square is greater. || We don't know because neither the side length nor the area of the original square is known.,The two figures have the same area.,346945 +PSBCSH,1,Multiple Choice (select all),Check All That Apply,"

Here is an original drawing of the letter F and some other drawings.

+

 

+

+

 

+

Identify all the drawings that are scaled copies of the original letter F.  

",,,Drawing 1 || Drawing 2 || Drawing 3 || Drawing 4 || Drawing 5 || Drawing 6 || Drawing 7,Drawing 1 || Drawing 2 || Drawing 7,12898 +PSBVEV,2,Multiple Choice (select 1),Multiple Choice,

Which class had greater variability in the results?

,,,Class A || Class B,Class A,98346 +PRABD4TK,1,Multiple Choice (select 1),Multiple Choice,

Which of these sets of angle measures could be the three angles in a triangle?

,,,"40°, 50°, 60° || 50°, 60°, 70° || 60°, 70°, 80° || 70°, 80°, 90°","50°, 60°, 70°",24916 +PSBJKQ,1,Multiple Choice (select 1),Multiple Choice,"

Priya says that 13 · 13 · 13 · 13 = 43.  Do you agree with Priya? 

",,,Agree || Disagree,Disagree,44696 +PSBW5U,1,Multiple Choice (select 1),Multiple Choice,"

For the situation, decide if it requires Noah to calculate surface area or volume. 

+

 

+

Noah is planning to paint the bird house he built. He is unsure if he has enough paint.

",,,

Surface area

||

Volume

,

Surface area

,108650 +PSBBZPR,2,Multiple Choice (select 1),Multiple Choice,

Is there a linear relationship between height and volume? 

,,,Yes || No,Yes,296303 +PSBSA9,1,Multiple Choice (select 1),Multiple Choice,"

Two TV shows each asked 100 viewers for their ages. For one show, the mean age of the viewers was 35 years and the MAD was 20 years. For the other show, the mean age of the viewers was 30 years and the MAD was 5 years.

+

 

+

A sixth-grade student says he watches one of the shows. Which show do you think he watches?

",,,The first show || The second show,The first show,79667 +PRABHGF9,1,Multiple Choice (select all),Check All That Apply,"

Select all of the translations that take Triangle T to Triangle U. There may be more than one correct answer.

+

",,,"Translate (-3,0) to (1,2). || Translate (2,1) to (-2,-1). || Translate (-4,-3) to (0,-1). || Translate (1,2) to (2,1).","Translate (-3,0) to (1,2). || Translate (-4,-3) to (0,-1).",137959 +PSBBE6C,1,Multiple Choice (select all),Check All That Apply,"

Select all the equations that describe the situation and then find the solution.

+

 

+

Han's house is 450 meters from school. Lin’s house is 135 meters closer to school. How far is Lin’s house from school?

+

 

",,,"

z = 450  + 135

||

z = 450 - 135

||

z - 135 = 450

||

z + 135 = 450

","

z = 450 - 135

||

z + 135 = 450

",198295 +PRABE52K,1,Multiple Choice (select all),Check All That Apply,

Select all drawings in which a corresponding height h for a given base b is correctly identified.

,,,"

+

 

+

 

+

 

||

+

 

+

 

+

 

||

+

 

+

 

+

 

||

+

 

+

 

+

 

||

+

 

+

 

+

 

||

+

 

+

 

+

 

","

+

 

+

 

+

 

||

+

 

+

 

+

 

||

+

 

+

 

+

 

||

+

 

+

 

+

 

",420787 +PSBH8S,3,Multiple Choice (select 1),Multiple Choice,

You will get an even number when you roll a standard number cube.

,,,impossible || unlikely || equally likely as not || likely || certain,equally likely as not,42186 +PSBC9Y8,2,Multiple Choice (select 1),Multiple Choice,"

If these numbers represent temperatures in degrees Celsius, which is the coldest?

",,,"

7

||

-3

||

12

||

-0.8

||

0.8

||

-110

||

-2

",

-3

,518599 +PSBDSR,1,Multiple Choice (select 1),Multiple Choice,"

Jada says, “I can tell that  equals 0 just by looking at it.” Is Jada correct?

",,,Yes || No,Yes,18664 +PSBN6A,2,Multiple Choice (select 1),Multiple Choice,"

The x-axis represents the number of hours before or after noon, and the y-axis represents the temperature in degrees Celsius.

+

 

+

+

 

+

At 11 a.m., it was 10°C. In what quadrant would this point be plotted?

+

 

",,,Quadrant I || Quadrant II || Quadrant III || Quadrant IV,Quadrant II,63205 +PSBEF3,1,Multiple Choice (select 1),Multiple Choice,"

When you add the distances of Mercury, Venus, Earth, and Mars from the Sun, would you reach as far as Jupiter?

+

 

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
objectdiameter (km)distance from the Sun (km)
Sun
Mercury
Venus
Earth
Mars
Jupiter
",,,Yes || No,No,22352 +PRABEVT5,1,Multiple Choice (select 1),Multiple Choice,"

Here is a scatter plot:

+

 

+

+

 

+

The graph of what linear equation is a good fit for this data?

",,,"

y=-13x+2

|| + + + + + +
+

y=-13x+6

+
||

y=13x+2

||

y=13x+6

","

y=-13x+2

",636416 +PSBBFG5,2,Multiple Choice (select 1),Multiple Choice,

What kind of data—categorical or numerical—do you think the variable “birth month” produces? 

,,,categorical || numerical,categorical,200269 +PRABQTD7,1,Multiple Choice (select 1),Multiple Choice,"

Andre rode his bike at a constant speed. He rode 1 mile in 5 minutes.

+

 

+

Which of these equations represents the amount of time t (in minutes) that it takes him to ride a distance of d miles?

",,,"

t = 5d

||

t = 15d

||

t = d + 4

||

t = d  4

","

t = 5d

",531136 +PSBJS4,1,Multiple Choice (select 1),Multiple Choice,"

The graph shows the temperature between noon and midnight in one day in a certain city.

+

 

+

+

 

+

Was it warmer at 3:00 p.m. or 9:00 p.m.?

",,,3:00 p.m. || 9:00 p.m. || Neither,9:00 p.m.,45204 +PSBZZQ,1,Multiple Choice (select 1),Multiple Choice,"

Choose the inequality that best matches the given situation.

+

 

+

The Hiking Club is on a hike down a cliff. They begin at an elevation of 12 feet and descend at the rate of 3 feet per minute.

",,,"

37x-312

||

3x-3712

||

12-3x-37

||

12x-37-3

","

12-3x-37

",124637 +PSBV9Y,1,Multiple Choice (select 1),Multiple Choice,"

Kiran wants to know which three summer sports are most popular in his class. He surveyed his classmates on their favorite summer sport and collected these responses:

+

 

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
swimminggymnasticstrack and fieldvolleyball
swimmingswimmingdivingtrack and field
gymnasticsbasketballbasketballvolleyball
track and fieldtrack and fieldvolleyballgymnastics
divinggymnasticsvolleyballrowing
track and fieldtrack and fieldsoccerswimming
gymnasticstrack and fieldswimmingrowing
divingsoccer  
+

 

+

Did Kiran collect categorical or numerical data?

",,,categorical data || numerical data,categorical data,102850 +PSBBVTQ,1,Multiple Choice (select 1),Multiple Choice,"

Here are dot plots showing how long Diego’s trips to school took in minutes—which you studied earlier—and how long Andre’s trips to school took in minutes. The dot plots include the means for each data set, marked by triangles.

+

 

+

+

 

+

Which of the two data sets has a larger mean? 

+
 
",,,Diego's data set || Andre's data set,Andre's data set,274025 +PRABQPK4,1,Multiple Choice (select all),Check All That Apply,"

Select all the pairs where Figure H is the image of Figure G after a reflection, rotation, or translation.

",,,"

||

||

||

||

||

","

||

||

||

",275536 +PSBEZS,1,Multiple Choice (select 1),Multiple Choice,"

Is the equation true or false?

+

 

+

 

",,1,True || False,TRUE,25543 +PSBB8CU,1,Multiple Choice (select 1),Multiple Choice,

Elena said the equation 9x + 15 = 3x + 15 has no solutions because 9x is greater than 3x. Do you agree with Elena?

,,,Yes || No,No,333395 +PSBXSP,3,Multiple Choice (select 1),Multiple Choice,

Which of these is the solution to the equation?

,,5,2 || 3 || 5 || 7 || n,5,112678 +PSBFXY,1,Multiple Choice (select 1),Multiple Choice,"

Is there a rigid transformation taking Rhombus P to Rhombus Q? 

+

 

+

",,,Yes || No || Not enough information,No,30522 +PSBBMG6,7,Multiple Choice (select 1),Multiple Choice,"

Kiran started his homework before 7:00 p.m. and finished his homework after 8:00 p.m. Let h represent the number of hours Kiran worked on his homework.

+

 

+

Decide if the statement it is definitely true, definitely not true, or possibly true.

+

 

+

h<2

",,,Definitely True || Definitely Not True || Possibly True,Possibly True,228382 +PRABQJVG,1,Multiple Choice (select 1),Multiple Choice,"

For a cube whose side length is 4 inches, the expression could represent . . .

",,,"The length of 3 cubes lined up, in inches || The cube’s surface area in square inches || The cube’s volume in cubic inches || The total volume of 3 cubes, in cubic inches",The cube’s volume in cubic inches,503038 +PSB47G,1,Multiple Choice (select 1),Multiple Choice,"

To find 40% of 75, Priya calculates 25 · 75. Does her calculation give the correct value for 40% of 75?

",,,Yes || No,Yes,142840 +PSBBWRS,2,Multiple Choice (select 1),Multiple Choice,

Is there a proportional relationship between the area and perimeter of a square?

,,,Yes || No,No,278886 +PRABEUHG,1,Multiple Choice (select all),Check All That Apply,

Select all the sets of three side lengths that will make a triangle.

,,,"

3, 4, 8

||

7, 6, 12

||

5, 11, 13

||

4, 6, 12

||

4, 6, 10

","

7, 6, 12

||

5, 11, 13

",264186 +PSBC2VP,1,Multiple Choice (select 1),Multiple Choice,"

Two students are working on the same problem:

+

 

+

A juice box has 20% more juice in its new packaging. The original packaging held 12 fluid ounces. How much juice does the new packaging hold?

+

 

+ + + + + + + + + + + + + + + +
+
    +
  • Here is how Priya set up her double number line. 
  • +
+
+
    +
  • Here is how Clare set up her double number line. 
  • +
+
+

 

+

Do you agree with either of them?

",,,Agree with Priya || Agree with Clare || Agree with Both || Agree with Neither,Agree with Priya,478570 +PSBBBT9,1,Multiple Choice (select 1),Multiple Choice,"

An ecologist is studying a forest with a mixture of tree types. Since the average tree height in the area is 40 feet, he measures the height of the tree against that. He also records the type of tree. The results are shown in the table and segmented bar graph.

+

 

+

Is there evidence of an association between tree height and tree type? 

+

 

+ + + + + + + + + + + + + + + + + + + + + + + + + + + +
 under 40 feet40 feet or tallertotal
deciduous453075
evergreen141024
total594099
+

 

+

",,,Yes || No,No,179563 +PSBBAC3,1,Multiple Choice (select 1),Multiple Choice,"

There are 2.54 cm in an inch, 12 inches in a foot, and 5,280 feet in a mile. Which expression gives the number of centimeters in a mile?

",,,"

2.5412·5,280

||

5,280·12·(2.54)

||

15,280·12·(2.54)

||

5,280+12+2.54

||

5,280·122.54

","

5,280·12·(2.54)

",171627 +PRABEWD6,1,Multiple Choice (select all),Check All That Apply,

Select all the reasons why random samples are preferred over other methods of getting a sample.

,,,"If you select a random sample, you can determine how many people you want in the sample. || A random sample is always the easiest way to select a sample from a population. || A random sample is likely to give you a sample that is representative of the population. || A random sample is a fair way to select a sample, because each person in the population has an equal chance of being selected. || If you use a random sample, the sample mean will always be the same as the population mean.","A random sample is likely to give you a sample that is representative of the population. || A random sample is a fair way to select a sample, because each person in the population has an equal chance of being selected.",309627 +PSBBBMY,1,Multiple Choice (select 1),Multiple Choice,"

Tyler claims that if two triangles each have a side length of 11 units and a side length of 8 units, and also an angle measuring 100 degrees, they must be identical to each other. Do you agree?

",,,Yes || No,No,178225 +PRABEAUM,1,Multiple Choice (select all),Check All That Apply,"

Select all of the ordered pairs (x, y) that are solutions to the linear equation 2x + 3y = 6.

+
 
",,,"

(0, 2)

||

(0, 6)

||

(2, 3)

||

(3, -2)

||

(3, 0)

||

(6, -2)

","

(0, 2)

||

(3, 0)

||

(6, -2)

",579648 +PSBBAK8,1,Multiple Choice (select all),Check All That Apply,

Which of these pairs of quantities are proportional to each other? 

,,,

Radius and diameter of a circle

||

Radius and circumference of a circle

||

Radius and area of a circle

||

Diameter and circumference of a circle

||

Diameter and area of a circle

,

Radius and diameter of a circle

||

Radius and circumference of a circle

||

Diameter and circumference of a circle

,172163 +PRABQPMT,1,Multiple Choice (select 1),Multiple Choice,"

This hanger is in balance. There are two labeled weights of 8 grams and 20 grams. The four circles each have the same weight.

+

 

+

+

 

+

What is the weight of each circle, in grams?

",,,"

3

||

7

||

5

||

2012

",

3

,90063 +PSBBK5S,1,Multiple Choice (select 1),Multiple Choice,"

Can the following net be assembled into a cube?

+

 

+

+
 
",,,Yes || No,No,226302 +PRABEQCH,1,Multiple Choice (select all),Check All That Apply,

Select all the sets that are the three side lengths of right triangles.

,,,"

8, 7, 15

||

4, 10, 84

||

8, 11, 129

||

1, 2, 3

","

4, 10, 84

||

8, 11, 129

||

1, 2, 3

",487468 +PSBBA5P,3,Multiple Choice (select 1),Multiple Choice,

Could 60 be a value of s?

,,,Yes || No,Yes,175861 +PSB347,5,Multiple Choice (select 1),Multiple Choice,

Is the graph of this function a line?

,,,Yes || No,No,137062 +PRABQMXG,1,Multiple Choice (select 1),Multiple Choice,

Lin’s family has completed 60% of a trip. They have traveled 30 miles. How long is the whole trip?

,,,50 miles || 48 miles || 30 miles || 18 miles,50 miles,3852 +PSB34B,1,Multiple Choice (select 1),Multiple Choice,"

Decide if the responses will produce numerical data or categorical data.

+

 

+

How many different teachers do you have?

",,,Categorical || Numerical,Numerical,136895 +PRABFEXP,1,Multiple Choice (select all),Check All That Apply,"

Select all the expressions that give the area of the figure in square units.

+

",,,(5 + 6) × (3 + 2) || (8 × 6) − (3 × 4) || 6 × 8 × 2 × 3 × 4 × 5 || (5 × 6) + (3 × 2) || 8 × 6,(8 × 6) − (3 × 4) || (5 × 6) + (3 × 2),103748 +PSBQ3W,1,Multiple Choice (select all),Check All That Apply,"

Select all the equations that describe the situation.

+

 

+

Kiran’s backpack weighs 3 pounds less than Clare’s backpack. Clare’s backpack weighs 14 pounds. How much does Kiran’s backpack weigh?

+

 

",,,"

x + 3 = 14

||

3x = 14

||

x = 14 - 3

||

x = 14 ÷ 3

","

x + 3 = 14

||

x = 14 - 3

",73275 +PSBBGSF,1,Multiple Choice (select 1),Multiple Choice,"

Two trains are traveling at constant speeds on different tracks.

+

 

+

+

 

+
+

Which train is traveling faster?

+
",,,Train A || Train B,Train B,207470 +PRABUZ72,1,Multiple Choice (select all),Check All That Apply,"

The basketball coach says that based on Noah's free throws this season, Noah has a  probability of making each free throw. Select all the ways Noah could accurately simulate the number of free throws he will make in his next 6 attempts.

",,,"Flip a coin 6 times. Count the number of heads. || Make a spinner with 6 equally-sized sections, labeled with the numbers 1 through 6. Spin the spinner 6 times and count how many times the spinner lands on 3 or 4. || Put 3 red chips and 1 white chip in a bag. Draw a chip from the bag, record the result, and put it back in the bag. Do this 6 times and count the number of red chips drawn. || Make a spinner with 4 equally-sized sections. Color three sections green and one sections red. Spin the spinner 6 times and count the number of times the spinner lands on green. || Put the numbers 1 through 6 in a bag. Pick a number from the bag.","Put 3 red chips and 1 white chip in a bag. Draw a chip from the bag, record the result, and put it back in the bag. Do this 6 times and count the number of red chips drawn. || Make a spinner with 4 equally-sized sections. Color three sections green and one sections red. Spin the spinner 6 times and count the number of times the spinner lands on green.",350066 +PSBBX33,1,Multiple Choice (select 1),Multiple Choice,"

Can side d be the base of the triangle?

+

",,,Yes || No,Yes,286898 +PSBCN3V,2,Multiple Choice (select 1),Multiple Choice,

 Will a scale drawing where 1 cm represents 2 m be larger or smaller than this drawing?

,,,Larger || Smaller,Smaller,411000 +PSBC2H,2,Multiple Choice (select 1),Multiple Choice,"

The graph shows the temperature between noon and midnight in City A on a certain day.

+

 

+

+

 

+

The table shows the temperature, T, in degrees Fahrenheit, for h hours after noon, in City B.

+

 

+ + + + + + + + + + + + + + + + + + + + + +
h123456
T827875625859
+

 

+

Which city had a bigger change in temperature between 1:00 p.m. and 5:00 p.m.?

",,,City A || City B || Neither,City B,14654 +PSB7PK,2,Multiple Choice (select 1),Multiple Choice,"

Some T-shirts cost $8 each.

+

 

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
xy
18
216
324
432
540
648
+

 

+

Is there a proportional relationship between x and y?

",,,Yes || No,Yes,156721 +PSBFGV,1,Multiple Choice (select 1),Multiple Choice,

Here are the prices for cans of juice that are the same brand and the same size at different stores. Which store offers the best deal? 

,,,

Store X: 4 cans for $2.48

||

Store Y: 5 cans for $3.00

||

Store Z: 59 cents per can

,

Store Z: 59 cents per can

,28051 +PRABEVTM,1,Multiple Choice (select 1),Multiple Choice,

A cylinder has volume 78 cm3. What is the volume of a cone with the same radius and height?

,,,26 cm³ || 39 cm³ || 156 cm³ || 234 cm³,26 cm³,596207 +PSBKVS,1,Multiple Choice (select 1),Multiple Choice,"

The likelihood that Han makes a free throw in basketball is 60%. The likelihood that he makes a 3-point shot is 0.345. Which event is more likely, Han making a free throw or making a 3-point shot?

",,,Han making a free throw || Han making a 3-point shot,Han making a free throw,51025 +PRABQPSJ,1,Multiple Choice (select 1),Multiple Choice,"

Han’s teacher asked him to draw a polygon similar to polygon A. Here is his work. Which explanation shows that polygons A and C are similar to each other?

+

 

+

",,,"Use a protractor to measure all four angles in polygon A and all four angles in polygon C. Since each angle in polygon A has a matching angle measure in polygon C, the polygons are similar. || Since each side in polygon C is three times as long as the corresponding side in polygon A, the figures are similar. || Dilate polygon C with center at the upper-left vertex and a scale factor of 1/3. Then, translate 7 units to the left. Since polygon C can be taken to polygon A with a dilation followed by a translation, the figures are similar. || Dilate polygon C with center at the upper-right corner and a scale factor of 3. Since polygon C can be taken to polygon A with a dilation, the polygons are similar.","Dilate polygon C with center at the upper-left vertex and a scale factor of 1/3. Then, translate 7 units to the left. Since polygon C can be taken to polygon A with a dilation followed by a translation, the figures are similar.",28093 +PRABFEXQ,1,Multiple Choice (select 1),Multiple Choice,"

Each small square in the graph paper represents 1 square unit.

+

 

+

Which expression is closest to the area of the rectangle, in square units?

+

",,,"

5 12 × 4 14

||

4 12 × 3 14

||

4 × 3

||

5 × 4

","

4 12 × 3 14

",103860 +PRABFG56,1,Multiple Choice (select all),Check All That Apply,"

Select all of the numbers that are greater than -5.

",,,"

1.3

||

-6

||

-12

||

17

||

-1

||

-4

","

1.3

||

17

||

-1

||

-4

",356660 +PRABD45B,1,Multiple Choice (select 1),Multiple Choice,"

In which pair of figures can Figure A be taken to Figure B by a rotation?

+

 

+

",,,Pair 1 || Pair 2 || Pair 3 || Pair 4,Pair 1,40911 +PSBC9Y8,3,Multiple Choice (select 1),Multiple Choice,"

If these numbers represent elevations in meters, which is the farthest away from sea level?

",,,"

7

||

-3

||

12

||

-0.8

||

0.8

||

-110

||

-2

","

7

",518807 +PRABP756,1,Multiple Choice (select all),Check All That Apply,"

Here are three problems. Select all problems that can be solved using division.

+

 

+

 

+

 

",,,"

Jada cut 4 pieces of ribbon that were equal in length. She used a total of 5 feet of ribbon. How long, in feet, was each piece of ribbon she cut?

||

A chef bought 3 bags of beans. Each bag contains 125 kilograms of beans. How many kilograms of beans did she buy?

||

A printer takes 212 seconds to print a flyer. It took 75 seconds to print a batch of flyers without stopping. How many flyers were in the batch?

","

Jada cut 4 pieces of ribbon that were equal in length. She used a total of 5 feet of ribbon. How long, in feet, was each piece of ribbon she cut?

||

A printer takes 212 seconds to print a flyer. It took 75 seconds to print a batch of flyers without stopping. How many flyers were in the batch?

",557055 +PRABETEY,1,Multiple Choice (select all),Check All That Apply,"

Priya bought x grams of flour. Clare bought 38 more than that. Select all equations that represent the relationship between the amount of flour that Priya bought, x, and the amount of flour that Clare bought, y.

",,,"

y = 38x

||

y = 58x

||

y = x + 38x

||
+
+
+
+
||

y = 118x

","

y = x + 38x

||

y = 118x

",383539 +PSB35H,1,Multiple Choice (select 1),Multiple Choice,

Are the ratios 3 : 6 and 6 : 3 equivalent?

,,,Yes || No,No,137170 +PRABQJVE,1,Multiple Choice (select all),Check All That Apply,

Select all of the nets that can be folded and assembled into a cube.

,,,"

||

||

","

||

",502795 +PRABPNVJ,1,Multiple Choice (select all),Check All That Apply,"

The air quality was tested in many office buildings in two cities. The results of the testing is shown in these box plots.

+

 

+

+

 

+

A level of less than 50 parts per million is considered healthy. A level of 50 or more parts per million is considered unhealthy.

+

 

+

Select all the statements that must be true.

",,,The lowest recorded measurement was in city Q. || All buildings tested in city P are in the healthy range. || The mean for city P is greater than the mean for city Q. || The range for city Q is greater than the range for city P. || The median for city P is greater than the median for city Q.,The lowest recorded measurement was in city Q. || All buildings tested in city P are in the healthy range. || The range for city Q is greater than the range for city P. || The median for city P is greater than the median for city Q.,183259 +PSBE3P,1,Multiple Choice (select 1),Multiple Choice,"

A class measured the radius r, circumference C, and area of various circular objects. The results are recorded in this table.

+

 

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + +
r(cm)C(cm)A(cm2)
42550
531.578.5
850201
1275452
+

 

+

Does there appear to be a proportional relationship between circumference and area?

",,,Yes || No,No,25643 +PSBY3C,1,Multiple Choice (select 1),Multiple Choice,"

Andre and Elena knew that after 28 days they would have 228 coins, but they wanted to find out how many coins that actually is. Andre wrote:

+

 

+

228 = 2 · 28 = 56

+

 

+

Elena said, “No, exponents mean repeated multiplication. It should be 28 ⋅ 28, which works out to be 784.” Do you agree with either of them? 

",,,Agree with both || Agree with Elena || Agree with Andre || Disagree with both,Disagree with both,119400 +PRABQP4J,1,Multiple Choice (select 1),Multiple Choice,"

Here is a scatter plot:

+

 

+

+

 

+

The graph of what linear equation is a good fit for this data?

",,,"

y=12x

||

y=-12x+1

||

y=-12x

||

y=12x+1

","

y=12x+1

",604573 +PRABFEWP,1,Multiple Choice (select all),Check All That Apply,"
+

Priya has 5 pencils, each x inches in length. When she lines up the pencils end to end, they measure 34.5 inches. Select all the equations that represent this situation.

+
",,,"

5 + x = 34.5

||

5x = 34.5

||

34.5 ÷ 5 = x

||

34.5 - 5 = x

||

x = (34.5) · 5

","

5x = 34.5

||

34.5 ÷ 5 = x

",155237 +PRABQTD6,1,Multiple Choice (select all),Check All That Apply,"

The graph shows the cost in dollars of w pounds of blueberries, a proportional relationship.

+

 

+

Select all the true statements.

+

 

+

",,,"1 pound of blueberries costs $2.75. || 2.75 pounds of blueberries cost $1. || 5 pounds of blueberries cost $15.50. || 12 pounds of blueberries cost $33. || The point (3, 9) is on the graph of the proportional relationship.",1 pound of blueberries costs $2.75. || 12 pounds of blueberries cost $33.,530971 +PSBPAY,1,Multiple Choice (select 1),Multiple Choice,"

The line has been partitioned into three angles. Is there a triangle with these three angle measures? 

+

 

+

",,,Yes || No,Yes,64079 +PRABG4DP,1,Multiple Choice (select 1),Multiple Choice,

Which is more likely to happen?

,,,"When reaching into a dark closet and pulling out one shoe from a pile of 20 pairs of shoes, you pull out a left shoe. || When listening to a playlist—which has 5 songs on it—in shuffle mode, the first song on the playlist plays first.","When reaching into a dark closet and pulling out one shoe from a pile of 20 pairs of shoes, you pull out a left shoe.",44057 +PSBWYC,3,Multiple Choice (select 1),Multiple Choice,

A traffic helicopter flew directly from Point A to Point B in 8 minutes. Did the helicopter travel faster or slower than the driver?

,,,Faster || Slower,Slower,107783 +PRABFEXS,1,Multiple Choice (select all),Check All That Apply,

Select all the figures that have sides that appear to be perpendicular.

,,,"

||

||

||

||

","

||

",104131 +PSBBRW3,1,Multiple Choice (select 1),Multiple Choice,"

When he sorts the class’s scores on the last test, the teacher notices that exactly 12 students scored better than Clare and exactly 12 students scored worse than Clare. Does this mean that Clare’s score on the test is the median?

",,,Yes || No,Yes,252499 +PSBTME,2,Multiple Choice (select all),Check All That Apply,

Which of the following represents the amount a customer pays including the tip of 15% if the bill was b dollars? Select all that apply.

,,,"

15b

|| + + + + + +
b + 0.15b
|| + + + + + +
1.15b
|| + + + + + +
1.015b
|| + + + + + +
b+15100b
|| + + + + + +
b + 0.15
|| + + + + + +
0.15b
"," + + + + + +
b + 0.15b
|| + + + + + +
1.15b
|| + + + + + +
b+15100b
",87369 +PSBBK7W,1,Multiple Choice (select 1),Multiple Choice,"

Here are two nets. Mai said that both nets can be assembled into the same triangular prism. Do you agree?

+

 

+

 

+
 
",,,Agree || Disagree,Agree,226695 +PSBBV46,1,Multiple Choice (select 1),Multiple Choice,"

Andre says that 10x+6 and 5x+11 are equivalent because they both equal 16 when x is 1. Do you agree with Andre?

",,,Yes || No,No,275581 +PSBB4YA,3,Multiple Choice (select 1),Multiple Choice,

Your friend has a 15% off coupon and $10. What is the largest pizza that your friend can afford?

,,,

small

||

medium

||

large

,

small

,314006 +PSBWJZ,1,Multiple Choice (select 1),Multiple Choice,"

Andre sets up a rain gauge to measure rainfall in his back yard. On Tuesday, it rains off and on all day.

+
+

 

+
    +
  • He starts at 10 a.m. with an empty gauge when it starts to rain.
  • +
  • Two hours later, he checks, and the gauge has 2 cm of water in it.
  • +
  • It starts raining even harder, and at 4 p.m., the rain stops, so Andre checks the rain gauge and finds it has 10 cm of water in it.
  • +
  • While checking it, he accidentally knocks the rain gauge over and spills most of the water, leaving only 3 cm of water in the rain gauge.
  • +
  • When he checks for the last time at 5 p.m., there is no change.
  • +
+

 

+

 

+

Which of the two graphs could represent Andre’s story?

+
",,,"

||

","

",104928 +PSBWSA,1,Multiple Choice (select 1),Multiple Choice,"

Diego wants to survey a sample of students at his school to learn about the percentage of students who are satisfied with the food in the cafeteria. He decides to go to the cafeteria on a Monday and ask the first 25 students who purchase a lunch at the cafeteria if they are satisfied with the food.

+

 

+

Do you think this is a good way for Diego to select his sample?

",,,Yes || No,No,106494 +PRABTVKJ,1,Multiple Choice (select 1),Multiple Choice,"

Un automóvil tardó 4 horas recorriendo una distancia de 240 millas. A esa tasa, ¿cuánto tardaría en recorrer 90 millas?

",,,"60 horas || 6 horas ||

223 horas

||

112 horas

","

112 horas

",320230 +PSBEF3,2,Multiple Choice (select 1),Multiple Choice,"

Add all the diameters of all the planets except the Sun. Which is wider, all of these objects side by side, or the Sun?

",,,The first 5 planets || The Sun,The Sun,22473 +PRABESCB,1,Multiple Choice (select 1),Multiple Choice,

It was -5°C in Copenhagen and -12°C in Oslo. Which city was colder?

,,,Copenhagen || Oslo,Oslo,218498 +PSBX69,7,Multiple Choice (select 1),Multiple Choice,"

For the statement below, decide if it is true or false. 

+

 

+

(20) makes both the equation for line m and the equation for line n true.

",,0,True || False,FALSE,113820 +PRABPESE,1,Multiple Choice (select 1),Multiple Choice,"

Kiran is using long division to find 696 ÷ 12.

+

 

+

12696

+

 

+

He starts by dividing 69 by 12. In which decimal place should Kiran place the first digit of the quotient (5)?

",,,Hundreds || Tens || Ones || Tenths,Tens,204459 +PRABFJQD,1,Multiple Choice (select all),Check All That Apply,"

Tyler has more than $10. Elena has more money than Tyler. Mai has more money than Elena. Let t be the amount of money that Tyler has, let e be the amount of money that Elena has, and let m be the amount of money that Mai has. Select all statements that are true.

",,,t < m || m > 10 || e > 10 || t > 10 || e > m || t < e,t < m || m > 10 || e > 10 || t > 10 || t < e,62003 +PRABETM6,1,Multiple Choice (select 1),Multiple Choice,

A circle’s circumference is 600 m. What is a good approximation of the circle’s area?

,,,"300 m2 || 3,000 m2 || 30,000 m2 || 300,000 m2","30,000 m2",25445 +PRABFGV9,1,Multiple Choice (select all),Check All That Apply,"
+

Andre ran 512 laps of a track in 8 minutes at a constant speed. It took Andre x minutes to run each lap. Select all the equations that represent this situation.

+

 

+
",,,"

512 x = 8

||

512 + x = 8

||

512 - x = 8

||

512 ÷ x = 8

||

x = 8 ÷  512

||

x = 512 ÷ 8

","

512 x = 8

||

x = 8 ÷  512

",189985 +PRABQP6R,1,Multiple Choice (select all),Check All That Apply,"

Select all the expressions that equal 6×105.

",,,"

(3×108)(2×10-2)

||

600,000,000×10-3

||

1.2×1072×102

||

600,000

||

605

","

600,000,000×10-3

||

600,000

",552200 +PSBB7UU,1,Multiple Choice (select 1),Multiple Choice,"

A participant in a 21-mile walkathon walks at a steady rate of 3 miles per hour. He thinks, “The relationship between the number of miles left to walk and the number of hours I already walked can be represented by a line with slope -3.” Do you agree with his claim?

",,,Yes || No,Yes,330357 +PRABQPKT,1,Multiple Choice (select 1),Multiple Choice,"

Which number line shows all the values of that make the inequality -6y - 2  10 true?

",,,"

||

||

||

","

",163825 +PRABFJP8,1,Multiple Choice (select all),Check All That Apply,

Select all the true statements.

,,,"

-5 < -5

||

-6 < -5

||

-6 < 3

||

4 < -7

||

-7 < -8

","

-5 < -5

||

4 < -7

||

-7 < -8

",362112 +PRABQMBR,1,Multiple Choice (select all),Check All That Apply,"

Select all of the expressions that have the same value as 892÷8.

",,,8920 ÷ 80 || 894 ÷ 10 || 89.2 ÷ 0.08 || 8.92 ÷ 0.8 || 0.892 ÷ 0.008,8920 ÷ 80 || 0.892 ÷ 0.008,278345 +PRABEPV8,1,Multiple Choice (select all),Check All That Apply,"

Select all the statements that must be true for any scaled copy Q of Polygon P. 

+

",,,"

The side lengths are all whole numbers.

||

The angle measures are all whole numbers.

||

Q has exactly 1 right angle.

||

If the scale factor between P and Q is 15, then each side length of P is multiplied by 15 to get the corresponding side length of Q.

||

If the scale factor is 2, each angle in P is multiplied by 2 to get the corresponding angle in Q.

||

Q has 2 acute angles and 3 obtuse angles.

","

The angle measures are all whole numbers.

||

Q has exactly 1 right angle.

||

If the scale factor between P and Q is 15, then each side length of P is multiplied by 15 to get the corresponding side length of Q.

||

Q has 2 acute angles and 3 obtuse angles.

",209639 +PSBZ9M,1,Multiple Choice (select 1),Multiple Choice,

Noah gathered information on the home states of the swimmers on Team USA. He organized the data in a table. Would a dot plot be appropriate to display his data?

,,,Yes || No,No,125866 +PSBBD5P,1,Multiple Choice (select 1),Multiple Choice,"

Noah says that 24 ·32 = 66. Tyler says that 24 ·42 = 162.

+

 

+

Do you agree with Noah?

",,,Yes || No,No,192067 +PSBBSBU,2,Multiple Choice (select 1),Multiple Choice,

Priya says her elevation is less than the submarine’s and she is closer to sea level. Is this possible? 

,,,"Yes, it is possible. || No, it is not possible","No, it is not possible",254509 +PSBS9Q,1,Multiple Choice (select 1),Multiple Choice,"

Decide whether the equation is true or false.

+

 

+

 6+  6 +6 = 63

",,0,True || False,FALSE,85308 +PRABFKT4,1,Multiple Choice (select all),Check All That Apply,"

Here is a histogram that summarizes the lengths, in feet, of a group of adult female sharks. Select all the statements that are true, according to the histogram.

+

 

+

",,,

A total of 9 sharks were measured.

||

A total of 50 sharks were measured.

||

The longest shark that was measured was 10 feet long.

||

Most of the sharks that were measured were over 16 feet long.

||

Two of the sharks that were measured were less than 14 feet long.

,

A total of 50 sharks were measured.

||

Two of the sharks that were measured were less than 14 feet long.

,65434 +PSBBHT5,1,Multiple Choice (select 1),Multiple Choice,"

Which is bigger, a quart or a liter?

",,,quart || liter,liter,213216 +PSBB6PY,1,Multiple Choice (select 1),Multiple Choice,"

Para cada pareja de números, llena el espacio con <, =, o > según corresponda.

+

 

+

0.75          34

",,,< || = || >,=,323658 +PRABQPME,1,Multiple Choice (select all),Check All That Apply,"

Elena would like to know the average height of seventh graders in her school district. She measures the heights of everyone in a random sample of 20 students. The mean height of Elena’s sample is 61 inches, and the MAD (mean absolute deviation) is 2 inches.

+

 

+

Select all the true statements.

",,,The median height of the sample must be between 59 and 63 inches. || Another random sample of 20 students is likely to have a mean between 57 and 65 inches. || The mean height of these 20 students is likely to be the same as the mean height of all students in the district. || The mean height of these 20 students is likely to be the same as the mean height of a second random sample of 20 students. || Elena would be more likely to get an accurate estimate of the mean height of the population by sampling 40 people instead of sampling 20 people.,Another random sample of 20 students is likely to have a mean between 57 and 65 inches. || Elena would be more likely to get an accurate estimate of the mean height of the population by sampling 40 people instead of sampling 20 people.,99112 +PRABEVTD,1,Multiple Choice (select all),Check All That Apply,"

This graph shows the temperature in Diego’s house between noon and midnight one day.

+

 

+

+

 

+

Select all the true statements.

",,,Time is a function of temperature. || The lowest temperature occurred between 4:00 and 5:00. || The temperature was increasing between 9:00 and 10:00. || The temperature was 74 degrees twice during the 12-hour period. || There was a four-hour period during which the temperature did not change.,The temperature was 74 degrees twice during the 12-hour period. || There was a four-hour period during which the temperature did not change.,340317 +PRABFGZ8,1,Multiple Choice (select all),Check All That Apply,"

Which expressions represent the total area of the large rectangle? Select all that apply. 

+

",,,6(m + n) || 6n + m || 6n + 6m || 6mn || (n + m)6,6(m + n) || 6n + 6m || (n + m)6,298817 +PSBBMNB,1,Multiple Choice (select 1),Multiple Choice,"

Decide whether the equation is true or false.

+

 

+

23 32

",,0,True || False,FALSE,229183 +PRABEDEK,1,Multiple Choice (select 1),Multiple Choice,"

Using the data in the scatter plot, what is a reasonable slope of a model that fits this data?

+

 

+

",,2,-2.5 || -1 || 1 || 2.5,2.5,36419 +PSBCHHJ,1,Multiple Choice (select 1),Multiple Choice,"

Han was looking at the equation 6x − 4 + 2(5x + 2) = 16x.

+

 

+

He said, “I can tell right away there are no solutions, because on the left side, you will have 6x + 10x and a bunch of constants, but you have just 16x on the right side.”

+

 

+

Do you agree with Han?

",,,Yes || No,No,386445 +PRABQPS5,1,Multiple Choice (select 1),Multiple Choice,

For which data set would the mean be a good way to describe the center of the data?

,,,"

white, blue, white, white, red

||

||

79, 80, 80, 88, 90, 92, 94

||

","

79, 80, 80, 88, 90, 92, 94

",266182 +PRABUUFB,1,Multiple Choice (select 1),Multiple Choice,"

State whether the following is in scientific notation.

+

 

+

8.7 x 10-12

",,,Already in scientific notation || Not in scientific notation,Already in scientific notation,258192 +PSBCBCJ,3,Multiple Choice (select 1),Multiple Choice,"

On a later day, he asked the same group of 10 friends to throw a ball again and collected another set of data. The median of the second data set is 49 feet, and the IQR is 6 feet.

+

 

+

Did the 10 friends, as a group, perform better (throw farther) in the second round compared to the first round? 

",,,

Better

||

Worse

,

Worse

,350745 +PRABQK68,1,Multiple Choice (select all),Check All That Apply,

Select all of the expressions that are equal to 2.

,,,"1,200 ÷ 60 || 1.2 ÷ 0.6 || 0.012 ÷ 0.06 || 0.5 ÷ 0.25 || 0.05 ÷ 0.025",1.2 ÷ 0.6 || 0.5 ÷ 0.25 || 0.05 ÷ 0.025,590847 +PSBBUMX,1,Multiple Choice (select 1),Multiple Choice,"

Clare estimates that her brother is 4 feet tall. When they get measured at the doctor’s office, her brother’s actual height is 4 feet, 2 inches.

+

 

+

Should Clare's or the doctor's measurement be considered the actual height?

",,,

Clare's measurement

||

Doctor's measurement

,

Doctor's measurement

,267340 +PRABEDCN,1,Multiple Choice (select 1),Multiple Choice,"

Which of these statements is true about the data in the scatter plot?

+

 

+

+
 
",,,"As x increases, y tends to increase. || As x increases, y tends to decrease. || As x increases, y tends to stay unchanged. || x and y are unrelated.","As x increases, y tends to decrease.",173561 +PSBCW78,1,Multiple Choice (select 1),Multiple Choice,"
+
+
+

Determine if the following is true or false.

+

 

+

|-5l < 3

+
+
+
",,0,True || False,FALSE,458234 +PSBCE5U,1,Multiple Choice (select 1),Multiple Choice,"

At a farm, animals are fed bales of hay and buckets of grain. Each bale of hay is in the shape a rectangular prism. The base has side lengths 2 feet and 3 feet, and the height is 5 feet. Each bucket of grain is a cylinder with a diameter of 3 feet. The height of the bucket is 5 feet, the same as the height of the bale.

+

 

+

Which is larger in area, the rectangular base of the bale or the circular base of the bucket? 

",,,Rectangular Base of the Bale || Circular Base of the Bucket,Circular Base of the Bucket,373493 +PSBZT4,3,Multiple Choice (select 1),Multiple Choice,"

Decide whether the table could represent a proportional relationship.

+

 

+

The number of wheels on a train.

+

 

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + +
number of train carsnumber of wheelswheels per train car
20184 
30264 
40344 
50424 
+

 

",,,"

Yes, it is proportional

||

No, it is not proportional

","

No, it is not proportional

",123722 +PSBB4QM,2,Multiple Choice (select 1),Multiple Choice,"

If a compressed rubber sphere has a 6-inch width, is its height closer to 5 inches or to 11 inches?

",,,5 inches || 11 inches,5 inches,312938 +PRABEPJR,1,Multiple Choice (select all),Check All That Apply,"

Here is a picture of the Rose Bowl Stadium in Pasadena, CA.

+

 

+

+

 

+

Here are some copies of the picture. Select all the pictures that are scaled copies of the original picture.

",,,"

||

||

||

","

||

",108663 +PRABE3GW,1,Multiple Choice (select 1),Multiple Choice,

Which pair of base and height produces the greatest area? All measurements are in centimeters.

,,,"

b=4, h=3.5

||

b=0.8, h=20

||

b=6, h=2.25

||

b=10, h=1.4

","

b=0.8, h=20

",503799 +PSBCHZC,1,Multiple Choice (select all),Check All That Apply,"

Andre sometimes mows lawns on the weekend to make extra money. Two weeks ago, he mowed a neighbor’s lawn for 12 hour and earned $10. Last week, he mowed his uncle’s lawn for 32 hours and earned $30. This week, he mowed the lawn of a community center for 2 hours and earned $30.

+

 

+

 

+

Which jobs paid better than others? 

+

 

",,,

Neighbor's Lawn

||

Uncle's Lawn

||

Community Center

,

Neighbor's Lawn

||

Uncle's Lawn

,389028 +PSBBY9D,1,Multiple Choice (select 1),Multiple Choice,"

The equation c could be true or false.

+

 

+

If a is 3, b is 4, and c is 5, is the equation true or false?

+
 
",,0,True || False,FALSE,293491 +PRABD45A,1,Multiple Choice (select all),Check All That Apply,"

Select all the sequences of transformations could take figure P to figure Q.

+

 

+

",,,"a single reflection || a single rotation || a single translation || a translation, then a reflection || a reflection, then a different reflection","a single rotation || a reflection, then a different reflection",40714 +PRABPUJG,1,Multiple Choice (select all),Check All That Apply,

Select all the relationships that demonstrate a positive association between variables.

,,,Outside temperature and cost to heat a home || Length of time you have walked and distance you have traveled || Pounds of cherries you buy and amount of money you spend on cherries || Speed of a train and the amount of time it takes for the train to get to its destination || Number of people in a grocery check-out line and how long you have to wait to check out,Length of time you have walked and distance you have traveled || Pounds of cherries you buy and amount of money you spend on cherries || Number of people in a grocery check-out line and how long you have to wait to check out,296937 +PSBHNF,1,Multiple Choice (select 1),Multiple Choice,"

Noah is interested in comparing the number of movies watched by students and teachers over the winter break. He takes a random sample of 10 students and 10 teachers and makes a dot plot of their responses.

+

Students:

+

+

Teachers:

+

+


Noah then computes the measures of center and variability for each group:

+
    +
  • Students: Mean = 5.7 movies, MAD = 0.76 movies
  • +
  • Teachers: Mean = 2.7 movies, MAD = 0.9 movies
  • +
+

 

+

Is Noah's choice of mean and MAD appropriate for the data he has? 

",,,Yes || No,Yes,39360 +PRABEC25,1,Multiple Choice (select all),Check All That Apply,"
+

Here is the graph of a linear equation.  

+

 

+

Select all true statements about the line and its equation.

+
+
 
+
",,,"

One solution of the equation is (3, 2).

||

One solution of the equation is (-1, 1).

||

One solution of the equation is (1, 32).

||

There are 2 solutions.

||

There are infinitely many solutions.

||

The equation of the line is y = 14x + 54.

||

The equation of the line is y = 54x + 14.

","

One solution of the equation is (3, 2).

||

One solution of the equation is (-1, 1).

||

One solution of the equation is (1, 32).

||

There are infinitely many solutions.

||

The equation of the line is y = 14x + 54.

",331521 +PRABQPRE,1,Multiple Choice (select 1),Multiple Choice,"

A rectangular pyramid is sliced. The slice passes through the vertex of the pyramid and is perpendicular to the base of the pyramid. 

+

 

+

Which of these describes the cross section? 

+

",,,A rectangle smaller than the base || A quadrilateral that is not a rectangle || A rectangle the same size as the base || A triangle with a height the same as the pyramid,A triangle with a height the same as the pyramid,348992 +PRABFENR,1,Multiple Choice (select 1),Multiple Choice,"

Before refrigerators existed, some people had blocks of ice delivered to their homes.

+

 

+

A delivery wagon had a storage box in the shape of a rectangular prism that was 712 feet by 6 feet by 6 feet. The cubic ice blocks stored in the box had side lengths 112 feet.

+

 

+

 

+

How many ice blocks fit in the storage box?

",,,"

270

||

338

||

80

||

180

",

80

,277396 +PSBR2X,1,Multiple Choice (select 1),Multiple Choice,"

Han and Tyler are following a polenta recipe that uses 5 cups of water for every 2 cups of cornmeal.

+

 

+
    +
  • Han says, “I am using 3 cups of water. I will need 1 15 cups of cornmeal.”
  • +
  • Tyler says, “I am using 3 cups of cornmeal. I will need 7 12 cups of water.”
  • +
+

 

+

Do you agree with either of them?

",,,I agree with Han || I agree with Tyler || I agree with both || I don't agree with either,I agree with both,78262 +PRABPQ5B,1,Multiple Choice (select all),Check All That Apply,"

The equation  has two solutions. This is because both  , and also . So, 5 is a solution, and also -5 is a solution.

+


Select all the equations that have a solution of -4.

",,,10 + x = 6 || 10 - x = 6 || -3x = -12 || -3x = 12 || 8 = x² || x² = 16,10 + x = 6 || -3x = 12 || x² = 16,412709 +PRABEUGJ,1,Multiple Choice (select all),Check All That Apply,

Select all the expressions that are the result of decreasing x by 80%.

,,,"

20100x

||

x - 80100x

||

100 - 20100x

||

0.80x

||

(1 - 0.8)x

","

20100x

||

x - 80100x

||

(1 - 0.8)x

",375713 +PSBBR5Q,1,Multiple Choice (select 1),Multiple Choice,"

Ten sixth-grade students reported the hours of sleep they get on nights before a school day. Their responses are recorded in the dot plot.

+



+

Looking at the dot plot, Lin estimated the mean number of hours of sleep to be 8.5 hours. Noah's estimate was 7.5 hours. Diego's estimate was 6.5 hours.

+

 

+

Which estimate do you think is best?

",,,Lin's estimate || Noah's estimate || Diego's estimate,Noah's estimate,253594 +PSBBMQF,1,Multiple Choice (select 1),Multiple Choice,"

Decide whether the equation is true or false.

+

 

+

161 82

",,0,True || False,FALSE,229517 +PRABHQW3,1,Multiple Choice (select all),Check All That Apply,"

Consider the division expression 712 ÷ 2.  Select all multiplication equations that correspond to this division expression.

",,,"

2 · ? = 712

||

712 · ? = 2

||

2 · 712 = ?

||

? · 712 = 2

||

? · 2 = 712

","

2 · ? = 712

||

? · 2 = 712

",490707 +PRABQMB2,1,Multiple Choice (select all),Check All That Apply,"

Without computing, select all of the expressions that have the same value as 81·(37+59).

",,,81 · (59+37) || (81 · 37) + 59 || (81 · 37) + (81 · 59) || 81 + (37 · 59) || (37 + 59) · 81,81 · (59+37) || (81 · 37) + (81 · 59) || (37 + 59) · 81,427706 +PSBBFAV,10,Multiple Choice (select all),Check All That Apply,"

Other than traveling from school, what do you do right after school on most days?

+
+
+
 
+
+
",,,Have a snack || Do homework || Read a book || Talk on the phone || Practice a sport || Do chores || Use the computer || Participate in an extracurricular activity,Have a snack || Do homework || Read a book || Talk on the phone || Practice a sport || Do chores || Use the computer || Participate in an extracurricular activity,199131 +PSBWQY,2,Multiple Choice (select 1),Multiple Choice,

Is the sample representative of the population?

,,,Yes || No,No,106396 +PRABFGZS,1,Multiple Choice (select all),Check All That Apply,"

Select all the expressions that equal 34.

",,,

7

||

43

||

12

||

81

||

64

||

92

,

81

||

92

,297477 +PSBS86,3,Multiple Choice (select all),Check All That Apply,"

+

 

+

Which have the same area and the same perimeter as Rectangle R?

",,,Rectangle A. || Rectangle B. || Rectangle C. || Rectangle D. || Rectangle E. || Rectangle F.,Rectangle A. || Rectangle E.,85266 +PSBX69,1,Multiple Choice (select 1),Multiple Choice,"

Here are graphs representing three linear relationships. These relationships could also be represented with equations.

+

 

+

+

For the statement below, decide if it is true or false. 

+

 

+

(4, 0) is a solution of the equation for line m.

",,0,True || False,FALSE,113066 +PSBQM7,1,Multiple Choice (select 1),Multiple Choice,"

Priya looks at the inequality 12x>5 and says “I subtract a number from 12 and want a result that is bigger than 5. That means that the solutions should be values of x that are smaller than something.”

+

 

+

Do you agree with Priya?

",,,Agree || Disagree,Agree,70471 +PSBH8S,7,Multiple Choice (select 1),Multiple Choice,

It will snow at our school on July 1.

,,,impossible || unlikely || equally likely as not || likely || certain,impossible || unlikely,42589 +PSBB7DK,1,Multiple Choice (select all),Check All That Apply,

Which graphs cannot represent a proportional relationship? Select all that apply.

,,,"

||

||

||

","

||

",327867 +PSBBR87,4,Multiple Choice (select 1),Multiple Choice,"

Noah said, “If a is a rational number, -a will always be a negative number.”

+

 

+

Do you agree with Noah? 

",,,"Yes, Noah is correct. || No, Noah is incorrect.","No, Noah is incorrect.",254122 +PRABFCCB,1,Multiple Choice (select all),Check All That Apply,

Select all the expressions whose value is larger than 100.

,,,"

120% of 100

||

50% of 150

||

150% of 50

||

20% of 800

||

200% of 30

||

500% of 400

||

1% of 1,000

",

120% of 100

||

20% of 800

||

500% of 400

,321235 +PSBV9Y,5,Multiple Choice (select all),Check All That Apply,

Which three summer sports are most popular in Kiran’s class?

,,,basketball || diving || gymnastics || rowing || soccer || swimming || track and field || volleyball,gymnastics || swimming || track and field,103242 +PSBC3Y7,1,Multiple Choice (select 1),Multiple Choice,"

At a restaurant, a trash can's opening is rectangular and measures 7 inches by 9 inches. The restaurant serves food on trays that measure 12 inches by 16 inches. Jada says it is impossible for the tray to accidentally fall through the trash can opening because the shortest side of the tray is longer than either edge of the opening.

+

 

+

Do you agree or disagree with Jada’s explanation?

",,,Agree || Disagree,Disagree,485290 +PSBB2TW,2,Multiple Choice (select 1),Multiple Choice,"

For the inequality, decide whether the solution is represented by x < 4.5 or x > 4.5.

+

 

+

-8x + 6 > -30

",,,x < 4.5 || x > 4.5,x < 4.5,302326 +PRABDX3U,1,Multiple Choice (select all),Check All That Apply,"

The rectangle seen in Frame 1 is rotated to a new position, seen in Frame 2.

+



+

Select all the ways the rectangle could have been rotated to get from Frame 1 to Frame 2.

",,,40 degrees clockwise || 40 degrees counterclockwise || 90 degrees clockwise || 90 degrees counterclockwise || 140 degrees clockwise || 140 degrees counterclockwise,40 degrees counterclockwise || 140 degrees clockwise,1074 +PRABEE2J,1,Multiple Choice (select 1),Multiple Choice,"

Which equation, together with y = -1.5x + 3, makes a system with one solution?

",,,y = -1.5x + 6 || y = -1.5x || 2y = -3x + 6 || 2y + 3x = 6 || y = -2x + 3,y = -2x + 3,306064 +PSB9AQ,1,Multiple Choice (select 1),Multiple Choice,"

Which one of these pictures is not like the others?

+

 

+

",,,Picture L || Picture M || Picture N,Picture M,165102 +PSBQ67,1,Multiple Choice (select 1),Multiple Choice,"

For a science experiment, students need to find 25% of 60 grams.

+

 

+
    +
  • Jada says, “I can find this by calculating 14 of 60.”
  • +
  • Andre says, “25% of 60 means 25100 · 60.”
  • +
+

 

+

Do you agree with either of them? 

",,,I agree with only Jada || I agree with only Andre || I agree with both Jada and Andre || I agree with neither Jada or Andre,I agree with both Jada and Andre,73922 +PRABFEWM,1,Multiple Choice (select all),Check All That Apply,

Select all the true equations.

,,,"

5 + 0 = 0

||

15 · 0 = 0

||

1.4 + 2.7 = 4.1

||

23 · 59 = 712

||

423 = 5 - 13

","

15 · 0 = 0

||

1.4 + 2.7 = 4.1

||

423 = 5 - 13

",154867 +PRABMQH8,1,Multiple Choice (select all),Check All That Apply,"

Triangle Z is a scale copy of Triangle M.

+

+


Select all the sets of values that could be the side lengths of Triangle Z. 

",,,"

8,11,14

|| 10,17.5,25 || 6,9,11 || 6,10.5,15 || 8,14,20","10,17.5,25 || 6,10.5,15 || 8,14,20",569234 +PSBCNUB,1,Multiple Choice (select 1),Multiple Choice,"

Which temperature is warmer, -2 degrees Celsius, or -5 degrees Celsius?

",,,-2 degrees Celsius || -5 degrees Celsius,-2 degrees Celsius,409535 +PSBBXKW,1,Multiple Choice (select 1),Multiple Choice,"

While playing basketball, Jada’s heart rate goes up to 160 beats per minute. While jogging, her heart beats 25 times in 10 seconds. Assuming her heart beats at a constant rate while jogging, which of these activities resulted in a higher heart rate?

",,,jogging || playing basketball,playing basketball,283915 +PSBEXG,1,Multiple Choice (select 1),Multiple Choice,"

Decide whether the table could represent a proportional relationship.

+

 

+

Annie’s Attic is giving away $5 off coupons.

+

 

+ + + + + + + + + + + + + + + + + + + +
original pricesale price
$15$10
$25$20
$35$30
",,,"

Yes, it is proportional

||

No, it is not proportional

","

No, it is not proportional

",24484 +PRABQNZC,1,Multiple Choice (select 1),Multiple Choice,

Which of these expressions is equivalent to 0.04(x - 25)?

,,,

0.04x - 1

||

0.04x - 1.04

||

0.04x - 25

||

0.04x - 25.04

,

0.04x - 1

,498737 +PSBJF8,1,Multiple Choice (select 1),Multiple Choice,"

 

+

 

+

Diego and Jada were asked “How many rhombuses are in a trapezoid?”

+
    +
  • Diego says, “. If I put 1 rhombus on a trapezoid, the leftover shape is a triangle, which is  of the trapezoid.” 
  • +
  • Jada says, “I think it’s . Since we want to find out ‘how many rhombuses,’ we should compare the leftover triangle to a rhombus. A triangle is  of a rhombus.” 
  • +
+

 

+

Do you agree with either of them?

",,,I agree with Diego || I agree with Jada || I agree with neither || I agree with both,I agree with Jada,44207 +PSBH8S,8,Multiple Choice (select 1),Multiple Choice,

The sun will set today before 11:00 p.m.

,,,impossible || unlikely || equally likely as not || likely || certain,certain,42680 +PSBBCQT,6,Multiple Choice (select 1),Multiple Choice,"

Is (100, 193) also on the line?

+

",,,Yes || No,Yes,184867 +PRABDYF6,1,Multiple Choice (select 1),Multiple Choice,"

The point (-4,1) is rotated 180 degrees counterclockwise using center (0,0). What are the coordinates of the image?

",,,"

(-1,-4)

||

(-1,4)

||

(4,1)

||

(4,-1)

","

(4,-1)

",95407 +PSBBE76,1,Multiple Choice (select all),Check All That Apply,"

Select all the equations that describe the situation and then find the solution.

+

 

+

Tyler's playlist has 36 songs. Noah’s playlist has one quarter as many songs as Tyler's playlist. How many songs are on Noah’s playlist, w?

",,,"

w = 4 · 36

||

w = 36 ÷ 4

||

4w = 36

||

w4 = 36

","

w = 36 ÷ 4

||

4w = 36

",198693 +PSBG9G,2,Multiple Choice (select 1),Multiple Choice,"

A recipe for tropical fruit punch says, ""Combine 4 cups of pineapple juice with 5 cups of orange juice.""

+

 

+

If 12 cups of pineapple juice are used with 20 cups of orange juice, will the recipe taste the same?

",,,Yes || No,No,37441 +PSBBFYZ,1,Multiple Choice (select 1),Multiple Choice,

Could 7.2 inches and 28 inches be the diameter and circumference of the same circle?

,,,Yes || No,No,202903 +PSBCW5V,1,Multiple Choice (select 1),Multiple Choice,"
+
+
+

Determine if the following is true or false.

+

 

+

-5 > 3

+
+
+
",,0,True || False,FALSE,457920 +PRABPMJS,1,Multiple Choice (select all),Check All That Apply,

Select all the inequalities that have the same graph as x < 4.

,,,x < 2 || x + 6 < 10 || 5x < 20 || x-2 > 2 || x < 8,x + 6 < 10 || 5x < 20,233480 +PRABEUGG,1,Multiple Choice (select 1),Multiple Choice,"

Which equation represents the relationship between the angles in the figure?

+

 

+

",,,88 + b = 90 || 88 + b = 180 || 2b + 88 = 90 || 2b + 88 = 180,2b + 88 = 180,375373 +PRABETQK,1,Multiple Choice (select 1),Multiple Choice,

Noah picked 3 kg of cherries. Mai picked half as many cherries as Noah. How many total kg of cherries did Mai and Noah pick?

,,,"

3 + 12

||

3 - 12

||

1 + 12 · 3

||

1 + 12 · 3

","

1 + 12 · 3

",66914 +PSBBRHC,3,Multiple Choice (select 1),Multiple Choice,

Is the length of the shadow a function of time?

,,,Yes || No,Yes,250112 +PRABG423,1,Multiple Choice (select 1),Multiple Choice,"

Decide whether the solution is represented by x < 2.5 or x > 2.5.

+

 

+

-4x + 5 > -5

+
 
",,,x < 2.5 || x > 2.5,x < 2.5,237440 +PRABEDDW,1,Multiple Choice (select all),Check All That Apply,"

Here is a scatter plot:

+

 

+

+

 

+

Select all the following that describe the association in the scatter plot:

",,,Linear association || Non-linear association || Positive association || Negative association || No association,Non-linear association || Positive association,68650 +PSBUVN,1,Multiple Choice (select 1),Multiple Choice,"

Tyler and Han are discussing the question, ""Which sixth-grade student lives the farthest from school?""

+
    +
  • Tyler says, “I don’t think the question is a statistical question. There is only one person who lives the farthest from school, so there would not be variability in the data we collect.”
  • +
  • Han says: “I think it is a statistical question. To answer the question, we wouldn’t actually be asking everyone, 'Which student lives the farthest from school?' We would have to ask each student how far away from school they live, and we can expect their responses to have variability.”
  • +
+

Do you agree with either of them?

",,,Agree with Tyler || Agree with Han,Agree with Han,94609 +PSBBBD9,1,Multiple Choice (select 1),Multiple Choice,"

To make a friendship bracelet, some long strings are lined up then taking one string and tying it in a knot with each of the other strings to create a row of knots. A new string is chosen and knotted with the all the other strings to create a second row. This process is repeated until there are enough rows to make a bracelet to fit around your friend's wrist.

+

 

+

Are the number of knots proportional to the number of rows?

",,,Yes || No,Yes,177081 +PSBHNQ,1,Multiple Choice (select 1),Multiple Choice,"
    +
  • Noah says that 9x − 2x + 4x is equivalent to 3x because the subtraction sign tells us to subtract everything that comes after 9x.  
  • +
+

 

+
    +
  • Elena says that 9x − 2x + 4x is equivalent to 11x because the subtraction only applies to 2x.
  • +
+

 

+

Do you agree with either of these claims?

",,,Noah is correct || Elena is correct || Neither are correct || Both are correct,Elena is correct,39475 +PRABFS5H,1,Multiple Choice (select all),Check All That Apply,"

Select the unit from the list that you would use to measure the object.

+

 

+

The length of a chalkboard or whiteboard

",,,centimeters || cups || feet || gallons || grams || inches || kilograms || kilometers || liters || meters || miles || milliliters || millimeters || ounces || pounds || quarts || tons || yards,feet || meters || yards,173797 +PSBBMHD,1,Multiple Choice (select 1),Multiple Choice,"

Decide whether the equation is true or false.

+

 

+

35

",,0,True || False,FALSE,228402 +PSBBE7Q,1,Multiple Choice (select 1),Multiple Choice,"

The table shows how fast light waves or electricity can travel through different materials.

+

 

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
materialspeed (meters per second)
space300,000,000
water
copper wire (electricity)280,000,000
diamond
ice
olive oil200,000,000
+

 

+

Which is faster, light through diamond or light through ice?

",,,light through diamond || light through ice,light through ice,198121 +PRABFKNZ,1,Multiple Choice (select all),Check All That Apply,"
+

Noah’s water bottle contains more than 1 quart of water but less than 112 quarts. Let w be the amount of water in Noah’s bottle, in quarts. Select all the true statements.

+
",,,"

w could be 34.

||

w could be 1.

||

w > 1

||

w could be 43.

||

w could be 54.

||

w could be 53.

||

w > 1.5

","

w > 1

||

w could be 43.

||

w could be 54.

",262820 +PSBCM9V,1,Multiple Choice (select all),Check All That Apply,"

Select all of the equations that describe the situation. If you get stuck, draw a diagram.

+

 

+

 

+

A coach formed teams of 8 from all the players in a soccer league. There are 14 teams. How many players are in the league?

",,,"

y = 14 ÷ 8

||

y8 = 14

||

18 y = 14 

||

y = 14 · 8

","

y8 = 14

||

18 y = 14 

||

y = 14 · 8

",406643 +PSBEPA,1,Multiple Choice (select 1),Multiple Choice,"

A restaurant sells 10 tacos for $8.49, or 6 of the same kind of taco for $5.40.

+

 

+

Which is the better deal?

+

 

",,,10 for $8.49 || 6 for $5.40,10 for $8.49,23593 +PSBCRHQ,3,Multiple Choice (select 1),Multiple Choice,

Is the percentage illumination of the moon's surface a linear function of the day?

,,,Yes || No,No,426071 +PRABQMWZ,1,Multiple Choice (select 1),Multiple Choice,"

These four numbers are plotted on a number line:  -23, 58, -35,-12

+

 

+

Which is the correct ordering on the number line, from left to right?

",,,"

-12, -35, -23, 58

||

-12, -35, 58, -23

||

-23, -35, -12, 58

||

-35, -23, -12, 58

","

-23, -35, -12, 58

",69186 +PSBCJQB,2,Multiple Choice (select 1),Multiple Choice,

Is there a proportional relationship between the perimeter and side length? 

,,,Yes || No,Yes,392468 +PRABEVSG,1,Multiple Choice (select all),Check All That Apply,"

Here is the graph for one of the equations in a system of two equations.

+

 

+

+

 

+

The solution to the system is (6, 2). Select all the equations that could be the other equation in the system.

",,,"

y=-3x

||

y=-32x+6

||

y=-16x+3

||

y=23x-1

||

y=12x-1

||

y=4x-2

","

y=-16x+3

||

y=12x-1

",297047 +PRABGY9N,1,Multiple Choice (select all),Check All That Apply,"

Study the examples and non-examples of bases and heights in a triangle. Answer the questions that follow.

+
    +
  • These dashed segments represent heights of the triangle.
  • +
+

+
    +
  • These dashed segments do not represent heights of the triangle.
  • +
+

+

 

+

Select all the statements that are true about bases and heights in a triangle.

",,,"Any side of a triangle can be a base. || There is only one possible height. || A height is always one of the sides of a triangle. || A height that corresponds to a base must be drawn at an acute angle to the base. || A height that corresponds to a base must be drawn at a right angle to the base. || Once we choose a base, there is only one segment that represents the corresponding height. || A segment representing a height must go through a vertex.",Any side of a triangle can be a base. || A height that corresponds to a base must be drawn at a right angle to the base.,306997 +PRABEVAJ,1,Multiple Choice (select 1),Multiple Choice,"

Let x=-118 and y=-114

+

 

+

+

 

+

Which expression has a negative value?

",,,"

x + y

||

x - y

||

x • y

||

xy

",

x + y

,69444 +PSBDA8S,1,Multiple Choice (select 1),Multiple Choice,"

We saw that it is possible to fit three copies of regular hexagons snugly around a point.

+

Each interior angle of a regular pentagon measures 108°. Is it possible to fit copies of a regular pentagon snugly around a point?

+

",,,Yes || No,No,525911 +PRABETN3,1,Multiple Choice (select all),Check All That Apply,"

Select all the options that have the same value as 312% of 20.

",,,"

3.5% of 20

||

312 · 20

||

(0.35) · 20

||

(0.035) · 20

||

7% of 10

",

3.5% of 20

||

(0.035) · 20

||

7% of 10

,184732 +PSBUPJ,2,Multiple Choice (select 1),Multiple Choice,"

Is the decimal of 1850 also 0.36?

+

 

",,,Yes || No,Yes,93346 +PRABQP65,1,Multiple Choice (select 1),Multiple Choice,"

Each of the following gives the lengths, in inches, of the sides of a triangle. Which one is a right triangle?

",,,"

3, 4, 6

||

4, 6, 8

||

5, 12, 13

||

5, 5, 10

","

5, 5, 10

",315914 +PSBD2M4,1,Multiple Choice (select 1),Multiple Choice,"

This diagram shows four small squares and one rectangle composed of 10 small squares.

+

 

+

+

 

+

Andre says that this diagram can represent 140. Do you agree with Andre?

",,,Yes || No,Yes,655190 +PRABQM3Q,1,Multiple Choice (select 1),Multiple Choice,

Which estimate is closest to the actual value of (3.99437) · (2.6851)?

,,10,14.2 || 12.6 || 10.8 || 8.3,10.8,61617 +PRABEQ3T,1,Multiple Choice (select 1),Multiple Choice,"

Which is the best explanation for why -10 is irrational?

",,,"

-10 is irrational because it is not rational.

||

- 10 is irrational because it is less than zero.

||

-10 is irrational because it is not a whole number.

||

-10 is irrational because if I put -10 into a calculator, I get -3.16227766, which does not make a repeating pattern.

","

-10 is irrational because if I put -10 into a calculator, I get -3.16227766, which does not make a repeating pattern.

",10283 +PRABEPN4,1,Multiple Choice (select 1),Multiple Choice,"

Which value is an exact solution of the equation m2 = 14?

",,,"

7

||

14

||

3.74

||

3.74

","

14

",146354 +PSBB9TA,1,Multiple Choice (select 1),Multiple Choice,"

Your teacher will give you 2 pieces of a 6-piece puzzle.

+

 

+

If you drew scaled copies of your puzzle pieces using a scale factor of 12, would they be larger or smaller than the original pieces?

",,,Larger || Smaller,Smaller,341397 +PSBCNJA,4,Multiple Choice (select 1),Multiple Choice,"

Andre surveyed a random sample of 20 students and found that 13 of them were in favor of having school start one hour later.

+

 

+

Do you think it would be surprising if 100 students out of 250 were in favor?

",,,Yes || No,Yes,408023 +PSBDDB9,1,Multiple Choice (select 1),Multiple Choice,"

Priya rewrites the expression 8y24 as 8(y3). Han rewrites 8y24 as 2(4y12).

+

Are Priya's and Han's expressions each equivalent to 8y24?

",,,Yes || No,Yes,538288 +PRABQNC9,1,Multiple Choice (select 1),Multiple Choice,

Which table represents a proportional relationship?

,,," + + + + + + + + + + + + + + + + + + +
00
26
39
412
+

 

|| + + + + + + + + + + + + + + + + + + +
012
26
33
40
+

 

|| + + + + + + + + + + + + + + + + + + +
06
212
315
418
+

 

||

 

+ + + + + + + + + + + + + + + + + + + +
00
24
39
416
+

 

"," + + + + + + + + + + + + + + + + + + +
00
26
39
412
+

 

",409242 +PRABE64M,1,Multiple Choice (select all),Check All That Apply,"

Here is a diagram that describes the cups of green and white paint in a mixture.

+

 

+ + + + + + + + + + + +
green paint (cups)
white paint (cups)
+

 

+

Select all the statements that accurately describe this diagram.

",,,"The ratio of cups of white paint to cups of green paint is 2 to 4. || For every cup of green paint, there are two cups of white paint. ||

The ratio of cups of green paint to cups of white paint is 4 : 2.

|| For every cup of white paint, there are two cups of green paint. ||

The ratio of cups of green paint to cups of white paint is 2 : 4.

","The ratio of cups of white paint to cups of green paint is 2 to 4. ||

The ratio of cups of green paint to cups of white paint is 4 : 2.

|| For every cup of white paint, there are two cups of green paint.",88681 +PSBBMG6,3,Multiple Choice (select 1),Multiple Choice,"

Kiran started his homework before 7:00 p.m. and finished his homework after 8:00 p.m. Let h represent the number of hours Kiran worked on his homework.

+

 

+

Decide if the statement it is definitely true, definitely not true, or possibly true.

+

 h>2

",,,Definitely True || Definitely Not True || Possibly True,Possibly True,227828 +PRABQP25,1,Multiple Choice (select all),Check All That Apply,

Select all the proportional relationships.

,,,"

|| + + + + + + + + + + + + + + + + + + + + + + + + + + +
xy
06
39
612
915
1218
|| + + + + + + + + + + + + + + + + +
day1234
number of cell phones sold5101520
||

y=13x, where x and y are both positive numbers.

||

Clare borrowed $100 from her father. She pays him back $10 each week. M is the amount of money Clare still owes, and W is the number of weeks: 100-10W=M

","

|| + + + + + + + + + + + + + + + + +
day1234
number of cell phones sold5101520
||

y=13x, where x and y are both positive numbers.

",595744 +PSBZP8,1,Multiple Choice (select all),Check All That Apply,"

The table shows records of money-related activities of a bakery owner over a period of a week.

+

 

+

 

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
DateItemsAmount in Dollars
May 1Rent-850.00
May 2Order (Birthday Cake and Cookies)106.75
May 3Utilities (Electricity, Gas, Phone)-294.50
May 5Order (Wedding Cake and Desserts)240.55
May 5Baking Supplies-147.95
May 6Order (Anniversary Cake)158.20
May 7Order (Breads and Desserts for a Conference)482.30
May 7Bakery Sales415.65
+

 

+

 

+

For which items did she receive money?

+

 

",,,

Rent

||

Orders

||

Utilities

||

Baking Supplies

||

Bakery Sales

,

Orders

||

Bakery Sales

,122792 +PSBU2,2,Multiple Choice (select 1),Multiple Choice,"

Is the point (1, 60) on the graph?

+

 

+

",,,Yes || No,Yes,2516 +PRABFJQN,1,Multiple Choice (select all),Check All That Apply,"

Select all the expressions that are equivalent to 123.

",,,"

12 · 12 · 12

||

123

||

132

||

16

||

18

","

12 · 12 · 12

||

123

||

18

",435477 +PSBBVZJ,1,Multiple Choice (select 1),Multiple Choice,

Circle A has a diameter of 1 foot. Circle B has a circumference of 1 meter. Which circle is bigger? (1 inch = 2.54 centimeters)

,,,Circle A || Circle B,Circle B,274856 +PSBC4G,1,Multiple Choice (select 1),Multiple Choice,"

The volume, V, of a cube with edge length s cm is given by the equation V=s3.

+

 

+

The volume of a sphere is a function of its radius (in centimeters), and the graph of the relationship is shown here.

+

 

+

+

 

+

Is the volume of the cube with edge length s = 3 greater or less than the volume of a sphere with radius 3?

",,,Greater than || Less than,Less than,15007 +PSBCRQU,5,Multiple Choice (select 1),Multiple Choice,

Use the decimal representations to decide which of these fractions has the greatest value.

,,,"

925

||

1130

||

411

","

1130

",427041 +PRABQKS5,1,Multiple Choice (select 1),Multiple Choice,

Jada made 6 cups of blueberry jam and divided the jam equally among 4 containers. How much jam went in each container?

,,,"

23 of a cup

||

1 cup

||

32 of a cup

||

24 cups

","

32 of a cup

",588423 +PSBS56,1,Multiple Choice (select 1),Multiple Choice,"

Decide whether the equation is true or false.

+

 

+

17 · 17 · 17 = 37

",,0,True || False,FALSE,84517 +PRABQPZA,1,Multiple Choice (select 1),Multiple Choice,"

A pool holds 19,900 gallons of water. There are two hoses that can be used to fill the pool, a large one and a small one. On an average day, it takes 5 hours to fill the pool with the large hose and 12 hours with the small hose. Which graph best represents this scenario?

",,,"

||

||

||

","

",211312 +PRABQPZZ,1,Multiple Choice (select 1),Multiple Choice,"

What is the solution to 3x + 30 + x = 10 + 2x + 5x + 2?

",,,"

18

||

6

||

92

||

-2

",

6

,150654 +PRABQKRX,1,Multiple Choice (select all),Check All That Apply,

Select all of the trips that would take 2 hours.

,,,"

Drive 60 miles per hour between Buffalo and Seneca Falls, which are 120 miles apart.

|| Walk 3 miles per hour to school, which is 1.5 miles away. || Take a train going 80 miles per hour from Albany to New York City, which are 160 miles apart.","

Drive 60 miles per hour between Buffalo and Seneca Falls, which are 120 miles apart.

|| Take a train going 80 miles per hour from Albany to New York City, which are 160 miles apart.",560316 +PSBBBHJ,3,Multiple Choice (select all),Check All That Apply,"

Select all heights that could be Andre's height in centimeters. If you get stuck, consider drawing a number line to help you.

",,,

150

||

154.5

||

160

||

162.5

||

164

,

154.5

||

160

||

162.5

,177985 +PRABEJZ2,1,Multiple Choice (select all),Check All That Apply,"

Here is a scatter plot that shows the number of points and assists by a set of hockey players. Select all the following that describe the association in the scatter plot:

+

 

+

",,,Linear association || Non-linear association || Positive association || Negative association || No association,Linear association || Positive association,400715 +PSBB8W,1,Multiple Choice (select 1),Multiple Choice,"
+

Here is a table that shows elevations of various cities.

+

 

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
cityelevation (feet)
Harrisburg, PA320
Bethell, IN1,211
Denver, CO5,280
Coachella, CA-22
Death Valley, CA-282
New York City, NY33
Miami, FL0
+

 

+

On the list of cities, which city has the second highest elevation?

+
+
+

Here is a situation involving changes in temperature and a number line.

+

 

+

2. At noon, the temperature was 5 degrees Celsius. By late afternoon, it has risen 6 degrees Celsius. What was the temperature late in the afternoon?

+

a. Represent each change on a number line. 

+

+

Draw your number line on paper, take a picture, and upload it using the image upload icon 

+

If you do not have the ability to upload an image of your work type ""Number line is on paper.""

+
 
+
copied for free from openupresources.org
+
",,,"Harrisburg, PA || Bethell, IN || Denver, CO || Coachella, CA || Death Valley, CA || New York City, NY || Miami, FL","Bethell, IN",9624 +PSBBRM,1,Multiple Choice (select all),Check All That Apply,

Which of these triangles are definitely right triangles? (Note that not all triangles are drawn to scale.)

,,,"

||

||

||

||

","

||

||

",7398 +PSBNEN,1,Multiple Choice (select 1),Multiple Choice,"

Lin and Diego travel in cars on the highway at constant speeds. Decide who was traveling faster.

+

 

+

During the first half hour, Lin travels 23 miles while Diego travels 25 miles.

",,,Diego || Lin,Diego,59099 +PSBMSA,1,Multiple Choice (select 1),Multiple Choice,"

Two cars drive on the same highway in the same direction. The graphs show the distance, d, of each one as a function of time, t. Which car drives faster?

+

 

+

",,,Car A || Car B,Car B,55933 +PSBBUJU,2,Multiple Choice (select 1),Multiple Choice,

The mean weight of this sample of seventh-grade backpacks is 6.3 pounds. Do you think the mean weight of backpacks for all seventh-grade students is exactly 6.3 pounds?

,,,Yes || No,No,267394 +PSBYSU,1,Multiple Choice (select 1),Multiple Choice,"

Andre and Noah each drew a triangle with side lengths of 5 cm and 3 cm and an angle that measures 60º, and then they showed each other their drawings. 

+

 

+

+

 

+

Did Andre and Noah draw different triangles?

",,,Yes || No,No,117623 +PRABFEWN,1,Multiple Choice (select all),Check All That Apply,"

Mai's water bottle has 24 ounces in it. After she drank x ounces of water, there are 10 ounces left.

+

 

+

Select all the equations that represent this situation.

",,,"

24 ÷ 10 = x

||

24 + 10 = x

||

24 - 10 = x

||

x + 10 = 24

||

10x = 24

","

24 - 10 = x

||

x + 10 = 24

",155072 +PSBR7A,1,Multiple Choice (select 1),Multiple Choice,

A corn vendor at a farmer's market was selling a bag of 8 ears of corn for $2.56. Another vendor was selling a bag of 12 for $4.32. Which bag is the better deal?

,,,Bag of 8 for $2.56 || Bag of 12 for $4.32,Bag of 8 for $2.56,78992 +PSB9SV,1,Multiple Choice (select 1),Multiple Choice,"

For the pair, some of the angles of two triangles in degrees are given. Use the information to decide if the triangles are similar or not.

+

 

+

 

+

Triangle C: 90, 37, ___; Triangle D: 90, 53, ___

",,,similar || not similar,similar,167875 +PRABQMBH,1,Multiple Choice (select 1),Multiple Choice,"

For part of a science experiment, Andre adds 0.25 milliliters of dye to 12.3 milliliters of water. How many milliliters does the mixture contain?

+

 

",,12,12.05 || 12.325 || 12.55 || 14.8,12.55,8347 +PRABFHN7,1,Multiple Choice (select all),Check All That Apply,"

Select all the expressions that are equivalent to 5x + 30x - 15x.

",,,"

5(x +6x - 3x)

||

(5 + 30 - 15) · x

||

x(5 + 30x - 15x)

||

5x(1 + 6 - 3)

||

5(x + 30x - 15x)

","

5(x +6x - 3x)

||

(5 + 30 - 15) · x

||

5x(1 + 6 - 3)

",70516 +PRABQPY9,1,Multiple Choice (select 1),Multiple Choice,"

A successful music app tracked the number of song downloads each day for a month for 4 music artists, represented by lines , j, m, and d over the course of a month. Which line represents an artist whose downloads remained constant over the month?

+

 

+

",,,ℓ || j || m || d,m,211231 +PRABET9R,1,Multiple Choice (select all),Check All That Apply,

Select all values of x that make the inequality -x + 6 ≥ 10 true.

,,,-3.9 || 4 || -4.01 || -4 || 4.01 || 3.9 || 0 || -7,-4.01 || -4 || -7,51952 +PRABPUPZ,1,Multiple Choice (select all),Check All That Apply,"

Select all the numbers that are solutions to the equation x3 = 27.

",,,"

27

||

3

||

273

||

273

||

9

","

3

||

273

",46264 +PRABQKRW,1,Multiple Choice (select 1),Multiple Choice,

There are 15 pieces of fruit in a bowl and 6 of them are apples. What percentage of the pieces of fruit in the bowl are apples?

,,,0.06% || 0.4% || 6% || 40%,40%,560175 +PSBCN9R,1,Multiple Choice (select 1),Multiple Choice,"

On a map with a scale of 1 inch to 12 feet, the area of a restaurant is 60 in2. Han says that the actual area of the restaurant is 720 ft2. Do you agree or disagree?

",,,I agree || I disagree,I disagree,412048 +PRABFFUD,1,Multiple Choice (select 1),Multiple Choice,"

Is an elevation of -10 feet closer or farther from the surface of the ocean than an elevation of -8 feet?

+
 
",,,Closer || Farther,Farther,197878 +PSBQGM,1,Multiple Choice (select all),Check All That Apply,"

Are any of the figures B, C, or D scaled copies of figure A? 

+

 

+

",,,B || C || D || None,C,69785 +PRABQPRV,1,Multiple Choice (select all),Check All That Apply,

Select all the measures of center.

,,,mean || IQR (interquartile range) || MAD (mean absolute deviation) || median || range,mean || median,202762 +PRABEU6S,1,Multiple Choice (select all),Check All That Apply,

Select all the equations that are true when x is -4.

,,,"

 -8 = 2x

||

-12 = x · -3

||

-12 = x + x + x

||

x4 = -1

||

x + 4 = -8

||

x2 = -16

","

 -8 = 2x

||

-12 = x + x + x

||

x4 = -1

",195193 +PSB4CN,3,Multiple Choice (select 1),Multiple Choice,"

Jada’s family bought 50 tacos for a party and paid $72.

+

 

+

Were Jada’s tacos the same price as Noah’s tacos?

",,,Yes || No,No,138414 +PSBDF4U,1,Multiple Choice (select 1),Multiple Choice,"

The recipe for Perfect Purple Water says, “Mix 8 ml of blue water with 3 ml of red water.”

+

 

+

Jada mixes 24 ml of blue water with 9 ml of red water. Andre mixes 16 ml of blue water with 9 ml of red water.

+

 

+

Which person will get a color mixture that is the same shade as Perfect Purple Water? 

",,,Jada || Andre,Jada,554651 +PRABQMP2,1,Multiple Choice (select all),Check All That Apply,"

Rectangle A is 10 times as long as rectangle B.


+



+

If rectangle A is 80 units long, select all the ways find the length of rectangle B.

",,,"

Multiply 80 by 10.

||

Multiply 80 by 110.

||

Multiply 10 by 80.

||

Divide 80 by 10.

||

Divide 10 by 80.

||

Divide 80 by 110.

","

Multiply 80 by 110.

||

Divide 80 by 10.

",445267 +PSBTWF,1,Multiple Choice (select 1),Multiple Choice,

Diego thinks that x = 3 is a solution to the equation x= 16. Do you agree?

,,,Yes || No,No,88806 +PSBBB4U,1,Multiple Choice (select 1),Multiple Choice,"
+
+

Clare went to a concession stand that sells pretzels for $3.25, drinks for $1.85, and bags of popcorn for $0.99 each. She bought at least one of each item and spent no more than $10.

+
+
+
 
+
Could Clare have purchased 2 pretzels, 2 drinks, and 2 bags of popcorn? 
",,,Yes || No,No,180865 +PRABQPYQ,1,Multiple Choice (select 1),Multiple Choice,"

At a grocery store, 2 gallons of milk cost $7.20, and 5 gallons of milk cost $18.

+

 

+

Which equation relates the total cost, t, to the gallons of milk purchased, m?

",,,m = 7.2t || t = 7.2m || m = 3.6t || t = 3.6m,t = 3.6m,171936 +PSBCNJA,2,Multiple Choice (select 1),Multiple Choice,"

Andre surveyed a random sample of 20 students and found that 13 of them were in favor of having school start one hour later.

+

 

+

Do you think it would be surprising if 150 students out of 250 were in favor?

",,,Yes || No,No,407824 +PSBB4EW,3,Multiple Choice (select 1),Multiple Choice,"

Elena drank 3 liters of water yesterday. Jada drank 34 times as much water as Elena. Lin drank twice as much water as Jada.

+

 

+

 

+

Did Lin drink more or less water than Elena drank?

",,,More || Less,More,311333 +PSBBUJU,1,Multiple Choice (select 1),Multiple Choice,"

Consider the question: Do tenth-grade students' backpacks generally weigh more than seventh-grade students' backpacks?

+

Here are dot plots showing the weights of backpacks for a random sample of students from these two grades:

+

 

+

+

 

+

Did any seventh-grade backpacks in this sample weigh more than a tenth-grade backpack?

",,,Yes || No,Yes,267307 +PRABEPUE,1,Multiple Choice (select all),Check All That Apply,

Figure B is a scaled copy of Figure A. Select all of the statements that must be true.

,,,Figure B is larger than Figure A || Figure B has the same number of edges as Figure A || Figure B has the same perimeter as Figure A || Figure B has the same number of angles as Figure A || Figure B has angles with the same measures as Figure A,Figure B has the same number of edges as Figure A || Figure B has the same number of angles as Figure A || Figure B has angles with the same measures as Figure A,117237 +PSBCBNU,3,Multiple Choice (select 1),Multiple Choice,"

If Andre made another courtyard scale drawing at a scale of 1 to 12, would this drawing be smaller or larger than the first drawing?  

",,,

smaller than the first drawing

||

larger than the first drawing

,

larger than the first drawing

,352677 +PRABQPZ2,1,Multiple Choice (select 1),Multiple Choice,"

Which of the systems of equations has a solution of (-2, 6)?

",,,"

y=2x+10y=3x-6

||

 y-2x=2y+2x=10

||

x-y=9y=x+9

||

 x+2y =10-4x-y=2

","

 x+2y =10-4x-y=2

",77479 +PSBH5E,1,Multiple Choice (select 1),Multiple Choice,"

Which other expression has the same value as (-14)-8?

",,,(-14) + 8 || 14 − (-8) || 14 + (-8) || (-14) + (-8),(-14) + (-8),42327 +PSBSP9,1,Multiple Choice (select 1),Multiple Choice,"

The Amazon rainforest covered 6.42 million square kilometers in 1994. In 2014, it covered only 5059 as much. Which is closest to the area of the Amazon Forest in 2014? 

",,,

6.4 million km2

||

5.4 million km2

||

4.4 million km2

||

3.4 million km2

||

2.4 million km2

,

5.4 million km2

,81898 +PRABE4MA,1,Multiple Choice (select all),Check All That Apply,

Select all of the pieces of information that would tell you x and y have a proportional relationship. Let y represent the distance between a rock and a turtle's current position in meters and x represent the number of minutes the turtle has been moving.

,,,"

y = 3x

||

After 4 minutes, the turtle has walked 12 feet away from the rock.

||

The turtle walks for a bit, then stops for a minute before walking again.

||

The turtle walks away from the rock at a constant rate.

",

y = 3x

||

The turtle walks away from the rock at a constant rate.

,103020 +PSBS57,2,Multiple Choice (select 1),Multiple Choice,"

Which of these values is closest to the slope of the linear model shown in the scatter plot?

+

 

+

",,,"1,000 || 3,000 || -1,000 || -3,000","1,000",84657 +PRABQKWB,1,Multiple Choice (select all),Check All That Apply,"

Select all equations that represent this question:

+


Diego has run 23 of a race’s distance. He has run 812 kilometers. How long is the whole race?

",,,"

812 ÷ 23 = ?

||

23 ÷ 812= ?

||

23 · ? = 812

||

812 · ? = 23

||

812 · 32 = ?

||

812 · 23 = ?

","

812 ÷ 23 = ?

||

23 · ? = 812

||

812 · 32 = ?

",20916 +PRABHK6C,1,Multiple Choice (select 1),Multiple Choice,"

If the net is assembled, which of the following polyhedra would it make?

+

 

+

 

+

+

 

+

 

+

 

",,,"

||

||

||

","

",475896 +PSBZ3D,1,Multiple Choice (select 1),Multiple Choice,"

Choose the inequality that best matches the given situation.

+

 

+

The Science Club is researching boiling points. They learn that at high altitudes, water boils at lower temperatures. At sea level, water boils at 212° F With each increase of 500 feet in elevation, the boiling point of water is lowered by about 1° F.

",,,"

212-1500e<195

||

1500e-195<212

||

195-212e<1500

||

212-195e<1500

","

212-1500e<195

",124948 +PSBZKN,1,Multiple Choice (select 1),Multiple Choice,"
+
Quadrilateral A has side lengths 3, 6, 6, and 9. Quadrilateral B is a scaled copy of A with a shortest side length equal to 2. Jada says, “Since the side lengths go down by 1 in this scaling, the perimeter goes down by 4 in total.” Do you agree with Jada?
+
",,,Yes || No,No,122126 +PRABQP4H,1,Multiple Choice (select 1),Multiple Choice,"

Jada gathered data at her school among 7th and 8th graders to see if there was an association between grade level and playing sports. The table shows her data, but the number of 8th graders who play sports is missing.

+

 

+ + + + + + + +
+ + + + + + + + + + + + + + + + + + +
 play sportsdon't play sports
7th graders11252
8th graders 84
+
+

 

+

Jada found there was no evidence of an association between grade level and playing sports. Which of these could be the number of 8th graders who play sports?

",,181,248 || 181 || 144 || 69,181,604503 +PSBBBXW,1,Multiple Choice (select 1),Multiple Choice,"

Are these faces congruent?

+

 

+

+
 
",,,"Yes, they are congruent || No, they are not congruent","No, they are not congruent",180206 +PRABQM34,1,Multiple Choice (select all),Check All That Apply,"

This line plot shows the amount of time, in seconds, that it took 20 sixth graders to complete a set of 10 sit ups in gym class.

+

 

+

+

 

+

 

+

Select all the true statements.

",,,The difference between the fastest and slowest times was 0.9 seconds. || The fastest time was 7.0 seconds. || The fastest 3 students’ total time was 23.6 seconds. || No student recorded a time of 7.1 seconds. || Exactly half of the students were faster than 7.6 seconds.,The fastest 3 students’ total time was 23.6 seconds. || No student recorded a time of 7.1 seconds.,5038 +PRABE37Q,1,Multiple Choice (select all),Check All That Apply,"

Select all segments that could represent a corresponding height if the side n is the base.

+

 

+

",,,e || f || g || h || j || k || m || n,g || h,43170 +PRABQP3T,1,Multiple Choice (select all),Check All That Apply,"

This table shows a linear relationship between the age of a newborn baby in weeks and their weight. 

+

 

+ + + + + + + + + + + + + + + + + + + + + + + +
age (weeks)weight (pounds)
16
38
1015
1217
+

 

+

Select all the true statements. 

",,,The weight of the baby increases at a constant rate of 2 lbs every week.  || The weight of the baby increases at a constant rate of 1 lb every week.  || The weight of the baby increases at a constant rate of 1/2 lb every week.  || Age is a function of weight.  || Weight is a function of age. ,The weight of the baby increases at a constant rate of 1 lb every week.  || Age is a function of weight.  || Weight is a function of age. ,144363 +PSBEX7,1,Multiple Choice (select 1),Multiple Choice,"

Is the equation true or false?

+

 

+

4 × 10× 4 × 104 = 4 × 1020

",,0,True || False,FALSE,25252 +PSBBGHB,1,Multiple Choice (select 1),Multiple Choice,"

Which is greater, -920 or -0.5?

+

 

+

If you get stuck, consider plotting the numbers on a number line.

",,,"

-920

||

-0.5

","

-920

",205980 +PRABG2WF,1,Multiple Choice (select 1),Multiple Choice,"

True or false?

+

 

+

",,1,True || False,TRUE,348818 +PRABQP45,1,Multiple Choice (select all),Check All That Apply,"

The graph shows the relationship between a sphere's radius and volume. 

+

 

+

+

 

+

Select all the statements that are true about this relationship. 

",,,"If the radius doubles, the volume doubles.  || If the radius doubles, the volume becomes about 4 times bigger.  || If the radius doubles, the volume becomes about 8 times bigger. || The relationship is linear.  || The relationship is not linear.","If the radius doubles, the volume becomes about 8 times bigger. || The relationship is not linear.",348832 +PRABQP3U,1,Multiple Choice (select all),Check All That Apply,"

The graph shows the amount of water in a bathtub starting at 10:00. Select all true statements. 

+

 

+

",,,"The tub was filling faster at 10:14 than at 10:01.  || At 10:06, the tub was neither filling nor draining.  || The maximum amount of water in the tub was about 35 gallons.  || The amount of water in the tub stayed the same from 10:16 to 10:20.  || It took 4 minutes for the tub to drain. ","At 10:06, the tub was neither filling nor draining.  || The maximum amount of water in the tub was about 35 gallons.  || It took 4 minutes for the tub to drain. ",144504 +PSBBZBV,1,Multiple Choice (select 1),Multiple Choice,"

The equation ⋅ z could be true or false.

+

 

+

If x is 3, y is 4, and z is 12, is the equation true or false?

+

 

",,1,True || False,TRUE,293965 +PRABFFUC,1,Multiple Choice (select 1),Multiple Choice,"

Is a temperature of -11 degrees warmer or colder than a temperature of -15 degrees?

+
 
",,,Warmer || Colder,Warmer,197626 +PSBNS,1,Multiple Choice (select 1),Multiple Choice,"

For the pair of shapes, decide whether or not Shape A is congruent to Shape B. 

+

 

+

 

",,,"Yes, they are congruent || No, they are not congruent","No, they are not congruent",1543 +PRABEDYM,1,Multiple Choice (select 1),Multiple Choice,"

Which story matches the equation -6 + 3x = 2 + 4x?

",,,"

At 5 p.m., the temperatures recorded at two weather stations in Antarctica are -6 degrees and 2 degrees. The temperature changes at the same constant rate, x degrees per hour, throughout the night at both locations. The temperature at the first station 3 hours after this recording is the same as the temperature at the second station 4 hours after this recording.

||

Elena and Kiran play a card game. Every time they collect a pair of matching cards, they earn x points. At one point in the game, Kiran has -6 points and Elena has 2 points. After Elena collects 3 pairs and Kiran collects 4 pairs, they have the same number of points.

","

At 5 p.m., the temperatures recorded at two weather stations in Antarctica are -6 degrees and 2 degrees. The temperature changes at the same constant rate, x degrees per hour, throughout the night at both locations. The temperature at the first station 3 hours after this recording is the same as the temperature at the second station 4 hours after this recording.

",233998 +PSBHS,1,Multiple Choice (select 1),Multiple Choice,"

For the following pair of shapes, decide whether or not they are congruent. 

+

 

+

",,,"Yes, they are congruent || No, they are not congruent","No, they are not congruent",885 +PRABQMFP,1,Multiple Choice (select 1),Multiple Choice,

Which expression is equivalent to 45- 10b?

,,,5(9a - 10b) || 45(a - 10b) || 5(9a + 2b) || 5(9a - 2b),5(9a - 2b),350591 +PSBB5XG,1,Multiple Choice (select 1),Multiple Choice,"

Is this equation true?

+

",,,Yes || No,No,319310 +PSBBM9E,1,Multiple Choice (select 1),Multiple Choice,"

For the same data, two different models are graphed. Which model more closely matches the data?

",,,"

||

","

",232667 +PSBB58,1,Multiple Choice (select 1),Multiple Choice,"

Now, let’s look at rectangles ABCD and EFGH.

+

+


Jada says, “These rectangles are similar because all of the side lengths differ by 2.” Lin says, “These rectangles are similar. I can dilate AD and BC using a scale factor of 2 and AB and CD using a scale factor of 1.5 to make the rectangles congruent. Then I can use a translation to line up the rectangles.” Do you agree with either Jada or Lin? 

",,,Jada || Lin || Neither,Neither,9569 +PRABEC2T,1,Multiple Choice (select 1),Multiple Choice,"

Choose the equation that has solutions (5, 7) and (8, 13).

",,,3x - y = 8 || y = x + 2 || y - x = 5 || y = 2x - 3,y = 2x - 3,382378 +PSBVM,1,Multiple Choice (select 1),Multiple Choice,"

For the pair of shapes, decide whether or not Shape A is congruent to Shape B. 

+

 

+

 

",,,"Yes, they are congruent || No, they are not congruent","No, they are not congruent",2541 +PSBBT8B,1,Multiple Choice (select 1),Multiple Choice,"

Which of the three triangles has the greatest area?  If you get stuck, try using what you know about the area of parallelograms.

",,,"

 

+

+

 

||

+

 

+

 

+

 

||

+

 

+

 

+

 

||

All three triangles have areas that are equal.

",

All three triangles have areas that are equal.

,264860 +PSBYNG,1,Multiple Choice (select 1),Multiple Choice,"

Which estimate is closest to the actual value of the expression? 

+

 

+

",,6,6 || 6.5 || 7,6.5,117002 +PSBBHQQ,1,Multiple Choice (select all),Check All That Apply,

Which of the following numbers are greater than 6 and less than 8?

,,,"

7

||

60

||

80

","

60

",212585 +PRABEVAX,1,Multiple Choice (select 1),Multiple Choice,"

At practice, Diego does twice as many push-ups as Noah, and also 40 jumping jacks. He does 62 exercises in total. The equation  describes this situation.

+

 

+

What does the variable x represent?

+
 
",,,The number of jumping jacks Diego does || The number of push-ups Diego does || The number of jumping jacks Noah does || The number of push-ups Noah does,The number of push-ups Noah does,308414 +PSBYKR,1,Multiple Choice (select all),Check All That Apply,"

The table shows the speed of light or electricity through different materials. Identify the speeds that are written in scientific notation.

+

 

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
materialspeed (meters per second)
space
water
copper (electricity)
diamond
ice
olive oil
+

 

+

",,,Space || Water || Copper (electricity) || Diamond || Ice || Olive Oil,Water || Ice,116755 +PSBZXP,1,Multiple Choice (select 1),Multiple Choice,

Diego paid $47 for 3 tickets to a concert. Andre paid $141 for 9 tickets to a concert. Did they pay at the same rate?

,,,Yes || No,Yes,124302 +PRABEVSY,1,Multiple Choice (select all),Check All That Apply,

Select all the proportional relationships.

,,,"

||

A train is traveling at a constant speed of 60 miles per hour. The number of hours the train has been traveling is t. The number of miles the train has traveled is d.

||

The relationship is represented by this table:  

+

 

+ + + + + + + + + + + + + + + + + + + +
xy
36
412
524
||

y=3x, where x and y are both positive numbers.

||

y=1x

","

A train is traveling at a constant speed of 60 miles per hour. The number of hours the train has been traveling is t. The number of miles the train has traveled is d.

||

y=3x, where x and y are both positive numbers.

",1089 +PSBBNG,1,Multiple Choice (select 1),Multiple Choice,"

Predict if the mean is greater than, less than, or approximately equal to the median.

+

 

+

Heights of 50 NBA basketball players

+

",,,Greater than || Less than || Equal to,Equal to,6560 +PRABFEZJ,1,Multiple Choice (select all),Check All That Apply,

Select all the parallelograms that have an area of 16 square units.

,,,"

||

||

||

","

||

||

",55428 +PSBBRHC,4,Multiple Choice (select 1),Multiple Choice,

Is it linear?

,,,Yes || No,No,250205 +PSBZV8,2,Multiple Choice (select 1),Multiple Choice,"

If each person ran at a constant speed the entire time, who was running faster? 

",,,Mai || Jada,Mai,124027 +PSBB7N6,1,Multiple Choice (select 1),Multiple Choice,"

Here is a 15-by-8 rectangle divided into triangles. Is the shaded triangle a right triangle? 

+

 

+
+

+
",,,Yes || No,No,329307 +PSBBSWV,1,Multiple Choice (select 1),Multiple Choice,"

State whether the following is in scientific notation.

+

 

+

0.00099

",,,Already in scientific notation || Not in scientific notation,Not in scientific notation,257260 +PSBB9D3,2,Multiple Choice (select 1),Multiple Choice,"

The reading on a car’s speedometer has 1.6% maximum error. The speed limit on a road is 65 mph.

+

 

+

The speedometer reads 66 mph. Is the car definitely going over the speed limit?

",,,Yes || No,No,339477 +PSBN96,3,Multiple Choice (select 1),Multiple Choice,"

Answer the question “Which is taller, the Burj Khalifa or a stack of the money it cost to build the Burj Khalifa?”

",,,Burj Khalifa || Stack of money,Stack of money,63639 +PSBBS2Y,3,Multiple Choice (select 1),Multiple Choice,

Clare estimates the students at her school spend an average of 1.2 hours each night doing homework. Priya estimates the students at her school spend an average of 2 hours each night watching TV. Which of these two estimates is likely to be closer to the actual mean value for all the students at their school?

,,,Clare's estimate || Priya's estimate,Clare's estimate,257987 +PSBF2G,1,Multiple Choice (select 1),Multiple Choice,"

Is there a rigid transformation taking Rectangle A to Rectangle B? 

+

",,,Yes || No || Not enough information,No,30936 +PSBCN6R,1,Multiple Choice (select 1),Multiple Choice,"
+

A map of a park has a scale of 1 inch to 1,000 feet. Another map of the same park has a scale of 1 inch to 500 feet. Which map is larger?

+
",,,"The map with scale 1 inch to 1,000 feet || The map with scale 1 inch to 500 feet",The map with scale 1 inch to 500 feet,411481 +PSBBMKA,1,Multiple Choice (select 1),Multiple Choice,"

Decide whether the equation is true or false.

+

 

+

53 ⋅ ⋅ 5

",,1,True || False,TRUE,228808 +PRABHQC6,1,Multiple Choice (select 1),Multiple Choice,

Which figure has the largest shaded region?

,,,"

||

||

","

",91796 +PRABEJCQ,1,Multiple Choice (select all),Check All That Apply,"

Select all of the following that are equivalent to 110,000:

",,,"

(10,000)-1

||

(-10,000)

||

(100)-2

||

(10)-4

||

(-10)2

","

(10,000)-1

||

(100)-2

||

(10)-4

",208025 +PSBHNF,3,Multiple Choice (select 1),Multiple Choice,

Should Noah conclude that there is a meaningful difference in the mean number of movies watched over winter break between the two groups? 

,,,Yes || No,Yes,39707 +PRABQM83,1,Multiple Choice (select 1),Multiple Choice,"

A scale drawing of a rectangular park is 5 inches wide and 7 inches long. The actual park is 280 yards long. What is the area of the actual park, in square yards?

+

 

+

",,,"35 || 200 || 1,400 || 56,000","56,000",116142 +PRABQPRD,1,Multiple Choice (select all),Check All That Apply,

Select all the conditions for which it is possible to construct a triangle. 

,,,"A triangle with angle measures 40°, 60°, and 80° || A triangle with side lengths 3 cm, 7 cm, and 11 cm || A triangle with side lengths 6 in, 13 in, and 12 in || A triangle with side lengths 8 cm and 5 cm and a 90° angle || A triangle with angle measures 120° and 70°, and a 9 cm side length","A triangle with angle measures 40°, 60°, and 80° || A triangle with side lengths 6 in, 13 in, and 12 in || A triangle with side lengths 8 cm and 5 cm and a 90° angle",558187 +PSBVHS,2,Multiple Choice (select 1),Multiple Choice,

Which team improved the most?

,,,football team || basketball team || baseball team,baseball team,98864 +PRABEVTN,1,Multiple Choice (select all),Check All That Apply,"

The graph shows the relationship between the radius and volume for many cones whose height is 6 inches.

+

 

+

+

 

+

Select all the true statements about such cones.

",,,"The relationship between radius and volume is linear. || The relationship between radius and volume is not linear. || If the radius of the cone doubles, the volume of the cone doubles. || If the radius of the cone doubles, the volume of the cone is multiplied by 4. || If the radius of the cone is 2 inches, the volume of the cone is about 25 cubic inches.","The relationship between radius and volume is not linear. || If the radius of the cone doubles, the volume of the cone is multiplied by 4. || If the radius of the cone is 2 inches, the volume of the cone is about 25 cubic inches.",297716 +PSB7VY,1,Multiple Choice (select 1),Multiple Choice,"

A slug travels 3 centimeters in 3 seconds. A snail travels 6 centimeters in 6 seconds. Both travel at constant speeds. Mai says, “The snail was traveling faster because it went a greater distance.” Do you agree with Mai? 

",,,I agree || I disagree,I disagree,157878 +PSBCKRV,3,Multiple Choice (select 1),Multiple Choice,

Who won the race?

,,,Elena || Jada || It's a tie,It's a tie,398888 +PRABFG3G,1,Multiple Choice (select all),Check All That Apply,"

Select all the expressions that represent the area of the shaded rectangle.

+

 

+

",,,"

3(10 - c)

||

3(c - 10)

||

10(c - 3)

||

10(3 - c)

||

30 - 3c

||

30 - 10c

","

3(10 - c)

||

30 - 3c

",87743 +PRABEEZR,1,Multiple Choice (select all),Check All That Apply,"

The solution to a system of equations is (5, -19). Choose two equations that might make up the system.

",,,y = -3x - 6 || y = 2x - 23 || y = -7x + 16 || y = x - 17 || y = -2x - 9,y = -7x + 16 || y = -2x - 9,104427 +PRABEQAX,1,Multiple Choice (select 1),Multiple Choice,

For which triangle does the Pythagorean Theorem express the relationship between the lengths of its three sides?

,,,"

||

||

||

","

",8202 +PSBBBY4,4,Multiple Choice (select 1),Multiple Choice,

The customer wants the window to have 5 feet of space above it. Is the customer describing a or b?

,,,a || b,a,180292 +PSBDBQU,2,Multiple Choice (select 1),Multiple Choice,

Which group shows greater variability?

,,,Group A || Group B,Group A,529063 +PSBYSB,2,Multiple Choice (select 1),Multiple Choice,

Who wins?

,,,Mai || Tyler,Mai,117709 +PSBCHEJ,1,Multiple Choice (select 1),Multiple Choice,"

Lin was looking at the equation 2x − 32 + 4(3x − 2462) = 14x.

+

 

+

She said, “I can tell right away there are no solutions, because on the left side, you will have 2x + 12x and a bunch of constants, but you have just 14x on the right side.”

+

 

+

Do you agree with Lin?

",,,Yes || No,Yes,386019 +PRABN748,1,Multiple Choice (select all),Check All That Apply,

Select all the ratios that are equivalent to each other. 

,,,

4 : 7

||

8 : 15

||

16 : 28

||

2 : 3

||

20 : 35

,

4 : 7

||

16 : 28

||

20 : 35

,650734 +PSBHA6,1,Multiple Choice (select 1),Multiple Choice,"

Noah says, “There are 212groups of 45 in 2."" Do you agree with him?

",,,Yes || No,Yes,37956 +PSBDG7H,1,Multiple Choice (select 1),Multiple Choice,"

The two lines represent the amount of water, over time, in two tanks that are the same size. Which container is filling more quickly?

+

 

+

",,,Container A || Container B,Container A,560139 +PSBKBK,1,Multiple Choice (select 1),Multiple Choice,

Which elevation is higher: 8 feet below sea level or 13 feet below sea level?

,,,8 feet below sea level || 13 feet below sea level,8 feet below sea level,48097 +PRABFF3M,1,Multiple Choice (select all),Check All That Apply,"

Which expressions are solutions to the equation 34x = 15?  Select all that apply.

",,,"

 

+

1534

+

 

||

 

+

1543

+

 

||

 

+

43 · 15

+

 

||

 

+

34 · 15

+

 

||

 

+

15 ÷ 34

","

 

+

1534

+

 

||

 

+

43 · 15

+

 

||

 

+

15 ÷ 34

",222789 +PSBN47,2,Multiple Choice (select all),Check All That Apply,

Which of the following could be points on the graph of your equation?

,,,"

(1.75, 1)

||

(2, 3.50)

||

(5, 8.75)

||

(17.50, 10)

||

(9, 15.35)

","

(2, 3.50)

||

(5, 8.75)

",63340 +PRABG2WE,1,Multiple Choice (select 1),Multiple Choice,"

True or false?

+

 

+

",,0,True || False,FALSE,348711 +PRABPUDN,1,Multiple Choice (select all),Check All That Apply,"

Diego made the shape on the left, and Elena made the shape on the right. Each shape uses 5 circles.

+

+

Select all the true statements. 

",,,The smallest circle in Diego's design is congruent to the smallest circle in Elena’s design. || Diego’s design is congruent to Elena’s design. || Elena’s design is a translation of Diego's design. || The largest circle in Elena's design is congruent to the largest circle in Diego's design. || Each circle in the Elena's design has a congruent circle within Diego's design.,The smallest circle in Diego's design is congruent to the smallest circle in Elena’s design. || The largest circle in Elena's design is congruent to the largest circle in Diego's design. || Each circle in the Elena's design has a congruent circle within Diego's design.,545012 +PSBEXG,2,Multiple Choice (select 1),Multiple Choice,"

Decide whether the table could represent a proportional relationship.

+

 

+

Bettie's Boutique is having a 20% off sale.

+

 

+ + + + + + + + + + + + + + + + + + + +
original pricesale price
$15$12
$25$20
$35$28
",,,"

Yes, it is proportional

||

No, it is not proportional

","

Yes, it is proportional

",24737 +PRABETM5,1,Multiple Choice (select all),Check All That Apply,

Elena walked 12 miles. Then she walked 0.25 that distance. How far did she walk altogether? Select all that apply.

,,,12 + 0.25 · 12 || 12(1 + 0.25) || 12 · 1.25 || 12 · 0.25 || 12 + 0.25,12 + 0.25 · 12 || 12(1 + 0.25) || 12 · 1.25,25178 +PRABFBT6,1,Multiple Choice (select 1),Multiple Choice,

A soccer field is 100 meters long. What could be its length in yards?

,,,

33.3

||

91

||

100

||

109

,

109

,79597 +PRABETDG,1,Multiple Choice (select all),Check All That Apply,"

Last week, it rained g inches. This week, the amount of rain decreased by 5%. Which expressions represent the amount of rain that fell this week? Select all that apply.

",,,

g - 0.05

||

g - 0.05g

||

0.95g

||

0.05g

||

(1 - 0.05)g

,

g - 0.05g

||

0.95g

||

(1 - 0.05)g

,181762 +PSBBRB7,1,Multiple Choice (select 1),Multiple Choice,"

Tyler thinks that this figure has enough information to figure out the values of a and b. Do you agree? 

+

",,,Yes || No,No,249250 +PSBQ5D,1,Multiple Choice (select all),Check All That Apply,"

Select all the equations that describe the situation.

+

 

+
+
+
+

Each notebook contains 60 sheets of paper. Andre has 5 notebooks. How many sheets of paper do Andre’s notebooks contain?

+
+
+
",,,"

y = 60 ÷ 5

||

y = 5 · 60 

||

y5 = 60

||

5y= 60

","

y = 5 · 60 

||

y5 = 60

",73585 +PSBBHQ2,1,Multiple Choice (select 1),Multiple Choice,"

Which is larger, a cubic inch or a cubic centimeter?

",,,cubic inch || cubic centimeter,cubic inch,212537 +PSBBDBK,2,Multiple Choice (select 1),Multiple Choice,"

Based on the graph, can this be a proportional relationship?

",,,Yes || No,No,187804 +PSBCRPW,1,Multiple Choice (select 1),Multiple Choice,"

Decide whether the inequality statement is true or false. 

+

 

+

-12 > -15

",,1,True || False,TRUE,426918 +PRABEAG9,1,Multiple Choice (select all),Check All That Apply,"

Elena’s aunt pays her $1 for each call she makes to let people know about her aunt’s new business.

+

 

+

The table shows how much money Diego receives for washing windows for his neighbors.

+

 

+ + + + + + + + + + + + + + + + + + + +
number of windowsnumber of dollars
2730
4550
8190
+

 

+

 

+

Select all the statements about the situation that are true.

",,,"

Elena makes more money for making 10 calls than Diego makes for washing 10 windows.

||

Diego makes more money for washing each window than Elena makes for making each call.

||

Elena makes the same amount of money for 20 calls as Diego makes for 18 windows.

||

Diego needs to wash 35 windows to make as much money as Elena makes for 40 calls.

||

The equation y = 910x, where y is number of dollars and x is number of windows, represents Diego’s situation.

||

The equation y = x, where y is number of dollars and x is number of calls, represents Elena’s situation.

","

Diego makes more money for washing each window than Elena makes for making each call.

||

Elena makes the same amount of money for 20 calls as Diego makes for 18 windows.

||

The equation y = x, where y is number of dollars and x is number of calls, represents Elena’s situation.

",192118 +PSBCWSX,1,Multiple Choice (select all),Check All That Apply,"

Here are some fractions.

+

 

+

Select all the fractions that are equal to 8.2.

",,,"

820100

||

8201000

||

821000

||

82010

||

8210

||

82100

","

820100

||

8210

",455868 +PSBMG9,1,Multiple Choice (select 1),Multiple Choice,"

Without evaluating each expression, determine which value is the greatest.

",,,"

756 - 934

||

-756 + -934

||

-756 · 934

||

-756 ÷ -934

","

-756 ÷ -934

",54627 +PSBBVEV,1,Multiple Choice (select 1),Multiple Choice,"

A shopper needs 48 hot dogs. The store sells identical hot dogs in 2 differently sized packages. They sell a six-pack of hot dogs for $2.10, and an eight-pack of hot dogs for $3.12. Should the shopper buy 8 six-packs, or 6 eight-packs?

",,,8 six-packs || 6 eight-packs,8 six-packs,271838 +PSBYUC,3,Multiple Choice (select 1),Multiple Choice,

Which numbers—positive or negative—result in fewer bottles in the machine?

,,,positive || negative,negative,117788 +PSBF4M,1,Multiple Choice (select 1),Multiple Choice,"

Choose the equation that the diagram does not match.

+

",,,6 + 3x = 30 || 3(x + 6) = 30 || 3x = 30 − 6 || 30 = 3x + 6,3(x + 6) = 30,31406 +PSBH6F,1,Multiple Choice (select 1),Multiple Choice,"
    +
  •  Clare mixes 212 cups of water with 13 cup of orange juice concentrate.
  • +
+

 

+
    +
  • Han mixes 123 cups of water with 14 cup of orange juice concentrate.
  • +
+

 

+

 

+

Whose orange juice mixture tastes stronger?

",,,

Claire

|| Han,Han,42365 +PSBB3M4,2,Multiple Choice (select 1),Multiple Choice,

Did the student answer less than or more than 75% of the questions correctly?

,,,Less than 75% || More than 75%,More than 75%,307493 +PRABFK4F,1,Multiple Choice (select 1),Multiple Choice,"

Here is a table that shows student's scores for 10 rounds of a video game.

+

 

+ + + + + + + + + + + + + + + +
130150120170130120160160190140
+

 

+

What is the median score?

",,145,125 || 145 || 147 || 150,145,253922 +PSBKV,1,Multiple Choice (select 1),Multiple Choice,"

For the pair of shapes, decide whether or not Shape A is congruent to Shape B. 

+

 

+

",,,"Yes, they are congruent || No, they are not congruent","Yes, they are congruent",1239 +PRABFG4D,1,Multiple Choice (select all),Check All That Apply,"

Andre says, “I multiplied 4 by 5, then cubed the result.”

+

Select all expressions that equal Andre’s answer.

",,,"4 · 5³ || (4 · 5)³ || (4 · 5)² || (5³) · 4 || 20³ || 500 || 8,000","(4 · 5)³ || 20³ || 8,000",47649 +PSBEQY,1,Multiple Choice (select 1),Multiple Choice,"

Last night, everyone at the school music concert wrote their age on a slip of paper and placed it in a box. Today, each of the students in a math class selected a random sample of size 10 from the box of papers. Here is a dot plot showing their sample means, rounded to the nearest year.

+

 

+

+

 

+

Does the number of dots on the dot plot tell you how many people were at the concert or how many students are in the math class?

",,,the concert || the math class,the math class,23449 +PSBGCD,1,Multiple Choice (select 1),Multiple Choice,

Angle A in triangle ABC is obtuse. Can angle B or angle C be obtuse?

,,,Yes || No,No,32656 +PSBBQJ,3,Multiple Choice (select all),Check All That Apply,"

Which measure of center - the mean or the median - better describes a typical value for this distribution?

+

 

+

",,,Mean || Median,Median,7254 +PSBNZB,1,Multiple Choice (select 1),Multiple Choice,"

Noah will select a letter at random from the word “FLUTE.” Lin will select a letter at random from the word “CLARINET.”

+

 

+

Which person is more likely to pick the letter “E?”

",,,Noah || Lin,Noah,62442 +PRABETDA,1,Multiple Choice (select all),Check All That Apply,"

Elena walked 12 miles. Then she walked 14 that distance. How far did she walk all together? Select all that apply.

",,,"

12 + 14

||

12 · 14

||

12 + 14·12

||

121 + 14

||

12 · 34

||

12 · 54

","

12 + 14·12

||

121 + 14

||

12 · 54

",362542 +PRABEVRU,1,Multiple Choice (select 1),Multiple Choice,"

Which of these expressions is equivalent to 3(x-2)?

",,,3x − 6 || 3x − 2 || 3x + 2 || 3x + 6,3x − 6,52890 +PSBBS2Y,1,Multiple Choice (select 1),Multiple Choice,"

Clare and Priya each took a random sample of 25 students at their school.

+

 

+
    +
  • Clare asked each student in her sample how much time they spend doing homework each night. The sample mean was 1.2 hours and the MAD was 0.6 hours.
  • +
+

 

+
    +
  • Priya asked each student in her sample how much time they spend watching TV each night. The sample mean was 2 hours and the MAD was 1.3 hours.
  • +
+

 

+

At their school, do you think there is more variability in how much time students spend doing homework or watching TV?

",,,Doing homework || Watching TV,Watching TV,257569 +PSB4WS,2,Multiple Choice (select 1),Multiple Choice,"

A graph of a linear equation passes through (-2,0) and (0,-6).

+

 

+

Is  an equation for this graph?

+
 
",,,Yes || No,No,141750 +PSBBTTH,1,Multiple Choice (select 1),Multiple Choice,"

Noah said, “When you divide a number by a second number, the result will always be smaller than the first number.”

+

 

+

Jada said, “I think the result could be larger or smaller, depending on the numbers.”

+

 

+

Do you agree with either of them?

",,,I agree with Noah || I agree with Jada || I agree with both || I don't agree with either,I agree with Jada,262449 +PRABPH7F,1,Multiple Choice (select all),Check All That Apply,

Select all the ratios that are equivalent to the ratio 12:3.

,,,"6 : 1 || 1 : 4 || 4 : 1 || 24 : 6 || 15 : 6 || 1,200 : 300 || 112 : 13","4 : 1 || 24 : 6 || 1,200 : 300",218802 +PRABQM99,1,Multiple Choice (select all),Check All That Apply,

Rectangle A measures 8 inches by 2 inches. Rectangle B is a scaled copy of Rectangle A. Select all of the measurement pairs that could be the dimensions of Rectangle B.

,,,40 inches by 10 inches || 10 inches by 2.5 inches || 9 inches by 3 inches || 7 inches by 1 inch || 6.4 inches by 1.6 inches,40 inches by 10 inches || 10 inches by 2.5 inches || 6.4 inches by 1.6 inches,12129 +PRABFKNQ,1,Multiple Choice (select all),Check All That Apply,"

Lin and her friends went out for ice cream after school. The following questions came up during their trip.

+

 

+

Select all the questions that are statistical questions.

",,,

How far are we from the ice cream shop?

||

What is the most popular ice cream flavor this week?

||

What does a group of 4 people typically spend on ice cream at this shop?

||

Do kids usually prefer to get a cup or a cone?

||

How many toppings are there to choose from?

,

What is the most popular ice cream flavor this week?

||

What does a group of 4 people typically spend on ice cream at this shop?

||

Do kids usually prefer to get a cup or a cone?

,43132 +PRABE3F3,1,Multiple Choice (select all),Check All That Apply,"

The area of the square is 1 square unit. Two small triangles can be put together to make a square or to make a medium triangle.

+

 

+

 

+

+

 

+

 

+

Which figure also has an area of 112 square units? Select all that apply.

",,,"

||

||

||

","

||

||

",347199 +PRABPVSX,1,Multiple Choice (select all),Check All That Apply,"

Select all the expressions that represent the total area of the rectangle.

+

 

+

",,,"

4s

||

13s + 12

||

13 · s + 13 · 12

||

13s + 4

||

13 (s + 12)

","

13 · s + 13 · 12

||

13s + 4

||

13 (s + 12)

",367311 +PRABEDB2,1,Multiple Choice (select 1),Multiple Choice,"

For the equation, decide if it is always true or never true.

+

 

+

x  13 = x + 1

",,,Always True || Never True,Never True,147769 +PSB72T,1,Multiple Choice (select 1),Multiple Choice,"

Tulip bulbs are on sale at store A at 5 for $11.00, and the regular price at store B is 6 for $13. Is each store pricing tulip bulbs at the same rate?

",,,Yes || No,No,158629 +PSB9AY,2,Multiple Choice (select 1),Multiple Choice,"

Without calculating, do you expect the slope of the line through (1, 11) and (8, 2) to be positive or negative?

",,,Positive || Negative,Negative,165038 +PRABG3XP,1,Multiple Choice (select 1),Multiple Choice,"

Is the value of the expression closer to 121, or 112?

+

 

+

20 ÷ 18

+

 

+

 

",,,"

12

||

1

||

112

","

1

",127860 +PRABFFX6,1,Multiple Choice (select all),Check All That Apply,"

Select all of the nets that can be folded and assembled into a triangular prism like this one.

+

 

+

",,,"

||

||

||

","

||

",558559 +PRABFDN6,1,Multiple Choice (select all),Check All That Apply,"

Select all the statements that show correct reasoning for finding 1415 ÷ 75.  

",,,"

Multiplying 1415 by 5 and then by 17 .

||

Dividing 1415 by 5, and then multiplying by 17.

||

Multiplying 1415 by 7, and then multiplying by 15

||

Multiplying 1415 by 5 and then dividing by 7.

||

Multiplying 1514 by 7 and then dividing by 5.

","

Multiplying 1415 by 5 and then by 17 .

||

Multiplying 1415 by 5 and then dividing by 7.

",477073 +PSBUC9,5,Multiple Choice (select 1),Multiple Choice,"

Mai, Clare, and Noah are making signs to advertise the school dance. It takes Mai 6 minutes to complete a sign, it takes Clare 8 minutes to complete a sign, and it takes Noah 5 minutes to complete a sign. They keep working at the same rate for a half hour.

+

 

+

Will Clare and Noah complete a sign at the same time?

",,,Yes || No,No,91177 +PSBBESN,2,Multiple Choice (select 1),Multiple Choice,"

If you connect the ends of the sides you drew to make a triangle, is the third side longer or shorter than 5 centimeters? 

",,,longer || shorter,shorter,196033 +PSB5PB,3,Multiple Choice (select 1),Multiple Choice,"

Here are some line segments.

+

 

+

+

 

+

 

+

Which segment is not a dilation of BC?

",,,ED || GJ || FH,ED,146131 +PRABETQQ,1,Multiple Choice (select 1),Multiple Choice,"

At the beginning of the month, there were 80 ounces of peanut butter in the pantry. Now, there is 13 less than that. How many ounces of peanut butter is in the pantry now?

",,,"

23 · 80

||

13 · 80

||

80 - 13

||

1 + 13 · 80

","

23 · 80

",327306 +PRABEVSF,1,Multiple Choice (select all),Check All That Apply,

Select all the systems of equations that have exactly one solution.

,,,"

y=3x+1y=-3x+7

||

y=3x+1y=x+1

||

y=3x+1y=3x+7

||

x+y=102x+2y=20

||

x+y=10x+y=12

","

y=3x+1y=-3x+7

||

y=3x+1y=x+1

",296856 +PRABQNDB,1,Multiple Choice (select 1),Multiple Choice,"

Kiran walked at a constant speed. He walked 1 mile in 15 minutes.

+

 

+

Which of these equations represents the distance d (in miles) that Kiran walks in t minutes?

",,,"

d = t + 14

||

d = t - 14

||

d = 15t

||

d = 115t

","

d = 115t

",409526 +PSB6ZC,1,Multiple Choice (select 1),Multiple Choice,"

Which travels faster: a car that travels 6 miles in 10 minutes at a constant speed, or a train that travels 6 miles in 8 minutes at a constant speed? 

",,,a car that travels 6 miles in 10 minutes at a constant speed || or a train that travels 6 miles in 8 minutes at a constant speed,or a train that travels 6 miles in 8 minutes at a constant speed,153145 +PSBKVA,1,Multiple Choice (select all),Check All That Apply,

A micrometer is an instrument that can measure lengths to the nearest micron (a micron is a millionth of a meter). Would this instrument be useful for measuring any of the following things?

,,,"1. The thickness of an eyelash, which is typically about 0.1 millimeters. || 2. The diameter of a red blood cell, which is typically about 8 microns. ||

3. The diameter of a hydrogen atom, which is about 100 picometers (a picometer is a trillionth of a meter).

","1. The thickness of an eyelash, which is typically about 0.1 millimeters. || 2. The diameter of a red blood cell, which is typically about 8 microns.",51243 +PSBDVUA,2,Multiple Choice (select all),Check All That Apply,"

Select all pairs of lines that appear to be parallel.

+

 

+

",,,m and p || m and r || m and s || m and t || p and r || p and s || p and t || r and s || r and t || s and t,s and t,627506 +PRABQPYP,1,Multiple Choice (select 1),Multiple Choice,"

To mix a particular shade of pink paint, white paint and red paint are mixed in the ratio 4 : 3. If 12 gallons of red paint are mixed with some white paint to make this same shade of pink, how many total gallons of pink paint result?

",,28,48 || 36 || 28 || 16,28,171809 +PSBCU6,3,Multiple Choice (select 1),Multiple Choice,"

Ten people can dig five holes in three hours. If n people digging at the same rate dig m holes in d hours:

+

 

+

Is m proportional to d when n = 10?

",,,Yes || No,Yes,13937 +PSBCNBJ,1,Multiple Choice (select 1),Multiple Choice,"

Here is Elena's work for finding the surface area of a rectangular prism that is 1 foot by 1 foot by 2 feet.

+

+

 

+

 

+

She concluded that the surface area of the prism is 296 square feet.

+

 

+

Do you agree with her conclusion?

",,,Yes || No,No,406876 +PSBFJW,1,Multiple Choice (select 1),Multiple Choice,"

Is the point (20, 13) on this line? 

+

 

+

",,,Yes || No,Yes,28352 +PRABQTQQ,1,Multiple Choice (select 1),Multiple Choice,"

Which of these expressions is equivalent to 0.05(x40)?

+
 
",,,

0.05x - 40.05

||

0.05x - 40

||

0.05x - 2.05

||

0.05x - 2

,

0.05x - 2

,33992 +PRABQPRX,1,Multiple Choice (select 1),Multiple Choice,"

How far away is the point (-5, 2) from the x-axis? 

",,,7 units || 5 units || 3 units || 2 units,2 units,430244 +PSBBXYF,1,Multiple Choice (select all),Check All That Apply,

Select all triangles that have an area of 8 square units. 

,,,"

+

 

+

 

+

 

||

+

 

+

 

+

 

+

 

+

 

||

+

 

+

 

+

 

||

+

 

+

 

+

 

||

+

 

+

 

+

 

","

+

 

+

 

+

 

||

+

 

+

 

+

 

+

 

+

 

||

+

 

+

 

+

 

||

+

 

+

 

+

 

",286192 +PSBCW3W,1,Multiple Choice (select 1),Multiple Choice,"

Determine if the following is true or false.

+

 

+

-5 < 3

",,1,True || False,TRUE,457584 +PRABFBNV,1,Multiple Choice (select 1),Multiple Choice,

Tyler’s height is 57 inches. What could be his height in centimeters?

,,,"

3,551

||

22.4

||

57

||

144.8

",

144.8

,14257 +PSBS27,1,Multiple Choice (select 1),Multiple Choice,"

Jada is making a scale model of the solar system. The distance from Earth to the moon is about 2.389 × 105 miles. The distance from Earth to the sun is about 9.296 × 107 miles. She decides to put Earth on one corner of her dresser and the moon on another corner, about a foot away. Where should she put the sun?

+

 

+
+
    +
  • On a windowsill in the same room?
  • +
  • In her kitchen, which is down the hallway?
  • +
  • A city block away?
  • +
+

 

+
",,,"on a windowsill in the same room || in her kitchen, which is down the hallway || a city block away",a city block away,83841 +PSBBSG,1,Multiple Choice (select 1),Multiple Choice,"

The triangle has side lengths 7, 10, and 12. Is it a right triangle?

+
 
",,,Yes || No,No,7541 +PSBCNE9,1,Multiple Choice (select all),Check All That Apply,"

Select all of the equations that describe the situation. If you get stuck, draw a diagram.

+

 

+

 

+

Mai ran 27 miles last week, which was three times as far as Jada ran. How far did Jada run?

",,,"

3w = 27

||

w = 13 · 27

||

w = 27 ÷ 3

||

w = 3 · 27

","

3w = 27

||

w = 13 · 27

||

w = 27 ÷ 3

",407444 +PSBMYP,1,Multiple Choice (select 1),Multiple Choice,"

Kiran and Clare like to race each other home from school. They run at the same speed, but Kiran's house is slightly closer to school than Clare's house. On a graph, their distance from their homes in meters is a function of the time from when they begin the race in seconds.

+

 

+

As you read the graphs left to right, would the lines go up or down?

",,,up || down,down,56987 +PRABQPTU,1,Multiple Choice (select 1),Multiple Choice,"

Which of these expressions is equivalent to -4(5-2x)?

",,,-20 + 8x || -20 - 8x || -20x + 8 || 20x + 8,-20 + 8x,35877 +PSBZEE,1,Multiple Choice (select 1),Multiple Choice,"

Andre says that x is 7 because he can move the two 1s with the x to the other side.

+
+
 
+
 
+
 
+
 
+
 
+
 
+
 
+
 
+
 
+
 
+
 
+
 
+
 
+
 
+
Do you agree with Andre?
",,,Yes || No,No,121352 +PRABPJHD,1,Multiple Choice (select all),Check All That Apply,

Which graphs could represent a proportional relationship? 

,,,"

||

||

||

","

||

",552378 +PSBFCE,6,Multiple Choice (select 1),Multiple Choice,"

Is the point (0, -2) on this line?

",,,Yes || No,Yes,27460 +PSBHTM,1,Multiple Choice (select 1),Multiple Choice,"

Identify the error in generating an expression equivalent to 4 + 2x  12(10  4x).

+

 Line 1: 4 + 2x + 1  210 +4xLine 2: 4 + 2x +5 + 2xLine 3: 4 + 2x5 + 2xLine 4: 1

+

 

+

Which line contains the error?

",,,Line 1 || Line 2 || Line 3 || Line 4,Line 4,40142 +PSBBBY4,1,Multiple Choice (select 1),Multiple Choice,"

A room is 15 feet tall. An architect wants to include a window that is 6 feet tall. The distance between the floor and the bottom of the window is b feet. The distance between the ceiling and the top of the window is a feet. This relationship can be described by the equation

+
a 15 − (b 6)
+

 

+

Which variable is independent based on the equation given?

",,,a || b,b,179830 +PSBBN78,1,Multiple Choice (select all),Check All That Apply,"

Here are some polygons:

+

 

+

+

 

+

Which of Polygons B, C, D, E, and F are similar to Polygon A?

+
 
",,,Polygon B || Polygon C || Polygon D || Polygon E || Polygon F,Polygon B || Polygon C || Polygon E,238263 +PSBCU6,1,Multiple Choice (select 1),Multiple Choice,"

Ten people can dig five holes in three hours. If n people digging at the same rate dig m holes in d hours:

+


Is n proportional to m when d = 3?

",,,Yes || No,Yes,13763 +PSB347,3,Multiple Choice (select 1),Multiple Choice,"

If the radius of a cylinder is doubled, does the volume double?

",,,Yes || No,No,136717 +PRABQM8Y,1,Multiple Choice (select all),Check All That Apply,"

Quadrilateral EFGH is a scaled copy of quadrilateral ABCD. Select all of the true statements.

+

 

+

+

 

",,,Segment EF is twice as long as segment AB. || Segment CD is twice as long as segment FG. || The measure of angle HEF is twice the measure of angle DAB. || The length of segment EH is 16 units. || The area of EFGH is twice the area of ABCD.,Segment EF is twice as long as segment AB. || The length of segment EH is 16 units.,115829 +PSBT77,2,Multiple Choice (select all),Check All That Apply,"

Which years in this period of time had fewer than 100,000 cases of whooping cough?

",,,1939 || 1940 || 1941 || 1942 || 1943 || 1944 || 1945 || 1946 || 1947 || 1948 || 1949 || 1950 || 1951 || 1952 || 1953 || 1954 || 1955,1948 || 1949 || 1951 || 1952 || 1953 || 1954 || 1955,90496 +PRABECYW,1,Multiple Choice (select all),Check All That Apply,"

Here is a balanced hanger diagram.

+

 

+ + + + + + + +
Each triangle weighs 2.5 pounds, each circle weighs 3 pounds, and x represents the weight of each square. Select all equations that represent the hanger.
",,,"

x + x + x + x + 11 = x + 11.5

||

 2x = 0.5

||

4x + 5 + 6 = 2x + 2.5 + 6

||

2x + 2.5 = 3

||

4x + 2.5 + 2.5 + 3 + 3 = 2x + 2.5 + 3 + 3 + 3

","

 2x = 0.5

||

2x + 2.5 = 3

||

4x + 2.5 + 2.5 + 3 + 3 = 2x + 2.5 + 3 + 3 + 3

",530004 +PSBBNXQ,1,Multiple Choice (select 1),Multiple Choice,

Mai says that -8 > -4. Do you agree with her?

,,,Yes || No,No,236733 +PRABEVDM,1,Multiple Choice (select 1),Multiple Choice,

Which of these describes a unique polygon?

,,,"A triangle with angles 30°, 50°, and 100° || A quadrilateral with each side length 5 cm || A triangle with side lengths 6 cm, 7 cm, and 8 cm || A triangle with side lengths 4 cm and 5 cm and a 50° angle","A triangle with side lengths 6 cm, 7 cm, and 8 cm",483667 +PRABQPY8,1,Multiple Choice (select all),Check All That Apply,"

Select all the equations on which the point (10, 0) lies.

",,,5x + 2y = 15 || 2x + 4y = 20 || x + 6y = 10 || 3x + 3y = 13 || 4x + 2y = 20 || 6x + y = 50,2x + 4y = 20 || x + 6y = 10,211131 +PSB724,1,Multiple Choice (select 1),Multiple Choice,"

These two histograms show the number of text messages sent in one week by two groups of 100 students. The first histogram summarizes data from sixth-grade students. The second histogram summarizes data from seventh-grade students.

+

 

+

+

 

+

Do the two data sets have approximately the same center? 

",,,Yes || No,Yes,158316 +PSBBR6V,2,Multiple Choice (select 1),Multiple Choice,

Are the flawed erasers associated with certain colors?

,,,Yes || No,Yes,253836 +PRABD8GT,1,Multiple Choice (select all),Check All That Apply,"

Select all the pairs of points so that the line between those points has slope .

",,,"(0,0) and (2,3) || (0,0) and (3,2) || (1,5) and (4,7) || (-2,-2) and (4,2) || (20,30) and (-20,-30)","(0,0) and (3,2) || (1,5) and (4,7) || (-2,-2) and (4,2)",20361 +PSBCQD8,1,Multiple Choice (select 1),Multiple Choice,"

Which is a scaled copy of Polygon A?

+

 

+

",,,B || C || D || E || F,D,419376 +PSBBPFG,1,Multiple Choice (select 1),Multiple Choice,"

Noah says that to find 20% of a number he divides the number by 5. For example, 20% of 60 is 12, because 60 ÷ 5 = 12.

+

Does Noah’s method always work? 

",,,Yes || No,Yes,239466 +PSBTXU,5,Multiple Choice (select 1),Multiple Choice,"

A group of students is timed while sprinting 100 meters. Each student’s speed can be found by dividing 100 m by their time. Is the statement true or false? 

+

 

+

Speed is a function of number of students racing.

",,0,True || False,FALSE,88607 diff --git a/Data/Skill_Set.csv b/Data/Skill_Set.csv new file mode 100644 index 0000000000000000000000000000000000000000..663c4f0627dfeb0da04f9df136ceb35e50318e32 --- /dev/null +++ b/Data/Skill_Set.csv @@ -0,0 +1,165 @@ +index,skill_code,full_description +1,2.MD.B.5,"Use addition and subtraction within 100 to solve word problems involving lengths that are given in the same units, e.g., by using drawings (such as drawings of rulers) and equations with a symbol for the unknown number to represent the problem." +2,3.MD.B.3,"Draw a scaled picture graph and a scaled bar graph to represent a data set with several categories. Solve one- and two-step ""how many more"" and ""how many less"" problems using information presented in scaled bar graphs. For example, draw a bar graph in which each square in the bar graph might represent 5 pets." +3,3.MD.C.6,"Measure areas by counting unit squares (square cm, square m, square in, square ft, and improvised units)." +4,3.MD.C.7a,"Find the area of a rectangle with whole-number side lengths by tiling it, and show that the area is the same as would be found by multiplying the side lengths." +5,3.MD.C.7d,"Recognize area as additive. Find areas of rectilinear figures by decomposing them into non-overlapping rectangles and adding the areas of the non-overlapping parts, applying this technique to solve real world problems." +6,3.MD.D.8,"Solve real world and mathematical problems involving perimeters of polygons, including finding the perimeter given the side lengths, finding an unknown side length, and exhibiting rectangles with the same perimeter and different areas or with the same area and different perimeters." +7,3.NF.A.2a,Represent a fraction 1/b on a number line diagram by defining the interval from 0 to 1 as the whole and partitioning it into b equal parts. Recognize that each part has size 1/b and that the endpoint of the part based at 0 locates the number 1/b on the number line. +8,3.NF.A.2b,Represent a fraction a/b on a number line diagram by marking off a lengths 1/b from 0. Recognize that the resulting interval has size a/b and that its endpoint locates the number a/b on the number line. +9,3.NF.A.3b,"Recognize and generate simple equivalent fractions, e.g., 1/2 = 2/4, 4/6 = 2/3). Explain why the fractions are equivalent, e.g., by using a visual fraction model." +10,3.NF.A.3d,"Compare two fractions with the same numerator or the same denominator by reasoning about their size. Recognize that comparisons are valid only when the two fractions refer to the same whole. Record the results of comparisons with the symbols >, =, or <, and justify the conclusions, e.g., by using a visual fraction model." +11,3.OA.A.1,"Interpret products of whole numbers, e.g., interpret 5 × 7 as the total number of objects in 5 groups of 7 objects each. For example, describe a context in which a total number of objects can be expressed as 5 × 7." +12,3.OA.A.4,"Determine the unknown whole number in a multiplication or division equation relating three whole numbers. For example, determine the unknown number that makes the equation true in each of the equations 8 × ? = 48, 5 = _ ÷ 3, 6 × 6 = ?." +13,3.OA.B.5,Apply properties of operations as strategies to multiply and divide. +14,4.G.A.1,"Draw points, lines, line segments, rays, angles (right, acute, obtuse), and perpendicular and parallel lines. Identify these in two-dimensional figures." +15,4.G.A.2,"Classify two-dimensional figures based on the presence or absence of parallel or perpendicular lines, or the presence or absence of angles of a specified size. Recognize right triangles as a category, and identify right triangles." +16,4.MD.A.1,"Know relative sizes of measurement units within one system of units including km, m, cm; kg, g; lb, oz.; l, ml; hr, min, sec. Within a single system of measurement, express measurements in a larger unit in terms of a smaller unit. Record measurement equivalents in a two column table. For example, know that 1 ft is 12 times as long as 1 in. Express the length of a 4 ft snake as 48 in. Generate a conversion table for feet and inches listing the number pairs (1, 12), (2, 24), (3, 36), …" +17,4.MD.A.3,"Apply the area and perimeter formulas for rectangles in real world and mathematical problems. For example, find the width of a rectangular room given the area of the flooring and the length, by viewing the area formula as a multiplication equation with an unknown factor." +18,4.NBT.A.1,"Recognize that in a multi-digit whole number, a digit in one place represents ten times what it represents in the place to its right. For example, recognize that 700 ÷ 70 = 10 by applying concepts of place value and division." +19,4.NBT.B.6,"Find whole-number quotients and remainders with up to four-digit dividends and one-digit divisors, using strategies based on place value, the properties of operations, and/or the relationship between multiplication and division. Illustrate and explain the calculation by using equations, rectangular arrays, and/or area models." +20,4.NF.A.1,"Explain why a fraction a/b is equivalent to a fraction (n × a)/(n × b) by using visual fraction models, with attention to how the number and size of the parts differ even though the two fractions themselves are the same size. Use this principle to recognize and generate equivalent fractions." +21,4.NF.A.2,"Compare two fractions with different numerators and different denominators, e.g., by creating common denominators or numerators, or by comparing to a benchmark fraction such as 1/2. Recognize that comparisons are valid only when the two fractions refer to the same whole. Record the results of comparisons with symbols >, =, or <, and justify the conclusions, e.g., by using a visual fraction model." +22,4.NF.B.4b,"Understand a multiple of a/b as a multiple of 1/b, and use this understanding to multiply a fraction by a whole number. For example, use a visual fraction model to express 3 × (2/5) as 6 × (1/5), recognizing this product as 6/5. (In general, n × (a/b) = (n × a)/b.)" +23,4.NF.C.6,"Use decimal notation for fractions with denominators 10 or 100. For example, rewrite 0.62 as 62/100; describe a length as 0.62 meters; locate 0.62 on a number line diagram." +24,4.OA.A.1,"Interpret a multiplication equation as a comparison, e.g., interpret 35 = 5 × 7 as a statement that 35 is 5 times as many as 7 and 7 times as many as 5. Represent verbal statements of multiplicative comparisons as multiplication equations." +25,4.OA.B.4,Find all factor pairs for a whole number in the range 1—100. Recognize that a whole number is a multiple of each of its factors. Determine whether a given whole number in the range 1—100 is a multiple of a given one-digit number. Determine whether a given whole number in the range 1—100 is prime or composite. +26,5.G.A.1,"Use a pair of perpendicular number lines, called axes, to define a coordinate system, with the intersection of the lines (the origin) arranged to coincide with the 0 on each line and a given point in the plane located by using an ordered pair of numbers, called its coordinates. Understand that the first number indicates how far to travel from the origin in the direction of one axis, and the second number indicates how far to travel in the direction of the second axis, with the convention that the names of the two axes and the coordinates correspond (e.g., x-axis and x-coordinate, y-axis and y-coordinate)." +27,5.G.A.2,"Represent real world and mathematical problems by graphing points in the first quadrant of the coordinate plane, and interpret coordinate values of points in the context of the situation." +28,5.G.B.4,Classify two-dimensional figures in a hierarchy based on properties. +29,5.MD.A.1,"Convert among different-sized standard measurement units within a given measurement system (e.g., convert 5 cm to 0.05 m), and use these conversions in solving multi-step, real world problems." +30,5.MD.B.2,"Make a line plot to display a data set of measurements in fractions of a unit (1/2, 1/4, 1/8). Use operations on fractions for this grade to solve problems involving information presented in line plots. For example, given different measurements of liquid in identical beakers, find the amount of liquid each beaker would contain if the total amount in all the beakers were redistributed equally." +31,5.MD.C.3b,A solid figure which can be packed without gaps or overlaps using n unit cubes is said to have a volume of n cubic units. +32,5.MD.C.4,"Measure volumes by counting unit cubes, using cubic cm, cubic in, cubic ft, and improvised units." +33,5.MD.C.5a,"Find the volume of a right rectangular prism with whole-number side lengths by packing it with unit cubes, and show that the volume is the same as would be found by multiplying the edge lengths, equivalently by multiplying the height by the area of the base. Represent threefold whole-number products as volumes, e.g., to represent the associative property of multiplication." +34,5.MD.C.5b,Apply the formulas V = l × w × h and V = b × h for rectangular prisms to find volumes of right rectangular prisms with whole-number edge lengths in the context of solving real world and mathematical problems. +35,5.NBT.A.1,"Recognize that in a multi-digit number, a digit in one place represents 10 times as much as it represents in the place to its right and 1/10 of what it represents in the place to its left." +36,5.NBT.A.2,"Explain patterns in the number of zeros of the product when multiplying a number by powers of 10, and explain patterns in the placement of the decimal point when a decimal is multiplied or divided by a power of 10. Use whole-number exponents to denote powers of 10." +37,5.NBT.A.3b,"Compare two decimals to thousandths based on meanings of the digits in each place, using >, =, and < symbols to record the results of comparisons." +38,5.NBT.B.5,Fluently multiply multi-digit whole numbers using the standard algorithm. +39,5.NBT.B.6,"Find whole-number quotients of whole numbers with up to four-digit dividends and two-digit divisors, using strategies based on place value, the properties of operations, and/or the relationship between multiplication and division. Illustrate and explain the calculation by using equations, rectangular arrays, and/or area models." +40,5.NBT.B.7,"Add, subtract, multiply, and divide decimals to hundredths, using concrete models or drawings and strategies based on place value, properties of operations, and/or the relationship between addition and subtraction; relate the strategy to a written method and explain the reasoning used." +41,5.NF.A.1,"Add and subtract fractions with unlike denominators (including mixed numbers) by replacing given fractions with equivalent fractions in such a way as to produce an equivalent sum or difference of fractions with like denominators. For example, 2/3 + 5/4 = 8/12 + 15/12 = 23/12. (In general, a/b + c/d = (ad + bc)/bd.)" +42,5.NF.A.2,"Solve word problems involving addition and subtraction of fractions referring to the same whole, including cases of unlike denominators, e.g., by using visual fraction models or equations to represent the problem. Use benchmark fractions and number sense of fractions to estimate mentally and assess the reasonableness of answers. For example, recognize an incorrect result 2/5 + 1/2 = 3/7, by observing that 3/7" +43,5.NF.B.3,"Interpret a fraction as division of the numerator by the denominator (a/b = a ÷ b). Solve word problems involving division of whole numbers leading to answers in the form of fractions or mixed numbers, e.g., by using visual fraction models or equations to represent the problem. For example, interpret 3/4 as the result of dividing 3 by 4, noting that 3/4 multiplied by 4 equals 3, and that when 3 wholes are shared equally among 4 people each person has a share of size 3/4. If 9 people want to share a 50-pound sack of rice equally by weight, how many pounds of rice should each person get? Between what two whole numbers does your answer lie?" +44,5.NF.B.4a,"Interpret the product (a/b) × q as a parts of a partition of q into b equal parts; equivalently, as the result of a sequence of operations a × q ÷ b. For example, use a visual fraction model to show (2/3) × 4 = 8/3, and create a story context for this equation. Do the same with (2/3) × (4/5) = 8/15. (In general, (a/b) × (c/d) = ac/bd.)" +45,5.NF.B.4b,"Find the area of a rectangle with fractional side lengths by tiling it with unit squares of the appropriate unit fraction side lengths, and show that the area is the same as would be found by multiplying the side lengths. Multiply fractional side lengths to find areas of rectangles, and represent fraction products as rectangular areas." +46,5.NF.B.5a,"Comparing the size of a product to the size of one factor on the basis of the size of the other factor, without performing the indicated multiplication." +47,5.NF.B.5b,Explaining why multiplying a given number by a fraction greater than 1 results in a product greater than the given number (recognizing multiplication by whole numbers greater than 1 as a familiar case); explaining why multiplying a given number by a fraction less than 1 results in a product smaller than the given number; and relating the principle of fraction equivalence a/b = (n×a)/(n×b) to the effect of multiplying a/b by 1. +48,5.NF.B.6,"Solve real world problems involving multiplication of fractions and mixed numbers, e.g., by using visual fraction models or equations to represent the problem." +49,5.NF.B.7a,"Interpret division of a unit fraction by a non-zero whole number, and compute such quotients. For example, create a story context for (1/3) ÷ 4, and use a visual fraction model to show the quotient. Use the relationship between multiplication and division to explain that (1/3) ÷ 4 = 1/12 because (1/12) × 4 = 1/3." +50,5.NF.B.7b,"Interpret division of a whole number by a unit fraction, and compute such quotients. For example, create a story context for 4 ÷ (1/5), and use a visual fraction model to show the quotient. Use the relationship between multiplication and division to explain that 4 ÷ (1/5) = 20 because 20 × (1/5) = 4." +51,5.NF.B.7c,"Solve real world problems involving division of unit fractions by non-zero whole numbers and division of whole numbers by unit fractions, e.g., by using visual fraction models and equations to represent the problem. For example, how much chocolate will each person get if 3 people share 1/2 lb of chocolate equally? How many 1/3-cup servings are in 2 cups of raisins?" +52,5.OA.A.1,"Use parentheses, brackets, or braces in numerical expressions, and evaluate expressions with these symbols." +53,5.OA.A.2,"Write simple expressions that record calculations with numbers, and interpret numerical expressions without evaluating them. For example, express the calculation ""add 8 and 7, then multiply by 2"" as 2 × (8 + 7). Recognize that 3 × (18932 + 921) is three times as large as 18932 + 921, without having to calculate the indicated sum or product." +54,6.EE.A.1,Write and evaluate numerical expressions involving whole-number exponents. +55,6.EE.A.2a,"Write expressions that record operations with numbers and with letters standing for numbers. For example, express the calculation ""Subtract y from 5"" as 5 - y." +56,6.EE.A.2b,"Identify parts of an expression using mathematical terms (sum, term, product, factor, quotient, coefficient); view one or more parts of an expression as a single entity. For example, describe the expression 2 (8 + 7) as a product of two factors; view (8 + 7) as both a single entity and a sum of two terms." +57,6.EE.A.2c,"Evaluate expressions at specific values of their variables. Include expressions that arise from formulas used in real-world problems. Perform arithmetic operations, including those involving whole-number exponents, in the conventional order when there are no parentheses to specify a particular order (Order of Operations). For example, use the formulas V = s³ and A = 6 s² to find the volume and surface area of a cube with sides of length s = 1/2." +58,6.EE.A.3,"Apply the properties of operations to generate equivalent expressions. For example, apply the distributive property to the expression 3 (2 + x) to produce the equivalent expression 6 + 3x; apply the distributive property to the expression 24x + 18y to produce the equivalent expression 6 (4x + 3y); apply properties of operations to y + y + y to produce the equivalent expression 3y." +59,6.EE.A.4,"Identify when two expressions are equivalent (i.e., when the two expressions name the same number regardless of which value is substituted into them). For example, the expressions y + y + y and 3y are equivalent because they name the same number regardless of which number y stands for." +60,6.EE.B.5,"Understand solving an equation or inequality as a process of answering a question: which values from a specified set, if any, make the equation or inequality true? Use substitution to determine whether a given number in a specified set makes an equation or inequality true." +61,6.EE.B.6,"Use variables to represent numbers and write expressions when solving a real-world or mathematical problem; understand that a variable can represent an unknown number, or, depending on the purpose at hand, any number in a specified set." +62,6.EE.B.7,"Solve real-world and mathematical problems by writing and solving equations of the form x + p = q and px = q for cases in which p, q and x are all nonnegative rational numbers." +63,6.EE.B.8,Write an inequality of the form x > c or x c or x < c have infinitely many solutions; represent solutions of such inequalities on number line diagrams. +64,6.EE.C.9,"Use variables to represent two quantities in a real-world problem that change in relationship to one another; write an equation to express one quantity, thought of as the dependent variable, in terms of the other quantity, thought of as the independent variable. Analyze the relationship between the dependent and independent variables using graphs and tables, and relate these to the equation. For example, in a problem involving motion at constant speed, list and graph ordered pairs of distances and times, and write the equation d = 65t to represent the relationship between distance and time." +65,6.G.A.1,"Find the area of right triangles, other triangles, special quadrilaterals, and polygons by composing into rectangles or decomposing into triangles and other shapes; apply these techniques in the context of solving real-world and mathematical problems." +66,6.G.A.2,"Find the volume of a right rectangular prism with fractional edge lengths by packing it with unit cubes of the appropriate unit fraction edge lengths, and show that the volume is the same as would be found by multiplying the edge lengths of the prism. Apply the formulas V = l w h and V = b h to find volumes of right rectangular prisms with fractional edge lengths in the context of solving real-world and mathematical problems." +67,6.G.A.3,Draw polygons in the coordinate plane given coordinates for the vertices; use coordinates to find the length of a side joining points with the same first coordinate or the same second coordinate. Apply these techniques in the context of solving real-world and mathematical problems. +68,6.G.A.4,"Represent three-dimensional figures using nets made up of rectangles and triangles, and use the nets to find the surface area of these figures. Apply these techniques in the context of solving real-world and mathematical problems." +69,6.NS.A.1,"Interpret and compute quotients of fractions, and solve word problems involving division of fractions by fractions, e.g., by using visual fraction models and equations to represent the problem. For example, create a story context for (2/3) ÷ (3/4) and use a visual fraction model to show the quotient; use the relationship between multiplication and division to explain that (2/3) ÷ (3/4) = 8/9 because 3/4 of 8/9 is 2/3. (In general, (a/b) ÷ (c/d) = ad/bc.) How much chocolate will each person get if 3 people share 1/2 lb of chocolate equally? How many 3/4-cup servings are in 2/3 of a cup of yogurt? How wide is a rectangular strip of land with length 3/4 mi and area 1/2 square mi?" +70,6.NS.B.2,Fluently divide multi-digit numbers using the standard algorithm. +71,6.NS.B.3,"Fluently add, subtract, multiply, and divide multi-digit decimals using the standard algorithm for each operation." +72,6.NS.B.4,"Find the greatest common factor of two whole numbers less than or equal to 100 and the least common multiple of two whole numbers less than or equal to 12. Use the distributive property to express a sum of two whole numbers 1—100 with a common factor as a multiple of a sum of two whole numbers with no common factor. For example, express 36 + 8 as 4 (9 + 2)." +73,6.NS.C.5,"Understand that positive and negative numbers are used together to describe quantities having opposite directions or values (e.g., temperature above/below zero, elevation above/below sea level, credits/debits, positive/negative electric charge); use positive and negative numbers to represent quantities in real-world contexts, explaining the meaning of 0 in each situation." +74,6.NS.C.6a,"Recognize opposite signs of numbers as indicating locations on opposite sides of 0 on the number line; recognize that the opposite of the opposite of a number is the number itself, e.g., -(-3) = 3, and that 0 is its own opposite." +75,6.NS.C.6c,Find and position integers and other rational numbers on a horizontal or vertical number line diagram; find and position pairs of integers and other rational numbers on a coordinate plane. +76,6.NS.C.7a,"Interpret statements of inequality as statements about the relative position of two numbers on a number line diagram. For example, interpret -3 > -7 as a statement that -3 is located to the right of -7 on a number line oriented from left to right." +77,6.NS.C.7b,"Write, interpret, and explain statements of order for rational numbers in real-world contexts. For example, write -3 °C > -7 °C to express the fact that -3 °C is warmer than -7 °C." +78,6.NS.C.7c,"Understand the absolute value of a rational number as its distance from 0 on the number line; interpret absolute value as magnitude for a positive or negative quantity in a real-world situation. For example, for an account balance of -30 dollars, write |-30| = 30 to describe the size of the debt in dollars." +79,6.NS.C.7d,"Distinguish comparisons of absolute value from statements about order. For example, recognize that an account balance less than -30 dollars represents a debt greater than 30 dollars." +80,6.NS.C.8,Solve real-world and mathematical problems by graphing points in all four quadrants of the coordinate plane. Include use of coordinates and absolute value to find distances between points with the same first coordinate or the same second coordinate. +81,6.RP.A.1,"Understand the concept of a ratio and use ratio language to describe a ratio relationship between two quantities. For example, ""The ratio of wings to beaks in the bird house at the zoo was 2:1, because for every 2 wings there was 1 beak."" ""For every vote candidate A received, candidate C received nearly three votes.""" +82,6.RP.A.2,"Understand the concept of a unit rate a/b associated with a ratio a:b with b ≠ 0, and use rate language in the context of a ratio relationship." +83,6.RP.A.3a,"Make tables of equivalent ratios relating quantities with whole number measurements, find missing values in the tables, and plot the pairs of values on the coordinate plane. Use tables to compare ratios." +84,6.RP.A.3b,"Solve unit rate problems including those involving unit pricing and constant speed. For example, if it took 7 hours to mow 4 lawns, then at that rate, how many lawns could be mowed in 35 hours? At what rate were lawns being mowed?" +85,6.RP.A.3c,"Find a percent of a quantity as a rate per 100 (e.g., 30% of a quantity means 30/100 times the quantity); solve problems involving finding the whole, given a part and the percent." +86,6.RP.A.3d,Use ratio reasoning to convert measurement units; manipulate and transform units appropriately when multiplying or dividing quantities. +87,6.SP.A.1,"Recognize a statistical question as one that anticipates variability in the data related to the question and accounts for it in the answers. For example, ""How old am I?"" is not a statistical question, but ""How old are the students in my school?"" is a statistical question because one anticipates variability in students' ages." +88,6.SP.A.2,"Understand that a set of data collected to answer a statistical question has a distribution which can be described by its center, spread, and overall shape." +89,6.SP.A.3,"Recognize that a measure of center for a numerical data set summarizes all of its values with a single number, while a measure of variation describes how its values vary with a single number." +90,6.SP.B.4,"Display numerical data in plots on a number line, including dot plots, histograms, and box plots." +91,6.SP.B.5a,Reporting the number of observations. +92,6.SP.B.5b,"Describing the nature of the attribute under investigation, including how it was measured and its units of measurement." +93,6.SP.B.5c,"Giving quantitative measures of center (median and/or mean) and variability (interquartile range and/or mean absolute deviation), as well as describing any overall pattern and any striking deviations from the overall pattern with reference to the context in which the data were gathered." +94,6.SP.B.5d,Relating the choice of measures of center and variability to the shape of the data distribution and the context in which the data were gathered. +95,7.EE.A.1,"Apply properties of operations as strategies to add, subtract, factor, and expand linear expressions with rational coefficients." +96,7.EE.A.2,"Understand that rewriting an expression in different forms in a problem context can shed light on the problem and how the quantities in it are related. For example, a + 0.05a = 1.05a means that ""increase by 5%"" is the same as ""multiply by 1.05.""" +97,7.EE.B.3,"Solve multi-step real-life and mathematical problems posed with positive and negative rational numbers in any form (whole numbers, fractions, and decimals), using tools strategically. Apply properties of operations to calculate with numbers in any form; convert between forms as appropriate; and assess the reasonableness of answers using mental computation and estimation strategies. For example: If a woman making $25 an hour gets a 10% raise, she will make an additional 1/10 of her salary an hour, or $2.50, for a new salary of $27.50. If you want to place a towel bar 9 3/4 inches long in the center of a door that is 27 1/2 inches wide, you will need to place the bar about 9 inches from each edge; this estimate can be used as a check on the exact computation." +98,7.EE.B.4a,"Solve word problems leading to equations of the form px + q = r and p(x + q) = r, where p, q, and r are specific rational numbers. Solve equations of these forms fluently. Compare an algebraic solution to an arithmetic solution, identifying the sequence of the operations used in each approach. For example, the perimeter of a rectangle is 54 cm. Its length is 6 cm. What is its width?" +99,7.EE.B.4b,"Solve word problems leading to inequalities of the form px + q > r or px + q For example: As a salesperson, you are paid $50 per week plus $3 per sale. This week you want your pay to be at least $100. Write an inequality for the number of sales you need to make, and describe the solutions." +100,7.G.A.1,"Solve problems involving scale drawings of geometric figures, including computing actual lengths and areas from a scale drawing and reproducing a scale drawing at a different scale." +101,7.G.A.2,"Draw (freehand, with ruler and protractor, and with technology) geometric shapes with given conditions. Focus on constructing triangles from three measures of angles or sides, noticing when the conditions determine a unique triangle, more than one triangle, or no triangle." +102,7.G.A.3,"Describe the two-dimensional figures that result from slicing three-dimensional figures, as in plane sections of right rectangular prisms and right rectangular pyramids." +103,7.G.B.4,Know the formulas for the area and circumference of a circle and use them to solve problems; give an informal derivation of the relationship between the circumference and area of a circle. +104,7.G.B.5,"Use facts about supplementary, complementary, vertical, and adjacent angles in a multi-step problem to write and solve simple equations for an unknown angle in a figure." +105,7.G.B.6,"Solve real-world and mathematical problems involving area, volume and surface area of two- and three-dimensional objects composed of triangles, quadrilaterals, polygons, cubes, and right prisms." +106,7.NS.A.1a,"Describe situations in which opposite quantities combine to make 0. For example, a hydrogen atom has 0 charge because its two constituents are oppositely charged." +107,7.NS.A.1b,"Understand p + q as the number located a distance |q| from p, in the positive or negative direction depending on whether q is positive or negative. Show that a number and its opposite have a sum of 0 (are additive inverses). Interpret sums of rational numbers by describing real-world contexts." +108,7.NS.A.1c,"Understand subtraction of rational numbers as adding the additive inverse, p - q = p + (-q). Show that the distance between two rational numbers on the number line is the absolute value of their difference, and apply this principle in real-world contexts." +109,7.NS.A.1d,Apply properties of operations as strategies to add and subtract rational numbers. +110,7.NS.A.2a,"Understand that multiplication is extended from fractions to rational numbers by requiring that operations continue to satisfy the properties of operations, particularly the distributive property, leading to products such as (-1)(-1) = 1 and the rules for multiplying signed numbers. Interpret products of rational numbers by describing real-world contexts." +111,7.NS.A.2b,"Understand that integers can be divided, provided that the divisor is not zero, and every quotient of integers (with non-zero divisor) is a rational number. If p and q are integers, then -(p/q) = (-p)/q = p/(-q). Interpret quotients of rational numbers by describing real-world contexts." +112,7.NS.A.2c,Apply properties of operations as strategies to multiply and divide rational numbers. +113,7.NS.A.2d,Convert a rational number to a decimal using long division; know that the decimal form of a rational number terminates in 0s or eventually repeats. +114,7.NS.A.3,Solve real-world and mathematical problems involving the four operations with rational numbers. +115,7.RP.A.1,"Compute unit rates associated with ratios of fractions, including ratios of lengths, areas and other quantities measured in like or different units. For example, if a person walks 1/2 mile in each 1/4 hour, compute the unit rate as the complex fraction 1/2/1/4 miles per hour, equivalently 2 miles per hour." +116,7.RP.A.2a,"Decide whether two quantities are in a proportional relationship, e.g., by testing for equivalent ratios in a table or graphing on a coordinate plane and observing whether the graph is a straight line through the origin." +117,7.RP.A.2b,"Identify the constant of proportionality (unit rate) in tables, graphs, equations, diagrams, and verbal descriptions of proportional relationships." +118,7.RP.A.2c,"Represent proportional relationships by equations. For example, if total cost t is proportional to the number n of items purchased at a constant price p, the relationship between the total cost and the number of items can be expressed as t = pn." +119,7.RP.A.2d,"Explain what a point (x, y) on the graph of a proportional relationship means in terms of the situation, with special attention to the points (0, 0) and (1, r) where r is the unit rate." +120,7.RP.A.3,Use proportional relationships to solve multistep ratio and percent problems. +121,7.SP.A.1,Understand that statistics can be used to gain information about a population by examining a sample of the population; generalizations about a population from a sample are valid only if the sample is representative of that population. Understand that random sampling tends to produce representative samples and support valid inferences. +122,7.SP.A.2,"Use data from a random sample to draw inferences about a population with an unknown characteristic of interest. Generate multiple samples (or simulated samples) of the same size to gauge the variation in estimates or predictions. For example, estimate the mean word length in a book by randomly sampling words from the book; predict the winner of a school election based on randomly sampled survey data. Gauge how far off the estimate or prediction might be." +123,7.SP.B.3,"Informally assess the degree of visual overlap of two numerical data distributions with similar variabilities, measuring the difference between the centers by expressing it as a multiple of a measure of variability. For example, the mean height of players on the basketball team is 10 cm greater than the mean height of players on the soccer team, about twice the variability (mean absolute deviation) on either team; on a dot plot, the separation between the two distributions of heights is noticeable." +124,7.SP.B.4,"Use measures of center and measures of variability for numerical data from random samples to draw informal comparative inferences about two populations. For example, decide whether the words in a chapter of a seventh-grade science book are generally longer than the words in a chapter of a fourth-grade science book." +125,7.SP.C.5,"Understand that the probability of a chance event is a number between 0 and 1 that expresses the likelihood of the event occurring. Larger numbers indicate greater likelihood. A probability near 0 indicates an unlikely event, a probability around 1/2 indicates an event that is neither unlikely nor likely, and a probability near 1 indicates a likely event." +126,7.SP.C.6,"Approximate the probability of a chance event by collecting data on the chance process that produces it and observing its long-run relative frequency, and predict the approximate relative frequency given the probability. For example, when rolling a number cube 600 times, predict that a 3 or 6 would be rolled roughly 200 times, but probably not exactly 200 times." +127,7.SP.C.7a,"Develop a uniform probability model by assigning equal probability to all outcomes, and use the model to determine probabilities of events. For example, if a student is selected at random from a class, find the probability that Jane will be selected and the probability that a girl will be selected." +128,7.SP.C.7b,"Develop a probability model (which may not be uniform) by observing frequencies in data generated from a chance process. For example, find the approximate probability that a spinning penny will land heads up or that a tossed paper cup will land open-end down. Do the outcomes for the spinning penny appear to be equally likely based on the observed frequencies?" +129,7.SP.C.8a,"Understand that, just as with simple events, the probability of a compound event is the fraction of outcomes in the sample space for which the compound event occurs." +130,7.SP.C.8b,"Represent sample spaces for compound events using methods such as organized lists, tables and tree diagrams. For an event described in everyday language (e.g., ""rolling double sixes""), identify the outcomes in the sample space which compose the event." +131,7.SP.C.8c,"Design and use a simulation to generate frequencies for compound events. For example, use random digits as a simulation tool to approximate the answer to the question: If 40% of donors have type A blood, what is the probability that it will take at least 4 donors to find one with type A blood?" +132,8.EE.A.1,"Know and apply the properties of integer exponents to generate equivalent numerical expressions. For example, 3² × 3-5 = 3-3 = 1/3³ = 1/27." +133,8.EE.A.2,"Use square root and cube root symbols to represent solutions to equations of the form x² = p and x³ = p, where p is a positive rational number. Evaluate square roots of small perfect squares and cube roots of small perfect cubes. Know that √2 is irrational." +134,8.EE.A.3,"Use numbers expressed in the form of a single digit times an integer power of 10 to estimate very large or very small quantities, and to express how many times as much one is than the other. For example, estimate the population of the United States as 3 × 108 and the population of the world as 7 × 109, and determine that the world population is more than 20 times larger." +135,8.EE.A.4,"Perform operations with numbers expressed in scientific notation, including problems where both decimal and scientific notation are used. Use scientific notation and choose units of appropriate size for measurements of very large or very small quantities (e.g., use millimeters per year for seafloor spreading). Interpret scientific notation that has been generated by technology." +136,8.EE.B.5,"Graph proportional relationships, interpreting the unit rate as the slope of the graph. Compare two different proportional relationships represented in different ways. For example, compare a distance-time graph to a distance-time equation to determine which of two moving objects has greater speed." +137,8.EE.B.6,Use similar triangles to explain why the slope m is the same between any two distinct points on a non-vertical line in the coordinate plane; derive the equation y = mx for a line through the origin and the equation y = mx + b for a line intercepting the vertical axis at b. +138,8.EE.C.7a,"Give examples of linear equations in one variable with one solution, infinitely many solutions, or no solutions. Show which of these possibilities is the case by successively transforming the given equation into simpler forms, until an equivalent equation of the form x = a, a = a, or a = b results (where a and b are different numbers)." +139,8.EE.C.7b,"Solve linear equations with rational number coefficients, including equations whose solutions require expanding expressions using the distributive property and collecting like terms." +140,8.EE.C.8a,"Understand that solutions to a system of two linear equations in two variables correspond to points of intersection of their graphs, because points of intersection satisfy both equations simultaneously." +141,8.EE.C.8b,"Solve systems of two linear equations in two variables algebraically, and estimate solutions by graphing the equations. Solve simple cases by inspection. For example, 3x + 2y = 5 and 3x + 2y = 6 have no solution because 3x + 2y cannot simultaneously be 5 and 6." +142,8.EE.C.8c,"Solve real-world and mathematical problems leading to two linear equations in two variables. For example, given coordinates for two pairs of points, determine whether the line through the first pair of points intersects the line through the second pair." +143,8.F.A.1,Understand that a function is a rule that assigns to each input exactly one output. The graph of a function is the set of ordered pairs consisting of an input and the corresponding output. +144,8.F.A.2,"Compare properties of two functions each represented in a different way (algebraically, graphically, numerically in tables, or by verbal descriptions). For example, given a linear function represented by a table of values and a linear function represented by an algebraic expression, determine which function has the greater rate of change." +145,8.F.A.3,"Interpret the equation y = mx + b as defining a linear function, whose graph is a straight line; give examples of functions that are not linear. For example, the function A = s² giving the area of a square as a function of its side length is not linear because its graph contains the points (1,1), (2,4) and (3,9), which are not on a straight line." +146,8.F.B.4,"Construct a function to model a linear relationship between two quantities. Determine the rate of change and initial value of the function from a description of a relationship or from two (x, y) values, including reading these from a table or from a graph. Interpret the rate of change and initial value of a linear function in terms of the situation it models, and in terms of its graph or a table of values." +147,8.F.B.5,"Describe qualitatively the functional relationship between two quantities by analyzing a graph (e.g., where the function is increasing or decreasing, linear or nonlinear). Sketch a graph that exhibits the qualitative features of a function that has been described verbally." +148,8.G.A.1a,"Lines are taken to lines, and line segments to line segments of the same length." +149,8.G.A.1b,Angles are taken to angles of the same measure. +150,8.G.A.1c,Parallel lines are taken to parallel lines. +151,8.G.A.2,"Understand that a two-dimensional figure is congruent to another if the second can be obtained from the first by a sequence of rotations, reflections, and translations; given two congruent figures, describe a sequence that exhibits the congruence between them." +152,8.G.A.3,"Describe the effect of dilations, translations, rotations, and reflections on two-dimensional figures using coordinates." +153,8.G.A.4,"Understand that a two-dimensional figure is similar to another if the second can be obtained from the first by a sequence of rotations, reflections, translations, and dilations; given two similar two-dimensional figures, describe a sequence that exhibits the similarity between them." +154,8.G.A.5,"Use informal arguments to establish facts about the angle sum and exterior angle of triangles, about the angles created when parallel lines are cut by a transversal, and the angle-angle criterion for similarity of triangles. For example, arrange three copies of the same triangle so that the sum of the three angles appears to form a line, and give an argument in terms of transversals why this is so." +155,8.G.B.6,Explain a proof of the Pythagorean Theorem and its converse. +156,8.G.B.7,Apply the Pythagorean Theorem to determine unknown side lengths in right triangles in real-world and mathematical problems in two and three dimensions. +157,8.G.B.8,Apply the Pythagorean Theorem to find the distance between two points in a coordinate system. +158,8.G.C.9,"Know the formulas for the volumes of cones, cylinders, and spheres and use them to solve real-world and mathematical problems." +159,8.NS.A.1,"Know that numbers that are not rational are called irrational. Understand informally that every number has a decimal expansion; for rational numbers show that the decimal expansion repeats eventually, and convert a decimal expansion which repeats eventually into a rational number." +160,8.NS.A.2,"Use rational approximations of irrational numbers to compare the size of irrational numbers, locate them approximately on a number line diagram, and estimate the value of expressions (e.g., π²). For example, by truncating the decimal expansion of √2, show that √2 is between 1 and 2, then between 1.4 and 1.5, and explain how to continue on to get better approximations." +161,8.SP.A.1,"Construct and interpret scatter plots for bivariate measurement data to investigate patterns of association between two quantities. Describe patterns such as clustering, outliers, positive or negative association, linear association, and nonlinear association." +162,8.SP.A.2,"Know that straight lines are widely used to model relationships between two quantitative variables. For scatter plots that suggest a linear association, informally fit a straight line, and informally assess the model fit by judging the closeness of the data points to the line." +163,8.SP.A.3,"Use the equation of a linear model to solve problems in the context of bivariate measurement data, interpreting the slope and intercept. For example, in a linear model for a biology experiment, interpret a slope of 1.5 cm/hr as meaning that an additional hour of sunlight each day is associated with an additional 1.5 cm in mature plant height." +164,8.SP.A.4,"Understand that patterns of association can also be seen in bivariate categorical data by displaying frequencies and relative frequencies in a two-way table. Construct and interpret a two-way table summarizing data on two categorical variables collected from the same subjects. Use relative frequencies calculated for rows or columns to describe possible association between the two variables. For example, collect data from students in your class on whether or not they have a curfew on school nights and whether or not they have assigned chores at home. Is there evidence that those who have a curfew also tend to have chores?" diff --git a/Data/Skills.csv b/Data/Skills.csv new file mode 100644 index 0000000000000000000000000000000000000000..0bbadab5a0c201c913315858345d137e839915f1 --- /dev/null +++ b/Data/Skills.csv @@ -0,0 +1,3798 @@ +problem_id,skill_id,node_code,node_name +299836,1,3.OA.A.1,Interpret Products of Whole Numbers +427946,1,3.OA.A.1,Interpret Products of Whole Numbers +299836,4,3.OA.A.4,Determine the Unknown Whole Number in a Multiplication/Division Equation +427946,4,3.OA.A.4,Determine the Unknown Whole Number in a Multiplication/Division Equation +299546,5,3.OA.B.5,Apply Properties of Operations To Multiply & Divide +427706,5,3.OA.B.5,Apply Properties of Operations To Multiply & Divide +151911,15,3.NF.A.2a,Represent Unit Fractions on a Number Line +323486,16,3.NF.A.2b,Represent Fractions on a Number Line +323395,16,3.NF.A.2b,Represent Fractions on a Number Line +323318,16,3.NF.A.2b,Represent Fractions on a Number Line +259422,16,3.NF.A.2b,Represent Fractions on a Number Line +151911,16,3.NF.A.2b,Represent Fractions on a Number Line +151911,19,3.NF.A.3b,Recognize & Generate Simple Equivalent Fractions +323959,21,3.NF.A.3d,Comprare Fractions with Like Numerators or Denominators +3501,24,3.MD.B.3,Draw & Apply Knowledge of Bar & Pictures Graphs +255003,24,3.MD.B.3,Draw & Apply Knowledge of Bar & Pictures Graphs +103462,29,3.MD.C.6,Measure Area by Counting Unit Squares +543579,29,3.MD.C.6,Measure Area by Counting Unit Squares +543579,31,3.MD.C.7a,Find the Area of a Rectangle by Tiling +103462,31,3.MD.C.7a,Find the Area of a Rectangle by Tiling +1366,31,3.MD.C.7a,Find the Area of a Rectangle by Tiling +54202,31,3.MD.C.7a,Find the Area of a Rectangle by Tiling +595379,31,3.MD.C.7a,Find the Area of a Rectangle by Tiling +543878,34,3.MD.C.7d,Find Area of Rectangles by Decomposing +103748,34,3.MD.C.7d,Find Area of Rectangles by Decomposing +1366,35,3.MD.D.8,Solve Word Problems Involving Perimeter of Polygons +595520,35,3.MD.D.8,Solve Word Problems Involving Perimeter of Polygons +151389,38,4.OA.A.1,Interpret & Represent Multiplicative Comparisons as Multiplication Equations +151533,38,4.OA.A.1,Interpret & Represent Multiplicative Comparisons as Multiplication Equations +258849,38,4.OA.A.1,Interpret & Represent Multiplicative Comparisons as Multiplication Equations +151647,38,4.OA.A.1,Interpret & Represent Multiplicative Comparisons as Multiplication Equations +258984,38,4.OA.A.1,Interpret & Represent Multiplicative Comparisons as Multiplication Equations +259128,38,4.OA.A.1,Interpret & Represent Multiplicative Comparisons as Multiplication Equations +322962,41,4.OA.B.4,Find & Use Factors of to Determine if a Number is Prime or Composite +608636,41,4.OA.B.4,Find & Use Factors of to Determine if a Number is Prime or Composite +258849,44,4.NBT.A.1,Recognize & Apply Concepts of Place Value Relationships +259128,44,4.NBT.A.1,Recognize & Apply Concepts of Place Value Relationships +258984,44,4.NBT.A.1,Recognize & Apply Concepts of Place Value Relationships +151389,44,4.NBT.A.1,Recognize & Apply Concepts of Place Value Relationships +151647,44,4.NBT.A.1,Recognize & Apply Concepts of Place Value Relationships +151533,44,4.NBT.A.1,Recognize & Apply Concepts of Place Value Relationships +655353,50,4.NBT.B.6,Divide Whole Numbers using Place Value Models & Strategies +456745,50,4.NBT.B.6,Divide Whole Numbers using Place Value Models & Strategies +258570,51,4.NF.A.1,"Explain, Recognize & Generate Equivalent Fractions" +151128,51,4.NF.A.1,"Explain, Recognize & Generate Equivalent Fractions" +324036,52,4.NF.A.2,Compare Fractions with Different Numerators & Denominators +323873,52,4.NF.A.2,Compare Fractions with Different Numerators & Denominators +324144,52,4.NF.A.2,Compare Fractions with Different Numerators & Denominators +323959,52,4.NF.A.2,Compare Fractions with Different Numerators & Denominators +133202,52,4.NF.A.2,Compare Fractions with Different Numerators & Denominators +133338,52,4.NF.A.2,Compare Fractions with Different Numerators & Denominators +151389,61,4.NF.B.4b,Multiply a Fraction by a Whole Number +151533,61,4.NF.B.4b,Multiply a Fraction by a Whole Number +259128,61,4.NF.B.4b,Multiply a Fraction by a Whole Number +258849,61,4.NF.B.4b,Multiply a Fraction by a Whole Number +258984,61,4.NF.B.4b,Multiply a Fraction by a Whole Number +151647,61,4.NF.B.4b,Multiply a Fraction by a Whole Number +325103,64,4.NF.C.6,Convert Fractions to Decimals (Denominators of 10 or 100) +355920,64,4.NF.C.6,Convert Fractions to Decimals (Denominators of 10 or 100) +455868,64,4.NF.C.6,Convert Fractions to Decimals (Denominators of 10 or 100) +455995,64,4.NF.C.6,Convert Fractions to Decimals (Denominators of 10 or 100) +356245,64,4.NF.C.6,Convert Fractions to Decimals (Denominators of 10 or 100) +488652,64,4.NF.C.6,Convert Fractions to Decimals (Denominators of 10 or 100) +668634,66,4.MD.A.1,Convert Measurements Within a System & Display in Two-Column Tables +174042,66,4.MD.A.1,Convert Measurements Within a System & Display in Two-Column Tables +172779,66,4.MD.A.1,Convert Measurements Within a System & Display in Two-Column Tables +173266,66,4.MD.A.1,Convert Measurements Within a System & Display in Two-Column Tables +605230,66,4.MD.A.1,Convert Measurements Within a System & Display in Two-Column Tables +173140,66,4.MD.A.1,Convert Measurements Within a System & Display in Two-Column Tables +173797,66,4.MD.A.1,Convert Measurements Within a System & Display in Two-Column Tables +173917,66,4.MD.A.1,Convert Measurements Within a System & Display in Two-Column Tables +25823,68,4.MD.A.3,Apply Area & Perimeter Formulas for Rectangles +47078,68,4.MD.A.3,Apply Area & Perimeter Formulas for Rectangles +25576,68,4.MD.A.3,Apply Area & Perimeter Formulas for Rectangles +25682,68,4.MD.A.3,Apply Area & Perimeter Formulas for Rectangles +543579,68,4.MD.A.3,Apply Area & Perimeter Formulas for Rectangles +25949,68,4.MD.A.3,Apply Area & Perimeter Formulas for Rectangles +46209,68,4.MD.A.3,Apply Area & Perimeter Formulas for Rectangles +605230,68,4.MD.A.3,Apply Area & Perimeter Formulas for Rectangles +88850,68,4.MD.A.3,Apply Area & Perimeter Formulas for Rectangles +103462,68,4.MD.A.3,Apply Area & Perimeter Formulas for Rectangles +347425,68,4.MD.A.3,Apply Area & Perimeter Formulas for Rectangles +668634,69,4.MD.A.3,Apply Area & Perimeter Formulas for Rectangles +605230,69,4.MD.A.3,Apply Area & Perimeter Formulas for Rectangles +651370,76,4.G.A.1,Draw & Identify Types of Lines and Angles +104004,76,4.G.A.1,Draw & Identify Types of Lines and Angles +651306,76,4.G.A.1,Draw & Identify Types of Lines and Angles +627401,76,4.G.A.1,Draw & Identify Types of Lines and Angles +12623,76,4.G.A.1,Draw & Identify Types of Lines and Angles +627506,76,4.G.A.1,Draw & Identify Types of Lines and Angles +115085,76,4.G.A.1,Draw & Identify Types of Lines and Angles +104131,77,4.G.A.1,Draw & Identify Types of Lines and Angles +23769,78,4.G.A.2,Classify 2D Figures by Parallel & Perpendicular Lines and Angles +104004,78,4.G.A.2,Classify 2D Figures by Parallel & Perpendicular Lines and Angles +544510,78,4.G.A.2,Classify 2D Figures by Parallel & Perpendicular Lines and Angles +427706,80,5.OA.A.1,Evaluate Expressions Using Groupings +299546,80,5.OA.A.1,Evaluate Expressions Using Groupings +543878,81,5.OA.A.2,Write & Interpret Simple Expressions +103748,81,5.OA.A.2,Write & Interpret Simple Expressions +655039,83,5.NBT.A.1,Understand Base Ten Place Value Relationships +455078,83,5.NBT.A.1,Understand Base Ten Place Value Relationships +454858,83,5.NBT.A.1,Understand Base Ten Place Value Relationships +655190,83,5.NBT.A.1,Understand Base Ten Place Value Relationships +455397,83,5.NBT.A.1,Understand Base Ten Place Value Relationships +654938,83,5.NBT.A.1,Understand Base Ten Place Value Relationships +104252,84,5.NBT.A.2,Explain Patterns when Multiplying & Dividing Powers of 10 +323658,87,5.NBT.A.3b,Compare Decimals to Thousandths +323761,87,5.NBT.A.3b,Compare Decimals to Thousandths +284725,89,5.NBT.B.5,Multiply Multi-Digit Whole Numbers Using the Standard Algorithm +508769,89,5.NBT.B.5,Multiply Multi-Digit Whole Numbers Using the Standard Algorithm +508616,89,5.NBT.B.5,Multiply Multi-Digit Whole Numbers Using the Standard Algorithm +509009,89,5.NBT.B.5,Multiply Multi-Digit Whole Numbers Using the Standard Algorithm +508887,89,5.NBT.B.5,Multiply Multi-Digit Whole Numbers Using the Standard Algorithm +45675,89,5.NBT.B.5,Multiply Multi-Digit Whole Numbers Using the Standard Algorithm +457114,89,5.NBT.B.5,Multiply Multi-Digit Whole Numbers Using the Standard Algorithm +78754,89,5.NBT.B.5,Multiply Multi-Digit Whole Numbers Using the Standard Algorithm +92677,89,5.NBT.B.5,Multiply Multi-Digit Whole Numbers Using the Standard Algorithm +78619,89,5.NBT.B.5,Multiply Multi-Digit Whole Numbers Using the Standard Algorithm +445524,89,5.NBT.B.5,Multiply Multi-Digit Whole Numbers Using the Standard Algorithm +92205,89,5.NBT.B.5,Multiply Multi-Digit Whole Numbers Using the Standard Algorithm +421967,89,5.NBT.B.5,Multiply Multi-Digit Whole Numbers Using the Standard Algorithm +421838,89,5.NBT.B.5,Multiply Multi-Digit Whole Numbers Using the Standard Algorithm +332052,89,5.NBT.B.5,Multiply Multi-Digit Whole Numbers Using the Standard Algorithm +331934,89,5.NBT.B.5,Multiply Multi-Digit Whole Numbers Using the Standard Algorithm +289975,89,5.NBT.B.5,Multiply Multi-Digit Whole Numbers Using the Standard Algorithm +421173,90,5.NBT.B.6,Divide Whole Numbers (Up to 4-Digit Dividends & 2-Digit Divisors) +421448,90,5.NBT.B.6,Divide Whole Numbers (Up to 4-Digit Dividends & 2-Digit Divisors) +421310,90,5.NBT.B.6,Divide Whole Numbers (Up to 4-Digit Dividends & 2-Digit Divisors) +421588,90,5.NBT.B.6,Divide Whole Numbers (Up to 4-Digit Dividends & 2-Digit Divisors) +407583,90,5.NBT.B.6,Divide Whole Numbers (Up to 4-Digit Dividends & 2-Digit Divisors) +531410,90,5.NBT.B.6,Divide Whole Numbers (Up to 4-Digit Dividends & 2-Digit Divisors) +531190,90,5.NBT.B.6,Divide Whole Numbers (Up to 4-Digit Dividends & 2-Digit Divisors) +531647,90,5.NBT.B.6,Divide Whole Numbers (Up to 4-Digit Dividends & 2-Digit Divisors) +445641,90,5.NBT.B.6,Divide Whole Numbers (Up to 4-Digit Dividends & 2-Digit Divisors) +530879,90,5.NBT.B.6,Divide Whole Numbers (Up to 4-Digit Dividends & 2-Digit Divisors) +5038,91,5.NBT.B.7,Compute Decimal Problems Involving All 4 Operations +3036,91,5.NBT.B.7,Compute Decimal Problems Involving All 4 Operations +254457,91,5.NBT.B.7,Compute Decimal Problems Involving All 4 Operations +445374,91,5.NBT.B.7,Compute Decimal Problems Involving All 4 Operations +2930,91,5.NBT.B.7,Compute Decimal Problems Involving All 4 Operations +254589,91,5.NBT.B.7,Compute Decimal Problems Involving All 4 Operations +256627,91,5.NBT.B.7,Compute Decimal Problems Involving All 4 Operations +154867,94,5.NF.A.1,Add & Subtract Fractions with Unlike Denominators +256500,95,5.NF.A.1,Add & Subtract Fractions with Unlike Denominators +4926,95,5.NF.A.1,Add & Subtract Fractions with Unlike Denominators +274139,96,5.NF.A.2,Solve Word Problems Involving Addition/Subtraction of Fractions +127860,97,5.NF.B.3,Interpret Fractions as Division in Word Problems +128010,97,5.NF.B.3,Interpret Fractions as Division in Word Problems +128126,97,5.NF.B.3,Interpret Fractions as Division in Word Problems +132213,97,5.NF.B.3,Interpret Fractions as Division in Word Problems +154867,99,5.NF.B.4a,Interpret & Compute Products of Fractions and Whole Numbers +474069,99,5.NF.B.4a,Interpret & Compute Products of Fractions and Whole Numbers +474198,99,5.NF.B.4a,Interpret & Compute Products of Fractions and Whole Numbers +103860,100,5.NF.B.4b,Find the Area of a Rectangle with Fractional Side Lengths +471899,100,5.NF.B.4b,Find the Area of a Rectangle with Fractional Side Lengths +648,102,5.NF.B.5a,Compare the Size of Products & Factors +576826,102,5.NF.B.5a,Compare the Size of Products & Factors +438,102,5.NF.B.5a,Compare the Size of Products & Factors +311333,102,5.NF.B.5a,Compare the Size of Products & Factors +311102,102,5.NF.B.5a,Compare the Size of Products & Factors +420156,102,5.NF.B.5a,Compare the Size of Products & Factors +420156,103,5.NF.B.5b,Explain Results Less or Greater Than 1 when Multiplying Fractions +576826,103,5.NF.B.5b,Explain Results Less or Greater Than 1 when Multiplying Fractions +429356,104,5.NF.B.6,Solve Real-World Problems Involving Multiplication of Fractions +420156,104,5.NF.B.6,Solve Real-World Problems Involving Multiplication of Fractions +445267,106,5.NF.B.7a,Interpret & Compute Quotients of Unit Fractions & Whole Numbers +131914,107,5.NF.B.7b,Interpret & Compute Quotients of Whole Numbers & Unit Fractions +445267,107,5.NF.B.7b,Interpret & Compute Quotients of Whole Numbers & Unit Fractions +457262,107,5.NF.B.7b,Interpret & Compute Quotients of Whole Numbers & Unit Fractions +131914,108,5.NF.B.7c,Solve Word Problems Involving Division of Fractions & Whole Numbers +445267,108,5.NF.B.7c,Solve Word Problems Involving Division of Fractions & Whole Numbers +310779,110,5.MD.A.1,Convert Among Standard Measurement Units +95,110,5.MD.A.1,Convert Among Standard Measurement Units +242,110,5.MD.A.1,Convert Among Standard Measurement Units +310891,110,5.MD.A.1,Convert Among Standard Measurement Units +4926,112,5.MD.B.2,Create Line Plots with Fractions +256500,112,5.MD.B.2,Create Line Plots with Fractions +256627,112,5.MD.B.2,Create Line Plots with Fractions +5038,112,5.MD.B.2,Create Line Plots with Fractions +601993,115,5.MD.C.3b,Understand that Unit Cubes Can be Used to Construct Volume +247085,116,5.MD.C.4,Measure Volumes with Unit Cubes +48585,118,5.MD.C.5a,Find the Volume of a Rectangular Prism Without a Formula +48967,118,5.MD.C.5a,Find the Volume of a Rectangular Prism Without a Formula +133518,119,5.MD.C.5b,Find the Volume of a Rectangular Prism With a Formula +48762,119,5.MD.C.5b,Find the Volume of a Rectangular Prism With a Formula +248037,119,5.MD.C.5b,Find the Volume of a Rectangular Prism With a Formula +324806,121,5.G.A.1,Understand Components of the Coordinate Plane +324554,121,5.G.A.1,Understand Components of the Coordinate Plane +324709,121,5.G.A.1,Understand Components of the Coordinate Plane +324631,121,5.G.A.1,Understand Components of the Coordinate Plane +324900,121,5.G.A.1,Understand Components of the Coordinate Plane +488471,122,5.G.A.2,Graph points in Quadrant 1 & Interpret Coordinate Values +243115,124,5.G.B.4,Classify 2D Figures Based on Properties +544510,125,5.G.B.4,Classify 2D Figures Based on Properties +23769,125,5.G.B.4,Classify 2D Figures Based on Properties +54134,126,6.RP.A.1,Understand & Describe Ratios +88681,126,6.RP.A.1,Understand & Describe Ratios +2196,126,6.RP.A.1,Understand & Describe Ratios +437233,126,6.RP.A.1,Understand & Describe Ratios +547591,126,6.RP.A.1,Understand & Describe Ratios +40656,126,6.RP.A.1,Understand & Describe Ratios +373794,126,6.RP.A.1,Understand & Describe Ratios +39085,126,6.RP.A.1,Understand & Describe Ratios +199800,126,6.RP.A.1,Understand & Describe Ratios +83745,126,6.RP.A.1,Understand & Describe Ratios +114950,126,6.RP.A.1,Understand & Describe Ratios +4213,127,6.RP.A.2,Understand & Describe Unit Rate +547864,127,6.RP.A.2,Understand & Describe Unit Rate +547291,127,6.RP.A.2,Understand & Describe Unit Rate +261537,127,6.RP.A.2,Understand & Describe Unit Rate +320443,127,6.RP.A.2,Understand & Describe Unit Rate +559407,127,6.RP.A.2,Understand & Describe Unit Rate +39959,127,6.RP.A.2,Understand & Describe Unit Rate +3098,127,6.RP.A.2,Understand & Describe Unit Rate +39724,127,6.RP.A.2,Understand & Describe Unit Rate +40426,127,6.RP.A.2,Understand & Describe Unit Rate +560590,127,6.RP.A.2,Understand & Describe Unit Rate +40293,127,6.RP.A.2,Understand & Describe Unit Rate +40938,127,6.RP.A.2,Understand & Describe Unit Rate +546982,127,6.RP.A.2,Understand & Describe Unit Rate +546775,127,6.RP.A.2,Understand & Describe Unit Rate +547415,127,6.RP.A.2,Understand & Describe Unit Rate +261766,127,6.RP.A.2,Understand & Describe Unit Rate +559654,127,6.RP.A.2,Understand & Describe Unit Rate +559546,127,6.RP.A.2,Understand & Describe Unit Rate +164620,129,6.RP.A.3a,Create Tables to Compare Equivalent Ratios +164748,129,6.RP.A.3a,Create Tables to Compare Equivalent Ratios +287230,129,6.RP.A.3a,Create Tables to Compare Equivalent Ratios +287949,129,6.RP.A.3a,Create Tables to Compare Equivalent Ratios +370906,129,6.RP.A.3a,Create Tables to Compare Equivalent Ratios +370138,129,6.RP.A.3a,Create Tables to Compare Equivalent Ratios +371156,129,6.RP.A.3a,Create Tables to Compare Equivalent Ratios +42395,129,6.RP.A.3a,Create Tables to Compare Equivalent Ratios +40656,129,6.RP.A.3a,Create Tables to Compare Equivalent Ratios +174455,129,6.RP.A.3a,Create Tables to Compare Equivalent Ratios +370357,129,6.RP.A.3a,Create Tables to Compare Equivalent Ratios +371046,129,6.RP.A.3a,Create Tables to Compare Equivalent Ratios +370431,129,6.RP.A.3a,Create Tables to Compare Equivalent Ratios +347969,129,6.RP.A.3a,Create Tables to Compare Equivalent Ratios +40938,129,6.RP.A.3a,Create Tables to Compare Equivalent Ratios +37441,129,6.RP.A.3a,Create Tables to Compare Equivalent Ratios +283575,129,6.RP.A.3a,Create Tables to Compare Equivalent Ratios +286756,129,6.RP.A.3a,Create Tables to Compare Equivalent Ratios +282992,129,6.RP.A.3a,Create Tables to Compare Equivalent Ratios +42567,129,6.RP.A.3a,Create Tables to Compare Equivalent Ratios +279063,129,6.RP.A.3a,Create Tables to Compare Equivalent Ratios +363127,129,6.RP.A.3a,Create Tables to Compare Equivalent Ratios +360494,129,6.RP.A.3a,Create Tables to Compare Equivalent Ratios +284919,129,6.RP.A.3a,Create Tables to Compare Equivalent Ratios +360123,129,6.RP.A.3a,Create Tables to Compare Equivalent Ratios +78262,129,6.RP.A.3a,Create Tables to Compare Equivalent Ratios +77267,129,6.RP.A.3a,Create Tables to Compare Equivalent Ratios +91684,129,6.RP.A.3a,Create Tables to Compare Equivalent Ratios +91913,129,6.RP.A.3a,Create Tables to Compare Equivalent Ratios +91811,129,6.RP.A.3a,Create Tables to Compare Equivalent Ratios +240818,129,6.RP.A.3a,Create Tables to Compare Equivalent Ratios +72272,129,6.RP.A.3a,Create Tables to Compare Equivalent Ratios +72169,129,6.RP.A.3a,Create Tables to Compare Equivalent Ratios +650734,129,6.RP.A.3a,Create Tables to Compare Equivalent Ratios +426575,129,6.RP.A.3a,Create Tables to Compare Equivalent Ratios +537832,129,6.RP.A.3a,Create Tables to Compare Equivalent Ratios +2319,129,6.RP.A.3a,Create Tables to Compare Equivalent Ratios +30276,129,6.RP.A.3a,Create Tables to Compare Equivalent Ratios +547591,129,6.RP.A.3a,Create Tables to Compare Equivalent Ratios +426461,129,6.RP.A.3a,Create Tables to Compare Equivalent Ratios +360011,129,6.RP.A.3a,Create Tables to Compare Equivalent Ratios +2433,129,6.RP.A.3a,Create Tables to Compare Equivalent Ratios +320230,129,6.RP.A.3a,Create Tables to Compare Equivalent Ratios +69590,129,6.RP.A.3a,Create Tables to Compare Equivalent Ratios +115193,129,6.RP.A.3a,Create Tables to Compare Equivalent Ratios +547864,129,6.RP.A.3a,Create Tables to Compare Equivalent Ratios +115064,129,6.RP.A.3a,Create Tables to Compare Equivalent Ratios +347269,129,6.RP.A.3a,Create Tables to Compare Equivalent Ratios +114344,129,6.RP.A.3a,Create Tables to Compare Equivalent Ratios +59778,129,6.RP.A.3a,Create Tables to Compare Equivalent Ratios +554651,129,6.RP.A.3a,Create Tables to Compare Equivalent Ratios +495575,129,6.RP.A.3a,Create Tables to Compare Equivalent Ratios +229328,129,6.RP.A.3a,Create Tables to Compare Equivalent Ratios +229131,129,6.RP.A.3a,Create Tables to Compare Equivalent Ratios +359683,129,6.RP.A.3a,Create Tables to Compare Equivalent Ratios +15930,129,6.RP.A.3a,Create Tables to Compare Equivalent Ratios +137170,129,6.RP.A.3a,Create Tables to Compare Equivalent Ratios +139424,129,6.RP.A.3a,Create Tables to Compare Equivalent Ratios +138970,129,6.RP.A.3a,Create Tables to Compare Equivalent Ratios +406068,129,6.RP.A.3a,Create Tables to Compare Equivalent Ratios +138263,129,6.RP.A.3a,Create Tables to Compare Equivalent Ratios +138414,129,6.RP.A.3a,Create Tables to Compare Equivalent Ratios +53422,129,6.RP.A.3a,Create Tables to Compare Equivalent Ratios +139112,129,6.RP.A.3a,Create Tables to Compare Equivalent Ratios +143888,129,6.RP.A.3a,Create Tables to Compare Equivalent Ratios +147205,129,6.RP.A.3a,Create Tables to Compare Equivalent Ratios +53714,129,6.RP.A.3a,Create Tables to Compare Equivalent Ratios +348393,129,6.RP.A.3a,Create Tables to Compare Equivalent Ratios +146848,129,6.RP.A.3a,Create Tables to Compare Equivalent Ratios +147031,129,6.RP.A.3a,Create Tables to Compare Equivalent Ratios +15805,129,6.RP.A.3a,Create Tables to Compare Equivalent Ratios +287601,129,6.RP.A.3a,Create Tables to Compare Equivalent Ratios +164198,129,6.RP.A.3a,Create Tables to Compare Equivalent Ratios +164090,129,6.RP.A.3a,Create Tables to Compare Equivalent Ratios +3418,130,6.RP.A.3b,Solve Unit Rate Problems +4344,130,6.RP.A.3b,Solve Unit Rate Problems +3980,130,6.RP.A.3b,Solve Unit Rate Problems +3098,130,6.RP.A.3b,Solve Unit Rate Problems +3256,130,6.RP.A.3b,Solve Unit Rate Problems +11914,130,6.RP.A.3b,Solve Unit Rate Problems +12985,130,6.RP.A.3b,Solve Unit Rate Problems +13384,130,6.RP.A.3b,Solve Unit Rate Problems +12177,130,6.RP.A.3b,Solve Unit Rate Problems +24870,130,6.RP.A.3b,Solve Unit Rate Problems +23593,130,6.RP.A.3b,Solve Unit Rate Problems +27697,130,6.RP.A.3b,Solve Unit Rate Problems +28051,130,6.RP.A.3b,Solve Unit Rate Problems +28432,130,6.RP.A.3b,Solve Unit Rate Problems +30898,130,6.RP.A.3b,Solve Unit Rate Problems +31058,130,6.RP.A.3b,Solve Unit Rate Problems +30779,130,6.RP.A.3b,Solve Unit Rate Problems +28730,130,6.RP.A.3b,Solve Unit Rate Problems +30604,130,6.RP.A.3b,Solve Unit Rate Problems +31250,130,6.RP.A.3b,Solve Unit Rate Problems +30601,130,6.RP.A.3b,Solve Unit Rate Problems +31856,130,6.RP.A.3b,Solve Unit Rate Problems +39724,130,6.RP.A.3b,Solve Unit Rate Problems +42395,130,6.RP.A.3b,Solve Unit Rate Problems +39959,130,6.RP.A.3b,Solve Unit Rate Problems +40426,130,6.RP.A.3b,Solve Unit Rate Problems +40293,130,6.RP.A.3b,Solve Unit Rate Problems +42567,130,6.RP.A.3b,Solve Unit Rate Problems +43293,130,6.RP.A.3b,Solve Unit Rate Problems +41676,130,6.RP.A.3b,Solve Unit Rate Problems +62872,130,6.RP.A.3b,Solve Unit Rate Problems +59099,130,6.RP.A.3b,Solve Unit Rate Problems +61003,130,6.RP.A.3b,Solve Unit Rate Problems +59398,130,6.RP.A.3b,Solve Unit Rate Problems +62539,130,6.RP.A.3b,Solve Unit Rate Problems +63719,130,6.RP.A.3b,Solve Unit Rate Problems +61761,130,6.RP.A.3b,Solve Unit Rate Problems +61363,130,6.RP.A.3b,Solve Unit Rate Problems +62707,130,6.RP.A.3b,Solve Unit Rate Problems +62166,130,6.RP.A.3b,Solve Unit Rate Problems +63037,130,6.RP.A.3b,Solve Unit Rate Problems +67685,130,6.RP.A.3b,Solve Unit Rate Problems +76912,130,6.RP.A.3b,Solve Unit Rate Problems +78012,130,6.RP.A.3b,Solve Unit Rate Problems +78634,130,6.RP.A.3b,Solve Unit Rate Problems +77528,130,6.RP.A.3b,Solve Unit Rate Problems +77847,130,6.RP.A.3b,Solve Unit Rate Problems +77688,130,6.RP.A.3b,Solve Unit Rate Problems +78992,130,6.RP.A.3b,Solve Unit Rate Problems +96695,130,6.RP.A.3b,Solve Unit Rate Problems +97491,130,6.RP.A.3b,Solve Unit Rate Problems +97813,130,6.RP.A.3b,Solve Unit Rate Problems +97062,130,6.RP.A.3b,Solve Unit Rate Problems +103888,130,6.RP.A.3b,Solve Unit Rate Problems +108169,130,6.RP.A.3b,Solve Unit Rate Problems +107470,130,6.RP.A.3b,Solve Unit Rate Problems +108047,130,6.RP.A.3b,Solve Unit Rate Problems +108478,130,6.RP.A.3b,Solve Unit Rate Problems +108354,130,6.RP.A.3b,Solve Unit Rate Problems +108670,130,6.RP.A.3b,Solve Unit Rate Problems +107783,130,6.RP.A.3b,Solve Unit Rate Problems +124302,130,6.RP.A.3b,Solve Unit Rate Problems +124027,130,6.RP.A.3b,Solve Unit Rate Problems +127489,130,6.RP.A.3b,Solve Unit Rate Problems +132567,130,6.RP.A.3b,Solve Unit Rate Problems +132256,130,6.RP.A.3b,Solve Unit Rate Problems +132144,130,6.RP.A.3b,Solve Unit Rate Problems +132877,130,6.RP.A.3b,Solve Unit Rate Problems +132432,130,6.RP.A.3b,Solve Unit Rate Problems +132758,130,6.RP.A.3b,Solve Unit Rate Problems +144489,130,6.RP.A.3b,Solve Unit Rate Problems +144285,130,6.RP.A.3b,Solve Unit Rate Problems +149859,130,6.RP.A.3b,Solve Unit Rate Problems +153145,130,6.RP.A.3b,Solve Unit Rate Problems +149750,130,6.RP.A.3b,Solve Unit Rate Problems +157878,130,6.RP.A.3b,Solve Unit Rate Problems +158629,130,6.RP.A.3b,Solve Unit Rate Problems +159000,130,6.RP.A.3b,Solve Unit Rate Problems +158226,130,6.RP.A.3b,Solve Unit Rate Problems +164198,130,6.RP.A.3b,Solve Unit Rate Problems +164090,130,6.RP.A.3b,Solve Unit Rate Problems +159196,130,6.RP.A.3b,Solve Unit Rate Problems +173472,130,6.RP.A.3b,Solve Unit Rate Problems +174088,130,6.RP.A.3b,Solve Unit Rate Problems +173863,130,6.RP.A.3b,Solve Unit Rate Problems +207470,130,6.RP.A.3b,Solve Unit Rate Problems +219121,130,6.RP.A.3b,Solve Unit Rate Problems +219244,130,6.RP.A.3b,Solve Unit Rate Problems +228746,130,6.RP.A.3b,Solve Unit Rate Problems +237868,130,6.RP.A.3b,Solve Unit Rate Problems +238070,130,6.RP.A.3b,Solve Unit Rate Problems +261537,130,6.RP.A.3b,Solve Unit Rate Problems +261766,130,6.RP.A.3b,Solve Unit Rate Problems +260638,130,6.RP.A.3b,Solve Unit Rate Problems +677513,130,6.RP.A.3b,Solve Unit Rate Problems +271838,130,6.RP.A.3b,Solve Unit Rate Problems +1638,130,6.RP.A.3b,Solve Unit Rate Problems +283915,130,6.RP.A.3b,Solve Unit Rate Problems +287949,130,6.RP.A.3b,Solve Unit Rate Problems +288360,130,6.RP.A.3b,Solve Unit Rate Problems +287601,130,6.RP.A.3b,Solve Unit Rate Problems +306784,130,6.RP.A.3b,Solve Unit Rate Problems +319717,130,6.RP.A.3b,Solve Unit Rate Problems +319607,130,6.RP.A.3b,Solve Unit Rate Problems +320538,130,6.RP.A.3b,Solve Unit Rate Problems +319516,130,6.RP.A.3b,Solve Unit Rate Problems +324446,130,6.RP.A.3b,Solve Unit Rate Problems +644155,130,6.RP.A.3b,Solve Unit Rate Problems +324260,130,6.RP.A.3b,Solve Unit Rate Problems +643786,130,6.RP.A.3b,Solve Unit Rate Problems +644011,130,6.RP.A.3b,Solve Unit Rate Problems +333185,130,6.RP.A.3b,Solve Unit Rate Problems +349252,130,6.RP.A.3b,Solve Unit Rate Problems +347954,130,6.RP.A.3b,Solve Unit Rate Problems +348162,130,6.RP.A.3b,Solve Unit Rate Problems +353584,130,6.RP.A.3b,Solve Unit Rate Problems +353327,130,6.RP.A.3b,Solve Unit Rate Problems +353461,130,6.RP.A.3b,Solve Unit Rate Problems +354136,130,6.RP.A.3b,Solve Unit Rate Problems +388358,130,6.RP.A.3b,Solve Unit Rate Problems +387984,130,6.RP.A.3b,Solve Unit Rate Problems +388660,130,6.RP.A.3b,Solve Unit Rate Problems +389028,130,6.RP.A.3b,Solve Unit Rate Problems +395051,130,6.RP.A.3b,Solve Unit Rate Problems +395419,130,6.RP.A.3b,Solve Unit Rate Problems +395593,130,6.RP.A.3b,Solve Unit Rate Problems +407824,130,6.RP.A.3b,Solve Unit Rate Problems +408023,130,6.RP.A.3b,Solve Unit Rate Problems +430257,130,6.RP.A.3b,Solve Unit Rate Problems +430376,130,6.RP.A.3b,Solve Unit Rate Problems +564514,130,6.RP.A.3b,Solve Unit Rate Problems +564997,130,6.RP.A.3b,Solve Unit Rate Problems +447809,130,6.RP.A.3b,Solve Unit Rate Problems +564837,130,6.RP.A.3b,Solve Unit Rate Problems +564678,130,6.RP.A.3b,Solve Unit Rate Problems +559546,130,6.RP.A.3b,Solve Unit Rate Problems +560316,130,6.RP.A.3b,Solve Unit Rate Problems +559654,130,6.RP.A.3b,Solve Unit Rate Problems +559407,130,6.RP.A.3b,Solve Unit Rate Problems +560733,130,6.RP.A.3b,Solve Unit Rate Problems +546982,130,6.RP.A.3b,Solve Unit Rate Problems +546775,130,6.RP.A.3b,Solve Unit Rate Problems +478871,130,6.RP.A.3b,Solve Unit Rate Problems +547291,130,6.RP.A.3b,Solve Unit Rate Problems +478760,130,6.RP.A.3b,Solve Unit Rate Problems +547415,130,6.RP.A.3b,Solve Unit Rate Problems +593802,131,6.RP.A.3c,Solve Problems Involving Percents +275922,131,6.RP.A.3c,Solve Problems Involving Percents +142840,131,6.RP.A.3c,Solve Problems Involving Percents +210383,131,6.RP.A.3c,Solve Problems Involving Percents +142483,131,6.RP.A.3c,Solve Problems Involving Percents +143123,131,6.RP.A.3c,Solve Problems Involving Percents +370522,131,6.RP.A.3c,Solve Problems Involving Percents +275754,131,6.RP.A.3c,Solve Problems Involving Percents +185126,131,6.RP.A.3c,Solve Problems Involving Percents +143514,131,6.RP.A.3c,Solve Problems Involving Percents +127791,131,6.RP.A.3c,Solve Problems Involving Percents +128001,131,6.RP.A.3c,Solve Problems Involving Percents +236371,131,6.RP.A.3c,Solve Problems Involving Percents +19386,131,6.RP.A.3c,Solve Problems Involving Percents +129075,131,6.RP.A.3c,Solve Problems Involving Percents +185395,131,6.RP.A.3c,Solve Problems Involving Percents +238851,131,6.RP.A.3c,Solve Problems Involving Percents +128360,131,6.RP.A.3c,Solve Problems Involving Percents +128108,131,6.RP.A.3c,Solve Problems Involving Percents +236051,131,6.RP.A.3c,Solve Problems Involving Percents +199099,131,6.RP.A.3c,Solve Problems Involving Percents +172534,131,6.RP.A.3c,Solve Problems Involving Percents +10241,131,6.RP.A.3c,Solve Problems Involving Percents +185277,131,6.RP.A.3c,Solve Problems Involving Percents +4091,131,6.RP.A.3c,Solve Problems Involving Percents +593590,131,6.RP.A.3c,Solve Problems Involving Percents +350776,131,6.RP.A.3c,Solve Problems Involving Percents +129183,131,6.RP.A.3c,Solve Problems Involving Percents +361789,131,6.RP.A.3c,Solve Problems Involving Percents +307493,131,6.RP.A.3c,Solve Problems Involving Percents +361669,131,6.RP.A.3c,Solve Problems Involving Percents +307360,131,6.RP.A.3c,Solve Problems Involving Percents +239163,131,6.RP.A.3c,Solve Problems Involving Percents +55067,131,6.RP.A.3c,Solve Problems Involving Percents +497933,131,6.RP.A.3c,Solve Problems Involving Percents +497078,131,6.RP.A.3c,Solve Problems Involving Percents +237316,131,6.RP.A.3c,Solve Problems Involving Percents +237612,131,6.RP.A.3c,Solve Problems Involving Percents +271538,131,6.RP.A.3c,Solve Problems Involving Percents +154014,131,6.RP.A.3c,Solve Problems Involving Percents +228454,131,6.RP.A.3c,Solve Problems Involving Percents +560175,131,6.RP.A.3c,Solve Problems Involving Percents +270745,131,6.RP.A.3c,Solve Problems Involving Percents +164748,131,6.RP.A.3c,Solve Problems Involving Percents +153748,131,6.RP.A.3c,Solve Problems Involving Percents +171639,131,6.RP.A.3c,Solve Problems Involving Percents +172131,131,6.RP.A.3c,Solve Problems Involving Percents +172318,131,6.RP.A.3c,Solve Problems Involving Percents +164620,131,6.RP.A.3c,Solve Problems Involving Percents +237456,131,6.RP.A.3c,Solve Problems Involving Percents +271396,131,6.RP.A.3c,Solve Problems Involving Percents +271644,131,6.RP.A.3c,Solve Problems Involving Percents +19578,131,6.RP.A.3c,Solve Problems Involving Percents +382646,131,6.RP.A.3c,Solve Problems Involving Percents +324952,131,6.RP.A.3c,Solve Problems Involving Percents +155392,131,6.RP.A.3c,Solve Problems Involving Percents +270541,131,6.RP.A.3c,Solve Problems Involving Percents +231744,131,6.RP.A.3c,Solve Problems Involving Percents +228285,131,6.RP.A.3c,Solve Problems Involving Percents +320333,131,6.RP.A.3c,Solve Problems Involving Percents +231330,131,6.RP.A.3c,Solve Problems Involving Percents +296749,131,6.RP.A.3c,Solve Problems Involving Percents +321235,131,6.RP.A.3c,Solve Problems Involving Percents +171838,131,6.RP.A.3c,Solve Problems Involving Percents +418297,131,6.RP.A.3c,Solve Problems Involving Percents +164090,131,6.RP.A.3c,Solve Problems Involving Percents +47523,131,6.RP.A.3c,Solve Problems Involving Percents +263662,131,6.RP.A.3c,Solve Problems Involving Percents +498428,131,6.RP.A.3c,Solve Problems Involving Percents +208182,131,6.RP.A.3c,Solve Problems Involving Percents +239810,131,6.RP.A.3c,Solve Problems Involving Percents +496936,131,6.RP.A.3c,Solve Problems Involving Percents +497355,131,6.RP.A.3c,Solve Problems Involving Percents +238558,131,6.RP.A.3c,Solve Problems Involving Percents +239466,131,6.RP.A.3c,Solve Problems Involving Percents +237164,131,6.RP.A.3c,Solve Problems Involving Percents +32378,131,6.RP.A.3c,Solve Problems Involving Percents +153894,131,6.RP.A.3c,Solve Problems Involving Percents +370230,131,6.RP.A.3c,Solve Problems Involving Percents +32696,131,6.RP.A.3c,Solve Problems Involving Percents +515648,131,6.RP.A.3c,Solve Problems Involving Percents +263496,131,6.RP.A.3c,Solve Problems Involving Percents +496551,131,6.RP.A.3c,Solve Problems Involving Percents +32069,131,6.RP.A.3c,Solve Problems Involving Percents +231535,131,6.RP.A.3c,Solve Problems Involving Percents +263152,131,6.RP.A.3c,Solve Problems Involving Percents +497385,131,6.RP.A.3c,Solve Problems Involving Percents +498194,131,6.RP.A.3c,Solve Problems Involving Percents +370835,131,6.RP.A.3c,Solve Problems Involving Percents +19738,131,6.RP.A.3c,Solve Problems Involving Percents +276105,131,6.RP.A.3c,Solve Problems Involving Percents +229674,131,6.RP.A.3c,Solve Problems Involving Percents +236208,131,6.RP.A.3c,Solve Problems Involving Percents +262990,131,6.RP.A.3c,Solve Problems Involving Percents +78711,131,6.RP.A.3c,Solve Problems Involving Percents +263336,131,6.RP.A.3c,Solve Problems Involving Percents +272713,131,6.RP.A.3c,Solve Problems Involving Percents +271030,131,6.RP.A.3c,Solve Problems Involving Percents +143860,131,6.RP.A.3c,Solve Problems Involving Percents +497698,131,6.RP.A.3c,Solve Problems Involving Percents +73922,131,6.RP.A.3c,Solve Problems Involving Percents +365680,131,6.RP.A.3c,Solve Problems Involving Percents +127673,131,6.RP.A.3c,Solve Problems Involving Percents +164198,131,6.RP.A.3c,Solve Problems Involving Percents +174579,131,6.RP.A.3c,Solve Problems Involving Percents +10342,131,6.RP.A.3c,Solve Problems Involving Percents +382388,131,6.RP.A.3c,Solve Problems Involving Percents +228118,131,6.RP.A.3c,Solve Problems Involving Percents +110306,132,6.RP.A.3c,Solve Problems Involving Percents +119836,132,6.RP.A.3c,Solve Problems Involving Percents +365680,132,6.RP.A.3c,Solve Problems Involving Percents +35357,132,6.RP.A.3c,Solve Problems Involving Percents +172957,132,6.RP.A.3c,Solve Problems Involving Percents +119704,132,6.RP.A.3c,Solve Problems Involving Percents +119945,132,6.RP.A.3c,Solve Problems Involving Percents +221668,132,6.RP.A.3c,Solve Problems Involving Percents +361669,132,6.RP.A.3c,Solve Problems Involving Percents +222018,132,6.RP.A.3c,Solve Problems Involving Percents +10241,132,6.RP.A.3c,Solve Problems Involving Percents +31188,132,6.RP.A.3c,Solve Problems Involving Percents +325149,132,6.RP.A.3c,Solve Problems Involving Percents +361789,132,6.RP.A.3c,Solve Problems Involving Percents +240555,132,6.RP.A.3c,Solve Problems Involving Percents +320133,132,6.RP.A.3c,Solve Problems Involving Percents +142055,132,6.RP.A.3c,Solve Problems Involving Percents +113478,132,6.RP.A.3c,Solve Problems Involving Percents +560450,132,6.RP.A.3c,Solve Problems Involving Percents +111728,132,6.RP.A.3c,Solve Problems Involving Percents +271394,132,6.RP.A.3c,Solve Problems Involving Percents +323049,132,6.RP.A.3c,Solve Problems Involving Percents +10342,132,6.RP.A.3c,Solve Problems Involving Percents +3852,132,6.RP.A.3c,Solve Problems Involving Percents +33334,132,6.RP.A.3c,Solve Problems Involving Percents +221830,132,6.RP.A.3c,Solve Problems Involving Percents +45372,132,6.RP.A.3c,Solve Problems Involving Percents +496354,132,6.RP.A.3c,Solve Problems Involving Percents +33021,132,6.RP.A.3c,Solve Problems Involving Percents +45043,132,6.RP.A.3c,Solve Problems Involving Percents +150918,133,6.RP.A.3c,Solve Problems Involving Percents +31856,133,6.RP.A.3c,Solve Problems Involving Percents +114889,133,6.RP.A.3c,Solve Problems Involving Percents +497669,133,6.RP.A.3c,Solve Problems Involving Percents +407530,133,6.RP.A.3c,Solve Problems Involving Percents +407150,133,6.RP.A.3c,Solve Problems Involving Percents +33653,133,6.RP.A.3c,Solve Problems Involving Percents +407285,133,6.RP.A.3c,Solve Problems Involving Percents +132871,133,6.RP.A.3c,Solve Problems Involving Percents +114762,133,6.RP.A.3c,Solve Problems Involving Percents +407421,133,6.RP.A.3c,Solve Problems Involving Percents +133098,133,6.RP.A.3c,Solve Problems Involving Percents +115027,133,6.RP.A.3c,Solve Problems Involving Percents +114644,133,6.RP.A.3c,Solve Problems Involving Percents +171809,134,6.RP.A.3d,Use Ratios to Convert Measurement Units +3578,134,6.RP.A.3d,Use Ratios to Convert Measurement Units +272435,134,6.RP.A.3d,Use Ratios to Convert Measurement Units +11608,134,6.RP.A.3d,Use Ratios to Convert Measurement Units +14371,134,6.RP.A.3d,Use Ratios to Convert Measurement Units +393738,134,6.RP.A.3d,Use Ratios to Convert Measurement Units +212537,134,6.RP.A.3d,Use Ratios to Convert Measurement Units +42715,134,6.RP.A.3d,Use Ratios to Convert Measurement Units +394746,134,6.RP.A.3d,Use Ratios to Convert Measurement Units +393425,134,6.RP.A.3d,Use Ratios to Convert Measurement Units +18501,134,6.RP.A.3d,Use Ratios to Convert Measurement Units +272220,134,6.RP.A.3d,Use Ratios to Convert Measurement Units +319877,134,6.RP.A.3d,Use Ratios to Convert Measurement Units +29501,134,6.RP.A.3d,Use Ratios to Convert Measurement Units +14554,134,6.RP.A.3d,Use Ratios to Convert Measurement Units +394101,134,6.RP.A.3d,Use Ratios to Convert Measurement Units +350310,134,6.RP.A.3d,Use Ratios to Convert Measurement Units +213216,134,6.RP.A.3d,Use Ratios to Convert Measurement Units +394487,134,6.RP.A.3d,Use Ratios to Convert Measurement Units +212653,134,6.RP.A.3d,Use Ratios to Convert Measurement Units +213954,134,6.RP.A.3d,Use Ratios to Convert Measurement Units +98240,134,6.RP.A.3d,Use Ratios to Convert Measurement Units +79597,134,6.RP.A.3d,Use Ratios to Convert Measurement Units +14257,134,6.RP.A.3d,Use Ratios to Convert Measurement Units +57665,134,6.RP.A.3d,Use Ratios to Convert Measurement Units +319813,134,6.RP.A.3d,Use Ratios to Convert Measurement Units +42388,134,6.RP.A.3d,Use Ratios to Convert Measurement Units +42486,134,6.RP.A.3d,Use Ratios to Convert Measurement Units +559856,134,6.RP.A.3d,Use Ratios to Convert Measurement Units +212942,134,6.RP.A.3d,Use Ratios to Convert Measurement Units +163759,135,6.NS.A.1,Interpret & Compute using Division of Fractions +20000,135,6.NS.A.1,Interpret & Compute using Division of Fractions +320253,135,6.NS.A.1,Interpret & Compute using Division of Fractions +490707,135,6.NS.A.1,Interpret & Compute using Division of Fractions +557055,135,6.NS.A.1,Interpret & Compute using Division of Fractions +320033,135,6.NS.A.1,Interpret & Compute using Division of Fractions +319914,135,6.NS.A.1,Interpret & Compute using Division of Fractions +21032,135,6.NS.A.1,Interpret & Compute using Division of Fractions +163575,135,6.NS.A.1,Interpret & Compute using Division of Fractions +517428,135,6.NS.A.1,Interpret & Compute using Division of Fractions +37956,135,6.NS.A.1,Interpret & Compute using Division of Fractions +37276,135,6.NS.A.1,Interpret & Compute using Division of Fractions +515041,135,6.NS.A.1,Interpret & Compute using Division of Fractions +201709,135,6.NS.A.1,Interpret & Compute using Division of Fractions +36501,135,6.NS.A.1,Interpret & Compute using Division of Fractions +275405,135,6.NS.A.1,Interpret & Compute using Division of Fractions +37735,135,6.NS.A.1,Interpret & Compute using Division of Fractions +288230,135,6.NS.A.1,Interpret & Compute using Division of Fractions +111092,135,6.NS.A.1,Interpret & Compute using Division of Fractions +91335,135,6.NS.A.1,Interpret & Compute using Division of Fractions +36911,135,6.NS.A.1,Interpret & Compute using Division of Fractions +277226,135,6.NS.A.1,Interpret & Compute using Division of Fractions +44687,135,6.NS.A.1,Interpret & Compute using Division of Fractions +201829,135,6.NS.A.1,Interpret & Compute using Division of Fractions +44207,135,6.NS.A.1,Interpret & Compute using Division of Fractions +275212,135,6.NS.A.1,Interpret & Compute using Division of Fractions +576579,135,6.NS.A.1,Interpret & Compute using Division of Fractions +576243,135,6.NS.A.1,Interpret & Compute using Division of Fractions +45097,135,6.NS.A.1,Interpret & Compute using Division of Fractions +350118,135,6.NS.A.1,Interpret & Compute using Division of Fractions +351102,135,6.NS.A.1,Interpret & Compute using Division of Fractions +349260,135,6.NS.A.1,Interpret & Compute using Division of Fractions +35549,135,6.NS.A.1,Interpret & Compute using Division of Fractions +201571,135,6.NS.A.1,Interpret & Compute using Division of Fractions +46664,135,6.NS.A.1,Interpret & Compute using Division of Fractions +288530,135,6.NS.A.1,Interpret & Compute using Division of Fractions +287888,135,6.NS.A.1,Interpret & Compute using Division of Fractions +349546,135,6.NS.A.1,Interpret & Compute using Division of Fractions +45479,135,6.NS.A.1,Interpret & Compute using Division of Fractions +264456,135,6.NS.A.1,Interpret & Compute using Division of Fractions +416720,135,6.NS.A.1,Interpret & Compute using Division of Fractions +263940,135,6.NS.A.1,Interpret & Compute using Division of Fractions +264639,135,6.NS.A.1,Interpret & Compute using Division of Fractions +263156,135,6.NS.A.1,Interpret & Compute using Division of Fractions +264344,135,6.NS.A.1,Interpret & Compute using Division of Fractions +264992,135,6.NS.A.1,Interpret & Compute using Division of Fractions +263570,135,6.NS.A.1,Interpret & Compute using Division of Fractions +261929,135,6.NS.A.1,Interpret & Compute using Division of Fractions +36743,135,6.NS.A.1,Interpret & Compute using Division of Fractions +262501,135,6.NS.A.1,Interpret & Compute using Division of Fractions +277396,135,6.NS.A.1,Interpret & Compute using Division of Fractions +263466,135,6.NS.A.1,Interpret & Compute using Division of Fractions +288005,135,6.NS.A.1,Interpret & Compute using Division of Fractions +35817,135,6.NS.A.1,Interpret & Compute using Division of Fractions +518589,135,6.NS.A.1,Interpret & Compute using Division of Fractions +262837,135,6.NS.A.1,Interpret & Compute using Division of Fractions +10794,135,6.NS.A.1,Interpret & Compute using Division of Fractions +263960,135,6.NS.A.1,Interpret & Compute using Division of Fractions +514446,135,6.NS.A.1,Interpret & Compute using Division of Fractions +348977,135,6.NS.A.1,Interpret & Compute using Division of Fractions +125069,135,6.NS.A.1,Interpret & Compute using Division of Fractions +36318,135,6.NS.A.1,Interpret & Compute using Division of Fractions +477073,135,6.NS.A.1,Interpret & Compute using Division of Fractions +262987,135,6.NS.A.1,Interpret & Compute using Division of Fractions +125391,135,6.NS.A.1,Interpret & Compute using Division of Fractions +417385,135,6.NS.A.1,Interpret & Compute using Division of Fractions +415185,135,6.NS.A.1,Interpret & Compute using Division of Fractions +126203,135,6.NS.A.1,Interpret & Compute using Division of Fractions +469563,135,6.NS.A.1,Interpret & Compute using Division of Fractions +522821,135,6.NS.A.1,Interpret & Compute using Division of Fractions +127330,135,6.NS.A.1,Interpret & Compute using Division of Fractions +414393,135,6.NS.A.1,Interpret & Compute using Division of Fractions +414757,135,6.NS.A.1,Interpret & Compute using Division of Fractions +131258,135,6.NS.A.1,Interpret & Compute using Division of Fractions +86400,135,6.NS.A.1,Interpret & Compute using Division of Fractions +184230,135,6.NS.A.1,Interpret & Compute using Division of Fractions +417173,135,6.NS.A.1,Interpret & Compute using Division of Fractions +416968,135,6.NS.A.1,Interpret & Compute using Division of Fractions +287627,135,6.NS.A.1,Interpret & Compute using Division of Fractions +476732,135,6.NS.A.1,Interpret & Compute using Division of Fractions +184060,135,6.NS.A.1,Interpret & Compute using Division of Fractions +587537,135,6.NS.A.1,Interpret & Compute using Division of Fractions +518845,135,6.NS.A.1,Interpret & Compute using Division of Fractions +517656,135,6.NS.A.1,Interpret & Compute using Division of Fractions +407357,135,6.NS.A.1,Interpret & Compute using Division of Fractions +132330,135,6.NS.A.1,Interpret & Compute using Division of Fractions +131386,135,6.NS.A.1,Interpret & Compute using Division of Fractions +131506,135,6.NS.A.1,Interpret & Compute using Division of Fractions +182148,135,6.NS.A.1,Interpret & Compute using Division of Fractions +183695,135,6.NS.A.1,Interpret & Compute using Division of Fractions +588744,135,6.NS.A.1,Interpret & Compute using Division of Fractions +130932,135,6.NS.A.1,Interpret & Compute using Division of Fractions +182258,135,6.NS.A.1,Interpret & Compute using Division of Fractions +81470,135,6.NS.A.1,Interpret & Compute using Division of Fractions +407929,135,6.NS.A.1,Interpret & Compute using Division of Fractions +588423,135,6.NS.A.1,Interpret & Compute using Division of Fractions +183784,135,6.NS.A.1,Interpret & Compute using Division of Fractions +183482,135,6.NS.A.1,Interpret & Compute using Division of Fractions +518730,135,6.NS.A.1,Interpret & Compute using Division of Fractions +407757,135,6.NS.A.1,Interpret & Compute using Division of Fractions +218311,135,6.NS.A.1,Interpret & Compute using Division of Fractions +218537,135,6.NS.A.1,Interpret & Compute using Division of Fractions +81228,135,6.NS.A.1,Interpret & Compute using Division of Fractions +182395,135,6.NS.A.1,Interpret & Compute using Division of Fractions +588631,135,6.NS.A.1,Interpret & Compute using Division of Fractions +518962,135,6.NS.A.1,Interpret & Compute using Division of Fractions +218191,135,6.NS.A.1,Interpret & Compute using Division of Fractions +588511,135,6.NS.A.1,Interpret & Compute using Division of Fractions +81337,135,6.NS.A.1,Interpret & Compute using Division of Fractions +521139,135,6.NS.A.1,Interpret & Compute using Division of Fractions +243534,135,6.NS.A.1,Interpret & Compute using Division of Fractions +199749,135,6.NS.A.1,Interpret & Compute using Division of Fractions +242767,135,6.NS.A.1,Interpret & Compute using Division of Fractions +243888,135,6.NS.A.1,Interpret & Compute using Division of Fractions +564260,135,6.NS.A.1,Interpret & Compute using Division of Fractions +287470,135,6.NS.A.1,Interpret & Compute using Division of Fractions +243107,135,6.NS.A.1,Interpret & Compute using Division of Fractions +563384,135,6.NS.A.1,Interpret & Compute using Division of Fractions +594494,135,6.NS.A.1,Interpret & Compute using Division of Fractions +243693,135,6.NS.A.1,Interpret & Compute using Division of Fractions +511103,135,6.NS.A.1,Interpret & Compute using Division of Fractions +77264,135,6.NS.A.1,Interpret & Compute using Division of Fractions +76458,135,6.NS.A.1,Interpret & Compute using Division of Fractions +242498,135,6.NS.A.1,Interpret & Compute using Division of Fractions +243402,135,6.NS.A.1,Interpret & Compute using Division of Fractions +242315,135,6.NS.A.1,Interpret & Compute using Division of Fractions +241877,135,6.NS.A.1,Interpret & Compute using Division of Fractions +562131,135,6.NS.A.1,Interpret & Compute using Division of Fractions +561849,135,6.NS.A.1,Interpret & Compute using Division of Fractions +76591,135,6.NS.A.1,Interpret & Compute using Division of Fractions +77616,135,6.NS.A.1,Interpret & Compute using Division of Fractions +349832,135,6.NS.A.1,Interpret & Compute using Division of Fractions +311,135,6.NS.A.1,Interpret & Compute using Division of Fractions +76716,135,6.NS.A.1,Interpret & Compute using Division of Fractions +103383,135,6.NS.A.1,Interpret & Compute using Division of Fractions +318942,135,6.NS.A.1,Interpret & Compute using Division of Fractions +21767,135,6.NS.A.1,Interpret & Compute using Division of Fractions +238362,135,6.NS.A.1,Interpret & Compute using Division of Fractions +320140,135,6.NS.A.1,Interpret & Compute using Division of Fractions +319778,135,6.NS.A.1,Interpret & Compute using Division of Fractions +20500,135,6.NS.A.1,Interpret & Compute using Division of Fractions +20916,135,6.NS.A.1,Interpret & Compute using Division of Fractions +20788,135,6.NS.A.1,Interpret & Compute using Division of Fractions +318653,135,6.NS.A.1,Interpret & Compute using Division of Fractions +319507,135,6.NS.A.1,Interpret & Compute using Division of Fractions +319658,135,6.NS.A.1,Interpret & Compute using Division of Fractions +156504,136,6.NS.B.2,Divide Multi-Digit Whole Numbers +126648,136,6.NS.B.2,Divide Multi-Digit Whole Numbers +92479,136,6.NS.B.2,Divide Multi-Digit Whole Numbers +62644,136,6.NS.B.2,Divide Multi-Digit Whole Numbers +262449,136,6.NS.B.2,Divide Multi-Digit Whole Numbers +354320,136,6.NS.B.2,Divide Multi-Digit Whole Numbers +204595,136,6.NS.B.2,Divide Multi-Digit Whole Numbers +490267,136,6.NS.B.2,Divide Multi-Digit Whole Numbers +93346,136,6.NS.B.2,Divide Multi-Digit Whole Numbers +102028,136,6.NS.B.2,Divide Multi-Digit Whole Numbers +262674,136,6.NS.B.2,Divide Multi-Digit Whole Numbers +204768,136,6.NS.B.2,Divide Multi-Digit Whole Numbers +204459,136,6.NS.B.2,Divide Multi-Digit Whole Numbers +278232,136,6.NS.B.2,Divide Multi-Digit Whole Numbers +103383,136,6.NS.B.2,Divide Multi-Digit Whole Numbers +590968,136,6.NS.B.2,Divide Multi-Digit Whole Numbers +133100,136,6.NS.B.2,Divide Multi-Digit Whole Numbers +591069,136,6.NS.B.2,Divide Multi-Digit Whole Numbers +473981,136,6.NS.B.2,Divide Multi-Digit Whole Numbers +590738,136,6.NS.B.2,Divide Multi-Digit Whole Numbers +590413,136,6.NS.B.2,Divide Multi-Digit Whole Numbers +505947,136,6.NS.B.2,Divide Multi-Digit Whole Numbers +92124,136,6.NS.B.2,Divide Multi-Digit Whole Numbers +515874,136,6.NS.B.2,Divide Multi-Digit Whole Numbers +215013,136,6.NS.B.2,Divide Multi-Digit Whole Numbers +278455,136,6.NS.B.2,Divide Multi-Digit Whole Numbers +137305,136,6.NS.B.2,Divide Multi-Digit Whole Numbers +203679,136,6.NS.B.2,Divide Multi-Digit Whole Numbers +92835,136,6.NS.B.2,Divide Multi-Digit Whole Numbers +62040,137,6.NS.B.3,"Add, Subtract, Multiply & Divide Multi-Digit Decimals" +7096,137,6.NS.B.3,"Add, Subtract, Multiply & Divide Multi-Digit Decimals" +319310,137,6.NS.B.3,"Add, Subtract, Multiply & Divide Multi-Digit Decimals" +249213,137,6.NS.B.3,"Add, Subtract, Multiply & Divide Multi-Digit Decimals" +8347,137,6.NS.B.3,"Add, Subtract, Multiply & Divide Multi-Digit Decimals" +249867,137,6.NS.B.3,"Add, Subtract, Multiply & Divide Multi-Digit Decimals" +8869,137,6.NS.B.3,"Add, Subtract, Multiply & Divide Multi-Digit Decimals" +9017,137,6.NS.B.3,"Add, Subtract, Multiply & Divide Multi-Digit Decimals" +249667,137,6.NS.B.3,"Add, Subtract, Multiply & Divide Multi-Digit Decimals" +71526,137,6.NS.B.3,"Add, Subtract, Multiply & Divide Multi-Digit Decimals" +69196,137,6.NS.B.3,"Add, Subtract, Multiply & Divide Multi-Digit Decimals" +8476,137,6.NS.B.3,"Add, Subtract, Multiply & Divide Multi-Digit Decimals" +9184,137,6.NS.B.3,"Add, Subtract, Multiply & Divide Multi-Digit Decimals" +154867,137,6.NS.B.3,"Add, Subtract, Multiply & Divide Multi-Digit Decimals" +61905,137,6.NS.B.3,"Add, Subtract, Multiply & Divide Multi-Digit Decimals" +277881,137,6.NS.B.3,"Add, Subtract, Multiply & Divide Multi-Digit Decimals" +61764,137,6.NS.B.3,"Add, Subtract, Multiply & Divide Multi-Digit Decimals" +8476,138,6.NS.B.3,"Add, Subtract, Multiply & Divide Multi-Digit Decimals" +70629,138,6.NS.B.3,"Add, Subtract, Multiply & Divide Multi-Digit Decimals" +197306,138,6.NS.B.3,"Add, Subtract, Multiply & Divide Multi-Digit Decimals" +70299,138,6.NS.B.3,"Add, Subtract, Multiply & Divide Multi-Digit Decimals" +305101,138,6.NS.B.3,"Add, Subtract, Multiply & Divide Multi-Digit Decimals" +277053,138,6.NS.B.3,"Add, Subtract, Multiply & Divide Multi-Digit Decimals" +405351,138,6.NS.B.3,"Add, Subtract, Multiply & Divide Multi-Digit Decimals" +470590,138,6.NS.B.3,"Add, Subtract, Multiply & Divide Multi-Digit Decimals" +274984,138,6.NS.B.3,"Add, Subtract, Multiply & Divide Multi-Digit Decimals" +274077,138,6.NS.B.3,"Add, Subtract, Multiply & Divide Multi-Digit Decimals" +275825,138,6.NS.B.3,"Add, Subtract, Multiply & Divide Multi-Digit Decimals" +61764,138,6.NS.B.3,"Add, Subtract, Multiply & Divide Multi-Digit Decimals" +204143,138,6.NS.B.3,"Add, Subtract, Multiply & Divide Multi-Digit Decimals" +71223,138,6.NS.B.3,"Add, Subtract, Multiply & Divide Multi-Digit Decimals" +7207,138,6.NS.B.3,"Add, Subtract, Multiply & Divide Multi-Digit Decimals" +276696,138,6.NS.B.3,"Add, Subtract, Multiply & Divide Multi-Digit Decimals" +94160,138,6.NS.B.3,"Add, Subtract, Multiply & Divide Multi-Digit Decimals" +7369,138,6.NS.B.3,"Add, Subtract, Multiply & Divide Multi-Digit Decimals" +94419,138,6.NS.B.3,"Add, Subtract, Multiply & Divide Multi-Digit Decimals" +7710,138,6.NS.B.3,"Add, Subtract, Multiply & Divide Multi-Digit Decimals" +273109,138,6.NS.B.3,"Add, Subtract, Multiply & Divide Multi-Digit Decimals" +94291,138,6.NS.B.3,"Add, Subtract, Multiply & Divide Multi-Digit Decimals" +197603,138,6.NS.B.3,"Add, Subtract, Multiply & Divide Multi-Digit Decimals" +304746,138,6.NS.B.3,"Add, Subtract, Multiply & Divide Multi-Digit Decimals" +273482,138,6.NS.B.3,"Add, Subtract, Multiply & Divide Multi-Digit Decimals" +70102,138,6.NS.B.3,"Add, Subtract, Multiply & Divide Multi-Digit Decimals" +70912,138,6.NS.B.3,"Add, Subtract, Multiply & Divide Multi-Digit Decimals" +273269,138,6.NS.B.3,"Add, Subtract, Multiply & Divide Multi-Digit Decimals" +8064,138,6.NS.B.3,"Add, Subtract, Multiply & Divide Multi-Digit Decimals" +61905,138,6.NS.B.3,"Add, Subtract, Multiply & Divide Multi-Digit Decimals" +273819,138,6.NS.B.3,"Add, Subtract, Multiply & Divide Multi-Digit Decimals" +470213,138,6.NS.B.3,"Add, Subtract, Multiply & Divide Multi-Digit Decimals" +273482,139,6.NS.B.3,"Add, Subtract, Multiply & Divide Multi-Digit Decimals" +465121,139,6.NS.B.3,"Add, Subtract, Multiply & Divide Multi-Digit Decimals" +14749,139,6.NS.B.3,"Add, Subtract, Multiply & Divide Multi-Digit Decimals" +8234,139,6.NS.B.3,"Add, Subtract, Multiply & Divide Multi-Digit Decimals" +354320,139,6.NS.B.3,"Add, Subtract, Multiply & Divide Multi-Digit Decimals" +60703,139,6.NS.B.3,"Add, Subtract, Multiply & Divide Multi-Digit Decimals" +10467,139,6.NS.B.3,"Add, Subtract, Multiply & Divide Multi-Digit Decimals" +88,139,6.NS.B.3,"Add, Subtract, Multiply & Divide Multi-Digit Decimals" +156407,139,6.NS.B.3,"Add, Subtract, Multiply & Divide Multi-Digit Decimals" +132787,139,6.NS.B.3,"Add, Subtract, Multiply & Divide Multi-Digit Decimals" +342597,139,6.NS.B.3,"Add, Subtract, Multiply & Divide Multi-Digit Decimals" +342329,139,6.NS.B.3,"Add, Subtract, Multiply & Divide Multi-Digit Decimals" +75189,139,6.NS.B.3,"Add, Subtract, Multiply & Divide Multi-Digit Decimals" +45068,139,6.NS.B.3,"Add, Subtract, Multiply & Divide Multi-Digit Decimals" +77299,139,6.NS.B.3,"Add, Subtract, Multiply & Divide Multi-Digit Decimals" +342865,139,6.NS.B.3,"Add, Subtract, Multiply & Divide Multi-Digit Decimals" +342027,139,6.NS.B.3,"Add, Subtract, Multiply & Divide Multi-Digit Decimals" +91787,139,6.NS.B.3,"Add, Subtract, Multiply & Divide Multi-Digit Decimals" +8563,139,6.NS.B.3,"Add, Subtract, Multiply & Divide Multi-Digit Decimals" +7381,139,6.NS.B.3,"Add, Subtract, Multiply & Divide Multi-Digit Decimals" +8540,139,6.NS.B.3,"Add, Subtract, Multiply & Divide Multi-Digit Decimals" +204910,139,6.NS.B.3,"Add, Subtract, Multiply & Divide Multi-Digit Decimals" +273819,139,6.NS.B.3,"Add, Subtract, Multiply & Divide Multi-Digit Decimals" +61617,139,6.NS.B.3,"Add, Subtract, Multiply & Divide Multi-Digit Decimals" +343161,139,6.NS.B.3,"Add, Subtract, Multiply & Divide Multi-Digit Decimals" +81898,139,6.NS.B.3,"Add, Subtract, Multiply & Divide Multi-Digit Decimals" +77578,139,6.NS.B.3,"Add, Subtract, Multiply & Divide Multi-Digit Decimals" +15038,139,6.NS.B.3,"Add, Subtract, Multiply & Divide Multi-Digit Decimals" +403777,139,6.NS.B.3,"Add, Subtract, Multiply & Divide Multi-Digit Decimals" +403421,139,6.NS.B.3,"Add, Subtract, Multiply & Divide Multi-Digit Decimals" +8390,139,6.NS.B.3,"Add, Subtract, Multiply & Divide Multi-Digit Decimals" +8659,139,6.NS.B.3,"Add, Subtract, Multiply & Divide Multi-Digit Decimals" +181356,139,6.NS.B.3,"Add, Subtract, Multiply & Divide Multi-Digit Decimals" +180865,139,6.NS.B.3,"Add, Subtract, Multiply & Divide Multi-Digit Decimals" +405944,139,6.NS.B.3,"Add, Subtract, Multiply & Divide Multi-Digit Decimals" +273269,139,6.NS.B.3,"Add, Subtract, Multiply & Divide Multi-Digit Decimals" +156504,139,6.NS.B.3,"Add, Subtract, Multiply & Divide Multi-Digit Decimals" +343445,139,6.NS.B.3,"Add, Subtract, Multiply & Divide Multi-Digit Decimals" +138228,139,6.NS.B.3,"Add, Subtract, Multiply & Divide Multi-Digit Decimals" +10585,139,6.NS.B.3,"Add, Subtract, Multiply & Divide Multi-Digit Decimals" +81543,139,6.NS.B.3,"Add, Subtract, Multiply & Divide Multi-Digit Decimals" +274077,139,6.NS.B.3,"Add, Subtract, Multiply & Divide Multi-Digit Decimals" +130191,139,6.NS.B.3,"Add, Subtract, Multiply & Divide Multi-Digit Decimals" +215152,139,6.NS.B.3,"Add, Subtract, Multiply & Divide Multi-Digit Decimals" +77861,139,6.NS.B.3,"Add, Subtract, Multiply & Divide Multi-Digit Decimals" +273109,139,6.NS.B.3,"Add, Subtract, Multiply & Divide Multi-Digit Decimals" +181066,139,6.NS.B.3,"Add, Subtract, Multiply & Divide Multi-Digit Decimals" +75309,139,6.NS.B.3,"Add, Subtract, Multiply & Divide Multi-Digit Decimals" +81261,139,6.NS.B.3,"Add, Subtract, Multiply & Divide Multi-Digit Decimals" +117528,140,6.NS.B.3,"Add, Subtract, Multiply & Divide Multi-Digit Decimals" +272660,140,6.NS.B.3,"Add, Subtract, Multiply & Divide Multi-Digit Decimals" +273049,140,6.NS.B.3,"Add, Subtract, Multiply & Divide Multi-Digit Decimals" +117994,140,6.NS.B.3,"Add, Subtract, Multiply & Divide Multi-Digit Decimals" +278232,140,6.NS.B.3,"Add, Subtract, Multiply & Divide Multi-Digit Decimals" +117735,140,6.NS.B.3,"Add, Subtract, Multiply & Divide Multi-Digit Decimals" +118786,140,6.NS.B.3,"Add, Subtract, Multiply & Divide Multi-Digit Decimals" +126091,140,6.NS.B.3,"Add, Subtract, Multiply & Divide Multi-Digit Decimals" +262087,140,6.NS.B.3,"Add, Subtract, Multiply & Divide Multi-Digit Decimals" +126362,140,6.NS.B.3,"Add, Subtract, Multiply & Divide Multi-Digit Decimals" +127324,140,6.NS.B.3,"Add, Subtract, Multiply & Divide Multi-Digit Decimals" +505841,140,6.NS.B.3,"Add, Subtract, Multiply & Divide Multi-Digit Decimals" +412825,140,6.NS.B.3,"Add, Subtract, Multiply & Divide Multi-Digit Decimals" +126628,140,6.NS.B.3,"Add, Subtract, Multiply & Divide Multi-Digit Decimals" +590847,140,6.NS.B.3,"Add, Subtract, Multiply & Divide Multi-Digit Decimals" +262715,140,6.NS.B.3,"Add, Subtract, Multiply & Divide Multi-Digit Decimals" +134242,140,6.NS.B.3,"Add, Subtract, Multiply & Divide Multi-Digit Decimals" +591069,140,6.NS.B.3,"Add, Subtract, Multiply & Divide Multi-Digit Decimals" +132551,140,6.NS.B.3,"Add, Subtract, Multiply & Divide Multi-Digit Decimals" +590968,140,6.NS.B.3,"Add, Subtract, Multiply & Divide Multi-Digit Decimals" +590738,140,6.NS.B.3,"Add, Subtract, Multiply & Divide Multi-Digit Decimals" +137139,140,6.NS.B.3,"Add, Subtract, Multiply & Divide Multi-Digit Decimals" +136828,140,6.NS.B.3,"Add, Subtract, Multiply & Divide Multi-Digit Decimals" +137016,140,6.NS.B.3,"Add, Subtract, Multiply & Divide Multi-Digit Decimals" +81543,140,6.NS.B.3,"Add, Subtract, Multiply & Divide Multi-Digit Decimals" +81261,140,6.NS.B.3,"Add, Subtract, Multiply & Divide Multi-Digit Decimals" +78269,140,6.NS.B.3,"Add, Subtract, Multiply & Divide Multi-Digit Decimals" +22078,140,6.NS.B.3,"Add, Subtract, Multiply & Divide Multi-Digit Decimals" +22349,140,6.NS.B.3,"Add, Subtract, Multiply & Divide Multi-Digit Decimals" +641896,140,6.NS.B.3,"Add, Subtract, Multiply & Divide Multi-Digit Decimals" +222661,140,6.NS.B.3,"Add, Subtract, Multiply & Divide Multi-Digit Decimals" +278455,140,6.NS.B.3,"Add, Subtract, Multiply & Divide Multi-Digit Decimals" +277925,140,6.NS.B.3,"Add, Subtract, Multiply & Divide Multi-Digit Decimals" +46049,140,6.NS.B.3,"Add, Subtract, Multiply & Divide Multi-Digit Decimals" +45439,140,6.NS.B.3,"Add, Subtract, Multiply & Divide Multi-Digit Decimals" +351353,140,6.NS.B.3,"Add, Subtract, Multiply & Divide Multi-Digit Decimals" +278345,140,6.NS.B.3,"Add, Subtract, Multiply & Divide Multi-Digit Decimals" +45750,140,6.NS.B.3,"Add, Subtract, Multiply & Divide Multi-Digit Decimals" +436594,141,6.NS.B.4,Find Common Factors & Multiples +436482,141,6.NS.B.4,Find Common Factors & Multiples +437180,141,6.NS.B.4,Find Common Factors & Multiples +436921,141,6.NS.B.4,Find Common Factors & Multiples +92677,141,6.NS.B.4,Find Common Factors & Multiples +436717,141,6.NS.B.4,Find Common Factors & Multiples +437042,141,6.NS.B.4,Find Common Factors & Multiples +436208,141,6.NS.B.4,Find Common Factors & Multiples +414444,141,6.NS.B.4,Find Common Factors & Multiples +92361,141,6.NS.B.4,Find Common Factors & Multiples +414639,141,6.NS.B.4,Find Common Factors & Multiples +261290,141,6.NS.B.4,Find Common Factors & Multiples +414817,141,6.NS.B.4,Find Common Factors & Multiples +90903,142,6.NS.B.4,Find Common Factors & Multiples +592258,142,6.NS.B.4,Find Common Factors & Multiples +489519,142,6.NS.B.4,Find Common Factors & Multiples +90598,142,6.NS.B.4,Find Common Factors & Multiples +238849,142,6.NS.B.4,Find Common Factors & Multiples +591850,142,6.NS.B.4,Find Common Factors & Multiples +91177,142,6.NS.B.4,Find Common Factors & Multiples +91453,142,6.NS.B.4,Find Common Factors & Multiples +489770,142,6.NS.B.4,Find Common Factors & Multiples +92518,142,6.NS.B.4,Find Common Factors & Multiples +592027,142,6.NS.B.4,Find Common Factors & Multiples +92677,142,6.NS.B.4,Find Common Factors & Multiples +355558,142,6.NS.B.4,Find Common Factors & Multiples +324197,144,6.NS.B.4,Find Common Factors & Multiples +410833,144,6.NS.B.4,Find Common Factors & Multiples +324258,144,6.NS.B.4,Find Common Factors & Multiples +49409,144,6.NS.B.4,Find Common Factors & Multiples +66602,145,6.NS.C.5,Use Positive & Negative Numbers to Represent Quantities +171657,145,6.NS.C.5,Use Positive & Negative Numbers to Represent Quantities +153519,145,6.NS.C.5,Use Positive & Negative Numbers to Represent Quantities +354803,145,6.NS.C.5,Use Positive & Negative Numbers to Represent Quantities +355654,145,6.NS.C.5,Use Positive & Negative Numbers to Represent Quantities +122792,145,6.NS.C.5,Use Positive & Negative Numbers to Represent Quantities +62772,145,6.NS.C.5,Use Positive & Negative Numbers to Represent Quantities +195577,145,6.NS.C.5,Use Positive & Negative Numbers to Represent Quantities +409535,145,6.NS.C.5,Use Positive & Negative Numbers to Represent Quantities +354353,145,6.NS.C.5,Use Positive & Negative Numbers to Represent Quantities +48097,145,6.NS.C.5,Use Positive & Negative Numbers to Represent Quantities +198077,145,6.NS.C.5,Use Positive & Negative Numbers to Represent Quantities +66748,145,6.NS.C.5,Use Positive & Negative Numbers to Represent Quantities +197878,145,6.NS.C.5,Use Positive & Negative Numbers to Represent Quantities +236452,145,6.NS.C.5,Use Positive & Negative Numbers to Represent Quantities +154138,145,6.NS.C.5,Use Positive & Negative Numbers to Represent Quantities +353939,145,6.NS.C.5,Use Positive & Negative Numbers to Represent Quantities +187169,145,6.NS.C.5,Use Positive & Negative Numbers to Represent Quantities +153861,145,6.NS.C.5,Use Positive & Negative Numbers to Represent Quantities +355221,145,6.NS.C.5,Use Positive & Negative Numbers to Represent Quantities +117788,145,6.NS.C.5,Use Positive & Negative Numbers to Represent Quantities +197626,145,6.NS.C.5,Use Positive & Negative Numbers to Represent Quantities +9624,145,6.NS.C.5,Use Positive & Negative Numbers to Represent Quantities +9946,145,6.NS.C.5,Use Positive & Negative Numbers to Represent Quantities +171270,145,6.NS.C.5,Use Positive & Negative Numbers to Represent Quantities +198319,145,6.NS.C.5,Use Positive & Negative Numbers to Represent Quantities +10141,145,6.NS.C.5,Use Positive & Negative Numbers to Represent Quantities +63725,145,6.NS.C.5,Use Positive & Negative Numbers to Represent Quantities +373578,145,6.NS.C.5,Use Positive & Negative Numbers to Represent Quantities +195392,145,6.NS.C.5,Use Positive & Negative Numbers to Represent Quantities +236567,145,6.NS.C.5,Use Positive & Negative Numbers to Represent Quantities +118176,145,6.NS.C.5,Use Positive & Negative Numbers to Represent Quantities +117977,145,6.NS.C.5,Use Positive & Negative Numbers to Represent Quantities +66472,145,6.NS.C.5,Use Positive & Negative Numbers to Represent Quantities +195675,145,6.NS.C.5,Use Positive & Negative Numbers to Represent Quantities +522388,145,6.NS.C.5,Use Positive & Negative Numbers to Represent Quantities +123053,145,6.NS.C.5,Use Positive & Negative Numbers to Represent Quantities +254122,147,6.NS.C.6a,Identify Opposites of Integers +355221,147,6.NS.C.6a,Identify Opposites of Integers +354353,147,6.NS.C.6a,Identify Opposites of Integers +353939,147,6.NS.C.6a,Identify Opposites of Integers +354803,147,6.NS.C.6a,Identify Opposites of Integers +39966,147,6.NS.C.6a,Identify Opposites of Integers +64016,149,6.NS.C.6c,Plot Integers Points on a Number Line & Coordinate Planes +385260,149,6.NS.C.6c,Plot Integers Points on a Number Line & Coordinate Planes +19594,149,6.NS.C.6c,Plot Integers Points on a Number Line & Coordinate Planes +63205,149,6.NS.C.6c,Plot Integers Points on a Number Line & Coordinate Planes +63054,149,6.NS.C.6c,Plot Integers Points on a Number Line & Coordinate Planes +406337,149,6.NS.C.6c,Plot Integers Points on a Number Line & Coordinate Planes +5125,149,6.NS.C.6c,Plot Integers Points on a Number Line & Coordinate Planes +32363,149,6.NS.C.6c,Plot Integers Points on a Number Line & Coordinate Planes +49246,149,6.NS.C.6c,Plot Integers Points on a Number Line & Coordinate Planes +356879,149,6.NS.C.6c,Plot Integers Points on a Number Line & Coordinate Planes +32600,149,6.NS.C.6c,Plot Integers Points on a Number Line & Coordinate Planes +337576,149,6.NS.C.6c,Plot Integers Points on a Number Line & Coordinate Planes +202997,149,6.NS.C.6c,Plot Integers Points on a Number Line & Coordinate Planes +69186,149,6.NS.C.6c,Plot Integers Points on a Number Line & Coordinate Planes +86693,151,6.NS.C.7a,Interpret & Compare Integers Using a Number Line +28640,151,6.NS.C.7a,Interpret & Compare Integers Using a Number Line +427265,151,6.NS.C.7a,Interpret & Compare Integers Using a Number Line +457584,151,6.NS.C.7a,Interpret & Compare Integers Using a Number Line +426918,151,6.NS.C.7a,Interpret & Compare Integers Using a Number Line +5429,151,6.NS.C.7a,Interpret & Compare Integers Using a Number Line +191727,151,6.NS.C.7a,Interpret & Compare Integers Using a Number Line +457920,151,6.NS.C.7a,Interpret & Compare Integers Using a Number Line +426185,151,6.NS.C.7a,Interpret & Compare Integers Using a Number Line +426543,151,6.NS.C.7a,Interpret & Compare Integers Using a Number Line +20763,151,6.NS.C.7a,Interpret & Compare Integers Using a Number Line +522597,151,6.NS.C.7a,Interpret & Compare Integers Using a Number Line +428161,151,6.NS.C.7a,Interpret & Compare Integers Using a Number Line +205980,151,6.NS.C.7a,Interpret & Compare Integers Using a Number Line +371766,151,6.NS.C.7a,Interpret & Compare Integers Using a Number Line +6476,151,6.NS.C.7a,Interpret & Compare Integers Using a Number Line +356660,151,6.NS.C.7a,Interpret & Compare Integers Using a Number Line +5669,152,6.NS.C.7b,Interpret & Compare Rational Numbers in Real-World Contexts +518807,152,6.NS.C.7b,Interpret & Compare Rational Numbers in Real-World Contexts +254509,152,6.NS.C.7b,Interpret & Compare Rational Numbers in Real-World Contexts +236733,152,6.NS.C.7b,Interpret & Compare Rational Numbers in Real-World Contexts +218498,152,6.NS.C.7b,Interpret & Compare Rational Numbers in Real-World Contexts +48097,152,6.NS.C.7b,Interpret & Compare Rational Numbers in Real-World Contexts +518347,152,6.NS.C.7b,Interpret & Compare Rational Numbers in Real-World Contexts +518599,152,6.NS.C.7b,Interpret & Compare Rational Numbers in Real-World Contexts +409535,152,6.NS.C.7b,Interpret & Compare Rational Numbers in Real-World Contexts +522597,152,6.NS.C.7b,Interpret & Compare Rational Numbers in Real-World Contexts +135943,153,6.NS.C.7c,Understand & Interpret Absolute Value +49529,153,6.NS.C.7c,Understand & Interpret Absolute Value +356457,153,6.NS.C.7c,Understand & Interpret Absolute Value +136203,153,6.NS.C.7c,Understand & Interpret Absolute Value +458234,153,6.NS.C.7c,Understand & Interpret Absolute Value +458552,153,6.NS.C.7c,Understand & Interpret Absolute Value +6158,153,6.NS.C.7c,Understand & Interpret Absolute Value +254509,154,6.NS.C.7d,Understand & Interpret Absolute Value in Real-World Contexts +6346,154,6.NS.C.7d,Understand & Interpret Absolute Value in Real-World Contexts +17938,155,6.NS.C.8,Solve Real-World Problems by Graphing on a Coordinate Plane +1910,155,6.NS.C.8,Solve Real-World Problems by Graphing on a Coordinate Plane +3724,155,6.NS.C.8,Solve Real-World Problems by Graphing on a Coordinate Plane +430244,155,6.NS.C.8,Solve Real-World Problems by Graphing on a Coordinate Plane +132573,155,6.NS.C.8,Solve Real-World Problems by Graphing on a Coordinate Plane +324288,155,6.NS.C.8,Solve Real-World Problems by Graphing on a Coordinate Plane +486785,155,6.NS.C.8,Solve Real-World Problems by Graphing on a Coordinate Plane +17631,155,6.NS.C.8,Solve Real-World Problems by Graphing on a Coordinate Plane +17786,155,6.NS.C.8,Solve Real-World Problems by Graphing on a Coordinate Plane +19594,155,6.NS.C.8,Solve Real-World Problems by Graphing on a Coordinate Plane +137129,155,6.NS.C.8,Solve Real-World Problems by Graphing on a Coordinate Plane +238060,155,6.NS.C.8,Solve Real-World Problems by Graphing on a Coordinate Plane +523482,155,6.NS.C.8,Solve Real-World Problems by Graphing on a Coordinate Plane +3634,155,6.NS.C.8,Solve Real-World Problems by Graphing on a Coordinate Plane +503178,156,6.EE.A.1,Write & Evaluate Numerical Expressions with Exponents +198552,156,6.EE.A.1,Write & Evaluate Numerical Expressions with Exponents +247781,156,6.EE.A.1,Write & Evaluate Numerical Expressions with Exponents +198429,156,6.EE.A.1,Write & Evaluate Numerical Expressions with Exponents +348715,156,6.EE.A.1,Write & Evaluate Numerical Expressions with Exponents +350322,156,6.EE.A.1,Write & Evaluate Numerical Expressions with Exponents +46539,156,6.EE.A.1,Write & Evaluate Numerical Expressions with Exponents +348833,156,6.EE.A.1,Write & Evaluate Numerical Expressions with Exponents +46924,156,6.EE.A.1,Write & Evaluate Numerical Expressions with Exponents +435477,156,6.EE.A.1,Write & Evaluate Numerical Expressions with Exponents +97579,156,6.EE.A.1,Write & Evaluate Numerical Expressions with Exponents +44696,156,6.EE.A.1,Write & Evaluate Numerical Expressions with Exponents +46683,156,6.EE.A.1,Write & Evaluate Numerical Expressions with Exponents +350462,156,6.EE.A.1,Write & Evaluate Numerical Expressions with Exponents +46425,156,6.EE.A.1,Write & Evaluate Numerical Expressions with Exponents +46285,156,6.EE.A.1,Write & Evaluate Numerical Expressions with Exponents +46811,156,6.EE.A.1,Write & Evaluate Numerical Expressions with Exponents +48302,156,6.EE.A.1,Write & Evaluate Numerical Expressions with Exponents +337576,156,6.EE.A.1,Write & Evaluate Numerical Expressions with Exponents +48123,156,6.EE.A.1,Write & Evaluate Numerical Expressions with Exponents +427314,156,6.EE.A.1,Write & Evaluate Numerical Expressions with Exponents +425797,156,6.EE.A.1,Write & Evaluate Numerical Expressions with Exponents +427433,156,6.EE.A.1,Write & Evaluate Numerical Expressions with Exponents +425926,156,6.EE.A.1,Write & Evaluate Numerical Expressions with Exponents +89104,156,6.EE.A.1,Write & Evaluate Numerical Expressions with Exponents +296064,156,6.EE.A.1,Write & Evaluate Numerical Expressions with Exponents +557307,156,6.EE.A.1,Write & Evaluate Numerical Expressions with Exponents +59107,156,6.EE.A.1,Write & Evaluate Numerical Expressions with Exponents +295642,156,6.EE.A.1,Write & Evaluate Numerical Expressions with Exponents +58258,156,6.EE.A.1,Write & Evaluate Numerical Expressions with Exponents +221748,156,6.EE.A.1,Write & Evaluate Numerical Expressions with Exponents +119400,156,6.EE.A.1,Write & Evaluate Numerical Expressions with Exponents +295883,156,6.EE.A.1,Write & Evaluate Numerical Expressions with Exponents +297160,156,6.EE.A.1,Write & Evaluate Numerical Expressions with Exponents +88806,156,6.EE.A.1,Write & Evaluate Numerical Expressions with Exponents +558716,156,6.EE.A.1,Write & Evaluate Numerical Expressions with Exponents +89321,156,6.EE.A.1,Write & Evaluate Numerical Expressions with Exponents +506037,156,6.EE.A.1,Write & Evaluate Numerical Expressions with Exponents +373136,156,6.EE.A.1,Write & Evaluate Numerical Expressions with Exponents +557481,156,6.EE.A.1,Write & Evaluate Numerical Expressions with Exponents +86962,156,6.EE.A.1,Write & Evaluate Numerical Expressions with Exponents +297477,156,6.EE.A.1,Write & Evaluate Numerical Expressions with Exponents +86722,156,6.EE.A.1,Write & Evaluate Numerical Expressions with Exponents +85308,156,6.EE.A.1,Write & Evaluate Numerical Expressions with Exponents +84944,156,6.EE.A.1,Write & Evaluate Numerical Expressions with Exponents +20908,156,6.EE.A.1,Write & Evaluate Numerical Expressions with Exponents +128141,156,6.EE.A.1,Write & Evaluate Numerical Expressions with Exponents +87135,156,6.EE.A.1,Write & Evaluate Numerical Expressions with Exponents +21399,156,6.EE.A.1,Write & Evaluate Numerical Expressions with Exponents +228008,156,6.EE.A.1,Write & Evaluate Numerical Expressions with Exponents +228402,156,6.EE.A.1,Write & Evaluate Numerical Expressions with Exponents +228808,156,6.EE.A.1,Write & Evaluate Numerical Expressions with Exponents +128547,156,6.EE.A.1,Write & Evaluate Numerical Expressions with Exponents +128322,156,6.EE.A.1,Write & Evaluate Numerical Expressions with Exponents +230550,156,6.EE.A.1,Write & Evaluate Numerical Expressions with Exponents +229909,156,6.EE.A.1,Write & Evaluate Numerical Expressions with Exponents +21258,156,6.EE.A.1,Write & Evaluate Numerical Expressions with Exponents +231607,156,6.EE.A.1,Write & Evaluate Numerical Expressions with Exponents +229517,156,6.EE.A.1,Write & Evaluate Numerical Expressions with Exponents +230244,156,6.EE.A.1,Write & Evaluate Numerical Expressions with Exponents +229183,156,6.EE.A.1,Write & Evaluate Numerical Expressions with Exponents +21076,156,6.EE.A.1,Write & Evaluate Numerical Expressions with Exponents +156590,156,6.EE.A.1,Write & Evaluate Numerical Expressions with Exponents +503038,156,6.EE.A.1,Write & Evaluate Numerical Expressions with Exponents +133477,156,6.EE.A.1,Write & Evaluate Numerical Expressions with Exponents +404191,156,6.EE.A.1,Write & Evaluate Numerical Expressions with Exponents +404451,156,6.EE.A.1,Write & Evaluate Numerical Expressions with Exponents +21595,156,6.EE.A.1,Write & Evaluate Numerical Expressions with Exponents +404343,156,6.EE.A.1,Write & Evaluate Numerical Expressions with Exponents +307185,156,6.EE.A.1,Write & Evaluate Numerical Expressions with Exponents +501827,156,6.EE.A.1,Write & Evaluate Numerical Expressions with Exponents +83709,156,6.EE.A.1,Write & Evaluate Numerical Expressions with Exponents +141384,156,6.EE.A.1,Write & Evaluate Numerical Expressions with Exponents +247608,156,6.EE.A.1,Write & Evaluate Numerical Expressions with Exponents +501955,156,6.EE.A.1,Write & Evaluate Numerical Expressions with Exponents +247357,156,6.EE.A.1,Write & Evaluate Numerical Expressions with Exponents +46101,158,6.EE.A.2a,Write Expressions with Numbers & Variables +605052,158,6.EE.A.2a,Write Expressions with Numbers & Variables +47649,158,6.EE.A.2a,Write Expressions with Numbers & Variables +189985,158,6.EE.A.2a,Write Expressions with Numbers & Variables +604967,158,6.EE.A.2a,Write Expressions with Numbers & Variables +668776,158,6.EE.A.2a,Write Expressions with Numbers & Variables +367186,158,6.EE.A.2a,Write Expressions with Numbers & Variables +19255,158,6.EE.A.2a,Write Expressions with Numbers & Variables +426116,159,6.EE.A.2b,Identify Parts of an Expression +349167,159,6.EE.A.2b,Identify Parts of an Expression +349044,159,6.EE.A.2b,Identify Parts of an Expression +426220,159,6.EE.A.2b,Identify Parts of an Expression +605052,159,6.EE.A.2b,Identify Parts of an Expression +604967,159,6.EE.A.2b,Identify Parts of an Expression +207,160,6.EE.A.2c,Evaluate Expression in Real-World Context +425926,160,6.EE.A.2c,Evaluate Expression in Real-World Context +668776,160,6.EE.A.2c,Evaluate Expression in Real-World Context +312,160,6.EE.A.2c,Evaluate Expression in Real-World Context +93,160,6.EE.A.2c,Evaluate Expression in Real-World Context +348833,160,6.EE.A.2c,Evaluate Expression in Real-World Context +604967,160,6.EE.A.2c,Evaluate Expression in Real-World Context +425797,160,6.EE.A.2c,Evaluate Expression in Real-World Context +348715,160,6.EE.A.2c,Evaluate Expression in Real-World Context +605052,160,6.EE.A.2c,Evaluate Expression in Real-World Context +372951,161,6.EE.A.2c,Evaluate Expression in Real-World Context +372761,161,6.EE.A.2c,Evaluate Expression in Real-World Context +46711,161,6.EE.A.2c,Evaluate Expression in Real-World Context +373740,161,6.EE.A.2c,Evaluate Expression in Real-World Context +46527,161,6.EE.A.2c,Evaluate Expression in Real-World Context +47109,161,6.EE.A.2c,Evaluate Expression in Real-World Context +373537,161,6.EE.A.2c,Evaluate Expression in Real-World Context +47479,161,6.EE.A.2c,Evaluate Expression in Real-World Context +373325,161,6.EE.A.2c,Evaluate Expression in Real-World Context +46909,161,6.EE.A.2c,Evaluate Expression in Real-World Context +47289,161,6.EE.A.2c,Evaluate Expression in Real-World Context +46338,161,6.EE.A.2c,Evaluate Expression in Real-World Context +53138,162,6.EE.A.3,Generate Equivalent Expressions using Properties of Operations +94031,162,6.EE.A.3,Generate Equivalent Expressions using Properties of Operations +33992,162,6.EE.A.3,Generate Equivalent Expressions using Properties of Operations +56749,162,6.EE.A.3,Generate Equivalent Expressions using Properties of Operations +110609,162,6.EE.A.3,Generate Equivalent Expressions using Properties of Operations +349044,162,6.EE.A.3,Generate Equivalent Expressions using Properties of Operations +35877,162,6.EE.A.3,Generate Equivalent Expressions using Properties of Operations +538288,162,6.EE.A.3,Generate Equivalent Expressions using Properties of Operations +93868,162,6.EE.A.3,Generate Equivalent Expressions using Properties of Operations +195291,162,6.EE.A.3,Generate Equivalent Expressions using Properties of Operations +367311,162,6.EE.A.3,Generate Equivalent Expressions using Properties of Operations +6876,162,6.EE.A.3,Generate Equivalent Expressions using Properties of Operations +94199,162,6.EE.A.3,Generate Equivalent Expressions using Properties of Operations +349167,162,6.EE.A.3,Generate Equivalent Expressions using Properties of Operations +298817,162,6.EE.A.3,Generate Equivalent Expressions using Properties of Operations +35781,162,6.EE.A.3,Generate Equivalent Expressions using Properties of Operations +350591,162,6.EE.A.3,Generate Equivalent Expressions using Properties of Operations +69182,162,6.EE.A.3,Generate Equivalent Expressions using Properties of Operations +498737,162,6.EE.A.3,Generate Equivalent Expressions using Properties of Operations +426220,162,6.EE.A.3,Generate Equivalent Expressions using Properties of Operations +426116,162,6.EE.A.3,Generate Equivalent Expressions using Properties of Operations +113030,162,6.EE.A.3,Generate Equivalent Expressions using Properties of Operations +189623,162,6.EE.A.3,Generate Equivalent Expressions using Properties of Operations +186704,162,6.EE.A.3,Generate Equivalent Expressions using Properties of Operations +52890,162,6.EE.A.3,Generate Equivalent Expressions using Properties of Operations +184709,162,6.EE.A.3,Generate Equivalent Expressions using Properties of Operations +427575,163,6.EE.A.4,Identify Equivalent Expressions +70516,163,6.EE.A.4,Identify Equivalent Expressions +189763,163,6.EE.A.4,Identify Equivalent Expressions +609697,163,6.EE.A.4,Identify Equivalent Expressions +350591,163,6.EE.A.4,Identify Equivalent Expressions +270175,163,6.EE.A.4,Identify Equivalent Expressions +362327,163,6.EE.A.4,Identify Equivalent Expressions +35632,163,6.EE.A.4,Identify Equivalent Expressions +84110,163,6.EE.A.4,Identify Equivalent Expressions +270010,163,6.EE.A.4,Identify Equivalent Expressions +56749,163,6.EE.A.4,Identify Equivalent Expressions +367311,163,6.EE.A.4,Identify Equivalent Expressions +84517,163,6.EE.A.4,Identify Equivalent Expressions +21566,163,6.EE.A.4,Identify Equivalent Expressions +296344,163,6.EE.A.4,Identify Equivalent Expressions +541977,163,6.EE.A.4,Identify Equivalent Expressions +50267,164,6.EE.B.5,Solve 1-Step Equations & Inequalities Using Substitution +194547,164,6.EE.B.5,Solve 1-Step Equations & Inequalities Using Substitution +510935,164,6.EE.B.5,Solve 1-Step Equations & Inequalities Using Substitution +361147,164,6.EE.B.5,Solve 1-Step Equations & Inequalities Using Substitution +121352,164,6.EE.B.5,Solve 1-Step Equations & Inequalities Using Substitution +50865,164,6.EE.B.5,Solve 1-Step Equations & Inequalities Using Substitution +50477,164,6.EE.B.5,Solve 1-Step Equations & Inequalities Using Substitution +112678,164,6.EE.B.5,Solve 1-Step Equations & Inequalities Using Substitution +56477,164,6.EE.B.5,Solve 1-Step Equations & Inequalities Using Substitution +112511,164,6.EE.B.5,Solve 1-Step Equations & Inequalities Using Substitution +130824,164,6.EE.B.5,Solve 1-Step Equations & Inequalities Using Substitution +367058,164,6.EE.B.5,Solve 1-Step Equations & Inequalities Using Substitution +112350,164,6.EE.B.5,Solve 1-Step Equations & Inequalities Using Substitution +360938,164,6.EE.B.5,Solve 1-Step Equations & Inequalities Using Substitution +293965,164,6.EE.B.5,Solve 1-Step Equations & Inequalities Using Substitution +50674,164,6.EE.B.5,Solve 1-Step Equations & Inequalities Using Substitution +195193,164,6.EE.B.5,Solve 1-Step Equations & Inequalities Using Substitution +113676,164,6.EE.B.5,Solve 1-Step Equations & Inequalities Using Substitution +109056,164,6.EE.B.5,Solve 1-Step Equations & Inequalities Using Substitution +50042,164,6.EE.B.5,Solve 1-Step Equations & Inequalities Using Substitution +361805,164,6.EE.B.5,Solve 1-Step Equations & Inequalities Using Substitution +293491,164,6.EE.B.5,Solve 1-Step Equations & Inequalities Using Substitution +179454,164,6.EE.B.5,Solve 1-Step Equations & Inequalities Using Substitution +361341,164,6.EE.B.5,Solve 1-Step Equations & Inequalities Using Substitution +109501,164,6.EE.B.5,Solve 1-Step Equations & Inequalities Using Substitution +361546,164,6.EE.B.5,Solve 1-Step Equations & Inequalities Using Substitution +130584,164,6.EE.B.5,Solve 1-Step Equations & Inequalities Using Substitution +109387,164,6.EE.B.5,Solve 1-Step Equations & Inequalities Using Substitution +109628,164,6.EE.B.5,Solve 1-Step Equations & Inequalities Using Substitution +244242,165,6.EE.B.6,Write Expressions with Variables to Solve Problems +187657,165,6.EE.B.6,Write Expressions with Variables to Solve Problems +406364,165,6.EE.B.6,Write Expressions with Variables to Solve Problems +406161,165,6.EE.B.6,Write Expressions with Variables to Solve Problems +55944,165,6.EE.B.6,Write Expressions with Variables to Solve Problems +406962,165,6.EE.B.6,Write Expressions with Variables to Solve Problems +54562,165,6.EE.B.6,Write Expressions with Variables to Solve Problems +677527,165,6.EE.B.6,Write Expressions with Variables to Solve Problems +123623,165,6.EE.B.6,Write Expressions with Variables to Solve Problems +54441,165,6.EE.B.6,Write Expressions with Variables to Solve Problems +556824,165,6.EE.B.6,Write Expressions with Variables to Solve Problems +366543,165,6.EE.B.6,Write Expressions with Variables to Solve Problems +187859,165,6.EE.B.6,Write Expressions with Variables to Solve Problems +19761,165,6.EE.B.6,Write Expressions with Variables to Solve Problems +19879,165,6.EE.B.6,Write Expressions with Variables to Solve Problems +365152,165,6.EE.B.6,Write Expressions with Variables to Solve Problems +78941,165,6.EE.B.6,Write Expressions with Variables to Solve Problems +15120,165,6.EE.B.6,Write Expressions with Variables to Solve Problems +198406,165,6.EE.B.6,Write Expressions with Variables to Solve Problems +15569,165,6.EE.B.6,Write Expressions with Variables to Solve Problems +407575,165,6.EE.B.6,Write Expressions with Variables to Solve Problems +364872,165,6.EE.B.6,Write Expressions with Variables to Solve Problems +406771,165,6.EE.B.6,Write Expressions with Variables to Solve Problems +206088,165,6.EE.B.6,Write Expressions with Variables to Solve Problems +407444,165,6.EE.B.6,Write Expressions with Variables to Solve Problems +155072,165,6.EE.B.6,Write Expressions with Variables to Solve Problems +206599,165,6.EE.B.6,Write Expressions with Variables to Solve Problems +406643,165,6.EE.B.6,Write Expressions with Variables to Solve Problems +15414,165,6.EE.B.6,Write Expressions with Variables to Solve Problems +407163,165,6.EE.B.6,Write Expressions with Variables to Solve Problems +198693,165,6.EE.B.6,Write Expressions with Variables to Solve Problems +80072,165,6.EE.B.6,Write Expressions with Variables to Solve Problems +198805,165,6.EE.B.6,Write Expressions with Variables to Solve Problems +229303,165,6.EE.B.6,Write Expressions with Variables to Solve Problems +155237,165,6.EE.B.6,Write Expressions with Variables to Solve Problems +229143,165,6.EE.B.6,Write Expressions with Variables to Solve Problems +677544,165,6.EE.B.6,Write Expressions with Variables to Solve Problems +15269,165,6.EE.B.6,Write Expressions with Variables to Solve Problems +677536,165,6.EE.B.6,Write Expressions with Variables to Solve Problems +87743,165,6.EE.B.6,Write Expressions with Variables to Solve Problems +54317,165,6.EE.B.6,Write Expressions with Variables to Solve Problems +207052,165,6.EE.B.6,Write Expressions with Variables to Solve Problems +54666,165,6.EE.B.6,Write Expressions with Variables to Solve Problems +365306,165,6.EE.B.6,Write Expressions with Variables to Solve Problems +228800,165,6.EE.B.6,Write Expressions with Variables to Solve Problems +198295,165,6.EE.B.6,Write Expressions with Variables to Solve Problems +365017,165,6.EE.B.6,Write Expressions with Variables to Solve Problems +228973,165,6.EE.B.6,Write Expressions with Variables to Solve Problems +292292,166,6.EE.B.7,Write & Solve 1-Step Equations +197182,166,6.EE.B.7,Write & Solve 1-Step Equations +74581,166,6.EE.B.7,Write & Solve 1-Step Equations +196505,166,6.EE.B.7,Write & Solve 1-Step Equations +292175,166,6.EE.B.7,Write & Solve 1-Step Equations +179341,166,6.EE.B.7,Write & Solve 1-Step Equations +407444,166,6.EE.B.7,Write & Solve 1-Step Equations +61779,166,6.EE.B.7,Write & Solve 1-Step Equations +198295,166,6.EE.B.7,Write & Solve 1-Step Equations +367186,166,6.EE.B.7,Write & Solve 1-Step Equations +298057,166,6.EE.B.7,Write & Solve 1-Step Equations +110852,166,6.EE.B.7,Write & Solve 1-Step Equations +298258,166,6.EE.B.7,Write & Solve 1-Step Equations +407163,166,6.EE.B.7,Write & Solve 1-Step Equations +223118,166,6.EE.B.7,Write & Solve 1-Step Equations +74258,166,6.EE.B.7,Write & Solve 1-Step Equations +178686,166,6.EE.B.7,Write & Solve 1-Step Equations +406643,166,6.EE.B.7,Write & Solve 1-Step Equations +366764,166,6.EE.B.7,Write & Solve 1-Step Equations +74416,166,6.EE.B.7,Write & Solve 1-Step Equations +298444,166,6.EE.B.7,Write & Solve 1-Step Equations +54317,166,6.EE.B.7,Write & Solve 1-Step Equations +406161,166,6.EE.B.7,Write & Solve 1-Step Equations +406364,166,6.EE.B.7,Write & Solve 1-Step Equations +179089,166,6.EE.B.7,Write & Solve 1-Step Equations +366543,166,6.EE.B.7,Write & Solve 1-Step Equations +122576,166,6.EE.B.7,Write & Solve 1-Step Equations +196111,166,6.EE.B.7,Write & Solve 1-Step Equations +74735,166,6.EE.B.7,Write & Solve 1-Step Equations +54666,166,6.EE.B.7,Write & Solve 1-Step Equations +54562,166,6.EE.B.7,Write & Solve 1-Step Equations +365017,166,6.EE.B.7,Write & Solve 1-Step Equations +178835,166,6.EE.B.7,Write & Solve 1-Step Equations +122450,166,6.EE.B.7,Write & Solve 1-Step Equations +142047,166,6.EE.B.7,Write & Solve 1-Step Equations +179212,166,6.EE.B.7,Write & Solve 1-Step Equations +222789,166,6.EE.B.7,Write & Solve 1-Step Equations +365152,166,6.EE.B.7,Write & Solve 1-Step Equations +56163,166,6.EE.B.7,Write & Solve 1-Step Equations +206901,166,6.EE.B.7,Write & Solve 1-Step Equations +196907,166,6.EE.B.7,Write & Solve 1-Step Equations +206730,166,6.EE.B.7,Write & Solve 1-Step Equations +406771,166,6.EE.B.7,Write & Solve 1-Step Equations +350665,166,6.EE.B.7,Write & Solve 1-Step Equations +198805,166,6.EE.B.7,Write & Solve 1-Step Equations +56614,166,6.EE.B.7,Write & Solve 1-Step Equations +64813,166,6.EE.B.7,Write & Solve 1-Step Equations +407575,166,6.EE.B.7,Write & Solve 1-Step Equations +61624,166,6.EE.B.7,Write & Solve 1-Step Equations +55067,166,6.EE.B.7,Write & Solve 1-Step Equations +64410,166,6.EE.B.7,Write & Solve 1-Step Equations +64605,166,6.EE.B.7,Write & Solve 1-Step Equations +47917,166,6.EE.B.7,Write & Solve 1-Step Equations +64054,166,6.EE.B.7,Write & Solve 1-Step Equations +223323,166,6.EE.B.7,Write & Solve 1-Step Equations +606133,166,6.EE.B.7,Write & Solve 1-Step Equations +178963,166,6.EE.B.7,Write & Solve 1-Step Equations +48838,166,6.EE.B.7,Write & Solve 1-Step Equations +141837,166,6.EE.B.7,Write & Solve 1-Step Equations +64237,166,6.EE.B.7,Write & Solve 1-Step Equations +406962,166,6.EE.B.7,Write & Solve 1-Step Equations +198693,166,6.EE.B.7,Write & Solve 1-Step Equations +198406,166,6.EE.B.7,Write & Solve 1-Step Equations +73717,166,6.EE.B.7,Write & Solve 1-Step Equations +73585,166,6.EE.B.7,Write & Solve 1-Step Equations +73287,166,6.EE.B.7,Write & Solve 1-Step Equations +178406,166,6.EE.B.7,Write & Solve 1-Step Equations +122331,166,6.EE.B.7,Write & Solve 1-Step Equations +223535,166,6.EE.B.7,Write & Solve 1-Step Equations +178546,166,6.EE.B.7,Write & Solve 1-Step Equations +73275,166,6.EE.B.7,Write & Solve 1-Step Equations +222907,166,6.EE.B.7,Write & Solve 1-Step Equations +73395,166,6.EE.B.7,Write & Solve 1-Step Equations +364872,166,6.EE.B.7,Write & Solve 1-Step Equations +54441,166,6.EE.B.7,Write & Solve 1-Step Equations +365306,166,6.EE.B.7,Write & Solve 1-Step Equations +444018,166,6.EE.B.7,Write & Solve 1-Step Equations +298615,166,6.EE.B.7,Write & Solve 1-Step Equations +159146,167,6.EE.B.8,Write Simple Inequalities to Represent a Condition +362112,167,6.EE.B.8,Write Simple Inequalities to Represent a Condition +62003,167,6.EE.B.8,Write Simple Inequalities to Represent a Condition +227043,167,6.EE.B.8,Write Simple Inequalities to Represent a Condition +262820,167,6.EE.B.8,Write Simple Inequalities to Represent a Condition +227828,167,6.EE.B.8,Write Simple Inequalities to Represent a Condition +410688,167,6.EE.B.8,Write Simple Inequalities to Represent a Condition +177985,167,6.EE.B.8,Write Simple Inequalities to Represent a Condition +175861,167,6.EE.B.8,Write Simple Inequalities to Represent a Condition +228072,167,6.EE.B.8,Write Simple Inequalities to Represent a Condition +2951,167,6.EE.B.8,Write Simple Inequalities to Represent a Condition +159292,167,6.EE.B.8,Write Simple Inequalities to Represent a Condition +175247,167,6.EE.B.8,Write Simple Inequalities to Represent a Condition +3858,167,6.EE.B.8,Write Simple Inequalities to Represent a Condition +227553,167,6.EE.B.8,Write Simple Inequalities to Represent a Condition +228382,167,6.EE.B.8,Write Simple Inequalities to Represent a Condition +43771,168,6.EE.C.9,Write & Analyze Relationships Between Dependent & Independent Variables +44015,168,6.EE.C.9,Write & Analyze Relationships Between Dependent & Independent Variables +63146,168,6.EE.C.9,Write & Analyze Relationships Between Dependent & Independent Variables +68783,168,6.EE.C.9,Write & Analyze Relationships Between Dependent & Independent Variables +68963,168,6.EE.C.9,Write & Analyze Relationships Between Dependent & Independent Variables +20430,168,6.EE.C.9,Write & Analyze Relationships Between Dependent & Independent Variables +18187,168,6.EE.C.9,Write & Analyze Relationships Between Dependent & Independent Variables +18301,168,6.EE.C.9,Write & Analyze Relationships Between Dependent & Independent Variables +19984,168,6.EE.C.9,Write & Analyze Relationships Between Dependent & Independent Variables +426461,168,6.EE.C.9,Write & Analyze Relationships Between Dependent & Independent Variables +96224,168,6.EE.C.9,Write & Analyze Relationships Between Dependent & Independent Variables +426575,168,6.EE.C.9,Write & Analyze Relationships Between Dependent & Independent Variables +96079,168,6.EE.C.9,Write & Analyze Relationships Between Dependent & Independent Variables +68783,169,6.EE.C.9,Write & Analyze Relationships Between Dependent & Independent Variables +349368,169,6.EE.C.9,Write & Analyze Relationships Between Dependent & Independent Variables +105867,169,6.EE.C.9,Write & Analyze Relationships Between Dependent & Independent Variables +349505,169,6.EE.C.9,Write & Analyze Relationships Between Dependent & Independent Variables +68963,169,6.EE.C.9,Write & Analyze Relationships Between Dependent & Independent Variables +60015,169,6.EE.C.9,Write & Analyze Relationships Between Dependent & Independent Variables +63340,169,6.EE.C.9,Write & Analyze Relationships Between Dependent & Independent Variables +276338,170,6.G.A.1,"Find the Area of Triangles, Quadrilaterals & Polygons" +24929,170,6.G.A.1,"Find the Area of Triangles, Quadrilaterals & Polygons" +503274,170,6.G.A.1,"Find the Area of Triangles, Quadrilaterals & Polygons" +150868,170,6.G.A.1,"Find the Area of Triangles, Quadrilaterals & Polygons" +501827,170,6.G.A.1,"Find the Area of Triangles, Quadrilaterals & Polygons" +150514,170,6.G.A.1,"Find the Area of Triangles, Quadrilaterals & Polygons" +383037,170,6.G.A.1,"Find the Area of Triangles, Quadrilaterals & Polygons" +227577,170,6.G.A.1,"Find the Area of Triangles, Quadrilaterals & Polygons" +372037,170,6.G.A.1,"Find the Area of Triangles, Quadrilaterals & Polygons" +145962,170,6.G.A.1,"Find the Area of Triangles, Quadrilaterals & Polygons" +383334,170,6.G.A.1,"Find the Area of Triangles, Quadrilaterals & Polygons" +149451,170,6.G.A.1,"Find the Area of Triangles, Quadrilaterals & Polygons" +403617,170,6.G.A.1,"Find the Area of Triangles, Quadrilaterals & Polygons" +501955,170,6.G.A.1,"Find the Area of Triangles, Quadrilaterals & Polygons" +173259,170,6.G.A.1,"Find the Area of Triangles, Quadrilaterals & Polygons" +89233,170,6.G.A.1,"Find the Area of Triangles, Quadrilaterals & Polygons" +37379,170,6.G.A.1,"Find the Area of Triangles, Quadrilaterals & Polygons" +47557,170,6.G.A.1,"Find the Area of Triangles, Quadrilaterals & Polygons" +444018,170,6.G.A.1,"Find the Area of Triangles, Quadrilaterals & Polygons" +276196,170,6.G.A.1,"Find the Area of Triangles, Quadrilaterals & Polygons" +287214,170,6.G.A.1,"Find the Area of Triangles, Quadrilaterals & Polygons" +276480,170,6.G.A.1,"Find the Area of Triangles, Quadrilaterals & Polygons" +24639,170,6.G.A.1,"Find the Area of Triangles, Quadrilaterals & Polygons" +383524,170,6.G.A.1,"Find the Area of Triangles, Quadrilaterals & Polygons" +273241,170,6.G.A.1,"Find the Area of Triangles, Quadrilaterals & Polygons" +88316,170,6.G.A.1,"Find the Area of Triangles, Quadrilaterals & Polygons" +346945,170,6.G.A.1,"Find the Area of Triangles, Quadrilaterals & Polygons" +266614,170,6.G.A.1,"Find the Area of Triangles, Quadrilaterals & Polygons" +276040,170,6.G.A.1,"Find the Area of Triangles, Quadrilaterals & Polygons" +149829,170,6.G.A.1,"Find the Area of Triangles, Quadrilaterals & Polygons" +10047,170,6.G.A.1,"Find the Area of Triangles, Quadrilaterals & Polygons" +89569,170,6.G.A.1,"Find the Area of Triangles, Quadrilaterals & Polygons" +26348,170,6.G.A.1,"Find the Area of Triangles, Quadrilaterals & Polygons" +390139,170,6.G.A.1,"Find the Area of Triangles, Quadrilaterals & Polygons" +54527,170,6.G.A.1,"Find the Area of Triangles, Quadrilaterals & Polygons" +150161,170,6.G.A.1,"Find the Area of Triangles, Quadrilaterals & Polygons" +336859,170,6.G.A.1,"Find the Area of Triangles, Quadrilaterals & Polygons" +557307,171,6.G.A.1,"Find the Area of Triangles, Quadrilaterals & Polygons" +383961,171,6.G.A.1,"Find the Area of Triangles, Quadrilaterals & Polygons" +503799,171,6.G.A.1,"Find the Area of Triangles, Quadrilaterals & Polygons" +383708,171,6.G.A.1,"Find the Area of Triangles, Quadrilaterals & Polygons" +375982,171,6.G.A.1,"Find the Area of Triangles, Quadrilaterals & Polygons" +347199,171,6.G.A.1,"Find the Area of Triangles, Quadrilaterals & Polygons" +10364,171,6.G.A.1,"Find the Area of Triangles, Quadrilaterals & Polygons" +10254,171,6.G.A.1,"Find the Area of Triangles, Quadrilaterals & Polygons" +97230,171,6.G.A.1,"Find the Area of Triangles, Quadrilaterals & Polygons" +88950,171,6.G.A.1,"Find the Area of Triangles, Quadrilaterals & Polygons" +504115,171,6.G.A.1,"Find the Area of Triangles, Quadrilaterals & Polygons" +42515,171,6.G.A.1,"Find the Area of Triangles, Quadrilaterals & Polygons" +565173,171,6.G.A.1,"Find the Area of Triangles, Quadrilaterals & Polygons" +503653,171,6.G.A.1,"Find the Area of Triangles, Quadrilaterals & Polygons" +201855,171,6.G.A.1,"Find the Area of Triangles, Quadrilaterals & Polygons" +25226,171,6.G.A.1,"Find the Area of Triangles, Quadrilaterals & Polygons" +557481,171,6.G.A.1,"Find the Area of Triangles, Quadrilaterals & Polygons" +375655,171,6.G.A.1,"Find the Area of Triangles, Quadrilaterals & Polygons" +42671,171,6.G.A.1,"Find the Area of Triangles, Quadrilaterals & Polygons" +433197,171,6.G.A.1,"Find the Area of Triangles, Quadrilaterals & Polygons" +566156,171,6.G.A.1,"Find the Area of Triangles, Quadrilaterals & Polygons" +24293,171,6.G.A.1,"Find the Area of Triangles, Quadrilaterals & Polygons" +42913,171,6.G.A.1,"Find the Area of Triangles, Quadrilaterals & Polygons" +503982,171,6.G.A.1,"Find the Area of Triangles, Quadrilaterals & Polygons" +668776,171,6.G.A.1,"Find the Area of Triangles, Quadrilaterals & Polygons" +42371,171,6.G.A.1,"Find the Area of Triangles, Quadrilaterals & Polygons" +43170,171,6.G.A.1,"Find the Area of Triangles, Quadrilaterals & Polygons" +14144,171,6.G.A.1,"Find the Area of Triangles, Quadrilaterals & Polygons" +565046,171,6.G.A.1,"Find the Area of Triangles, Quadrilaterals & Polygons" +97111,171,6.G.A.1,"Find the Area of Triangles, Quadrilaterals & Polygons" +55428,171,6.G.A.1,"Find the Area of Triangles, Quadrilaterals & Polygons" +336859,171,6.G.A.1,"Find the Area of Triangles, Quadrilaterals & Polygons" +242072,172,6.G.A.1,"Find the Area of Triangles, Quadrilaterals & Polygons" +1630,172,6.G.A.1,"Find the Area of Triangles, Quadrilaterals & Polygons" +41185,172,6.G.A.1,"Find the Area of Triangles, Quadrilaterals & Polygons" +41469,172,6.G.A.1,"Find the Area of Triangles, Quadrilaterals & Polygons" +12774,172,6.G.A.1,"Find the Area of Triangles, Quadrilaterals & Polygons" +418012,173,6.G.A.1,"Find the Area of Triangles, Quadrilaterals & Polygons" +176469,173,6.G.A.1,"Find the Area of Triangles, Quadrilaterals & Polygons" +306997,173,6.G.A.1,"Find the Area of Triangles, Quadrilaterals & Polygons" +242640,173,6.G.A.1,"Find the Area of Triangles, Quadrilaterals & Polygons" +668703,173,6.G.A.1,"Find the Area of Triangles, Quadrilaterals & Polygons" +77648,173,6.G.A.1,"Find the Area of Triangles, Quadrilaterals & Polygons" +286560,173,6.G.A.1,"Find the Area of Triangles, Quadrilaterals & Polygons" +577430,173,6.G.A.1,"Find the Area of Triangles, Quadrilaterals & Polygons" +138605,173,6.G.A.1,"Find the Area of Triangles, Quadrilaterals & Polygons" +337992,173,6.G.A.1,"Find the Area of Triangles, Quadrilaterals & Polygons" +577269,173,6.G.A.1,"Find the Area of Triangles, Quadrilaterals & Polygons" +383830,173,6.G.A.1,"Find the Area of Triangles, Quadrilaterals & Polygons" +421017,173,6.G.A.1,"Find the Area of Triangles, Quadrilaterals & Polygons" +185261,173,6.G.A.1,"Find the Area of Triangles, Quadrilaterals & Polygons" +272768,173,6.G.A.1,"Find the Area of Triangles, Quadrilaterals & Polygons" +185386,173,6.G.A.1,"Find the Area of Triangles, Quadrilaterals & Polygons" +286898,173,6.G.A.1,"Find the Area of Triangles, Quadrilaterals & Polygons" +420787,173,6.G.A.1,"Find the Area of Triangles, Quadrilaterals & Polygons" +605478,173,6.G.A.1,"Find the Area of Triangles, Quadrilaterals & Polygons" +253000,173,6.G.A.1,"Find the Area of Triangles, Quadrilaterals & Polygons" +323410,173,6.G.A.1,"Find the Area of Triangles, Quadrilaterals & Polygons" +230682,173,6.G.A.1,"Find the Area of Triangles, Quadrilaterals & Polygons" +323128,173,6.G.A.1,"Find the Area of Triangles, Quadrilaterals & Polygons" +323266,173,6.G.A.1,"Find the Area of Triangles, Quadrilaterals & Polygons" +264860,173,6.G.A.1,"Find the Area of Triangles, Quadrilaterals & Polygons" +323003,173,6.G.A.1,"Find the Area of Triangles, Quadrilaterals & Polygons" +55302,173,6.G.A.1,"Find the Area of Triangles, Quadrilaterals & Polygons" +286192,173,6.G.A.1,"Find the Area of Triangles, Quadrilaterals & Polygons" +166613,173,6.G.A.1,"Find the Area of Triangles, Quadrilaterals & Polygons" +418178,173,6.G.A.1,"Find the Area of Triangles, Quadrilaterals & Polygons" +222283,173,6.G.A.1,"Find the Area of Triangles, Quadrilaterals & Polygons" +323746,173,6.G.A.1,"Find the Area of Triangles, Quadrilaterals & Polygons" +419590,173,6.G.A.1,"Find the Area of Triangles, Quadrilaterals & Polygons" +375305,173,6.G.A.1,"Find the Area of Triangles, Quadrilaterals & Polygons" +375493,173,6.G.A.1,"Find the Area of Triangles, Quadrilaterals & Polygons" +175939,173,6.G.A.1,"Find the Area of Triangles, Quadrilaterals & Polygons" +176215,173,6.G.A.1,"Find the Area of Triangles, Quadrilaterals & Polygons" +417861,173,6.G.A.1,"Find the Area of Triangles, Quadrilaterals & Polygons" +256912,174,6.G.A.2,Find the Volume of Rectangular Prisms with Fractional Sides +79361,174,6.G.A.2,Find the Volume of Rectangular Prisms with Fractional Sides +21181,174,6.G.A.2,Find the Volume of Rectangular Prisms with Fractional Sides +151049,174,6.G.A.2,Find the Volume of Rectangular Prisms with Fractional Sides +115417,174,6.G.A.2,Find the Volume of Rectangular Prisms with Fractional Sides +20286,174,6.G.A.2,Find the Volume of Rectangular Prisms with Fractional Sides +115789,174,6.G.A.2,Find the Volume of Rectangular Prisms with Fractional Sides +278648,174,6.G.A.2,Find the Volume of Rectangular Prisms with Fractional Sides +115025,174,6.G.A.2,Find the Volume of Rectangular Prisms with Fractional Sides +166007,174,6.G.A.2,Find the Volume of Rectangular Prisms with Fractional Sides +87339,174,6.G.A.2,Find the Volume of Rectangular Prisms with Fractional Sides +165863,174,6.G.A.2,Find the Volume of Rectangular Prisms with Fractional Sides +1468,174,6.G.A.2,Find the Volume of Rectangular Prisms with Fractional Sides +320405,174,6.G.A.2,Find the Volume of Rectangular Prisms with Fractional Sides +87535,174,6.G.A.2,Find the Volume of Rectangular Prisms with Fractional Sides +319193,174,6.G.A.2,Find the Volume of Rectangular Prisms with Fractional Sides +176751,174,6.G.A.2,Find the Volume of Rectangular Prisms with Fractional Sides +177695,174,6.G.A.2,Find the Volume of Rectangular Prisms with Fractional Sides +20500,174,6.G.A.2,Find the Volume of Rectangular Prisms with Fractional Sides +150895,174,6.G.A.2,Find the Volume of Rectangular Prisms with Fractional Sides +503038,174,6.G.A.2,Find the Volume of Rectangular Prisms with Fractional Sides +579223,174,6.G.A.2,Find the Volume of Rectangular Prisms with Fractional Sides +278504,174,6.G.A.2,Find the Volume of Rectangular Prisms with Fractional Sides +176895,174,6.G.A.2,Find the Volume of Rectangular Prisms with Fractional Sides +115625,174,6.G.A.2,Find the Volume of Rectangular Prisms with Fractional Sides +256677,174,6.G.A.2,Find the Volume of Rectangular Prisms with Fractional Sides +115150,174,6.G.A.2,Find the Volume of Rectangular Prisms with Fractional Sides +60349,174,6.G.A.2,Find the Volume of Rectangular Prisms with Fractional Sides +318942,174,6.G.A.2,Find the Volume of Rectangular Prisms with Fractional Sides +167762,174,6.G.A.2,Find the Volume of Rectangular Prisms with Fractional Sides +316168,175,6.G.A.3,Use Coordinates on a Graph to Create Polygons & Find Side Lengths +316462,175,6.G.A.3,Use Coordinates on a Graph to Create Polygons & Find Side Lengths +138605,175,6.G.A.3,Use Coordinates on a Graph to Create Polygons & Find Side Lengths +337475,175,6.G.A.3,Use Coordinates on a Graph to Create Polygons & Find Side Lengths +37999,175,6.G.A.3,Use Coordinates on a Graph to Create Polygons & Find Side Lengths +137129,175,6.G.A.3,Use Coordinates on a Graph to Create Polygons & Find Side Lengths +502795,176,6.G.A.4,Represent 3D Figures Using Nets to Find Surface Area +78121,176,6.G.A.4,Represent 3D Figures Using Nets to Find Surface Area +250066,176,6.G.A.4,Represent 3D Figures Using Nets to Find Surface Area +558559,176,6.G.A.4,Represent 3D Figures Using Nets to Find Surface Area +249682,176,6.G.A.4,Represent 3D Figures Using Nets to Find Surface Area +382659,176,6.G.A.4,Represent 3D Figures Using Nets to Find Surface Area +382382,176,6.G.A.4,Represent 3D Figures Using Nets to Find Surface Area +382737,176,6.G.A.4,Represent 3D Figures Using Nets to Find Surface Area +382485,176,6.G.A.4,Represent 3D Figures Using Nets to Find Surface Area +226695,176,6.G.A.4,Represent 3D Figures Using Nets to Find Surface Area +226302,176,6.G.A.4,Represent 3D Figures Using Nets to Find Surface Area +115417,176,6.G.A.4,Represent 3D Figures Using Nets to Find Surface Area +115789,176,6.G.A.4,Represent 3D Figures Using Nets to Find Surface Area +115025,176,6.G.A.4,Represent 3D Figures Using Nets to Find Surface Area +475896,176,6.G.A.4,Represent 3D Figures Using Nets to Find Surface Area +115625,176,6.G.A.4,Represent 3D Figures Using Nets to Find Surface Area +47990,176,6.G.A.4,Represent 3D Figures Using Nets to Find Surface Area +115150,176,6.G.A.4,Represent 3D Figures Using Nets to Find Surface Area +36768,176,6.G.A.4,Represent 3D Figures Using Nets to Find Surface Area +144713,176,6.G.A.4,Represent 3D Figures Using Nets to Find Surface Area +137690,177,6.SP.A.1,Recognize Statistical Questions Account for Variablility +198387,177,6.SP.A.1,Recognize Statistical Questions Account for Variablility +199131,177,6.SP.A.1,Recognize Statistical Questions Account for Variablility +199218,177,6.SP.A.1,Recognize Statistical Questions Account for Variablility +94609,177,6.SP.A.1,Recognize Statistical Questions Account for Variablility +198852,177,6.SP.A.1,Recognize Statistical Questions Account for Variablility +262608,177,6.SP.A.1,Recognize Statistical Questions Account for Variablility +362897,177,6.SP.A.1,Recognize Statistical Questions Account for Variablility +43132,177,6.SP.A.1,Recognize Statistical Questions Account for Variablility +44782,178,6.SP.A.2,Understand Properties of Distribution with (or for) Data +57280,178,6.SP.A.2,Understand Properties of Distribution with (or for) Data +21754,178,6.SP.A.2,Understand Properties of Distribution with (or for) Data +21866,178,6.SP.A.2,Understand Properties of Distribution with (or for) Data +57030,178,6.SP.A.2,Understand Properties of Distribution with (or for) Data +181770,179,6.SP.A.3,Recognize Properties of Measure of Center with Variation +528780,179,6.SP.A.3,Recognize Properties of Measure of Center with Variation +256621,179,6.SP.A.3,Recognize Properties of Measure of Center with Variation +64548,179,6.SP.A.3,Recognize Properties of Measure of Center with Variation +520423,179,6.SP.A.3,Recognize Properties of Measure of Center with Variation +256519,179,6.SP.A.3,Recognize Properties of Measure of Center with Variation +181647,179,6.SP.A.3,Recognize Properties of Measure of Center with Variation +65288,181,6.SP.B.4,"Display Numerical Data Using Dot Plots, Histograms & Box Plots" +258280,181,6.SP.B.4,"Display Numerical Data Using Dot Plots, Histograms & Box Plots" +183259,181,6.SP.B.4,"Display Numerical Data Using Dot Plots, Histograms & Box Plots" +529063,181,6.SP.B.4,"Display Numerical Data Using Dot Plots, Histograms & Box Plots" +591536,181,6.SP.B.4,"Display Numerical Data Using Dot Plots, Histograms & Box Plots" +80061,181,6.SP.B.4,"Display Numerical Data Using Dot Plots, Histograms & Box Plots" +193572,181,6.SP.B.4,"Display Numerical Data Using Dot Plots, Histograms & Box Plots" +55325,181,6.SP.B.4,"Display Numerical Data Using Dot Plots, Histograms & Box Plots" +6843,183,6.SP.B.4,"Display Numerical Data Using Dot Plots, Histograms & Box Plots" +65434,183,6.SP.B.4,"Display Numerical Data Using Dot Plots, Histograms & Box Plots" +591536,183,6.SP.B.4,"Display Numerical Data Using Dot Plots, Histograms & Box Plots" +158855,183,6.SP.B.4,"Display Numerical Data Using Dot Plots, Histograms & Box Plots" +158316,183,6.SP.B.4,"Display Numerical Data Using Dot Plots, Histograms & Box Plots" +158585,183,6.SP.B.4,"Display Numerical Data Using Dot Plots, Histograms & Box Plots" +6560,183,6.SP.B.4,"Display Numerical Data Using Dot Plots, Histograms & Box Plots" +206643,183,6.SP.B.4,"Display Numerical Data Using Dot Plots, Histograms & Box Plots" +193572,183,6.SP.B.4,"Display Numerical Data Using Dot Plots, Histograms & Box Plots" +206824,183,6.SP.B.4,"Display Numerical Data Using Dot Plots, Histograms & Box Plots" +103242,186,6.SP.B.5a,Report the Number of Observations in a Data Set +136119,187,6.SP.B.5b,Describe the Attributes of a Data Set +136895,187,6.SP.B.5b,Describe the Attributes of a Data Set +200269,187,6.SP.B.5b,Describe the Attributes of a Data Set +339343,187,6.SP.B.5b,Describe the Attributes of a Data Set +102850,187,6.SP.B.5b,Describe the Attributes of a Data Set +137297,187,6.SP.B.5b,Describe the Attributes of a Data Set +136547,187,6.SP.B.5b,Describe the Attributes of a Data Set +258280,188,6.SP.B.5c,Give & Describe Quantitative Measures of Center & Variability +256519,188,6.SP.B.5c,Give & Describe Quantitative Measures of Center & Variability +351005,188,6.SP.B.5c,Give & Describe Quantitative Measures of Center & Variability +201945,188,6.SP.B.5c,Give & Describe Quantitative Measures of Center & Variability +202431,188,6.SP.B.5c,Give & Describe Quantitative Measures of Center & Variability +202762,188,6.SP.B.5c,Give & Describe Quantitative Measures of Center & Variability +350745,188,6.SP.B.5c,Give & Describe Quantitative Measures of Center & Variability +350634,188,6.SP.B.5c,Give & Describe Quantitative Measures of Center & Variability +193337,188,6.SP.B.5c,Give & Describe Quantitative Measures of Center & Variability +350537,188,6.SP.B.5c,Give & Describe Quantitative Measures of Center & Variability +361422,188,6.SP.B.5c,Give & Describe Quantitative Measures of Center & Variability +361179,188,6.SP.B.5c,Give & Describe Quantitative Measures of Center & Variability +361989,188,6.SP.B.5c,Give & Describe Quantitative Measures of Center & Variability +363244,188,6.SP.B.5c,Give & Describe Quantitative Measures of Center & Variability +181770,188,6.SP.B.5c,Give & Describe Quantitative Measures of Center & Variability +591238,188,6.SP.B.5c,Give & Describe Quantitative Measures of Center & Variability +79667,188,6.SP.B.5c,Give & Describe Quantitative Measures of Center & Variability +46358,188,6.SP.B.5c,Give & Describe Quantitative Measures of Center & Variability +46235,188,6.SP.B.5c,Give & Describe Quantitative Measures of Center & Variability +46015,188,6.SP.B.5c,Give & Describe Quantitative Measures of Center & Variability +46116,188,6.SP.B.5c,Give & Describe Quantitative Measures of Center & Variability +45665,188,6.SP.B.5c,Give & Describe Quantitative Measures of Center & Variability +45802,188,6.SP.B.5c,Give & Describe Quantitative Measures of Center & Variability +528780,188,6.SP.B.5c,Give & Describe Quantitative Measures of Center & Variability +529581,188,6.SP.B.5c,Give & Describe Quantitative Measures of Center & Variability +529857,188,6.SP.B.5c,Give & Describe Quantitative Measures of Center & Variability +529063,188,6.SP.B.5c,Give & Describe Quantitative Measures of Center & Variability +529389,189,6.SP.B.5c,Give & Describe Quantitative Measures of Center & Variability +182704,189,6.SP.B.5c,Give & Describe Quantitative Measures of Center & Variability +99939,189,6.SP.B.5c,Give & Describe Quantitative Measures of Center & Variability +5236,189,6.SP.B.5c,Give & Describe Quantitative Measures of Center & Variability +182285,189,6.SP.B.5c,Give & Describe Quantitative Measures of Center & Variability +252396,189,6.SP.B.5c,Give & Describe Quantitative Measures of Center & Variability +529857,189,6.SP.B.5c,Give & Describe Quantitative Measures of Center & Variability +88478,189,6.SP.B.5c,Give & Describe Quantitative Measures of Center & Variability +253594,189,6.SP.B.5c,Give & Describe Quantitative Measures of Center & Variability +6735,189,6.SP.B.5c,Give & Describe Quantitative Measures of Center & Variability +99247,189,6.SP.B.5c,Give & Describe Quantitative Measures of Center & Variability +183259,189,6.SP.B.5c,Give & Describe Quantitative Measures of Center & Variability +274025,189,6.SP.B.5c,Give & Describe Quantitative Measures of Center & Variability +256621,189,6.SP.B.5c,Give & Describe Quantitative Measures of Center & Variability +188655,189,6.SP.B.5c,Give & Describe Quantitative Measures of Center & Variability +252066,189,6.SP.B.5c,Give & Describe Quantitative Measures of Center & Variability +193691,189,6.SP.B.5c,Give & Describe Quantitative Measures of Center & Variability +6006,189,6.SP.B.5c,Give & Describe Quantitative Measures of Center & Variability +591659,189,6.SP.B.5c,Give & Describe Quantitative Measures of Center & Variability +99606,189,6.SP.B.5c,Give & Describe Quantitative Measures of Center & Variability +202276,189,6.SP.B.5c,Give & Describe Quantitative Measures of Center & Variability +202762,189,6.SP.B.5c,Give & Describe Quantitative Measures of Center & Variability +288503,189,6.SP.B.5c,Give & Describe Quantitative Measures of Center & Variability +519985,189,6.SP.B.5c,Give & Describe Quantitative Measures of Center & Variability +202762,190,6.SP.B.5c,Give & Describe Quantitative Measures of Center & Variability +529857,190,6.SP.B.5c,Give & Describe Quantitative Measures of Center & Variability +528652,190,6.SP.B.5c,Give & Describe Quantitative Measures of Center & Variability +182285,190,6.SP.B.5c,Give & Describe Quantitative Measures of Center & Variability +181647,190,6.SP.B.5c,Give & Describe Quantitative Measures of Center & Variability +289171,190,6.SP.B.5c,Give & Describe Quantitative Measures of Center & Variability +182483,190,6.SP.B.5c,Give & Describe Quantitative Measures of Center & Variability +252499,190,6.SP.B.5c,Give & Describe Quantitative Measures of Center & Variability +253922,190,6.SP.B.5c,Give & Describe Quantitative Measures of Center & Variability +183259,190,6.SP.B.5c,Give & Describe Quantitative Measures of Center & Variability +288926,190,6.SP.B.5c,Give & Describe Quantitative Measures of Center & Variability +528780,191,6.SP.B.5c,Give & Describe Quantitative Measures of Center & Variability +6560,191,6.SP.B.5c,Give & Describe Quantitative Measures of Center & Variability +7682,191,6.SP.B.5c,Give & Describe Quantitative Measures of Center & Variability +6843,191,6.SP.B.5c,Give & Describe Quantitative Measures of Center & Variability +7018,191,6.SP.B.5c,Give & Describe Quantitative Measures of Center & Variability +7452,191,6.SP.B.5c,Give & Describe Quantitative Measures of Center & Variability +7254,191,6.SP.B.5c,Give & Describe Quantitative Measures of Center & Variability +334286,192,6.SP.B.5d,Relate Measures of Center & Variablity to Distribution of Data +182704,192,6.SP.B.5d,Relate Measures of Center & Variablity to Distribution of Data +182483,192,6.SP.B.5d,Relate Measures of Center & Variablity to Distribution of Data +182285,192,6.SP.B.5d,Relate Measures of Center & Variablity to Distribution of Data +382565,193,7.RP.A.1,Compute Unit Rates with Fractions +303033,193,7.RP.A.1,Compute Unit Rates with Fractions +559523,193,7.RP.A.1,Compute Unit Rates with Fractions +382916,193,7.RP.A.1,Compute Unit Rates with Fractions +75212,193,7.RP.A.1,Compute Unit Rates with Fractions +409731,193,7.RP.A.1,Compute Unit Rates with Fractions +558351,193,7.RP.A.1,Compute Unit Rates with Fractions +558648,193,7.RP.A.1,Compute Unit Rates with Fractions +302809,193,7.RP.A.1,Compute Unit Rates with Fractions +221711,193,7.RP.A.1,Compute Unit Rates with Fractions +222861,193,7.RP.A.1,Compute Unit Rates with Fractions +559181,193,7.RP.A.1,Compute Unit Rates with Fractions +42365,193,7.RP.A.1,Compute Unit Rates with Fractions +221573,193,7.RP.A.1,Compute Unit Rates with Fractions +501551,193,7.RP.A.1,Compute Unit Rates with Fractions +558904,193,7.RP.A.1,Compute Unit Rates with Fractions +56172,194,7.RP.A.2a,Identify Proportional Relationships +56590,194,7.RP.A.2a,Identify Proportional Relationships +184732,194,7.RP.A.2a,Identify Proportional Relationships +552378,194,7.RP.A.2a,Identify Proportional Relationships +48435,194,7.RP.A.2a,Identify Proportional Relationships +19558,194,7.RP.A.2a,Identify Proportional Relationships +221711,194,7.RP.A.2a,Identify Proportional Relationships +122274,194,7.RP.A.2a,Identify Proportional Relationships +123317,194,7.RP.A.2a,Identify Proportional Relationships +221573,194,7.RP.A.2a,Identify Proportional Relationships +26568,194,7.RP.A.2a,Identify Proportional Relationships +263683,194,7.RP.A.2a,Identify Proportional Relationships +584015,194,7.RP.A.2a,Identify Proportional Relationships +584326,194,7.RP.A.2a,Identify Proportional Relationships +584537,194,7.RP.A.2a,Identify Proportional Relationships +121533,194,7.RP.A.2a,Identify Proportional Relationships +86074,194,7.RP.A.2a,Identify Proportional Relationships +278886,194,7.RP.A.2a,Identify Proportional Relationships +123500,194,7.RP.A.2a,Identify Proportional Relationships +85726,194,7.RP.A.2a,Identify Proportional Relationships +123973,194,7.RP.A.2a,Identify Proportional Relationships +106336,194,7.RP.A.2a,Identify Proportional Relationships +123722,194,7.RP.A.2a,Identify Proportional Relationships +24737,194,7.RP.A.2a,Identify Proportional Relationships +584429,194,7.RP.A.2a,Identify Proportional Relationships +9419,194,7.RP.A.2a,Identify Proportional Relationships +9673,194,7.RP.A.2a,Identify Proportional Relationships +408662,194,7.RP.A.2a,Identify Proportional Relationships +103020,194,7.RP.A.2a,Identify Proportional Relationships +225175,194,7.RP.A.2a,Identify Proportional Relationships +131274,194,7.RP.A.2a,Identify Proportional Relationships +409242,194,7.RP.A.2a,Identify Proportional Relationships +259215,194,7.RP.A.2a,Identify Proportional Relationships +263438,194,7.RP.A.2a,Identify Proportional Relationships +259069,194,7.RP.A.2a,Identify Proportional Relationships +135345,194,7.RP.A.2a,Identify Proportional Relationships +135491,194,7.RP.A.2a,Identify Proportional Relationships +135638,194,7.RP.A.2a,Identify Proportional Relationships +136814,194,7.RP.A.2a,Identify Proportional Relationships +135233,194,7.RP.A.2a,Identify Proportional Relationships +135753,194,7.RP.A.2a,Identify Proportional Relationships +135875,194,7.RP.A.2a,Identify Proportional Relationships +136282,194,7.RP.A.2a,Identify Proportional Relationships +225359,194,7.RP.A.2a,Identify Proportional Relationships +136020,194,7.RP.A.2a,Identify Proportional Relationships +36971,194,7.RP.A.2a,Identify Proportional Relationships +136496,194,7.RP.A.2a,Identify Proportional Relationships +259356,194,7.RP.A.2a,Identify Proportional Relationships +327867,194,7.RP.A.2a,Identify Proportional Relationships +136146,194,7.RP.A.2a,Identify Proportional Relationships +100712,194,7.RP.A.2a,Identify Proportional Relationships +34746,194,7.RP.A.2a,Identify Proportional Relationships +109969,194,7.RP.A.2a,Identify Proportional Relationships +24963,194,7.RP.A.2a,Identify Proportional Relationships +110096,194,7.RP.A.2a,Identify Proportional Relationships +36440,194,7.RP.A.2a,Identify Proportional Relationships +144928,194,7.RP.A.2a,Identify Proportional Relationships +595744,194,7.RP.A.2a,Identify Proportional Relationships +144794,194,7.RP.A.2a,Identify Proportional Relationships +147904,194,7.RP.A.2a,Identify Proportional Relationships +9567,194,7.RP.A.2a,Identify Proportional Relationships +303033,194,7.RP.A.2a,Identify Proportional Relationships +24484,194,7.RP.A.2a,Identify Proportional Relationships +148013,194,7.RP.A.2a,Identify Proportional Relationships +152397,194,7.RP.A.2a,Identify Proportional Relationships +302809,194,7.RP.A.2a,Identify Proportional Relationships +35010,194,7.RP.A.2a,Identify Proportional Relationships +36700,194,7.RP.A.2a,Identify Proportional Relationships +1089,194,7.RP.A.2a,Identify Proportional Relationships +22967,194,7.RP.A.2a,Identify Proportional Relationships +109845,194,7.RP.A.2a,Identify Proportional Relationships +37662,194,7.RP.A.2a,Identify Proportional Relationships +561011,194,7.RP.A.2a,Identify Proportional Relationships +511978,194,7.RP.A.2a,Identify Proportional Relationships +37332,194,7.RP.A.2a,Identify Proportional Relationships +308662,194,7.RP.A.2a,Identify Proportional Relationships +343125,194,7.RP.A.2a,Identify Proportional Relationships +343609,194,7.RP.A.2a,Identify Proportional Relationships +392468,194,7.RP.A.2a,Identify Proportional Relationships +36149,194,7.RP.A.2a,Identify Proportional Relationships +156721,194,7.RP.A.2a,Identify Proportional Relationships +42014,194,7.RP.A.2a,Identify Proportional Relationships +100983,194,7.RP.A.2a,Identify Proportional Relationships +13937,194,7.RP.A.2a,Identify Proportional Relationships +225864,194,7.RP.A.2a,Identify Proportional Relationships +343945,194,7.RP.A.2a,Identify Proportional Relationships +98864,194,7.RP.A.2a,Identify Proportional Relationships +101254,194,7.RP.A.2a,Identify Proportional Relationships +12129,194,7.RP.A.2a,Identify Proportional Relationships +560745,194,7.RP.A.2a,Identify Proportional Relationships +100386,194,7.RP.A.2a,Identify Proportional Relationships +43417,194,7.RP.A.2a,Identify Proportional Relationships +13763,194,7.RP.A.2a,Identify Proportional Relationships +13854,194,7.RP.A.2a,Identify Proportional Relationships +110217,194,7.RP.A.2a,Identify Proportional Relationships +225766,194,7.RP.A.2a,Identify Proportional Relationships +560139,194,7.RP.A.2a,Identify Proportional Relationships +25209,194,7.RP.A.2a,Identify Proportional Relationships +42156,194,7.RP.A.2a,Identify Proportional Relationships +512430,194,7.RP.A.2a,Identify Proportional Relationships +650373,194,7.RP.A.2a,Identify Proportional Relationships +177081,194,7.RP.A.2a,Identify Proportional Relationships +61559,194,7.RP.A.2a,Identify Proportional Relationships +351684,194,7.RP.A.2a,Identify Proportional Relationships +114159,194,7.RP.A.2a,Identify Proportional Relationships +105953,194,7.RP.A.2a,Identify Proportional Relationships +179199,194,7.RP.A.2a,Identify Proportional Relationships +179693,194,7.RP.A.2a,Identify Proportional Relationships +178727,194,7.RP.A.2a,Identify Proportional Relationships +178978,194,7.RP.A.2a,Identify Proportional Relationships +182437,194,7.RP.A.2a,Identify Proportional Relationships +24484,195,7.RP.A.2b,Identify the Constant of Proportionality +35102,195,7.RP.A.2b,Identify the Constant of Proportionality +23822,195,7.RP.A.2b,Identify the Constant of Proportionality +24963,195,7.RP.A.2b,Identify the Constant of Proportionality +102385,195,7.RP.A.2b,Identify the Constant of Proportionality +296114,195,7.RP.A.2b,Identify the Constant of Proportionality +225359,195,7.RP.A.2b,Identify the Constant of Proportionality +408074,195,7.RP.A.2b,Identify the Constant of Proportionality +225175,195,7.RP.A.2b,Identify the Constant of Proportionality +129451,195,7.RP.A.2b,Identify the Constant of Proportionality +124164,195,7.RP.A.2b,Identify the Constant of Proportionality +24737,195,7.RP.A.2b,Identify the Constant of Proportionality +650519,195,7.RP.A.2b,Identify the Constant of Proportionality +196819,195,7.RP.A.2b,Identify the Constant of Proportionality +196523,195,7.RP.A.2b,Identify the Constant of Proportionality +164771,195,7.RP.A.2b,Identify the Constant of Proportionality +560139,195,7.RP.A.2b,Identify the Constant of Proportionality +124698,195,7.RP.A.2b,Identify the Constant of Proportionality +270843,195,7.RP.A.2b,Identify the Constant of Proportionality +197156,195,7.RP.A.2b,Identify the Constant of Proportionality +25520,195,7.RP.A.2b,Identify the Constant of Proportionality +27175,195,7.RP.A.2b,Identify the Constant of Proportionality +101024,195,7.RP.A.2b,Identify the Constant of Proportionality +24068,195,7.RP.A.2b,Identify the Constant of Proportionality +97850,196,7.RP.A.2c,Represent Proportional Relationships with Equations +270760,196,7.RP.A.2c,Represent Proportional Relationships with Equations +294659,196,7.RP.A.2c,Represent Proportional Relationships with Equations +118275,196,7.RP.A.2c,Represent Proportional Relationships with Equations +118986,196,7.RP.A.2c,Represent Proportional Relationships with Equations +271395,196,7.RP.A.2c,Represent Proportional Relationships with Equations +270281,196,7.RP.A.2c,Represent Proportional Relationships with Equations +118610,196,7.RP.A.2c,Represent Proportional Relationships with Equations +119756,196,7.RP.A.2c,Represent Proportional Relationships with Equations +122934,196,7.RP.A.2c,Represent Proportional Relationships with Equations +269923,196,7.RP.A.2c,Represent Proportional Relationships with Equations +119432,196,7.RP.A.2c,Represent Proportional Relationships with Equations +294155,196,7.RP.A.2c,Represent Proportional Relationships with Equations +123580,196,7.RP.A.2c,Represent Proportional Relationships with Equations +124698,196,7.RP.A.2c,Represent Proportional Relationships with Equations +263961,196,7.RP.A.2c,Represent Proportional Relationships with Equations +124164,196,7.RP.A.2c,Represent Proportional Relationships with Equations +1195,196,7.RP.A.2c,Represent Proportional Relationships with Equations +101733,196,7.RP.A.2c,Represent Proportional Relationships with Equations +408662,196,7.RP.A.2c,Represent Proportional Relationships with Equations +129738,196,7.RP.A.2c,Represent Proportional Relationships with Equations +409526,196,7.RP.A.2c,Represent Proportional Relationships with Equations +271051,196,7.RP.A.2c,Represent Proportional Relationships with Equations +137922,196,7.RP.A.2c,Represent Proportional Relationships with Equations +144928,196,7.RP.A.2c,Represent Proportional Relationships with Equations +144794,196,7.RP.A.2c,Represent Proportional Relationships with Equations +595853,196,7.RP.A.2c,Represent Proportional Relationships with Equations +247607,196,7.RP.A.2c,Represent Proportional Relationships with Equations +247330,196,7.RP.A.2c,Represent Proportional Relationships with Equations +74204,196,7.RP.A.2c,Represent Proportional Relationships with Equations +460042,196,7.RP.A.2c,Represent Proportional Relationships with Equations +460209,196,7.RP.A.2c,Represent Proportional Relationships with Equations +560745,196,7.RP.A.2c,Represent Proportional Relationships with Equations +383539,196,7.RP.A.2c,Represent Proportional Relationships with Equations +168477,196,7.RP.A.2c,Represent Proportional Relationships with Equations +168704,196,7.RP.A.2c,Represent Proportional Relationships with Equations +460374,196,7.RP.A.2c,Represent Proportional Relationships with Equations +375713,196,7.RP.A.2c,Represent Proportional Relationships with Equations +171936,196,7.RP.A.2c,Represent Proportional Relationships with Equations +182778,196,7.RP.A.2c,Represent Proportional Relationships with Equations +182948,196,7.RP.A.2c,Represent Proportional Relationships with Equations +182080,196,7.RP.A.2c,Represent Proportional Relationships with Equations +20510,196,7.RP.A.2c,Represent Proportional Relationships with Equations +183159,196,7.RP.A.2c,Represent Proportional Relationships with Equations +187804,196,7.RP.A.2c,Represent Proportional Relationships with Equations +47104,196,7.RP.A.2c,Represent Proportional Relationships with Equations +531136,196,7.RP.A.2c,Represent Proportional Relationships with Equations +47181,196,7.RP.A.2c,Represent Proportional Relationships with Equations +19877,196,7.RP.A.2c,Represent Proportional Relationships with Equations +42964,196,7.RP.A.2c,Represent Proportional Relationships with Equations +42156,196,7.RP.A.2c,Represent Proportional Relationships with Equations +202480,196,7.RP.A.2c,Represent Proportional Relationships with Equations +42014,196,7.RP.A.2c,Represent Proportional Relationships with Equations +24068,196,7.RP.A.2c,Represent Proportional Relationships with Equations +35102,196,7.RP.A.2c,Represent Proportional Relationships with Equations +23822,196,7.RP.A.2c,Represent Proportional Relationships with Equations +129133,197,7.RP.A.2d,Interpret Points on Proportional Graphs +409398,197,7.RP.A.2d,Interpret Points on Proportional Graphs +1449,197,7.RP.A.2d,Interpret Points on Proportional Graphs +2516,197,7.RP.A.2d,Interpret Points on Proportional Graphs +23819,197,7.RP.A.2d,Interpret Points on Proportional Graphs +24277,197,7.RP.A.2d,Interpret Points on Proportional Graphs +530971,197,7.RP.A.2d,Interpret Points on Proportional Graphs +21201,198,7.RP.A.3,Use Proportional Relationships to Solve Ratio & Percent Problems +323501,198,7.RP.A.3,Use Proportional Relationships to Solve Ratio & Percent Problems +316809,198,7.RP.A.3,Use Proportional Relationships to Solve Ratio & Percent Problems +20885,198,7.RP.A.3,Use Proportional Relationships to Solve Ratio & Percent Problems +323812,198,7.RP.A.3,Use Proportional Relationships to Solve Ratio & Percent Problems +318309,198,7.RP.A.3,Use Proportional Relationships to Solve Ratio & Percent Problems +20199,198,7.RP.A.3,Use Proportional Relationships to Solve Ratio & Percent Problems +316941,198,7.RP.A.3,Use Proportional Relationships to Solve Ratio & Percent Problems +496354,198,7.RP.A.3,Use Proportional Relationships to Solve Ratio & Percent Problems +317074,198,7.RP.A.3,Use Proportional Relationships to Solve Ratio & Percent Problems +61531,198,7.RP.A.3,Use Proportional Relationships to Solve Ratio & Percent Problems +267646,198,7.RP.A.3,Use Proportional Relationships to Solve Ratio & Percent Problems +171238,198,7.RP.A.3,Use Proportional Relationships to Solve Ratio & Percent Problems +338281,198,7.RP.A.3,Use Proportional Relationships to Solve Ratio & Percent Problems +238173,198,7.RP.A.3,Use Proportional Relationships to Solve Ratio & Percent Problems +62350,198,7.RP.A.3,Use Proportional Relationships to Solve Ratio & Percent Problems +479240,198,7.RP.A.3,Use Proportional Relationships to Solve Ratio & Percent Problems +318171,198,7.RP.A.3,Use Proportional Relationships to Solve Ratio & Percent Problems +21043,198,7.RP.A.3,Use Proportional Relationships to Solve Ratio & Percent Problems +338629,198,7.RP.A.3,Use Proportional Relationships to Solve Ratio & Percent Problems +171421,198,7.RP.A.3,Use Proportional Relationships to Solve Ratio & Percent Problems +313685,198,7.RP.A.3,Use Proportional Relationships to Solve Ratio & Percent Problems +97107,198,7.RP.A.3,Use Proportional Relationships to Solve Ratio & Percent Problems +113440,198,7.RP.A.3,Use Proportional Relationships to Solve Ratio & Percent Problems +317429,198,7.RP.A.3,Use Proportional Relationships to Solve Ratio & Percent Problems +323576,198,7.RP.A.3,Use Proportional Relationships to Solve Ratio & Percent Problems +15629,198,7.RP.A.3,Use Proportional Relationships to Solve Ratio & Percent Problems +324897,198,7.RP.A.3,Use Proportional Relationships to Solve Ratio & Percent Problems +502720,198,7.RP.A.3,Use Proportional Relationships to Solve Ratio & Percent Problems +96761,198,7.RP.A.3,Use Proportional Relationships to Solve Ratio & Percent Problems +16005,198,7.RP.A.3,Use Proportional Relationships to Solve Ratio & Percent Problems +15881,198,7.RP.A.3,Use Proportional Relationships to Solve Ratio & Percent Problems +324443,198,7.RP.A.3,Use Proportional Relationships to Solve Ratio & Percent Problems +97399,198,7.RP.A.3,Use Proportional Relationships to Solve Ratio & Percent Problems +314006,198,7.RP.A.3,Use Proportional Relationships to Solve Ratio & Percent Problems +246686,198,7.RP.A.3,Use Proportional Relationships to Solve Ratio & Percent Problems +97648,198,7.RP.A.3,Use Proportional Relationships to Solve Ratio & Percent Problems +244895,198,7.RP.A.3,Use Proportional Relationships to Solve Ratio & Percent Problems +314324,198,7.RP.A.3,Use Proportional Relationships to Solve Ratio & Percent Problems +113646,198,7.RP.A.3,Use Proportional Relationships to Solve Ratio & Percent Problems +313329,198,7.RP.A.3,Use Proportional Relationships to Solve Ratio & Percent Problems +97533,198,7.RP.A.3,Use Proportional Relationships to Solve Ratio & Percent Problems +247727,198,7.RP.A.3,Use Proportional Relationships to Solve Ratio & Percent Problems +245930,198,7.RP.A.3,Use Proportional Relationships to Solve Ratio & Percent Problems +203426,198,7.RP.A.3,Use Proportional Relationships to Solve Ratio & Percent Problems +97961,198,7.RP.A.3,Use Proportional Relationships to Solve Ratio & Percent Problems +31433,198,7.RP.A.3,Use Proportional Relationships to Solve Ratio & Percent Problems +246966,198,7.RP.A.3,Use Proportional Relationships to Solve Ratio & Percent Problems +499714,198,7.RP.A.3,Use Proportional Relationships to Solve Ratio & Percent Problems +477606,198,7.RP.A.3,Use Proportional Relationships to Solve Ratio & Percent Problems +74049,198,7.RP.A.3,Use Proportional Relationships to Solve Ratio & Percent Problems +24461,198,7.RP.A.3,Use Proportional Relationships to Solve Ratio & Percent Problems +96895,198,7.RP.A.3,Use Proportional Relationships to Solve Ratio & Percent Problems +245546,198,7.RP.A.3,Use Proportional Relationships to Solve Ratio & Percent Problems +248005,198,7.RP.A.3,Use Proportional Relationships to Solve Ratio & Percent Problems +156692,198,7.RP.A.3,Use Proportional Relationships to Solve Ratio & Percent Problems +245240,198,7.RP.A.3,Use Proportional Relationships to Solve Ratio & Percent Problems +246376,198,7.RP.A.3,Use Proportional Relationships to Solve Ratio & Percent Problems +15059,198,7.RP.A.3,Use Proportional Relationships to Solve Ratio & Percent Problems +73890,198,7.RP.A.3,Use Proportional Relationships to Solve Ratio & Percent Problems +478570,198,7.RP.A.3,Use Proportional Relationships to Solve Ratio & Percent Problems +251426,198,7.RP.A.3,Use Proportional Relationships to Solve Ratio & Percent Problems +22470,198,7.RP.A.3,Use Proportional Relationships to Solve Ratio & Percent Problems +389538,198,7.RP.A.3,Use Proportional Relationships to Solve Ratio & Percent Problems +98095,198,7.RP.A.3,Use Proportional Relationships to Solve Ratio & Percent Problems +289043,198,7.RP.A.3,Use Proportional Relationships to Solve Ratio & Percent Problems +203873,198,7.RP.A.3,Use Proportional Relationships to Solve Ratio & Percent Problems +15333,198,7.RP.A.3,Use Proportional Relationships to Solve Ratio & Percent Problems +429590,198,7.RP.A.3,Use Proportional Relationships to Solve Ratio & Percent Problems +504254,198,7.RP.A.3,Use Proportional Relationships to Solve Ratio & Percent Problems +153106,198,7.RP.A.3,Use Proportional Relationships to Solve Ratio & Percent Problems +15138,198,7.RP.A.3,Use Proportional Relationships to Solve Ratio & Percent Problems +14960,198,7.RP.A.3,Use Proportional Relationships to Solve Ratio & Percent Problems +153479,198,7.RP.A.3,Use Proportional Relationships to Solve Ratio & Percent Problems +389890,198,7.RP.A.3,Use Proportional Relationships to Solve Ratio & Percent Problems +153291,198,7.RP.A.3,Use Proportional Relationships to Solve Ratio & Percent Problems +478342,198,7.RP.A.3,Use Proportional Relationships to Solve Ratio & Percent Problems +479016,198,7.RP.A.3,Use Proportional Relationships to Solve Ratio & Percent Problems +15760,198,7.RP.A.3,Use Proportional Relationships to Solve Ratio & Percent Problems +153688,198,7.RP.A.3,Use Proportional Relationships to Solve Ratio & Percent Problems +152711,198,7.RP.A.3,Use Proportional Relationships to Solve Ratio & Percent Problems +101005,198,7.RP.A.3,Use Proportional Relationships to Solve Ratio & Percent Problems +77978,198,7.RP.A.3,Use Proportional Relationships to Solve Ratio & Percent Problems +78165,198,7.RP.A.3,Use Proportional Relationships to Solve Ratio & Percent Problems +152894,198,7.RP.A.3,Use Proportional Relationships to Solve Ratio & Percent Problems +100544,198,7.RP.A.3,Use Proportional Relationships to Solve Ratio & Percent Problems +505561,198,7.RP.A.3,Use Proportional Relationships to Solve Ratio & Percent Problems +477986,198,7.RP.A.3,Use Proportional Relationships to Solve Ratio & Percent Problems +24484,198,7.RP.A.3,Use Proportional Relationships to Solve Ratio & Percent Problems +505118,198,7.RP.A.3,Use Proportional Relationships to Solve Ratio & Percent Problems +429767,198,7.RP.A.3,Use Proportional Relationships to Solve Ratio & Percent Problems +429393,198,7.RP.A.3,Use Proportional Relationships to Solve Ratio & Percent Problems +146150,198,7.RP.A.3,Use Proportional Relationships to Solve Ratio & Percent Problems +509509,198,7.RP.A.3,Use Proportional Relationships to Solve Ratio & Percent Problems +96632,198,7.RP.A.3,Use Proportional Relationships to Solve Ratio & Percent Problems +24777,198,7.RP.A.3,Use Proportional Relationships to Solve Ratio & Percent Problems +100670,198,7.RP.A.3,Use Proportional Relationships to Solve Ratio & Percent Problems +504695,198,7.RP.A.3,Use Proportional Relationships to Solve Ratio & Percent Problems +146018,198,7.RP.A.3,Use Proportional Relationships to Solve Ratio & Percent Problems +24963,198,7.RP.A.3,Use Proportional Relationships to Solve Ratio & Percent Problems +23144,198,7.RP.A.3,Use Proportional Relationships to Solve Ratio & Percent Problems +428623,198,7.RP.A.3,Use Proportional Relationships to Solve Ratio & Percent Problems +137401,198,7.RP.A.3,Use Proportional Relationships to Solve Ratio & Percent Problems +137056,198,7.RP.A.3,Use Proportional Relationships to Solve Ratio & Percent Problems +218838,198,7.RP.A.3,Use Proportional Relationships to Solve Ratio & Percent Problems +137232,198,7.RP.A.3,Use Proportional Relationships to Solve Ratio & Percent Problems +205498,198,7.RP.A.3,Use Proportional Relationships to Solve Ratio & Percent Problems +235060,198,7.RP.A.3,Use Proportional Relationships to Solve Ratio & Percent Problems +553614,198,7.RP.A.3,Use Proportional Relationships to Solve Ratio & Percent Problems +57624,198,7.RP.A.3,Use Proportional Relationships to Solve Ratio & Percent Problems +317307,198,7.RP.A.3,Use Proportional Relationships to Solve Ratio & Percent Problems +367651,198,7.RP.A.3,Use Proportional Relationships to Solve Ratio & Percent Problems +120403,198,7.RP.A.3,Use Proportional Relationships to Solve Ratio & Percent Problems +367113,198,7.RP.A.3,Use Proportional Relationships to Solve Ratio & Percent Problems +317741,198,7.RP.A.3,Use Proportional Relationships to Solve Ratio & Percent Problems +232655,198,7.RP.A.3,Use Proportional Relationships to Solve Ratio & Percent Problems +177807,198,7.RP.A.3,Use Proportional Relationships to Solve Ratio & Percent Problems +20515,198,7.RP.A.3,Use Proportional Relationships to Solve Ratio & Percent Problems +267794,198,7.RP.A.3,Use Proportional Relationships to Solve Ratio & Percent Problems +468619,198,7.RP.A.3,Use Proportional Relationships to Solve Ratio & Percent Problems +553401,198,7.RP.A.3,Use Proportional Relationships to Solve Ratio & Percent Problems +61289,198,7.RP.A.3,Use Proportional Relationships to Solve Ratio & Percent Problems +367429,198,7.RP.A.3,Use Proportional Relationships to Solve Ratio & Percent Problems +324089,198,7.RP.A.3,Use Proportional Relationships to Solve Ratio & Percent Problems +323787,198,7.RP.A.3,Use Proportional Relationships to Solve Ratio & Percent Problems +367406,198,7.RP.A.3,Use Proportional Relationships to Solve Ratio & Percent Problems +177693,198,7.RP.A.3,Use Proportional Relationships to Solve Ratio & Percent Problems +317925,198,7.RP.A.3,Use Proportional Relationships to Solve Ratio & Percent Problems +317639,198,7.RP.A.3,Use Proportional Relationships to Solve Ratio & Percent Problems +20669,198,7.RP.A.3,Use Proportional Relationships to Solve Ratio & Percent Problems +503044,198,7.RP.A.3,Use Proportional Relationships to Solve Ratio & Percent Problems +316680,198,7.RP.A.3,Use Proportional Relationships to Solve Ratio & Percent Problems +317833,198,7.RP.A.3,Use Proportional Relationships to Solve Ratio & Percent Problems +15492,198,7.RP.A.3,Use Proportional Relationships to Solve Ratio & Percent Problems +62493,198,7.RP.A.3,Use Proportional Relationships to Solve Ratio & Percent Problems +359617,198,7.RP.A.3,Use Proportional Relationships to Solve Ratio & Percent Problems +553198,198,7.RP.A.3,Use Proportional Relationships to Solve Ratio & Percent Problems +498194,198,7.RP.A.3,Use Proportional Relationships to Solve Ratio & Percent Problems +178224,198,7.RP.A.3,Use Proportional Relationships to Solve Ratio & Percent Problems +236501,198,7.RP.A.3,Use Proportional Relationships to Solve Ratio & Percent Problems +21347,198,7.RP.A.3,Use Proportional Relationships to Solve Ratio & Percent Problems +418897,198,7.RP.A.3,Use Proportional Relationships to Solve Ratio & Percent Problems +267340,198,7.RP.A.3,Use Proportional Relationships to Solve Ratio & Percent Problems +499326,198,7.RP.A.3,Use Proportional Relationships to Solve Ratio & Percent Problems +178110,198,7.RP.A.3,Use Proportional Relationships to Solve Ratio & Percent Problems +177927,198,7.RP.A.3,Use Proportional Relationships to Solve Ratio & Percent Problems +61213,198,7.RP.A.3,Use Proportional Relationships to Solve Ratio & Percent Problems +428993,198,7.RP.A.3,Use Proportional Relationships to Solve Ratio & Percent Problems +506119,198,7.RP.A.3,Use Proportional Relationships to Solve Ratio & Percent Problems +84788,198,7.RP.A.3,Use Proportional Relationships to Solve Ratio & Percent Problems +131934,198,7.RP.A.3,Use Proportional Relationships to Solve Ratio & Percent Problems +205959,198,7.RP.A.3,Use Proportional Relationships to Solve Ratio & Percent Problems +204231,198,7.RP.A.3,Use Proportional Relationships to Solve Ratio & Percent Problems +339221,198,7.RP.A.3,Use Proportional Relationships to Solve Ratio & Percent Problems +84918,198,7.RP.A.3,Use Proportional Relationships to Solve Ratio & Percent Problems +338934,198,7.RP.A.3,Use Proportional Relationships to Solve Ratio & Percent Problems +509942,198,7.RP.A.3,Use Proportional Relationships to Solve Ratio & Percent Problems +339477,198,7.RP.A.3,Use Proportional Relationships to Solve Ratio & Percent Problems +86791,198,7.RP.A.3,Use Proportional Relationships to Solve Ratio & Percent Problems +205281,198,7.RP.A.3,Use Proportional Relationships to Solve Ratio & Percent Problems +326880,198,7.RP.A.3,Use Proportional Relationships to Solve Ratio & Percent Problems +31188,198,7.RP.A.3,Use Proportional Relationships to Solve Ratio & Percent Problems +205821,198,7.RP.A.3,Use Proportional Relationships to Solve Ratio & Percent Problems +205401,198,7.RP.A.3,Use Proportional Relationships to Solve Ratio & Percent Problems +87236,198,7.RP.A.3,Use Proportional Relationships to Solve Ratio & Percent Problems +205649,198,7.RP.A.3,Use Proportional Relationships to Solve Ratio & Percent Problems +586483,198,7.RP.A.3,Use Proportional Relationships to Solve Ratio & Percent Problems +331301,198,7.RP.A.3,Use Proportional Relationships to Solve Ratio & Percent Problems +86471,198,7.RP.A.3,Use Proportional Relationships to Solve Ratio & Percent Problems +24737,198,7.RP.A.3,Use Proportional Relationships to Solve Ratio & Percent Problems +87369,198,7.RP.A.3,Use Proportional Relationships to Solve Ratio & Percent Problems +123995,198,7.RP.A.3,Use Proportional Relationships to Solve Ratio & Percent Problems +87154,198,7.RP.A.3,Use Proportional Relationships to Solve Ratio & Percent Problems +125385,198,7.RP.A.3,Use Proportional Relationships to Solve Ratio & Percent Problems +125047,198,7.RP.A.3,Use Proportional Relationships to Solve Ratio & Percent Problems +123066,198,7.RP.A.3,Use Proportional Relationships to Solve Ratio & Percent Problems +120069,198,7.RP.A.3,Use Proportional Relationships to Solve Ratio & Percent Problems +51938,198,7.RP.A.3,Use Proportional Relationships to Solve Ratio & Percent Problems +51614,198,7.RP.A.3,Use Proportional Relationships to Solve Ratio & Percent Problems +51480,198,7.RP.A.3,Use Proportional Relationships to Solve Ratio & Percent Problems +359989,198,7.RP.A.3,Use Proportional Relationships to Solve Ratio & Percent Problems +323397,198,7.RP.A.3,Use Proportional Relationships to Solve Ratio & Percent Problems +51822,198,7.RP.A.3,Use Proportional Relationships to Solve Ratio & Percent Problems +496551,198,7.RP.A.3,Use Proportional Relationships to Solve Ratio & Percent Problems +20357,198,7.RP.A.3,Use Proportional Relationships to Solve Ratio & Percent Problems +51164,198,7.RP.A.3,Use Proportional Relationships to Solve Ratio & Percent Problems +113830,198,7.RP.A.3,Use Proportional Relationships to Solve Ratio & Percent Problems +497355,198,7.RP.A.3,Use Proportional Relationships to Solve Ratio & Percent Problems +50795,198,7.RP.A.3,Use Proportional Relationships to Solve Ratio & Percent Problems +121257,198,7.RP.A.3,Use Proportional Relationships to Solve Ratio & Percent Problems +51243,198,7.RP.A.3,Use Proportional Relationships to Solve Ratio & Percent Problems +20026,198,7.RP.A.3,Use Proportional Relationships to Solve Ratio & Percent Problems +52062,198,7.RP.A.3,Use Proportional Relationships to Solve Ratio & Percent Problems +360293,198,7.RP.A.3,Use Proportional Relationships to Solve Ratio & Percent Problems +359196,198,7.RP.A.3,Use Proportional Relationships to Solve Ratio & Percent Problems +185005,198,7.RP.A.3,Use Proportional Relationships to Solve Ratio & Percent Problems +181762,198,7.RP.A.3,Use Proportional Relationships to Solve Ratio & Percent Problems +233047,198,7.RP.A.3,Use Proportional Relationships to Solve Ratio & Percent Problems +14063,200,7.NS.A.1a,Describe Situations Where Opposite Quantities Combine to Make 0 +450077,201,7.NS.A.1b,Interpret Sums of Rational Numbers +449847,201,7.NS.A.1b,Interpret Sums of Rational Numbers +114294,201,7.NS.A.1b,Interpret Sums of Rational Numbers +214107,201,7.NS.A.1b,Interpret Sums of Rational Numbers +338572,201,7.NS.A.1b,Interpret Sums of Rational Numbers +214762,201,7.NS.A.1b,Interpret Sums of Rational Numbers +214460,201,7.NS.A.1b,Interpret Sums of Rational Numbers +333811,201,7.NS.A.1b,Interpret Sums of Rational Numbers +24438,201,7.NS.A.1b,Interpret Sums of Rational Numbers +11247,201,7.NS.A.1b,Interpret Sums of Rational Numbers +91688,202,7.NS.A.1c,Understand Properties of Subtracting Rational Numbers +42327,202,7.NS.A.1c,Understand Properties of Subtracting Rational Numbers +42642,202,7.NS.A.1c,Understand Properties of Subtracting Rational Numbers +179142,202,7.NS.A.1c,Understand Properties of Subtracting Rational Numbers +114294,202,7.NS.A.1c,Understand Properties of Subtracting Rational Numbers +24438,202,7.NS.A.1c,Understand Properties of Subtracting Rational Numbers +91790,202,7.NS.A.1c,Understand Properties of Subtracting Rational Numbers +179464,202,7.NS.A.1c,Understand Properties of Subtracting Rational Numbers +162021,202,7.NS.A.1c,Understand Properties of Subtracting Rational Numbers +154547,203,7.NS.A.1d,Apply Properties of Operations to Add/Subtract Rational Numbers +153749,203,7.NS.A.1d,Apply Properties of Operations to Add/Subtract Rational Numbers +405832,203,7.NS.A.1d,Apply Properties of Operations to Add/Subtract Rational Numbers +67623,203,7.NS.A.1d,Apply Properties of Operations to Add/Subtract Rational Numbers +615367,203,7.NS.A.1d,Apply Properties of Operations to Add/Subtract Rational Numbers +60534,203,7.NS.A.1d,Apply Properties of Operations to Add/Subtract Rational Numbers +60862,203,7.NS.A.1d,Apply Properties of Operations to Add/Subtract Rational Numbers +61160,203,7.NS.A.1d,Apply Properties of Operations to Add/Subtract Rational Numbers +60187,203,7.NS.A.1d,Apply Properties of Operations to Add/Subtract Rational Numbers +615225,203,7.NS.A.1d,Apply Properties of Operations to Add/Subtract Rational Numbers +120094,204,7.NS.A.1d,Apply Properties of Operations to Add/Subtract Rational Numbers +119645,204,7.NS.A.1d,Apply Properties of Operations to Add/Subtract Rational Numbers +131027,204,7.NS.A.1d,Apply Properties of Operations to Add/Subtract Rational Numbers +407999,204,7.NS.A.1d,Apply Properties of Operations to Add/Subtract Rational Numbers +131322,204,7.NS.A.1d,Apply Properties of Operations to Add/Subtract Rational Numbers +130668,204,7.NS.A.1d,Apply Properties of Operations to Add/Subtract Rational Numbers +131590,204,7.NS.A.1d,Apply Properties of Operations to Add/Subtract Rational Numbers +407631,204,7.NS.A.1d,Apply Properties of Operations to Add/Subtract Rational Numbers +279176,204,7.NS.A.1d,Apply Properties of Operations to Add/Subtract Rational Numbers +195193,204,7.NS.A.1d,Apply Properties of Operations to Add/Subtract Rational Numbers +222978,205,7.NS.A.1d,Apply Properties of Operations to Add/Subtract Rational Numbers +223345,205,7.NS.A.1d,Apply Properties of Operations to Add/Subtract Rational Numbers +223087,205,7.NS.A.1d,Apply Properties of Operations to Add/Subtract Rational Numbers +223225,205,7.NS.A.1d,Apply Properties of Operations to Add/Subtract Rational Numbers +223453,205,7.NS.A.1d,Apply Properties of Operations to Add/Subtract Rational Numbers +24564,205,7.NS.A.1d,Apply Properties of Operations to Add/Subtract Rational Numbers +312,205,7.NS.A.1d,Apply Properties of Operations to Add/Subtract Rational Numbers +69320,205,7.NS.A.1d,Apply Properties of Operations to Add/Subtract Rational Numbers +64016,205,7.NS.A.1d,Apply Properties of Operations to Add/Subtract Rational Numbers +207,205,7.NS.A.1d,Apply Properties of Operations to Add/Subtract Rational Numbers +69444,205,7.NS.A.1d,Apply Properties of Operations to Add/Subtract Rational Numbers +93,205,7.NS.A.1d,Apply Properties of Operations to Add/Subtract Rational Numbers +87614,205,7.NS.A.1d,Apply Properties of Operations to Add/Subtract Rational Numbers +585630,205,7.NS.A.1d,Apply Properties of Operations to Add/Subtract Rational Numbers +585877,205,7.NS.A.1d,Apply Properties of Operations to Add/Subtract Rational Numbers +442008,205,7.NS.A.1d,Apply Properties of Operations to Add/Subtract Rational Numbers +586044,205,7.NS.A.1d,Apply Properties of Operations to Add/Subtract Rational Numbers +442127,205,7.NS.A.1d,Apply Properties of Operations to Add/Subtract Rational Numbers +586212,205,7.NS.A.1d,Apply Properties of Operations to Add/Subtract Rational Numbers +441900,205,7.NS.A.1d,Apply Properties of Operations to Add/Subtract Rational Numbers +441780,205,7.NS.A.1d,Apply Properties of Operations to Add/Subtract Rational Numbers +112497,206,7.NS.A.2a,Understand Applied Context for Multiplying Rational Numbers +24564,206,7.NS.A.2a,Understand Applied Context for Multiplying Rational Numbers +180087,206,7.NS.A.2a,Understand Applied Context for Multiplying Rational Numbers +179837,206,7.NS.A.2a,Understand Applied Context for Multiplying Rational Numbers +180403,206,7.NS.A.2a,Understand Applied Context for Multiplying Rational Numbers +112290,206,7.NS.A.2a,Understand Applied Context for Multiplying Rational Numbers +24564,207,7.NS.A.2b,Understand Applied Context for Dividing Rational Numbers +112931,207,7.NS.A.2b,Understand Applied Context for Dividing Rational Numbers +112644,207,7.NS.A.2b,Understand Applied Context for Dividing Rational Numbers +24305,207,7.NS.A.2b,Understand Applied Context for Dividing Rational Numbers +584854,207,7.NS.A.2b,Understand Applied Context for Dividing Rational Numbers +112797,207,7.NS.A.2b,Understand Applied Context for Dividing Rational Numbers +226035,207,7.NS.A.2b,Understand Applied Context for Dividing Rational Numbers +226116,207,7.NS.A.2b,Understand Applied Context for Dividing Rational Numbers +584945,207,7.NS.A.2b,Understand Applied Context for Dividing Rational Numbers +60187,208,7.NS.A.2c,Apply Properties of Operations to Multiply/Divide Rational Numbers +61160,208,7.NS.A.2c,Apply Properties of Operations to Multiply/Divide Rational Numbers +60862,208,7.NS.A.2c,Apply Properties of Operations to Multiply/Divide Rational Numbers +60534,208,7.NS.A.2c,Apply Properties of Operations to Multiply/Divide Rational Numbers +22023,208,7.NS.A.2c,Apply Properties of Operations to Multiply/Divide Rational Numbers +22552,208,7.NS.A.2c,Apply Properties of Operations to Multiply/Divide Rational Numbers +37975,208,7.NS.A.2c,Apply Properties of Operations to Multiply/Divide Rational Numbers +22322,208,7.NS.A.2c,Apply Properties of Operations to Multiply/Divide Rational Numbers +147088,208,7.NS.A.2c,Apply Properties of Operations to Multiply/Divide Rational Numbers +407631,208,7.NS.A.2c,Apply Properties of Operations to Multiply/Divide Rational Numbers +24305,208,7.NS.A.2c,Apply Properties of Operations to Multiply/Divide Rational Numbers +407999,208,7.NS.A.2c,Apply Properties of Operations to Multiply/Divide Rational Numbers +184690,208,7.NS.A.2c,Apply Properties of Operations to Multiply/Divide Rational Numbers +61160,209,7.NS.A.2c,Apply Properties of Operations to Multiply/Divide Rational Numbers +60187,209,7.NS.A.2c,Apply Properties of Operations to Multiply/Divide Rational Numbers +60534,209,7.NS.A.2c,Apply Properties of Operations to Multiply/Divide Rational Numbers +60862,209,7.NS.A.2c,Apply Properties of Operations to Multiply/Divide Rational Numbers +38524,209,7.NS.A.2c,Apply Properties of Operations to Multiply/Divide Rational Numbers +278775,209,7.NS.A.2c,Apply Properties of Operations to Multiply/Divide Rational Numbers +112644,210,7.NS.A.2c,Apply Properties of Operations to Multiply/Divide Rational Numbers +69444,210,7.NS.A.2c,Apply Properties of Operations to Multiply/Divide Rational Numbers +93,210,7.NS.A.2c,Apply Properties of Operations to Multiply/Divide Rational Numbers +177679,210,7.NS.A.2c,Apply Properties of Operations to Multiply/Divide Rational Numbers +54627,210,7.NS.A.2c,Apply Properties of Operations to Multiply/Divide Rational Numbers +362542,210,7.NS.A.2c,Apply Properties of Operations to Multiply/Divide Rational Numbers +25486,210,7.NS.A.2c,Apply Properties of Operations to Multiply/Divide Rational Numbers +26296,210,7.NS.A.2c,Apply Properties of Operations to Multiply/Divide Rational Numbers +312,210,7.NS.A.2c,Apply Properties of Operations to Multiply/Divide Rational Numbers +112931,210,7.NS.A.2c,Apply Properties of Operations to Multiply/Divide Rational Numbers +195193,210,7.NS.A.2c,Apply Properties of Operations to Multiply/Divide Rational Numbers +408499,210,7.NS.A.2c,Apply Properties of Operations to Multiply/Divide Rational Numbers +279032,210,7.NS.A.2c,Apply Properties of Operations to Multiply/Divide Rational Numbers +55885,210,7.NS.A.2c,Apply Properties of Operations to Multiply/Divide Rational Numbers +112497,210,7.NS.A.2c,Apply Properties of Operations to Multiply/Divide Rational Numbers +26005,210,7.NS.A.2c,Apply Properties of Operations to Multiply/Divide Rational Numbers +55569,210,7.NS.A.2c,Apply Properties of Operations to Multiply/Divide Rational Numbers +177979,210,7.NS.A.2c,Apply Properties of Operations to Multiply/Divide Rational Numbers +65010,210,7.NS.A.2c,Apply Properties of Operations to Multiply/Divide Rational Numbers +278908,210,7.NS.A.2c,Apply Properties of Operations to Multiply/Divide Rational Numbers +207,210,7.NS.A.2c,Apply Properties of Operations to Multiply/Divide Rational Numbers +64437,210,7.NS.A.2c,Apply Properties of Operations to Multiply/Divide Rational Numbers +64758,210,7.NS.A.2c,Apply Properties of Operations to Multiply/Divide Rational Numbers +38766,210,7.NS.A.2c,Apply Properties of Operations to Multiply/Divide Rational Numbers +25718,210,7.NS.A.2c,Apply Properties of Operations to Multiply/Divide Rational Numbers +65369,210,7.NS.A.2c,Apply Properties of Operations to Multiply/Divide Rational Numbers +177403,210,7.NS.A.2c,Apply Properties of Operations to Multiply/Divide Rational Numbers +112797,210,7.NS.A.2c,Apply Properties of Operations to Multiply/Divide Rational Numbers +178227,210,7.NS.A.2c,Apply Properties of Operations to Multiply/Divide Rational Numbers +112290,210,7.NS.A.2c,Apply Properties of Operations to Multiply/Divide Rational Numbers +38268,210,7.NS.A.2c,Apply Properties of Operations to Multiply/Divide Rational Numbers +278653,210,7.NS.A.2c,Apply Properties of Operations to Multiply/Divide Rational Numbers +354272,211,7.NS.A.2d,Convert a Rational Number to a Decimal +316024,211,7.NS.A.2d,Convert a Rational Number to a Decimal +204565,211,7.NS.A.2d,Convert a Rational Number to a Decimal +426537,211,7.NS.A.2d,Convert a Rational Number to a Decimal +355272,211,7.NS.A.2d,Convert a Rational Number to a Decimal +426703,211,7.NS.A.2d,Convert a Rational Number to a Decimal +426376,211,7.NS.A.2d,Convert a Rational Number to a Decimal +427041,211,7.NS.A.2d,Convert a Rational Number to a Decimal +355634,211,7.NS.A.2d,Convert a Rational Number to a Decimal +353991,211,7.NS.A.2d,Convert a Rational Number to a Decimal +112290,212,7.NS.A.3,Solve Applied Problems Involving All Operations of Rational Numbers +64354,212,7.NS.A.3,Solve Applied Problems Involving All Operations of Rational Numbers +112644,212,7.NS.A.3,Solve Applied Problems Involving All Operations of Rational Numbers +112797,212,7.NS.A.3,Solve Applied Problems Involving All Operations of Rational Numbers +112497,212,7.NS.A.3,Solve Applied Problems Involving All Operations of Rational Numbers +48612,212,7.NS.A.3,Solve Applied Problems Involving All Operations of Rational Numbers +112931,212,7.NS.A.3,Solve Applied Problems Involving All Operations of Rational Numbers +24305,212,7.NS.A.3,Solve Applied Problems Involving All Operations of Rational Numbers +2894,213,7.EE.A.1,Apply Properties of Operations to Create Equivalent Expressions +3056,213,7.EE.A.1,Apply Properties of Operations to Create Equivalent Expressions +18664,213,7.EE.A.1,Apply Properties of Operations to Create Equivalent Expressions +21711,213,7.EE.A.1,Apply Properties of Operations to Create Equivalent Expressions +22093,213,7.EE.A.1,Apply Properties of Operations to Create Equivalent Expressions +40142,213,7.EE.A.1,Apply Properties of Operations to Create Equivalent Expressions +40512,213,7.EE.A.1,Apply Properties of Operations to Create Equivalent Expressions +39475,213,7.EE.A.1,Apply Properties of Operations to Create Equivalent Expressions +43371,213,7.EE.A.1,Apply Properties of Operations to Create Equivalent Expressions +62186,213,7.EE.A.1,Apply Properties of Operations to Create Equivalent Expressions +146878,213,7.EE.A.1,Apply Properties of Operations to Create Equivalent Expressions +158903,213,7.EE.A.1,Apply Properties of Operations to Create Equivalent Expressions +158297,213,7.EE.A.1,Apply Properties of Operations to Create Equivalent Expressions +158771,213,7.EE.A.1,Apply Properties of Operations to Create Equivalent Expressions +162630,213,7.EE.A.1,Apply Properties of Operations to Create Equivalent Expressions +163965,213,7.EE.A.1,Apply Properties of Operations to Create Equivalent Expressions +190106,213,7.EE.A.1,Apply Properties of Operations to Create Equivalent Expressions +188812,213,7.EE.A.1,Apply Properties of Operations to Create Equivalent Expressions +214651,213,7.EE.A.1,Apply Properties of Operations to Create Equivalent Expressions +218163,213,7.EE.A.1,Apply Properties of Operations to Create Equivalent Expressions +277069,213,7.EE.A.1,Apply Properties of Operations to Create Equivalent Expressions +277314,213,7.EE.A.1,Apply Properties of Operations to Create Equivalent Expressions +327384,213,7.EE.A.1,Apply Properties of Operations to Create Equivalent Expressions +599220,213,7.EE.A.1,Apply Properties of Operations to Create Equivalent Expressions +66914,214,7.EE.A.2,Understand Equivalent Expressions in Context +171627,214,7.EE.A.2,Understand Equivalent Expressions in Context +257823,214,7.EE.A.2,Understand Equivalent Expressions in Context +537870,214,7.EE.A.2,Understand Equivalent Expressions in Context +25178,214,7.EE.A.2,Understand Equivalent Expressions in Context +51977,214,7.EE.A.2,Understand Equivalent Expressions in Context +341602,214,7.EE.A.2,Understand Equivalent Expressions in Context +275581,214,7.EE.A.2,Understand Equivalent Expressions in Context +303522,214,7.EE.A.2,Understand Equivalent Expressions in Context +235425,214,7.EE.A.2,Understand Equivalent Expressions in Context +327306,214,7.EE.A.2,Understand Equivalent Expressions in Context +56910,214,7.EE.A.2,Understand Equivalent Expressions in Context +109572,214,7.EE.A.2,Understand Equivalent Expressions in Context +171459,215,7.EE.B.3,Solve Applied Problems Using Numerical and Algebraic Expressions and Equations +156692,215,7.EE.B.3,Solve Applied Problems Using Numerical and Algebraic Expressions and Equations +246686,215,7.EE.B.3,Solve Applied Problems Using Numerical and Algebraic Expressions and Equations +257823,215,7.EE.B.3,Solve Applied Problems Using Numerical and Algebraic Expressions and Equations +244895,215,7.EE.B.3,Solve Applied Problems Using Numerical and Algebraic Expressions and Equations +171630,215,7.EE.B.3,Solve Applied Problems Using Numerical and Algebraic Expressions and Equations +97533,215,7.EE.B.3,Solve Applied Problems Using Numerical and Algebraic Expressions and Equations +184283,215,7.EE.B.3,Solve Applied Problems Using Numerical and Algebraic Expressions and Equations +97399,215,7.EE.B.3,Solve Applied Problems Using Numerical and Algebraic Expressions and Equations +96761,215,7.EE.B.3,Solve Applied Problems Using Numerical and Algebraic Expressions and Equations +245546,215,7.EE.B.3,Solve Applied Problems Using Numerical and Algebraic Expressions and Equations +152091,215,7.EE.B.3,Solve Applied Problems Using Numerical and Algebraic Expressions and Equations +245240,215,7.EE.B.3,Solve Applied Problems Using Numerical and Algebraic Expressions and Equations +246376,215,7.EE.B.3,Solve Applied Problems Using Numerical and Algebraic Expressions and Equations +184392,215,7.EE.B.3,Solve Applied Problems Using Numerical and Algebraic Expressions and Equations +184499,215,7.EE.B.3,Solve Applied Problems Using Numerical and Algebraic Expressions and Equations +152206,215,7.EE.B.3,Solve Applied Problems Using Numerical and Algebraic Expressions and Equations +152004,215,7.EE.B.3,Solve Applied Problems Using Numerical and Algebraic Expressions and Equations +78866,215,7.EE.B.3,Solve Applied Problems Using Numerical and Algebraic Expressions and Equations +96632,215,7.EE.B.3,Solve Applied Problems Using Numerical and Algebraic Expressions and Equations +506119,215,7.EE.B.3,Solve Applied Problems Using Numerical and Algebraic Expressions and Equations +171543,215,7.EE.B.3,Solve Applied Problems Using Numerical and Algebraic Expressions and Equations +246966,215,7.EE.B.3,Solve Applied Problems Using Numerical and Algebraic Expressions and Equations +96895,215,7.EE.B.3,Solve Applied Problems Using Numerical and Algebraic Expressions and Equations +97648,215,7.EE.B.3,Solve Applied Problems Using Numerical and Algebraic Expressions and Equations +506119,216,7.EE.B.3,Solve Applied Problems Using Numerical and Algebraic Expressions and Equations +75928,217,7.EE.B.4a,Solve 2-Step Equations +308593,217,7.EE.B.4a,Solve 2-Step Equations +308146,217,7.EE.B.4a,Solve 2-Step Equations +156494,217,7.EE.B.4a,Solve 2-Step Equations +157401,217,7.EE.B.4a,Solve 2-Step Equations +308518,217,7.EE.B.4a,Solve 2-Step Equations +157655,217,7.EE.B.4a,Solve 2-Step Equations +154770,217,7.EE.B.4a,Solve 2-Step Equations +156087,217,7.EE.B.4a,Solve 2-Step Equations +157516,217,7.EE.B.4a,Solve 2-Step Equations +375908,217,7.EE.B.4a,Solve 2-Step Equations +63357,217,7.EE.B.4a,Solve 2-Step Equations +155183,217,7.EE.B.4a,Solve 2-Step Equations +156936,217,7.EE.B.4a,Solve 2-Step Equations +155484,217,7.EE.B.4a,Solve 2-Step Equations +157262,217,7.EE.B.4a,Solve 2-Step Equations +442685,217,7.EE.B.4a,Solve 2-Step Equations +524787,217,7.EE.B.4a,Solve 2-Step Equations +158652,217,7.EE.B.4a,Solve 2-Step Equations +55829,217,7.EE.B.4a,Solve 2-Step Equations +56136,217,7.EE.B.4a,Solve 2-Step Equations +54008,217,7.EE.B.4a,Solve 2-Step Equations +56457,217,7.EE.B.4a,Solve 2-Step Equations +443136,217,7.EE.B.4a,Solve 2-Step Equations +53735,217,7.EE.B.4a,Solve 2-Step Equations +55691,217,7.EE.B.4a,Solve 2-Step Equations +367805,217,7.EE.B.4a,Solve 2-Step Equations +63291,217,7.EE.B.4a,Solve 2-Step Equations +376399,217,7.EE.B.4a,Solve 2-Step Equations +178835,217,7.EE.B.4a,Solve 2-Step Equations +179212,217,7.EE.B.4a,Solve 2-Step Equations +179341,217,7.EE.B.4a,Solve 2-Step Equations +183371,217,7.EE.B.4a,Solve 2-Step Equations +369393,217,7.EE.B.4a,Solve 2-Step Equations +525202,217,7.EE.B.4a,Solve 2-Step Equations +341780,217,7.EE.B.4a,Solve 2-Step Equations +131999,217,7.EE.B.4a,Solve 2-Step Equations +341553,217,7.EE.B.4a,Solve 2-Step Equations +131796,217,7.EE.B.4a,Solve 2-Step Equations +376894,217,7.EE.B.4a,Solve 2-Step Equations +131886,217,7.EE.B.4a,Solve 2-Step Equations +132093,217,7.EE.B.4a,Solve 2-Step Equations +369146,217,7.EE.B.4a,Solve 2-Step Equations +337756,217,7.EE.B.4a,Solve 2-Step Equations +11040,217,7.EE.B.4a,Solve 2-Step Equations +90428,217,7.EE.B.4a,Solve 2-Step Equations +90560,217,7.EE.B.4a,Solve 2-Step Equations +368501,217,7.EE.B.4a,Solve 2-Step Equations +90063,217,7.EE.B.4a,Solve 2-Step Equations +368816,217,7.EE.B.4a,Solve 2-Step Equations +368183,217,7.EE.B.4a,Solve 2-Step Equations +153281,217,7.EE.B.4a,Solve 2-Step Equations +155769,217,7.EE.B.4a,Solve 2-Step Equations +76294,217,7.EE.B.4a,Solve 2-Step Equations +194628,217,7.EE.B.4a,Solve 2-Step Equations +376600,217,7.EE.B.4a,Solve 2-Step Equations +179089,217,7.EE.B.4a,Solve 2-Step Equations +178963,217,7.EE.B.4a,Solve 2-Step Equations +194530,217,7.EE.B.4a,Solve 2-Step Equations +31406,217,7.EE.B.4a,Solve 2-Step Equations +178546,217,7.EE.B.4a,Solve 2-Step Equations +178686,217,7.EE.B.4a,Solve 2-Step Equations +190220,217,7.EE.B.4a,Solve 2-Step Equations +274694,217,7.EE.B.4a,Solve 2-Step Equations +195078,217,7.EE.B.4a,Solve 2-Step Equations +194712,217,7.EE.B.4a,Solve 2-Step Equations +376147,217,7.EE.B.4a,Solve 2-Step Equations +194986,217,7.EE.B.4a,Solve 2-Step Equations +194802,217,7.EE.B.4a,Solve 2-Step Equations +194900,217,7.EE.B.4a,Solve 2-Step Equations +341553,218,7.EE.B.4b,"Solve, Graph & Interpret 2-Step Inequalities" +51952,218,7.EE.B.4b,"Solve, Graph & Interpret 2-Step Inequalities" +51606,218,7.EE.B.4b,"Solve, Graph & Interpret 2-Step Inequalities" +163825,218,7.EE.B.4b,"Solve, Graph & Interpret 2-Step Inequalities" +341780,218,7.EE.B.4b,"Solve, Graph & Interpret 2-Step Inequalities" +189992,218,7.EE.B.4b,"Solve, Graph & Interpret 2-Step Inequalities" +80087,218,7.EE.B.4b,"Solve, Graph & Interpret 2-Step Inequalities" +302140,218,7.EE.B.4b,"Solve, Graph & Interpret 2-Step Inequalities" +302326,218,7.EE.B.4b,"Solve, Graph & Interpret 2-Step Inequalities" +110803,218,7.EE.B.4b,"Solve, Graph & Interpret 2-Step Inequalities" +323597,218,7.EE.B.4b,"Solve, Graph & Interpret 2-Step Inequalities" +233480,218,7.EE.B.4b,"Solve, Graph & Interpret 2-Step Inequalities" +302522,218,7.EE.B.4b,"Solve, Graph & Interpret 2-Step Inequalities" +346366,218,7.EE.B.4b,"Solve, Graph & Interpret 2-Step Inequalities" +347843,218,7.EE.B.4b,"Solve, Graph & Interpret 2-Step Inequalities" +73862,218,7.EE.B.4b,"Solve, Graph & Interpret 2-Step Inequalities" +386124,219,7.G.A.1,Solve Scale Drawing Problems +110217,219,7.G.A.1,Solve Scale Drawing Problems +115930,219,7.G.A.1,Solve Scale Drawing Problems +116350,219,7.G.A.1,Solve Scale Drawing Problems +114882,219,7.G.A.1,Solve Scale Drawing Problems +115829,219,7.G.A.1,Solve Scale Drawing Problems +114557,219,7.G.A.1,Solve Scale Drawing Problems +114712,219,7.G.A.1,Solve Scale Drawing Problems +116142,219,7.G.A.1,Solve Scale Drawing Problems +3216,219,7.G.A.1,Solve Scale Drawing Problems +3108,219,7.G.A.1,Solve Scale Drawing Problems +2532,219,7.G.A.1,Solve Scale Drawing Problems +240434,219,7.G.A.1,Solve Scale Drawing Problems +218802,219,7.G.A.1,Solve Scale Drawing Problems +10706,219,7.G.A.1,Solve Scale Drawing Problems +10844,219,7.G.A.1,Solve Scale Drawing Problems +11049,219,7.G.A.1,Solve Scale Drawing Problems +12289,219,7.G.A.1,Solve Scale Drawing Problems +12898,219,7.G.A.1,Solve Scale Drawing Problems +12006,219,7.G.A.1,Solve Scale Drawing Problems +12129,219,7.G.A.1,Solve Scale Drawing Problems +15259,219,7.G.A.1,Solve Scale Drawing Problems +209639,219,7.G.A.1,Solve Scale Drawing Problems +247183,219,7.G.A.1,Solve Scale Drawing Problems +209207,219,7.G.A.1,Solve Scale Drawing Problems +208077,219,7.G.A.1,Solve Scale Drawing Problems +24106,219,7.G.A.1,Solve Scale Drawing Problems +208921,219,7.G.A.1,Solve Scale Drawing Problems +24870,219,7.G.A.1,Solve Scale Drawing Problems +257011,219,7.G.A.1,Solve Scale Drawing Problems +207210,219,7.G.A.1,Solve Scale Drawing Problems +256312,219,7.G.A.1,Solve Scale Drawing Problems +24640,219,7.G.A.1,Solve Scale Drawing Problems +208594,219,7.G.A.1,Solve Scale Drawing Problems +27571,219,7.G.A.1,Solve Scale Drawing Problems +27844,219,7.G.A.1,Solve Scale Drawing Problems +28656,219,7.G.A.1,Solve Scale Drawing Problems +26892,219,7.G.A.1,Solve Scale Drawing Problems +27332,219,7.G.A.1,Solve Scale Drawing Problems +28087,219,7.G.A.1,Solve Scale Drawing Problems +28347,219,7.G.A.1,Solve Scale Drawing Problems +36042,219,7.G.A.1,Solve Scale Drawing Problems +181638,219,7.G.A.1,Solve Scale Drawing Problems +176239,219,7.G.A.1,Solve Scale Drawing Problems +176093,219,7.G.A.1,Solve Scale Drawing Problems +508521,219,7.G.A.1,Solve Scale Drawing Problems +44235,219,7.G.A.1,Solve Scale Drawing Problems +290885,219,7.G.A.1,Solve Scale Drawing Problems +509883,219,7.G.A.1,Solve Scale Drawing Problems +44380,219,7.G.A.1,Solve Scale Drawing Problems +165102,219,7.G.A.1,Solve Scale Drawing Problems +294072,219,7.G.A.1,Solve Scale Drawing Problems +51489,219,7.G.A.1,Solve Scale Drawing Problems +52116,219,7.G.A.1,Solve Scale Drawing Problems +51828,219,7.G.A.1,Solve Scale Drawing Problems +569234,219,7.G.A.1,Solve Scale Drawing Problems +510249,219,7.G.A.1,Solve Scale Drawing Problems +165767,219,7.G.A.1,Solve Scale Drawing Problems +61151,219,7.G.A.1,Solve Scale Drawing Problems +301410,219,7.G.A.1,Solve Scale Drawing Problems +303155,219,7.G.A.1,Solve Scale Drawing Problems +301201,219,7.G.A.1,Solve Scale Drawing Problems +60631,219,7.G.A.1,Solve Scale Drawing Problems +160506,219,7.G.A.1,Solve Scale Drawing Problems +303079,219,7.G.A.1,Solve Scale Drawing Problems +509539,219,7.G.A.1,Solve Scale Drawing Problems +303219,219,7.G.A.1,Solve Scale Drawing Problems +230204,219,7.G.A.1,Solve Scale Drawing Problems +69785,219,7.G.A.1,Solve Scale Drawing Problems +429837,219,7.G.A.1,Solve Scale Drawing Problems +430037,219,7.G.A.1,Solve Scale Drawing Problems +77198,219,7.G.A.1,Solve Scale Drawing Problems +76811,219,7.G.A.1,Solve Scale Drawing Problems +146478,219,7.G.A.1,Solve Scale Drawing Problems +419376,219,7.G.A.1,Solve Scale Drawing Problems +145212,219,7.G.A.1,Solve Scale Drawing Problems +230683,219,7.G.A.1,Solve Scale Drawing Problems +4480,219,7.G.A.1,Solve Scale Drawing Problems +413713,219,7.G.A.1,Solve Scale Drawing Problems +3378,219,7.G.A.1,Solve Scale Drawing Problems +411481,219,7.G.A.1,Solve Scale Drawing Problems +412048,219,7.G.A.1,Solve Scale Drawing Problems +341397,219,7.G.A.1,Solve Scale Drawing Problems +341023,219,7.G.A.1,Solve Scale Drawing Problems +411000,219,7.G.A.1,Solve Scale Drawing Problems +352275,219,7.G.A.1,Solve Scale Drawing Problems +341117,219,7.G.A.1,Solve Scale Drawing Problems +347917,219,7.G.A.1,Solve Scale Drawing Problems +107252,219,7.G.A.1,Solve Scale Drawing Problems +231026,219,7.G.A.1,Solve Scale Drawing Problems +509085,219,7.G.A.1,Solve Scale Drawing Problems +108073,219,7.G.A.1,Solve Scale Drawing Problems +124672,219,7.G.A.1,Solve Scale Drawing Problems +123896,219,7.G.A.1,Solve Scale Drawing Problems +123335,219,7.G.A.1,Solve Scale Drawing Problems +352500,219,7.G.A.1,Solve Scale Drawing Problems +352677,219,7.G.A.1,Solve Scale Drawing Problems +123653,219,7.G.A.1,Solve Scale Drawing Problems +123600,219,7.G.A.1,Solve Scale Drawing Problems +122745,219,7.G.A.1,Solve Scale Drawing Problems +628100,219,7.G.A.1,Solve Scale Drawing Problems +123304,219,7.G.A.1,Solve Scale Drawing Problems +123193,219,7.G.A.1,Solve Scale Drawing Problems +109969,219,7.G.A.1,Solve Scale Drawing Problems +120984,219,7.G.A.1,Solve Scale Drawing Problems +110096,219,7.G.A.1,Solve Scale Drawing Problems +124091,219,7.G.A.1,Solve Scale Drawing Problems +109845,219,7.G.A.1,Solve Scale Drawing Problems +122126,219,7.G.A.1,Solve Scale Drawing Problems +108663,219,7.G.A.1,Solve Scale Drawing Problems +123444,219,7.G.A.1,Solve Scale Drawing Problems +117237,219,7.G.A.1,Solve Scale Drawing Problems +121497,219,7.G.A.1,Solve Scale Drawing Problems +178225,220,7.G.A.2,Draw Geometric Shapes & Unique Triangles +405080,220,7.G.A.2,Draw Geometric Shapes & Unique Triangles +1442,220,7.G.A.2,Draw Geometric Shapes & Unique Triangles +558308,220,7.G.A.2,Draw Geometric Shapes & Unique Triangles +1606,220,7.G.A.2,Draw Geometric Shapes & Unique Triangles +107995,220,7.G.A.2,Draw Geometric Shapes & Unique Triangles +260281,220,7.G.A.2,Draw Geometric Shapes & Unique Triangles +558187,220,7.G.A.2,Draw Geometric Shapes & Unique Triangles +264186,220,7.G.A.2,Draw Geometric Shapes & Unique Triangles +260726,220,7.G.A.2,Draw Geometric Shapes & Unique Triangles +567463,220,7.G.A.2,Draw Geometric Shapes & Unique Triangles +483519,220,7.G.A.2,Draw Geometric Shapes & Unique Triangles +97230,220,7.G.A.2,Draw Geometric Shapes & Unique Triangles +196033,220,7.G.A.2,Draw Geometric Shapes & Unique Triangles +365643,220,7.G.A.2,Draw Geometric Shapes & Unique Triangles +123610,220,7.G.A.2,Draw Geometric Shapes & Unique Triangles +483667,220,7.G.A.2,Draw Geometric Shapes & Unique Triangles +259177,220,7.G.A.2,Draw Geometric Shapes & Unique Triangles +258731,220,7.G.A.2,Draw Geometric Shapes & Unique Triangles +177311,220,7.G.A.2,Draw Geometric Shapes & Unique Triangles +97111,220,7.G.A.2,Draw Geometric Shapes & Unique Triangles +303405,220,7.G.A.2,Draw Geometric Shapes & Unique Triangles +130499,220,7.G.A.2,Draw Geometric Shapes & Unique Triangles +117623,220,7.G.A.2,Draw Geometric Shapes & Unique Triangles +177761,220,7.G.A.2,Draw Geometric Shapes & Unique Triangles +114275,221,7.G.A.3,Describe 2D Cross Sections of 3D figures +7407,221,7.G.A.3,Describe 2D Cross Sections of 3D figures +7158,221,7.G.A.3,Describe 2D Cross Sections of 3D figures +7280,221,7.G.A.3,Describe 2D Cross Sections of 3D figures +7514,221,7.G.A.3,Describe 2D Cross Sections of 3D figures +68115,221,7.G.A.3,Describe 2D Cross Sections of 3D figures +6946,221,7.G.A.3,Describe 2D Cross Sections of 3D figures +348992,221,7.G.A.3,Describe 2D Cross Sections of 3D figures +449437,222,7.G.B.4,Solve Problems Involving Area & Circumference of Circles +270634,222,7.G.B.4,Solve Problems Involving Area & Circumference of Circles +268814,222,7.G.B.4,Solve Problems Involving Area & Circumference of Circles +269908,222,7.G.B.4,Solve Problems Involving Area & Circumference of Circles +271772,222,7.G.B.4,Solve Problems Involving Area & Circumference of Circles +363499,222,7.G.B.4,Solve Problems Involving Area & Circumference of Circles +269382,222,7.G.B.4,Solve Problems Involving Area & Circumference of Circles +176149,222,7.G.B.4,Solve Problems Involving Area & Circumference of Circles +268435,222,7.G.B.4,Solve Problems Involving Area & Circumference of Circles +275547,222,7.G.B.4,Solve Problems Involving Area & Circumference of Circles +270843,222,7.G.B.4,Solve Problems Involving Area & Circumference of Circles +270921,222,7.G.B.4,Solve Problems Involving Area & Circumference of Circles +318098,222,7.G.B.4,Solve Problems Involving Area & Circumference of Circles +317851,222,7.G.B.4,Solve Problems Involving Area & Circumference of Circles +102054,222,7.G.B.4,Solve Problems Involving Area & Circumference of Circles +25643,222,7.G.B.4,Solve Problems Involving Area & Circumference of Circles +318409,222,7.G.B.4,Solve Problems Involving Area & Circumference of Circles +273496,222,7.G.B.4,Solve Problems Involving Area & Circumference of Circles +301355,222,7.G.B.4,Solve Problems Involving Area & Circumference of Circles +449067,222,7.G.B.4,Solve Problems Involving Area & Circumference of Circles +267619,222,7.G.B.4,Solve Problems Involving Area & Circumference of Circles +268157,222,7.G.B.4,Solve Problems Involving Area & Circumference of Circles +202903,222,7.G.B.4,Solve Problems Involving Area & Circumference of Circles +155429,222,7.G.B.4,Solve Problems Involving Area & Circumference of Circles +156264,222,7.G.B.4,Solve Problems Involving Area & Circumference of Circles +595052,222,7.G.B.4,Solve Problems Involving Area & Circumference of Circles +274856,222,7.G.B.4,Solve Problems Involving Area & Circumference of Circles +274359,222,7.G.B.4,Solve Problems Involving Area & Circumference of Circles +272056,222,7.G.B.4,Solve Problems Involving Area & Circumference of Circles +437300,222,7.G.B.4,Solve Problems Involving Area & Circumference of Circles +179995,222,7.G.B.4,Solve Problems Involving Area & Circumference of Circles +301541,222,7.G.B.4,Solve Problems Involving Area & Circumference of Circles +270690,222,7.G.B.4,Solve Problems Involving Area & Circumference of Circles +272853,222,7.G.B.4,Solve Problems Involving Area & Circumference of Circles +437183,222,7.G.B.4,Solve Problems Involving Area & Circumference of Circles +156887,222,7.G.B.4,Solve Problems Involving Area & Circumference of Circles +155089,222,7.G.B.4,Solve Problems Involving Area & Circumference of Circles +271219,222,7.G.B.4,Solve Problems Involving Area & Circumference of Circles +242782,222,7.G.B.4,Solve Problems Involving Area & Circumference of Circles +437057,222,7.G.B.4,Solve Problems Involving Area & Circumference of Circles +25874,222,7.G.B.4,Solve Problems Involving Area & Circumference of Circles +155994,222,7.G.B.4,Solve Problems Involving Area & Circumference of Circles +101757,222,7.G.B.4,Solve Problems Involving Area & Circumference of Circles +437428,222,7.G.B.4,Solve Problems Involving Area & Circumference of Circles +274572,222,7.G.B.4,Solve Problems Involving Area & Circumference of Circles +456048,222,7.G.B.4,Solve Problems Involving Area & Circumference of Circles +301764,222,7.G.B.4,Solve Problems Involving Area & Circumference of Circles +434672,222,7.G.B.4,Solve Problems Involving Area & Circumference of Circles +273737,222,7.G.B.4,Solve Problems Involving Area & Circumference of Circles +302327,222,7.G.B.4,Solve Problems Involving Area & Circumference of Circles +272544,222,7.G.B.4,Solve Problems Involving Area & Circumference of Circles +274114,222,7.G.B.4,Solve Problems Involving Area & Circumference of Circles +26210,222,7.G.B.4,Solve Problems Involving Area & Circumference of Circles +271552,222,7.G.B.4,Solve Problems Involving Area & Circumference of Circles +284643,222,7.G.B.4,Solve Problems Involving Area & Circumference of Circles +242585,222,7.G.B.4,Solve Problems Involving Area & Circumference of Circles +317396,222,7.G.B.4,Solve Problems Involving Area & Circumference of Circles +27039,222,7.G.B.4,Solve Problems Involving Area & Circumference of Circles +267963,222,7.G.B.4,Solve Problems Involving Area & Circumference of Circles +318855,222,7.G.B.4,Solve Problems Involving Area & Circumference of Circles +273221,222,7.G.B.4,Solve Problems Involving Area & Circumference of Circles +268402,222,7.G.B.4,Solve Problems Involving Area & Circumference of Circles +317673,222,7.G.B.4,Solve Problems Involving Area & Circumference of Circles +120203,222,7.G.B.4,Solve Problems Involving Area & Circumference of Circles +662,222,7.G.B.4,Solve Problems Involving Area & Circumference of Circles +272370,222,7.G.B.4,Solve Problems Involving Area & Circumference of Circles +27175,222,7.G.B.4,Solve Problems Involving Area & Circumference of Circles +269095,222,7.G.B.4,Solve Problems Involving Area & Circumference of Circles +302084,222,7.G.B.4,Solve Problems Involving Area & Circumference of Circles +149544,223,7.G.B.4,Solve Problems Involving Area & Circumference of Circles +172418,223,7.G.B.4,Solve Problems Involving Area & Circumference of Circles +172894,223,7.G.B.4,Solve Problems Involving Area & Circumference of Circles +270027,223,7.G.B.4,Solve Problems Involving Area & Circumference of Circles +270843,223,7.G.B.4,Solve Problems Involving Area & Circumference of Circles +270553,223,7.G.B.4,Solve Problems Involving Area & Circumference of Circles +268402,223,7.G.B.4,Solve Problems Involving Area & Circumference of Circles +88453,223,7.G.B.4,Solve Problems Involving Area & Circumference of Circles +294382,223,7.G.B.4,Solve Problems Involving Area & Circumference of Circles +448752,223,7.G.B.4,Solve Problems Involving Area & Circumference of Circles +26348,223,7.G.B.4,Solve Problems Involving Area & Circumference of Circles +88342,223,7.G.B.4,Solve Problems Involving Area & Circumference of Circles +199123,223,7.G.B.4,Solve Problems Involving Area & Circumference of Circles +122706,223,7.G.B.4,Solve Problems Involving Area & Circumference of Circles +56351,223,7.G.B.4,Solve Problems Involving Area & Circumference of Circles +360704,223,7.G.B.4,Solve Problems Involving Area & Circumference of Circles +27175,223,7.G.B.4,Solve Problems Involving Area & Circumference of Circles +26568,223,7.G.B.4,Solve Problems Involving Area & Circumference of Circles +88561,223,7.G.B.4,Solve Problems Involving Area & Circumference of Circles +25445,223,7.G.B.4,Solve Problems Involving Area & Circumference of Circles +594916,223,7.G.B.4,Solve Problems Involving Area & Circumference of Circles +25643,223,7.G.B.4,Solve Problems Involving Area & Circumference of Circles +270246,223,7.G.B.4,Solve Problems Involving Area & Circumference of Circles +172163,223,7.G.B.4,Solve Problems Involving Area & Circumference of Circles +25874,223,7.G.B.4,Solve Problems Involving Area & Circumference of Circles +175501,223,7.G.B.4,Solve Problems Involving Area & Circumference of Circles +7411,223,7.G.B.4,Solve Problems Involving Area & Circumference of Circles +155429,223,7.G.B.4,Solve Problems Involving Area & Circumference of Circles +155680,223,7.G.B.4,Solve Problems Involving Area & Circumference of Circles +120578,223,7.G.B.4,Solve Problems Involving Area & Circumference of Circles +7396,223,7.G.B.4,Solve Problems Involving Area & Circumference of Circles +26908,223,7.G.B.4,Solve Problems Involving Area & Circumference of Circles +172629,223,7.G.B.4,Solve Problems Involving Area & Circumference of Circles +176149,223,7.G.B.4,Solve Problems Involving Area & Circumference of Circles +455884,223,7.G.B.4,Solve Problems Involving Area & Circumference of Circles +178083,223,7.G.B.4,Solve Problems Involving Area & Circumference of Circles +175875,223,7.G.B.4,Solve Problems Involving Area & Circumference of Circles +594916,224,7.G.B.4,Solve Problems Involving Area & Circumference of Circles +457,224,7.G.B.4,Solve Problems Involving Area & Circumference of Circles +595192,224,7.G.B.4,Solve Problems Involving Area & Circumference of Circles +595052,224,7.G.B.4,Solve Problems Involving Area & Circumference of Circles +569,224,7.G.B.4,Solve Problems Involving Area & Circumference of Circles +525911,224,7.G.B.4,Solve Problems Involving Area & Circumference of Circles +23899,224,7.G.B.4,Solve Problems Involving Area & Circumference of Circles +24350,224,7.G.B.4,Solve Problems Involving Area & Circumference of Circles +662,224,7.G.B.4,Solve Problems Involving Area & Circumference of Circles +375373,225,7.G.B.5,Use Facts About Angles to Write & Solve Equations +168990,225,7.G.B.5,Use Facts About Angles to Write & Solve Equations +188665,225,7.G.B.5,Use Facts About Angles to Write & Solve Equations +154915,225,7.G.B.5,Use Facts About Angles to Write & Solve Equations +93262,225,7.G.B.5,Use Facts About Angles to Write & Solve Equations +252146,225,7.G.B.5,Use Facts About Angles to Write & Solve Equations +86560,225,7.G.B.5,Use Facts About Angles to Write & Solve Equations +351786,225,7.G.B.5,Use Facts About Angles to Write & Solve Equations +86650,225,7.G.B.5,Use Facts About Angles to Write & Solve Equations +129121,225,7.G.B.5,Use Facts About Angles to Write & Solve Equations +189053,225,7.G.B.5,Use Facts About Angles to Write & Solve Equations +449139,225,7.G.B.5,Use Facts About Angles to Write & Solve Equations +448806,225,7.G.B.5,Use Facts About Angles to Write & Solve Equations +526525,225,7.G.B.5,Use Facts About Angles to Write & Solve Equations +154426,225,7.G.B.5,Use Facts About Angles to Write & Solve Equations +86456,225,7.G.B.5,Use Facts About Angles to Write & Solve Equations +298893,225,7.G.B.5,Use Facts About Angles to Write & Solve Equations +598936,225,7.G.B.5,Use Facts About Angles to Write & Solve Equations +351554,225,7.G.B.5,Use Facts About Angles to Write & Solve Equations +297072,225,7.G.B.5,Use Facts About Angles to Write & Solve Equations +170408,225,7.G.B.5,Use Facts About Angles to Write & Solve Equations +154202,225,7.G.B.5,Use Facts About Angles to Write & Solve Equations +247252,225,7.G.B.5,Use Facts About Angles to Write & Solve Equations +86365,225,7.G.B.5,Use Facts About Angles to Write & Solve Equations +86798,225,7.G.B.5,Use Facts About Angles to Write & Solve Equations +249250,225,7.G.B.5,Use Facts About Angles to Write & Solve Equations +86278,225,7.G.B.5,Use Facts About Angles to Write & Solve Equations +448452,225,7.G.B.5,Use Facts About Angles to Write & Solve Equations +160140,225,7.G.B.5,Use Facts About Angles to Write & Solve Equations +92551,225,7.G.B.5,Use Facts About Angles to Write & Solve Equations +128818,225,7.G.B.5,Use Facts About Angles to Write & Solve Equations +92939,225,7.G.B.5,Use Facts About Angles to Write & Solve Equations +154657,225,7.G.B.5,Use Facts About Angles to Write & Solve Equations +153940,225,7.G.B.5,Use Facts About Angles to Write & Solve Equations +246605,225,7.G.B.5,Use Facts About Angles to Write & Solve Equations +449555,225,7.G.B.5,Use Facts About Angles to Write & Solve Equations +130937,227,7.G.B.5,Use Facts About Angles to Write & Solve Equations +475938,228,7.G.B.6,"Find Area, Volume & Surface Area of 2D/3D Objects" +674301,228,7.G.B.6,"Find Area, Volume & Surface Area of 2D/3D Objects" +475820,228,7.G.B.6,"Find Area, Volume & Surface Area of 2D/3D Objects" +162087,228,7.G.B.6,"Find Area, Volume & Surface Area of 2D/3D Objects" +155972,228,7.G.B.6,"Find Area, Volume & Surface Area of 2D/3D Objects" +156411,228,7.G.B.6,"Find Area, Volume & Surface Area of 2D/3D Objects" +6562,228,7.G.B.6,"Find Area, Volume & Surface Area of 2D/3D Objects" +3195,229,7.G.B.6,"Find Area, Volume & Surface Area of 2D/3D Objects" +296039,229,7.G.B.6,"Find Area, Volume & Surface Area of 2D/3D Objects" +153688,229,7.G.B.6,"Find Area, Volume & Surface Area of 2D/3D Objects" +251994,229,7.G.B.6,"Find Area, Volume & Surface Area of 2D/3D Objects" +251573,229,7.G.B.6,"Find Area, Volume & Surface Area of 2D/3D Objects" +156599,229,7.G.B.6,"Find Area, Volume & Surface Area of 2D/3D Objects" +153479,229,7.G.B.6,"Find Area, Volume & Surface Area of 2D/3D Objects" +151997,229,7.G.B.6,"Find Area, Volume & Surface Area of 2D/3D Objects" +53711,229,7.G.B.6,"Find Area, Volume & Surface Area of 2D/3D Objects" +302658,229,7.G.B.6,"Find Area, Volume & Surface Area of 2D/3D Objects" +108867,229,7.G.B.6,"Find Area, Volume & Surface Area of 2D/3D Objects" +348314,229,7.G.B.6,"Find Area, Volume & Surface Area of 2D/3D Objects" +226658,229,7.G.B.6,"Find Area, Volume & Surface Area of 2D/3D Objects" +226452,229,7.G.B.6,"Find Area, Volume & Surface Area of 2D/3D Objects" +152711,229,7.G.B.6,"Find Area, Volume & Surface Area of 2D/3D Objects" +44592,229,7.G.B.6,"Find Area, Volume & Surface Area of 2D/3D Objects" +153291,229,7.G.B.6,"Find Area, Volume & Surface Area of 2D/3D Objects" +44926,229,7.G.B.6,"Find Area, Volume & Surface Area of 2D/3D Objects" +108650,229,7.G.B.6,"Find Area, Volume & Surface Area of 2D/3D Objects" +53415,229,7.G.B.6,"Find Area, Volume & Surface Area of 2D/3D Objects" +153106,229,7.G.B.6,"Find Area, Volume & Surface Area of 2D/3D Objects" +207279,229,7.G.B.6,"Find Area, Volume & Surface Area of 2D/3D Objects" +156219,229,7.G.B.6,"Find Area, Volume & Surface Area of 2D/3D Objects" +251741,229,7.G.B.6,"Find Area, Volume & Surface Area of 2D/3D Objects" +132812,229,7.G.B.6,"Find Area, Volume & Surface Area of 2D/3D Objects" +152894,229,7.G.B.6,"Find Area, Volume & Surface Area of 2D/3D Objects" +133008,229,7.G.B.6,"Find Area, Volume & Surface Area of 2D/3D Objects" +244435,230,7.G.B.6,"Find Area, Volume & Surface Area of 2D/3D Objects" +244865,230,7.G.B.6,"Find Area, Volume & Surface Area of 2D/3D Objects" +295905,230,7.G.B.6,"Find Area, Volume & Surface Area of 2D/3D Objects" +110217,230,7.G.B.6,"Find Area, Volume & Surface Area of 2D/3D Objects" +128308,230,7.G.B.6,"Find Area, Volume & Surface Area of 2D/3D Objects" +226249,230,7.G.B.6,"Find Area, Volume & Surface Area of 2D/3D Objects" +674301,230,7.G.B.6,"Find Area, Volume & Surface Area of 2D/3D Objects" +108650,230,7.G.B.6,"Find Area, Volume & Surface Area of 2D/3D Objects" +251741,230,7.G.B.6,"Find Area, Volume & Surface Area of 2D/3D Objects" +152894,230,7.G.B.6,"Find Area, Volume & Surface Area of 2D/3D Objects" +80588,230,7.G.B.6,"Find Area, Volume & Surface Area of 2D/3D Objects" +245152,230,7.G.B.6,"Find Area, Volume & Surface Area of 2D/3D Objects" +131558,230,7.G.B.6,"Find Area, Volume & Surface Area of 2D/3D Objects" +152711,230,7.G.B.6,"Find Area, Volume & Surface Area of 2D/3D Objects" +244645,230,7.G.B.6,"Find Area, Volume & Surface Area of 2D/3D Objects" +153688,230,7.G.B.6,"Find Area, Volume & Surface Area of 2D/3D Objects" +227110,230,7.G.B.6,"Find Area, Volume & Surface Area of 2D/3D Objects" +153291,230,7.G.B.6,"Find Area, Volume & Surface Area of 2D/3D Objects" +153479,230,7.G.B.6,"Find Area, Volume & Surface Area of 2D/3D Objects" +153106,230,7.G.B.6,"Find Area, Volume & Surface Area of 2D/3D Objects" +330320,230,7.G.B.6,"Find Area, Volume & Surface Area of 2D/3D Objects" +348188,230,7.G.B.6,"Find Area, Volume & Surface Area of 2D/3D Objects" +251573,230,7.G.B.6,"Find Area, Volume & Surface Area of 2D/3D Objects" +110096,230,7.G.B.6,"Find Area, Volume & Surface Area of 2D/3D Objects" +373766,230,7.G.B.6,"Find Area, Volume & Surface Area of 2D/3D Objects" +209528,230,7.G.B.6,"Find Area, Volume & Surface Area of 2D/3D Objects" +209221,230,7.G.B.6,"Find Area, Volume & Surface Area of 2D/3D Objects" +156797,230,7.G.B.6,"Find Area, Volume & Surface Area of 2D/3D Objects" +226658,230,7.G.B.6,"Find Area, Volume & Surface Area of 2D/3D Objects" +244890,230,7.G.B.6,"Find Area, Volume & Surface Area of 2D/3D Objects" +124486,230,7.G.B.6,"Find Area, Volume & Surface Area of 2D/3D Objects" +246416,230,7.G.B.6,"Find Area, Volume & Surface Area of 2D/3D Objects" +209608,230,7.G.B.6,"Find Area, Volume & Surface Area of 2D/3D Objects" +162201,230,7.G.B.6,"Find Area, Volume & Surface Area of 2D/3D Objects" +227295,230,7.G.B.6,"Find Area, Volume & Surface Area of 2D/3D Objects" +109845,230,7.G.B.6,"Find Area, Volume & Surface Area of 2D/3D Objects" +109969,230,7.G.B.6,"Find Area, Volume & Surface Area of 2D/3D Objects" +373493,230,7.G.B.6,"Find Area, Volume & Surface Area of 2D/3D Objects" +302268,230,7.G.B.6,"Find Area, Volume & Surface Area of 2D/3D Objects" +124819,230,7.G.B.6,"Find Area, Volume & Surface Area of 2D/3D Objects" +108867,230,7.G.B.6,"Find Area, Volume & Surface Area of 2D/3D Objects" +258429,232,7.SP.A.1,Interpret Methods of Sampling +310109,232,7.SP.A.1,Interpret Methods of Sampling +99239,232,7.SP.A.1,Interpret Methods of Sampling +308995,232,7.SP.A.1,Interpret Methods of Sampling +539325,232,7.SP.A.1,Interpret Methods of Sampling +99112,232,7.SP.A.1,Interpret Methods of Sampling +106396,232,7.SP.A.1,Interpret Methods of Sampling +309627,232,7.SP.A.1,Interpret Methods of Sampling +266053,232,7.SP.A.1,Interpret Methods of Sampling +100451,232,7.SP.A.1,Interpret Methods of Sampling +106494,232,7.SP.A.1,Interpret Methods of Sampling +266182,233,7.SP.A.2,Use Random Samples to Draw Influences +99379,233,7.SP.A.2,Use Random Samples to Draw Influences +23659,233,7.SP.A.2,Use Random Samples to Draw Influences +298906,233,7.SP.A.2,Use Random Samples to Draw Influences +104881,233,7.SP.A.2,Use Random Samples to Draw Influences +215871,233,7.SP.A.2,Use Random Samples to Draw Influences +297237,233,7.SP.A.2,Use Random Samples to Draw Influences +105229,233,7.SP.A.2,Use Random Samples to Draw Influences +106945,233,7.SP.A.2,Use Random Samples to Draw Influences +99112,233,7.SP.A.2,Use Random Samples to Draw Influences +23449,233,7.SP.A.2,Use Random Samples to Draw Influences +298063,233,7.SP.A.2,Use Random Samples to Draw Influences +24873,233,7.SP.A.2,Use Random Samples to Draw Influences +539841,233,7.SP.A.2,Use Random Samples to Draw Influences +298561,233,7.SP.A.2,Use Random Samples to Draw Influences +105511,233,7.SP.A.2,Use Random Samples to Draw Influences +325378,233,7.SP.A.2,Use Random Samples to Draw Influences +403293,233,7.SP.A.2,Use Random Samples to Draw Influences +297976,233,7.SP.A.2,Use Random Samples to Draw Influences +298486,233,7.SP.A.2,Use Random Samples to Draw Influences +266053,233,7.SP.A.2,Use Random Samples to Draw Influences +297138,233,7.SP.A.2,Use Random Samples to Draw Influences +8405,234,7.SP.B.3,Compare Populations using Center & Variability +187130,234,7.SP.B.3,Compare Populations using Center & Variability +267394,234,7.SP.B.3,Compare Populations using Center & Variability +265806,234,7.SP.B.3,Compare Populations using Center & Variability +267307,234,7.SP.B.3,Compare Populations using Center & Variability +187602,234,7.SP.B.3,Compare Populations using Center & Variability +187451,234,7.SP.B.3,Compare Populations using Center & Variability +39707,234,7.SP.B.3,Compare Populations using Center & Variability +39360,234,7.SP.B.3,Compare Populations using Center & Variability +98828,234,7.SP.B.3,Compare Populations using Center & Variability +187306,234,7.SP.B.3,Compare Populations using Center & Variability +187772,234,7.SP.B.3,Compare Populations using Center & Variability +256298,235,7.SP.B.4,Draw Inferences using Measures of Center & Variability +99606,235,7.SP.B.4,Draw Inferences using Measures of Center & Variability +298063,235,7.SP.B.4,Draw Inferences using Measures of Center & Variability +169705,235,7.SP.B.4,Draw Inferences using Measures of Center & Variability +99939,235,7.SP.B.4,Draw Inferences using Measures of Center & Variability +257987,235,7.SP.B.4,Draw Inferences using Measures of Center & Variability +9612,235,7.SP.B.4,Draw Inferences using Measures of Center & Variability +98346,235,7.SP.B.4,Draw Inferences using Measures of Center & Variability +257090,235,7.SP.B.4,Draw Inferences using Measures of Center & Variability +169437,235,7.SP.B.4,Draw Inferences using Measures of Center & Variability +265806,235,7.SP.B.4,Draw Inferences using Measures of Center & Variability +265301,235,7.SP.B.4,Draw Inferences using Measures of Center & Variability +106008,235,7.SP.B.4,Draw Inferences using Measures of Center & Variability +170227,235,7.SP.B.4,Draw Inferences using Measures of Center & Variability +99247,235,7.SP.B.4,Draw Inferences using Measures of Center & Variability +230845,235,7.SP.B.4,Draw Inferences using Measures of Center & Variability +230527,235,7.SP.B.4,Draw Inferences using Measures of Center & Variability +266182,235,7.SP.B.4,Draw Inferences using Measures of Center & Variability +256603,235,7.SP.B.4,Draw Inferences using Measures of Center & Variability +257569,235,7.SP.B.4,Draw Inferences using Measures of Center & Variability +99379,235,7.SP.B.4,Draw Inferences using Measures of Center & Variability +265140,235,7.SP.B.4,Draw Inferences using Measures of Center & Variability +98217,235,7.SP.B.4,Draw Inferences using Measures of Center & Variability +98828,235,7.SP.B.4,Draw Inferences using Measures of Center & Variability +255819,235,7.SP.B.4,Draw Inferences using Measures of Center & Variability +230731,235,7.SP.B.4,Draw Inferences using Measures of Center & Variability +297976,235,7.SP.B.4,Draw Inferences using Measures of Center & Variability +22103,236,7.SP.C.5,Understand that Probability is Between 0-1 & Describes the Likelihood of an Event Occurring +43887,236,7.SP.C.5,Understand that Probability is Between 0-1 & Describes the Likelihood of an Event Occurring +42186,236,7.SP.C.5,Understand that Probability is Between 0-1 & Describes the Likelihood of an Event Occurring +43505,236,7.SP.C.5,Understand that Probability is Between 0-1 & Describes the Likelihood of an Event Occurring +42284,236,7.SP.C.5,Understand that Probability is Between 0-1 & Describes the Likelihood of an Event Occurring +42864,236,7.SP.C.5,Understand that Probability is Between 0-1 & Describes the Likelihood of an Event Occurring +42680,236,7.SP.C.5,Understand that Probability is Between 0-1 & Describes the Likelihood of an Event Occurring +42766,236,7.SP.C.5,Understand that Probability is Between 0-1 & Describes the Likelihood of an Event Occurring +42491,236,7.SP.C.5,Understand that Probability is Between 0-1 & Describes the Likelihood of an Event Occurring +42091,236,7.SP.C.5,Understand that Probability is Between 0-1 & Describes the Likelihood of an Event Occurring +41980,236,7.SP.C.5,Understand that Probability is Between 0-1 & Describes the Likelihood of an Event Occurring +42589,236,7.SP.C.5,Understand that Probability is Between 0-1 & Describes the Likelihood of an Event Occurring +44057,236,7.SP.C.5,Understand that Probability is Between 0-1 & Describes the Likelihood of an Event Occurring +63338,236,7.SP.C.5,Understand that Probability is Between 0-1 & Describes the Likelihood of an Event Occurring +53108,236,7.SP.C.5,Understand that Probability is Between 0-1 & Describes the Likelihood of an Event Occurring +43774,236,7.SP.C.5,Understand that Probability is Between 0-1 & Describes the Likelihood of an Event Occurring +51557,236,7.SP.C.5,Understand that Probability is Between 0-1 & Describes the Likelihood of an Event Occurring +349992,236,7.SP.C.5,Understand that Probability is Between 0-1 & Describes the Likelihood of an Event Occurring +42389,236,7.SP.C.5,Understand that Probability is Between 0-1 & Describes the Likelihood of an Event Occurring +51025,236,7.SP.C.5,Understand that Probability is Between 0-1 & Describes the Likelihood of an Event Occurring +265967,237,7.SP.C.6,Approximate Probability of an Event by Collecting Data +126872,237,7.SP.C.6,Approximate Probability of an Event by Collecting Data +123919,237,7.SP.C.6,Approximate Probability of an Event by Collecting Data +43700,237,7.SP.C.6,Approximate Probability of an Event by Collecting Data +265593,237,7.SP.C.6,Approximate Probability of an Event by Collecting Data +111989,237,7.SP.C.6,Approximate Probability of an Event by Collecting Data +1805,237,7.SP.C.6,Approximate Probability of an Event by Collecting Data +126669,237,7.SP.C.6,Approximate Probability of an Event by Collecting Data +124041,237,7.SP.C.6,Approximate Probability of an Event by Collecting Data +61911,237,7.SP.C.6,Approximate Probability of an Event by Collecting Data +97915,239,7.SP.C.7a,Develop a Uniform Probabilty Model of a Single Event +115723,239,7.SP.C.7a,Develop a Uniform Probabilty Model of a Single Event +100714,239,7.SP.C.7a,Develop a Uniform Probabilty Model of a Single Event +350066,239,7.SP.C.7a,Develop a Uniform Probabilty Model of a Single Event +115545,239,7.SP.C.7a,Develop a Uniform Probabilty Model of a Single Event +44248,239,7.SP.C.7a,Develop a Uniform Probabilty Model of a Single Event +44115,239,7.SP.C.7a,Develop a Uniform Probabilty Model of a Single Event +44396,239,7.SP.C.7a,Develop a Uniform Probabilty Model of a Single Event +62442,240,7.SP.C.7b,Develop a Probability Model of a Single Event +350066,240,7.SP.C.7b,Develop a Probability Model of a Single Event +37832,240,7.SP.C.7b,Develop a Probability Model of a Single Event +37467,240,7.SP.C.7b,Develop a Probability Model of a Single Event +43208,240,7.SP.C.7b,Develop a Probability Model of a Single Event +349910,242,7.SP.C.8a,Understand Probability of a Compound Event +159519,242,7.SP.C.8a,Understand Probability of a Compound Event +250867,242,7.SP.C.8a,Understand Probability of a Compound Event +250608,242,7.SP.C.8a,Understand Probability of a Compound Event +279365,242,7.SP.C.8a,Understand Probability of a Compound Event +277185,242,7.SP.C.8a,Understand Probability of a Compound Event +250727,242,7.SP.C.8a,Understand Probability of a Compound Event +279742,242,7.SP.C.8a,Understand Probability of a Compound Event +350160,243,7.SP.C.8b,Represent Sample Spaces for Compound Events +194852,243,7.SP.C.8b,Represent Sample Spaces for Compound Events +196019,243,7.SP.C.8b,Represent Sample Spaces for Compound Events +195315,243,7.SP.C.8b,Represent Sample Spaces for Compound Events +194307,243,7.SP.C.8b,Represent Sample Spaces for Compound Events +3705,244,7.SP.C.8b,Represent Sample Spaces for Compound Events +207655,244,7.SP.C.8b,Represent Sample Spaces for Compound Events +633159,244,7.SP.C.8b,Represent Sample Spaces for Compound Events +71072,244,7.SP.C.8b,Represent Sample Spaces for Compound Events +3566,244,7.SP.C.8b,Represent Sample Spaces for Compound Events +633512,244,7.SP.C.8b,Represent Sample Spaces for Compound Events +278217,244,7.SP.C.8b,Represent Sample Spaces for Compound Events +96485,244,7.SP.C.8b,Represent Sample Spaces for Compound Events +126669,244,7.SP.C.8b,Represent Sample Spaces for Compound Events +126872,244,7.SP.C.8b,Represent Sample Spaces for Compound Events +632697,244,7.SP.C.8b,Represent Sample Spaces for Compound Events +207427,244,7.SP.C.8b,Represent Sample Spaces for Compound Events +207084,244,7.SP.C.8b,Represent Sample Spaces for Compound Events +96902,244,7.SP.C.8b,Represent Sample Spaces for Compound Events +350160,244,7.SP.C.8b,Represent Sample Spaces for Compound Events +207316,244,7.SP.C.8b,Represent Sample Spaces for Compound Events +277725,244,7.SP.C.8b,Represent Sample Spaces for Compound Events +198767,245,7.SP.C.8c,Design & Use a Simulation for Compound Events +350066,245,7.SP.C.8c,Design & Use a Simulation for Compound Events +390129,245,7.SP.C.8c,Design & Use a Simulation for Compound Events +390558,245,7.SP.C.8c,Design & Use a Simulation for Compound Events +390823,245,7.SP.C.8c,Design & Use a Simulation for Compound Events +77989,245,7.SP.C.8c,Design & Use a Simulation for Compound Events +78469,245,7.SP.C.8c,Design & Use a Simulation for Compound Events +312048,246,8.NS.A.1,Understand & Approximate Rational & Irrational Numbers +522651,246,8.NS.A.1,Understand & Approximate Rational & Irrational Numbers +87272,246,8.NS.A.1,Understand & Approximate Rational & Irrational Numbers +523084,246,8.NS.A.1,Understand & Approximate Rational & Irrational Numbers +311896,246,8.NS.A.1,Understand & Approximate Rational & Irrational Numbers +522897,246,8.NS.A.1,Understand & Approximate Rational & Irrational Numbers +10283,246,8.NS.A.1,Understand & Approximate Rational & Irrational Numbers +15689,247,8.NS.A.2,Approximate Irrational Numbers +46660,247,8.NS.A.2,Approximate Irrational Numbers +423932,247,8.NS.A.2,Approximate Irrational Numbers +423768,247,8.NS.A.2,Approximate Irrational Numbers +423100,247,8.NS.A.2,Approximate Irrational Numbers +423276,247,8.NS.A.2,Approximate Irrational Numbers +423601,247,8.NS.A.2,Approximate Irrational Numbers +423450,247,8.NS.A.2,Approximate Irrational Numbers +424081,247,8.NS.A.2,Approximate Irrational Numbers +116435,247,8.NS.A.2,Approximate Irrational Numbers +117002,247,8.NS.A.2,Approximate Irrational Numbers +116703,247,8.NS.A.2,Approximate Irrational Numbers +117298,247,8.NS.A.2,Approximate Irrational Numbers +146354,247,8.NS.A.2,Approximate Irrational Numbers +146523,247,8.NS.A.2,Approximate Irrational Numbers +315827,247,8.NS.A.2,Approximate Irrational Numbers +307803,247,8.NS.A.2,Approximate Irrational Numbers +307502,247,8.NS.A.2,Approximate Irrational Numbers +277038,247,8.NS.A.2,Approximate Irrational Numbers +276480,247,8.NS.A.2,Approximate Irrational Numbers +276874,247,8.NS.A.2,Approximate Irrational Numbers +276040,247,8.NS.A.2,Approximate Irrational Numbers +276338,247,8.NS.A.2,Approximate Irrational Numbers +276196,247,8.NS.A.2,Approximate Irrational Numbers +276705,247,8.NS.A.2,Approximate Irrational Numbers +277212,247,8.NS.A.2,Approximate Irrational Numbers +316129,248,8.NS.A.2,Approximate Irrational Numbers +10115,248,8.NS.A.2,Approximate Irrational Numbers +469527,249,8.EE.A.1,Know & Apply Properties of Exponents +278747,249,8.EE.A.1,Know & Apply Properties of Exponents +192377,249,8.EE.A.1,Know & Apply Properties of Exponents +192067,249,8.EE.A.1,Know & Apply Properties of Exponents +58041,249,8.EE.A.1,Know & Apply Properties of Exponents +58180,249,8.EE.A.1,Know & Apply Properties of Exponents +263567,249,8.EE.A.1,Know & Apply Properties of Exponents +263664,249,8.EE.A.1,Know & Apply Properties of Exponents +552296,249,8.EE.A.1,Know & Apply Properties of Exponents +25252,249,8.EE.A.1,Know & Apply Properties of Exponents +425079,249,8.EE.A.1,Know & Apply Properties of Exponents +424891,249,8.EE.A.1,Know & Apply Properties of Exponents +424251,249,8.EE.A.1,Know & Apply Properties of Exponents +424722,249,8.EE.A.1,Know & Apply Properties of Exponents +424393,249,8.EE.A.1,Know & Apply Properties of Exponents +424567,249,8.EE.A.1,Know & Apply Properties of Exponents +469703,249,8.EE.A.1,Know & Apply Properties of Exponents +12211,249,8.EE.A.1,Know & Apply Properties of Exponents +12381,249,8.EE.A.1,Know & Apply Properties of Exponents +12541,249,8.EE.A.1,Know & Apply Properties of Exponents +469613,249,8.EE.A.1,Know & Apply Properties of Exponents +9879,249,8.EE.A.1,Know & Apply Properties of Exponents +7829,249,8.EE.A.1,Know & Apply Properties of Exponents +7635,249,8.EE.A.1,Know & Apply Properties of Exponents +552200,249,8.EE.A.1,Know & Apply Properties of Exponents +359589,249,8.EE.A.1,Know & Apply Properties of Exponents +221966,250,8.EE.A.1,Know & Apply Properties of Exponents +91640,250,8.EE.A.1,Know & Apply Properties of Exponents +552200,250,8.EE.A.1,Know & Apply Properties of Exponents +263567,250,8.EE.A.1,Know & Apply Properties of Exponents +245814,251,8.EE.A.1,Know & Apply Properties of Exponents +356718,252,8.EE.A.2,Evaluate Square & Cube Roots +356901,252,8.EE.A.2,Evaluate Square & Cube Roots +355425,252,8.EE.A.2,Evaluate Square & Cube Roots +357082,252,8.EE.A.2,Evaluate Square & Cube Roots +357261,252,8.EE.A.2,Evaluate Square & Cube Roots +355769,252,8.EE.A.2,Evaluate Square & Cube Roots +355074,252,8.EE.A.2,Evaluate Square & Cube Roots +212585,252,8.EE.A.2,Evaluate Square & Cube Roots +356075,252,8.EE.A.2,Evaluate Square & Cube Roots +94804,252,8.EE.A.2,Evaluate Square & Cube Roots +412709,252,8.EE.A.2,Evaluate Square & Cube Roots +332084,252,8.EE.A.2,Evaluate Square & Cube Roots +331279,252,8.EE.A.2,Evaluate Square & Cube Roots +331115,252,8.EE.A.2,Evaluate Square & Cube Roots +330781,252,8.EE.A.2,Evaluate Square & Cube Roots +330621,252,8.EE.A.2,Evaluate Square & Cube Roots +332235,252,8.EE.A.2,Evaluate Square & Cube Roots +330959,252,8.EE.A.2,Evaluate Square & Cube Roots +331947,252,8.EE.A.2,Evaluate Square & Cube Roots +331773,252,8.EE.A.2,Evaluate Square & Cube Roots +331447,252,8.EE.A.2,Evaluate Square & Cube Roots +330485,252,8.EE.A.2,Evaluate Square & Cube Roots +331613,252,8.EE.A.2,Evaluate Square & Cube Roots +86904,252,8.EE.A.2,Evaluate Square & Cube Roots +252048,252,8.EE.A.2,Evaluate Square & Cube Roots +315734,252,8.EE.A.2,Evaluate Square & Cube Roots +316129,252,8.EE.A.2,Evaluate Square & Cube Roots +478012,252,8.EE.A.2,Evaluate Square & Cube Roots +161350,252,8.EE.A.2,Evaluate Square & Cube Roots +162174,252,8.EE.A.2,Evaluate Square & Cube Roots +161838,252,8.EE.A.2,Evaluate Square & Cube Roots +161664,252,8.EE.A.2,Evaluate Square & Cube Roots +46264,252,8.EE.A.2,Evaluate Square & Cube Roots +238057,253,8.EE.A.3,Expressing Quantities in Scientific Notation +398365,253,8.EE.A.3,Expressing Quantities in Scientific Notation +262979,253,8.EE.A.3,Expressing Quantities in Scientific Notation +116755,253,8.EE.A.3,Expressing Quantities in Scientific Notation +263239,253,8.EE.A.3,Expressing Quantities in Scientific Notation +551634,253,8.EE.A.3,Expressing Quantities in Scientific Notation +198955,253,8.EE.A.3,Expressing Quantities in Scientific Notation +104232,253,8.EE.A.3,Expressing Quantities in Scientific Notation +105610,253,8.EE.A.3,Expressing Quantities in Scientific Notation +104560,253,8.EE.A.3,Expressing Quantities in Scientific Notation +199191,253,8.EE.A.3,Expressing Quantities in Scientific Notation +490287,253,8.EE.A.3,Expressing Quantities in Scientific Notation +83409,253,8.EE.A.3,Expressing Quantities in Scientific Notation +208025,253,8.EE.A.3,Expressing Quantities in Scientific Notation +551805,253,8.EE.A.3,Expressing Quantities in Scientific Notation +552200,254,8.EE.A.4,Apply Scientific Notation Operations +11875,254,8.EE.A.4,Apply Scientific Notation Operations +552392,254,8.EE.A.4,Apply Scientific Notation Operations +551805,254,8.EE.A.4,Apply Scientific Notation Operations +398730,254,8.EE.A.4,Apply Scientific Notation Operations +399091,254,8.EE.A.4,Apply Scientific Notation Operations +278407,254,8.EE.A.4,Apply Scientific Notation Operations +63961,254,8.EE.A.4,Apply Scientific Notation Operations +263239,254,8.EE.A.4,Apply Scientific Notation Operations +551634,254,8.EE.A.4,Apply Scientific Notation Operations +198121,254,8.EE.A.4,Apply Scientific Notation Operations +263567,254,8.EE.A.4,Apply Scientific Notation Operations +198440,254,8.EE.A.4,Apply Scientific Notation Operations +63639,254,8.EE.A.4,Apply Scientific Notation Operations +58527,254,8.EE.A.4,Apply Scientific Notation Operations +263739,254,8.EE.A.4,Apply Scientific Notation Operations +25543,254,8.EE.A.4,Apply Scientific Notation Operations +25844,254,8.EE.A.4,Apply Scientific Notation Operations +262979,254,8.EE.A.4,Apply Scientific Notation Operations +198635,254,8.EE.A.4,Apply Scientific Notation Operations +257027,254,8.EE.A.4,Apply Scientific Notation Operations +258192,254,8.EE.A.4,Apply Scientific Notation Operations +258045,254,8.EE.A.4,Apply Scientific Notation Operations +257260,254,8.EE.A.4,Apply Scientific Notation Operations +257525,254,8.EE.A.4,Apply Scientific Notation Operations +257604,254,8.EE.A.4,Apply Scientific Notation Operations +257097,254,8.EE.A.4,Apply Scientific Notation Operations +257352,254,8.EE.A.4,Apply Scientific Notation Operations +22352,254,8.EE.A.4,Apply Scientific Notation Operations +83841,254,8.EE.A.4,Apply Scientific Notation Operations +22473,254,8.EE.A.4,Apply Scientific Notation Operations +79163,255,8.EE.B.5,Compare Slopes of Proportional Relationships +211231,255,8.EE.B.5,Compare Slopes of Proportional Relationships +211131,255,8.EE.B.5,Compare Slopes of Proportional Relationships +192118,255,8.EE.B.5,Compare Slopes of Proportional Relationships +157579,255,8.EE.B.5,Compare Slopes of Proportional Relationships +195004,255,8.EE.B.5,Compare Slopes of Proportional Relationships +211312,255,8.EE.B.5,Compare Slopes of Proportional Relationships +77471,255,8.EE.B.5,Compare Slopes of Proportional Relationships +209506,255,8.EE.B.5,Compare Slopes of Proportional Relationships +79065,255,8.EE.B.5,Compare Slopes of Proportional Relationships +79256,255,8.EE.B.5,Compare Slopes of Proportional Relationships +236549,256,8.EE.B.6,Find Slope of a Line using Similar Triangles +239904,256,8.EE.B.6,Find Slope of a Line using Similar Triangles +27019,256,8.EE.B.6,Find Slope of a Line using Similar Triangles +146496,256,8.EE.B.6,Find Slope of a Line using Similar Triangles +381490,256,8.EE.B.6,Find Slope of a Line using Similar Triangles +33513,256,8.EE.B.6,Find Slope of a Line using Similar Triangles +159061,256,8.EE.B.6,Find Slope of a Line using Similar Triangles +158484,256,8.EE.B.6,Find Slope of a Line using Similar Triangles +381865,256,8.EE.B.6,Find Slope of a Line using Similar Triangles +184584,256,8.EE.B.6,Find Slope of a Line using Similar Triangles +197850,256,8.EE.B.6,Find Slope of a Line using Similar Triangles +27460,256,8.EE.B.6,Find Slope of a Line using Similar Triangles +158769,256,8.EE.B.6,Find Slope of a Line using Similar Triangles +165287,256,8.EE.B.6,Find Slope of a Line using Similar Triangles +184366,256,8.EE.B.6,Find Slope of a Line using Similar Triangles +165038,256,8.EE.B.6,Find Slope of a Line using Similar Triangles +27276,256,8.EE.B.6,Find Slope of a Line using Similar Triangles +49232,256,8.EE.B.6,Find Slope of a Line using Similar Triangles +28352,256,8.EE.B.6,Find Slope of a Line using Similar Triangles +190990,256,8.EE.B.6,Find Slope of a Line using Similar Triangles +190411,256,8.EE.B.6,Find Slope of a Line using Similar Triangles +184867,256,8.EE.B.6,Find Slope of a Line using Similar Triangles +190835,256,8.EE.B.6,Find Slope of a Line using Similar Triangles +43045,256,8.EE.B.6,Find Slope of a Line using Similar Triangles +184505,256,8.EE.B.6,Find Slope of a Line using Similar Triangles +16728,258,8.EE.C.7a,"Solve Linear Equations with One, Multiple or No Solutions" +147962,258,8.EE.C.7a,"Solve Linear Equations with One, Multiple or No Solutions" +148145,258,8.EE.C.7a,"Solve Linear Equations with One, Multiple or No Solutions" +148466,258,8.EE.C.7a,"Solve Linear Equations with One, Multiple or No Solutions" +524173,258,8.EE.C.7a,"Solve Linear Equations with One, Multiple or No Solutions" +147769,258,8.EE.C.7a,"Solve Linear Equations with One, Multiple or No Solutions" +16591,258,8.EE.C.7a,"Solve Linear Equations with One, Multiple or No Solutions" +77227,258,8.EE.C.7a,"Solve Linear Equations with One, Multiple or No Solutions" +386019,258,8.EE.C.7a,"Solve Linear Equations with One, Multiple or No Solutions" +17667,258,8.EE.C.7a,"Solve Linear Equations with One, Multiple or No Solutions" +386445,258,8.EE.C.7a,"Solve Linear Equations with One, Multiple or No Solutions" +146938,258,8.EE.C.7a,"Solve Linear Equations with One, Multiple or No Solutions" +333395,258,8.EE.C.7a,"Solve Linear Equations with One, Multiple or No Solutions" +500624,258,8.EE.C.7a,"Solve Linear Equations with One, Multiple or No Solutions" +16856,258,8.EE.C.7a,"Solve Linear Equations with One, Multiple or No Solutions" +148285,258,8.EE.C.7a,"Solve Linear Equations with One, Multiple or No Solutions" +360720,258,8.EE.C.7a,"Solve Linear Equations with One, Multiple or No Solutions" +146473,258,8.EE.C.7a,"Solve Linear Equations with One, Multiple or No Solutions" +150654,258,8.EE.C.7a,"Solve Linear Equations with One, Multiple or No Solutions" +108574,258,8.EE.C.7a,"Solve Linear Equations with One, Multiple or No Solutions" +155556,259,8.EE.C.7b,Solve Multi-Step Linear Equations with Rational Number Coefficients +328823,259,8.EE.C.7b,Solve Multi-Step Linear Equations with Rational Number Coefficients +155341,259,8.EE.C.7b,Solve Multi-Step Linear Equations with Rational Number Coefficients +184908,259,8.EE.C.7b,Solve Multi-Step Linear Equations with Rational Number Coefficients +104135,259,8.EE.C.7b,Solve Multi-Step Linear Equations with Rational Number Coefficients +382378,259,8.EE.C.7b,Solve Multi-Step Linear Equations with Rational Number Coefficients +231799,259,8.EE.C.7b,Solve Multi-Step Linear Equations with Rational Number Coefficients +93475,259,8.EE.C.7b,Solve Multi-Step Linear Equations with Rational Number Coefficients +498517,259,8.EE.C.7b,Solve Multi-Step Linear Equations with Rational Number Coefficients +83813,259,8.EE.C.7b,Solve Multi-Step Linear Equations with Rational Number Coefficients +331322,259,8.EE.C.7b,Solve Multi-Step Linear Equations with Rational Number Coefficients +131672,259,8.EE.C.7b,Solve Multi-Step Linear Equations with Rational Number Coefficients +579648,259,8.EE.C.7b,Solve Multi-Step Linear Equations with Rational Number Coefficients +55154,259,8.EE.C.7b,Solve Multi-Step Linear Equations with Rational Number Coefficients +148754,259,8.EE.C.7b,Solve Multi-Step Linear Equations with Rational Number Coefficients +294102,259,8.EE.C.7b,Solve Multi-Step Linear Equations with Rational Number Coefficients +131293,259,8.EE.C.7b,Solve Multi-Step Linear Equations with Rational Number Coefficients +190961,259,8.EE.C.7b,Solve Multi-Step Linear Equations with Rational Number Coefficients +95029,259,8.EE.C.7b,Solve Multi-Step Linear Equations with Rational Number Coefficients +231522,259,8.EE.C.7b,Solve Multi-Step Linear Equations with Rational Number Coefficients +230038,259,8.EE.C.7b,Solve Multi-Step Linear Equations with Rational Number Coefficients +128305,259,8.EE.C.7b,Solve Multi-Step Linear Equations with Rational Number Coefficients +248217,259,8.EE.C.7b,Solve Multi-Step Linear Equations with Rational Number Coefficients +94737,259,8.EE.C.7b,Solve Multi-Step Linear Equations with Rational Number Coefficients +132416,259,8.EE.C.7b,Solve Multi-Step Linear Equations with Rational Number Coefficients +131112,259,8.EE.C.7b,Solve Multi-Step Linear Equations with Rational Number Coefficients +328341,259,8.EE.C.7b,Solve Multi-Step Linear Equations with Rational Number Coefficients +219375,259,8.EE.C.7b,Solve Multi-Step Linear Equations with Rational Number Coefficients +131520,259,8.EE.C.7b,Solve Multi-Step Linear Equations with Rational Number Coefficients +132200,259,8.EE.C.7b,Solve Multi-Step Linear Equations with Rational Number Coefficients +219253,259,8.EE.C.7b,Solve Multi-Step Linear Equations with Rational Number Coefficients +530004,259,8.EE.C.7b,Solve Multi-Step Linear Equations with Rational Number Coefficients +592014,259,8.EE.C.7b,Solve Multi-Step Linear Equations with Rational Number Coefficients +132688,259,8.EE.C.7b,Solve Multi-Step Linear Equations with Rational Number Coefficients +388305,259,8.EE.C.7b,Solve Multi-Step Linear Equations with Rational Number Coefficients +329327,259,8.EE.C.7b,Solve Multi-Step Linear Equations with Rational Number Coefficients +94876,259,8.EE.C.7b,Solve Multi-Step Linear Equations with Rational Number Coefficients +155730,259,8.EE.C.7b,Solve Multi-Step Linear Equations with Rational Number Coefficients +330016,259,8.EE.C.7b,Solve Multi-Step Linear Equations with Rational Number Coefficients +387953,259,8.EE.C.7b,Solve Multi-Step Linear Equations with Rational Number Coefficients +132932,259,8.EE.C.7b,Solve Multi-Step Linear Equations with Rational Number Coefficients +191140,259,8.EE.C.7b,Solve Multi-Step Linear Equations with Rational Number Coefficients +150076,259,8.EE.C.7b,Solve Multi-Step Linear Equations with Rational Number Coefficients +148929,259,8.EE.C.7b,Solve Multi-Step Linear Equations with Rational Number Coefficients +387531,259,8.EE.C.7b,Solve Multi-Step Linear Equations with Rational Number Coefficients +231289,259,8.EE.C.7b,Solve Multi-Step Linear Equations with Rational Number Coefficients +234184,259,8.EE.C.7b,Solve Multi-Step Linear Equations with Rational Number Coefficients +149101,259,8.EE.C.7b,Solve Multi-Step Linear Equations with Rational Number Coefficients +360109,259,8.EE.C.7b,Solve Multi-Step Linear Equations with Rational Number Coefficients +131367,259,8.EE.C.7b,Solve Multi-Step Linear Equations with Rational Number Coefficients +131899,259,8.EE.C.7b,Solve Multi-Step Linear Equations with Rational Number Coefficients +131134,259,8.EE.C.7b,Solve Multi-Step Linear Equations with Rational Number Coefficients +430695,259,8.EE.C.7b,Solve Multi-Step Linear Equations with Rational Number Coefficients +591787,259,8.EE.C.7b,Solve Multi-Step Linear Equations with Rational Number Coefficients +233384,259,8.EE.C.7b,Solve Multi-Step Linear Equations with Rational Number Coefficients +331070,259,8.EE.C.7b,Solve Multi-Step Linear Equations with Rational Number Coefficients +330854,259,8.EE.C.7b,Solve Multi-Step Linear Equations with Rational Number Coefficients +133257,259,8.EE.C.7b,Solve Multi-Step Linear Equations with Rational Number Coefficients +527725,259,8.EE.C.7b,Solve Multi-Step Linear Equations with Rational Number Coefficients +293786,259,8.EE.C.7b,Solve Multi-Step Linear Equations with Rational Number Coefficients +113306,261,8.EE.C.8a,Identify Solutions to Systems of Equations Using Graphs +114103,261,8.EE.C.8a,Identify Solutions to Systems of Equations Using Graphs +84475,261,8.EE.C.8a,Identify Solutions to Systems of Equations Using Graphs +84315,261,8.EE.C.8a,Identify Solutions to Systems of Equations Using Graphs +84651,261,8.EE.C.8a,Identify Solutions to Systems of Equations Using Graphs +141750,261,8.EE.C.8a,Identify Solutions to Systems of Equations Using Graphs +113820,261,8.EE.C.8a,Identify Solutions to Systems of Equations Using Graphs +113562,261,8.EE.C.8a,Identify Solutions to Systems of Equations Using Graphs +129599,261,8.EE.C.8a,Identify Solutions to Systems of Equations Using Graphs +297047,261,8.EE.C.8a,Identify Solutions to Systems of Equations Using Graphs +384509,261,8.EE.C.8a,Identify Solutions to Systems of Equations Using Graphs +126461,261,8.EE.C.8a,Identify Solutions to Systems of Equations Using Graphs +194106,261,8.EE.C.8a,Identify Solutions to Systems of Equations Using Graphs +129804,261,8.EE.C.8a,Identify Solutions to Systems of Equations Using Graphs +398888,261,8.EE.C.8a,Identify Solutions to Systems of Equations Using Graphs +114342,261,8.EE.C.8a,Identify Solutions to Systems of Equations Using Graphs +130008,261,8.EE.C.8a,Identify Solutions to Systems of Equations Using Graphs +114797,261,8.EE.C.8a,Identify Solutions to Systems of Equations Using Graphs +223780,261,8.EE.C.8a,Identify Solutions to Systems of Equations Using Graphs +114584,261,8.EE.C.8a,Identify Solutions to Systems of Equations Using Graphs +113066,261,8.EE.C.8a,Identify Solutions to Systems of Equations Using Graphs +296856,262,8.EE.C.8b,Solve Systems of Linear Equations Algebraically +91020,262,8.EE.C.8b,Solve Systems of Linear Equations Algebraically +99441,262,8.EE.C.8b,Solve Systems of Linear Equations Algebraically +14761,262,8.EE.C.8b,Solve Systems of Linear Equations Algebraically +227799,262,8.EE.C.8b,Solve Systems of Linear Equations Algebraically +77479,262,8.EE.C.8b,Solve Systems of Linear Equations Algebraically +99193,262,8.EE.C.8b,Solve Systems of Linear Equations Algebraically +104427,262,8.EE.C.8b,Solve Systems of Linear Equations Algebraically +306064,262,8.EE.C.8b,Solve Systems of Linear Equations Algebraically +225929,263,8.EE.C.8c,Solve Systems of Linear Equations Word Problems +503,263,8.EE.C.8c,Solve Systems of Linear Equations Word Problems +253,263,8.EE.C.8c,Solve Systems of Linear Equations Word Problems +105121,263,8.EE.C.8c,Solve Systems of Linear Equations Word Problems +153081,263,8.EE.C.8c,Solve Systems of Linear Equations Word Problems +1867,263,8.EE.C.8c,Solve Systems of Linear Equations Word Problems +232017,263,8.EE.C.8c,Solve Systems of Linear Equations Word Problems +180036,263,8.EE.C.8c,Solve Systems of Linear Equations Word Problems +232208,263,8.EE.C.8c,Solve Systems of Linear Equations Word Problems +226545,263,8.EE.C.8c,Solve Systems of Linear Equations Word Problems +180127,263,8.EE.C.8c,Solve Systems of Linear Equations Word Problems +682,263,8.EE.C.8c,Solve Systems of Linear Equations Word Problems +233998,263,8.EE.C.8c,Solve Systems of Linear Equations Word Problems +47808,263,8.EE.C.8c,Solve Systems of Linear Equations Word Problems +89416,263,8.EE.C.8c,Solve Systems of Linear Equations Word Problems +146750,263,8.EE.C.8c,Solve Systems of Linear Equations Word Problems +225403,263,8.EE.C.8c,Solve Systems of Linear Equations Word Problems +232533,263,8.EE.C.8c,Solve Systems of Linear Equations Word Problems +233780,263,8.EE.C.8c,Solve Systems of Linear Equations Word Problems +232362,263,8.EE.C.8c,Solve Systems of Linear Equations Word Problems +19954,263,8.EE.C.8c,Solve Systems of Linear Equations Word Problems +144266,264,8.F.A.1,Understand Definition of a Function +89069,264,8.F.A.1,Understand Definition of a Function +88965,264,8.F.A.1,Understand Definition of a Function +297716,264,8.F.A.1,Understand Definition of a Function +88607,264,8.F.A.1,Understand Definition of a Function +89270,264,8.F.A.1,Understand Definition of a Function +296303,264,8.F.A.1,Understand Definition of a Function +89478,264,8.F.A.1,Understand Definition of a Function +87902,264,8.F.A.1,Understand Definition of a Function +88255,264,8.F.A.1,Understand Definition of a Function +340198,264,8.F.A.1,Understand Definition of a Function +348832,264,8.F.A.1,Understand Definition of a Function +292178,264,8.F.A.1,Understand Definition of a Function +211131,264,8.F.A.1,Understand Definition of a Function +269076,265,8.F.A.2,Compare Functions in Different Forms +138133,265,8.F.A.2,Compare Functions in Different Forms +137984,265,8.F.A.2,Compare Functions in Different Forms +180476,266,8.F.A.3,Identify Linear & Non-Linear Functions +297716,266,8.F.A.3,Identify Linear & Non-Linear Functions +348832,266,8.F.A.3,Identify Linear & Non-Linear Functions +149599,266,8.F.A.3,Identify Linear & Non-Linear Functions +291134,266,8.F.A.3,Identify Linear & Non-Linear Functions +291282,266,8.F.A.3,Identify Linear & Non-Linear Functions +180143,266,8.F.A.3,Identify Linear & Non-Linear Functions +179830,266,8.F.A.3,Identify Linear & Non-Linear Functions +348674,266,8.F.A.3,Identify Linear & Non-Linear Functions +180292,266,8.F.A.3,Identify Linear & Non-Linear Functions +296303,266,8.F.A.3,Identify Linear & Non-Linear Functions +524173,267,8.F.B.4,Use Functions to Model Relationships Between Quantities +296303,267,8.F.B.4,Use Functions to Model Relationships Between Quantities +17046,268,8.F.B.4,Use Functions to Model Relationships Between Quantities +109764,269,8.F.B.4,Use Functions to Model Relationships Between Quantities +110017,269,8.F.B.4,Use Functions to Model Relationships Between Quantities +165645,270,8.F.B.4,Use Functions to Model Relationships Between Quantities +236767,270,8.F.B.4,Use Functions to Model Relationships Between Quantities +132337,270,8.F.B.4,Use Functions to Model Relationships Between Quantities +144363,270,8.F.B.4,Use Functions to Model Relationships Between Quantities +331866,270,8.F.B.4,Use Functions to Model Relationships Between Quantities +165535,270,8.F.B.4,Use Functions to Model Relationships Between Quantities +306325,270,8.F.B.4,Use Functions to Model Relationships Between Quantities +237129,270,8.F.B.4,Use Functions to Model Relationships Between Quantities +166028,270,8.F.B.4,Use Functions to Model Relationships Between Quantities +332048,270,8.F.B.4,Use Functions to Model Relationships Between Quantities +132090,270,8.F.B.4,Use Functions to Model Relationships Between Quantities +325132,270,8.F.B.4,Use Functions to Model Relationships Between Quantities +487616,270,8.F.B.4,Use Functions to Model Relationships Between Quantities +383239,270,8.F.B.4,Use Functions to Model Relationships Between Quantities +412814,270,8.F.B.4,Use Functions to Model Relationships Between Quantities +165896,270,8.F.B.4,Use Functions to Model Relationships Between Quantities +340440,270,8.F.B.4,Use Functions to Model Relationships Between Quantities +50741,270,8.F.B.4,Use Functions to Model Relationships Between Quantities +20361,270,8.F.B.4,Use Functions to Model Relationships Between Quantities +165778,270,8.F.B.4,Use Functions to Model Relationships Between Quantities +236954,270,8.F.B.4,Use Functions to Model Relationships Between Quantities +186281,271,8.F.B.4,Use Functions to Model Relationships Between Quantities +187219,271,8.F.B.4,Use Functions to Model Relationships Between Quantities +187127,271,8.F.B.4,Use Functions to Model Relationships Between Quantities +185874,271,8.F.B.4,Use Functions to Model Relationships Between Quantities +18591,271,8.F.B.4,Use Functions to Model Relationships Between Quantities +18775,271,8.F.B.4,Use Functions to Model Relationships Between Quantities +87931,273,8.F.B.4,Use Functions to Model Relationships Between Quantities +87609,273,8.F.B.4,Use Functions to Model Relationships Between Quantities +330357,273,8.F.B.4,Use Functions to Model Relationships Between Quantities +578697,273,8.F.B.4,Use Functions to Model Relationships Between Quantities +579179,273,8.F.B.4,Use Functions to Model Relationships Between Quantities +88244,273,8.F.B.4,Use Functions to Model Relationships Between Quantities +132090,273,8.F.B.4,Use Functions to Model Relationships Between Quantities +342229,274,8.F.B.4,Use Functions to Model Relationships Between Quantities +190990,274,8.F.B.4,Use Functions to Model Relationships Between Quantities +426071,274,8.F.B.4,Use Functions to Model Relationships Between Quantities +99193,274,8.F.B.4,Use Functions to Model Relationships Between Quantities +148105,274,8.F.B.4,Use Functions to Model Relationships Between Quantities +190835,274,8.F.B.4,Use Functions to Model Relationships Between Quantities +99441,274,8.F.B.4,Use Functions to Model Relationships Between Quantities +190411,274,8.F.B.4,Use Functions to Model Relationships Between Quantities +161738,274,8.F.B.4,Use Functions to Model Relationships Between Quantities +56987,275,8.F.B.4,Use Functions to Model Relationships Between Quantities +55933,275,8.F.B.4,Use Functions to Model Relationships Between Quantities +304444,275,8.F.B.4,Use Functions to Model Relationships Between Quantities +304606,275,8.F.B.4,Use Functions to Model Relationships Between Quantities +250205,277,8.F.B.4,Use Functions to Model Relationships Between Quantities +43045,277,8.F.B.4,Use Functions to Model Relationships Between Quantities +331521,277,8.F.B.4,Use Functions to Model Relationships Between Quantities +250112,277,8.F.B.4,Use Functions to Model Relationships Between Quantities +249681,277,8.F.B.4,Use Functions to Model Relationships Between Quantities +2034,277,8.F.B.4,Use Functions to Model Relationships Between Quantities +121116,278,8.F.B.5,Qualitatively Describe & Graph Relationships +488,278,8.F.B.5,Qualitatively Describe & Graph Relationships +121281,278,8.F.B.5,Qualitatively Describe & Graph Relationships +121482,278,8.F.B.5,Qualitatively Describe & Graph Relationships +105377,278,8.F.B.5,Qualitatively Describe & Graph Relationships +104928,278,8.F.B.5,Qualitatively Describe & Graph Relationships +340581,278,8.F.B.5,Qualitatively Describe & Graph Relationships +340317,278,8.F.B.5,Qualitatively Describe & Graph Relationships +144504,278,8.F.B.5,Qualitatively Describe & Graph Relationships +152409,278,8.F.B.5,Qualitatively Describe & Graph Relationships +152568,278,8.F.B.5,Qualitatively Describe & Graph Relationships +155954,278,8.F.B.5,Qualitatively Describe & Graph Relationships +60012,278,8.F.B.5,Qualitatively Describe & Graph Relationships +60170,278,8.F.B.5,Qualitatively Describe & Graph Relationships +45497,278,8.F.B.5,Qualitatively Describe & Graph Relationships +45704,278,8.F.B.5,Qualitatively Describe & Graph Relationships +45204,278,8.F.B.5,Qualitatively Describe & Graph Relationships +45592,278,8.F.B.5,Qualitatively Describe & Graph Relationships +14567,278,8.F.B.5,Qualitatively Describe & Graph Relationships +14654,278,8.F.B.5,Qualitatively Describe & Graph Relationships +15007,278,8.F.B.5,Qualitatively Describe & Graph Relationships +524173,278,8.F.B.5,Qualitatively Describe & Graph Relationships +93881,280,8.G.A.1a,Apply Properties of Transformations to Lines & Line Segments +172034,280,8.G.A.1a,Apply Properties of Transformations to Lines & Line Segments +545012,280,8.G.A.1a,Apply Properties of Transformations to Lines & Line Segments +504848,280,8.G.A.1a,Apply Properties of Transformations to Lines & Line Segments +98785,280,8.G.A.1a,Apply Properties of Transformations to Lines & Line Segments +275536,280,8.G.A.1a,Apply Properties of Transformations to Lines & Line Segments +151810,280,8.G.A.1a,Apply Properties of Transformations to Lines & Line Segments +6467,280,8.G.A.1a,Apply Properties of Transformations to Lines & Line Segments +504723,280,8.G.A.1a,Apply Properties of Transformations to Lines & Line Segments +544905,280,8.G.A.1a,Apply Properties of Transformations to Lines & Line Segments +35246,281,8.G.A.1b,Apply the Properties of Transformations to Angles +249173,281,8.G.A.1b,Apply the Properties of Transformations to Angles +495451,281,8.G.A.1b,Apply the Properties of Transformations to Angles +388718,281,8.G.A.1b,Apply the Properties of Transformations to Angles +389082,281,8.G.A.1b,Apply the Properties of Transformations to Angles +350622,281,8.G.A.1b,Apply the Properties of Transformations to Angles +40911,281,8.G.A.1b,Apply the Properties of Transformations to Angles +53019,281,8.G.A.1b,Apply the Properties of Transformations to Angles +40714,281,8.G.A.1b,Apply the Properties of Transformations to Angles +275383,281,8.G.A.1b,Apply the Properties of Transformations to Angles +322590,281,8.G.A.1b,Apply the Properties of Transformations to Angles +275670,281,8.G.A.1b,Apply the Properties of Transformations to Angles +30522,281,8.G.A.1b,Apply the Properties of Transformations to Angles +322882,281,8.G.A.1b,Apply the Properties of Transformations to Angles +30936,281,8.G.A.1b,Apply the Properties of Transformations to Angles +1074,281,8.G.A.1b,Apply the Properties of Transformations to Angles +322472,281,8.G.A.1b,Apply the Properties of Transformations to Angles +275536,281,8.G.A.1b,Apply the Properties of Transformations to Angles +323131,281,8.G.A.1b,Apply the Properties of Transformations to Angles +40538,281,8.G.A.1b,Apply the Properties of Transformations to Angles +544905,281,8.G.A.1b,Apply the Properties of Transformations to Angles +52844,281,8.G.A.1b,Apply the Properties of Transformations to Angles +11215,281,8.G.A.1b,Apply the Properties of Transformations to Angles +91796,281,8.G.A.1b,Apply the Properties of Transformations to Angles +172034,282,8.G.A.1c,Apply the Properties of Transformations to Parallel Lines +85266,283,8.G.A.2,Understand & Describe Geometric Transformation Sequences +3160,283,8.G.A.2,Understand & Describe Geometric Transformation Sequences +885,283,8.G.A.2,Understand & Describe Geometric Transformation Sequences +1239,283,8.G.A.2,Understand & Describe Geometric Transformation Sequences +146791,283,8.G.A.2,Understand & Describe Geometric Transformation Sequences +85142,283,8.G.A.2,Understand & Describe Geometric Transformation Sequences +452369,283,8.G.A.2,Understand & Describe Geometric Transformation Sequences +504583,283,8.G.A.2,Understand & Describe Geometric Transformation Sequences +2541,283,8.G.A.2,Understand & Describe Geometric Transformation Sequences +2234,283,8.G.A.2,Understand & Describe Geometric Transformation Sequences +544776,283,8.G.A.2,Understand & Describe Geometric Transformation Sequences +48569,283,8.G.A.2,Understand & Describe Geometric Transformation Sequences +336,283,8.G.A.2,Understand & Describe Geometric Transformation Sequences +417638,283,8.G.A.2,Understand & Describe Geometric Transformation Sequences +577,283,8.G.A.2,Understand & Describe Geometric Transformation Sequences +54,283,8.G.A.2,Understand & Describe Geometric Transformation Sequences +85020,283,8.G.A.2,Understand & Describe Geometric Transformation Sequences +1543,283,8.G.A.2,Understand & Describe Geometric Transformation Sequences +180206,283,8.G.A.2,Understand & Describe Geometric Transformation Sequences +241939,283,8.G.A.2,Understand & Describe Geometric Transformation Sequences +1864,283,8.G.A.2,Understand & Describe Geometric Transformation Sequences +351892,284,8.G.A.3,Describe the Effect of Transformations on 2D Figures +137959,284,8.G.A.3,Describe the Effect of Transformations on 2D Figures +274206,286,8.G.A.3,Describe the Effect of Transformations on 2D Figures +95407,286,8.G.A.3,Describe the Effect of Transformations on 2D Figures +148617,286,8.G.A.3,Describe the Effect of Transformations on 2D Figures +238581,287,8.G.A.4,use Transformations to Determine Similarity in 2D figures +28093,287,8.G.A.4,use Transformations to Determine Similarity in 2D figures +237321,287,8.G.A.4,use Transformations to Determine Similarity in 2D figures +238499,287,8.G.A.4,use Transformations to Determine Similarity in 2D figures +9287,287,8.G.A.4,use Transformations to Determine Similarity in 2D figures +47390,287,8.G.A.4,use Transformations to Determine Similarity in 2D figures +238263,287,8.G.A.4,use Transformations to Determine Similarity in 2D figures +168353,287,8.G.A.4,use Transformations to Determine Similarity in 2D figures +26752,287,8.G.A.4,use Transformations to Determine Similarity in 2D figures +26857,287,8.G.A.4,use Transformations to Determine Similarity in 2D figures +167875,287,8.G.A.4,use Transformations to Determine Similarity in 2D figures +168820,287,8.G.A.4,use Transformations to Determine Similarity in 2D figures +9569,287,8.G.A.4,use Transformations to Determine Similarity in 2D figures +167382,287,8.G.A.4,use Transformations to Determine Similarity in 2D figures +232166,287,8.G.A.4,use Transformations to Determine Similarity in 2D figures +62717,287,8.G.A.4,use Transformations to Determine Similarity in 2D figures +155904,287,8.G.A.4,use Transformations to Determine Similarity in 2D figures +37464,287,8.G.A.4,use Transformations to Determine Similarity in 2D figures +189375,288,8.G.A.5,Use Informal Arguments to Establish Facts about Angles for Similar Triangles +174309,288,8.G.A.5,Use Informal Arguments to Establish Facts about Angles for Similar Triangles +32656,289,8.G.A.5,Use Informal Arguments to Establish Facts about Angles for Similar Triangles +64079,289,8.G.A.5,Use Informal Arguments to Establish Facts about Angles for Similar Triangles +24916,289,8.G.A.5,Use Informal Arguments to Establish Facts about Angles for Similar Triangles +8680,289,8.G.A.5,Use Informal Arguments to Establish Facts about Angles for Similar Triangles +504284,289,8.G.A.5,Use Informal Arguments to Establish Facts about Angles for Similar Triangles +504078,289,8.G.A.5,Use Informal Arguments to Establish Facts about Angles for Similar Triangles +196678,290,8.G.B.6,Prove the Pythagorean Theorem & it's Converse +315914,291,8.G.B.7,Apply the Pythagorean Theorem to 2D & 3D FIgures +46379,291,8.G.B.7,Apply the Pythagorean Theorem to 2D & 3D FIgures +315454,291,8.G.B.7,Apply the Pythagorean Theorem to 2D & 3D FIgures +329307,291,8.G.B.7,Apply the Pythagorean Theorem to 2D & 3D FIgures +118107,291,8.G.B.7,Apply the Pythagorean Theorem to 2D & 3D FIgures +222860,291,8.G.B.7,Apply the Pythagorean Theorem to 2D & 3D FIgures +222626,291,8.G.B.7,Apply the Pythagorean Theorem to 2D & 3D FIgures +222741,291,8.G.B.7,Apply the Pythagorean Theorem to 2D & 3D FIgures +65477,291,8.G.B.7,Apply the Pythagorean Theorem to 2D & 3D FIgures +65337,291,8.G.B.7,Apply the Pythagorean Theorem to 2D & 3D FIgures +487312,291,8.G.B.7,Apply the Pythagorean Theorem to 2D & 3D FIgures +117709,291,8.G.B.7,Apply the Pythagorean Theorem to 2D & 3D FIgures +162829,291,8.G.B.7,Apply the Pythagorean Theorem to 2D & 3D FIgures +10729,291,8.G.B.7,Apply the Pythagorean Theorem to 2D & 3D FIgures +10564,291,8.G.B.7,Apply the Pythagorean Theorem to 2D & 3D FIgures +162661,291,8.G.B.7,Apply the Pythagorean Theorem to 2D & 3D FIgures +8050,291,8.G.B.7,Apply the Pythagorean Theorem to 2D & 3D FIgures +162490,291,8.G.B.7,Apply the Pythagorean Theorem to 2D & 3D FIgures +52069,291,8.G.B.7,Apply the Pythagorean Theorem to 2D & 3D FIgures +9217,291,8.G.B.7,Apply the Pythagorean Theorem to 2D & 3D FIgures +7398,291,8.G.B.7,Apply the Pythagorean Theorem to 2D & 3D FIgures +162344,291,8.G.B.7,Apply the Pythagorean Theorem to 2D & 3D FIgures +52189,291,8.G.B.7,Apply the Pythagorean Theorem to 2D & 3D FIgures +10412,291,8.G.B.7,Apply the Pythagorean Theorem to 2D & 3D FIgures +354813,291,8.G.B.7,Apply the Pythagorean Theorem to 2D & 3D FIgures +354090,291,8.G.B.7,Apply the Pythagorean Theorem to 2D & 3D FIgures +354627,291,8.G.B.7,Apply the Pythagorean Theorem to 2D & 3D FIgures +487468,291,8.G.B.7,Apply the Pythagorean Theorem to 2D & 3D FIgures +485290,291,8.G.B.7,Apply the Pythagorean Theorem to 2D & 3D FIgures +7859,291,8.G.B.7,Apply the Pythagorean Theorem to 2D & 3D FIgures +8202,291,8.G.B.7,Apply the Pythagorean Theorem to 2D & 3D FIgures +223006,291,8.G.B.7,Apply the Pythagorean Theorem to 2D & 3D FIgures +118016,291,8.G.B.7,Apply the Pythagorean Theorem to 2D & 3D FIgures +7541,291,8.G.B.7,Apply the Pythagorean Theorem to 2D & 3D FIgures +222369,291,8.G.B.7,Apply the Pythagorean Theorem to 2D & 3D FIgures +46033,291,8.G.B.7,Apply the Pythagorean Theorem to 2D & 3D FIgures +454526,291,8.G.B.7,Apply the Pythagorean Theorem to 2D & 3D FIgures +222494,291,8.G.B.7,Apply the Pythagorean Theorem to 2D & 3D FIgures +136977,292,8.G.B.8,Apply the Pythagorean Theorem to Find the Distance Between Points on the Coordinate Plane +118522,292,8.G.B.8,Apply the Pythagorean Theorem to Find the Distance Between Points on the Coordinate Plane +46660,292,8.G.B.8,Apply the Pythagorean Theorem to Find the Distance Between Points on the Coordinate Plane +118249,292,8.G.B.8,Apply the Pythagorean Theorem to Find the Distance Between Points on the Coordinate Plane +136831,292,8.G.B.8,Apply the Pythagorean Theorem to Find the Distance Between Points on the Coordinate Plane +136694,292,8.G.B.8,Apply the Pythagorean Theorem to Find the Distance Between Points on the Coordinate Plane +332409,292,8.G.B.8,Apply the Pythagorean Theorem to Find the Distance Between Points on the Coordinate Plane +117898,292,8.G.B.8,Apply the Pythagorean Theorem to Find the Distance Between Points on the Coordinate Plane +118376,292,8.G.B.8,Apply the Pythagorean Theorem to Find the Distance Between Points on the Coordinate Plane +315827,292,8.G.B.8,Apply the Pythagorean Theorem to Find the Distance Between Points on the Coordinate Plane +99309,292,8.G.B.8,Apply the Pythagorean Theorem to Find the Distance Between Points on the Coordinate Plane +351813,293,8.G.C.9,Know & Use Volume Formulas +374368,293,8.G.C.9,Know & Use Volume Formulas +213558,293,8.G.C.9,Know & Use Volume Formulas +115324,293,8.G.C.9,Know & Use Volume Formulas +137062,293,8.G.C.9,Know & Use Volume Formulas +17475,293,8.G.C.9,Know & Use Volume Formulas +15072,293,8.G.C.9,Know & Use Volume Formulas +48656,293,8.G.C.9,Know & Use Volume Formulas +223692,293,8.G.C.9,Know & Use Volume Formulas +373766,293,8.G.C.9,Know & Use Volume Formulas +373493,293,8.G.C.9,Know & Use Volume Formulas +114806,293,8.G.C.9,Know & Use Volume Formulas +46033,293,8.G.C.9,Know & Use Volume Formulas +86322,293,8.G.C.9,Know & Use Volume Formulas +150182,293,8.G.C.9,Know & Use Volume Formulas +90927,293,8.G.C.9,Know & Use Volume Formulas +91237,293,8.G.C.9,Know & Use Volume Formulas +351677,293,8.G.C.9,Know & Use Volume Formulas +180722,293,8.G.C.9,Know & Use Volume Formulas +374418,293,8.G.C.9,Know & Use Volume Formulas +140189,293,8.G.C.9,Know & Use Volume Formulas +150288,293,8.G.C.9,Know & Use Volume Formulas +114637,293,8.G.C.9,Know & Use Volume Formulas +15627,293,8.G.C.9,Know & Use Volume Formulas +114450,293,8.G.C.9,Know & Use Volume Formulas +136717,293,8.G.C.9,Know & Use Volume Formulas +86515,293,8.G.C.9,Know & Use Volume Formulas +374058,293,8.G.C.9,Know & Use Volume Formulas +89267,293,8.G.C.9,Know & Use Volume Formulas +351988,293,8.G.C.9,Know & Use Volume Formulas +115049,293,8.G.C.9,Know & Use Volume Formulas +374220,293,8.G.C.9,Know & Use Volume Formulas +15234,293,8.G.C.9,Know & Use Volume Formulas +596384,293,8.G.C.9,Know & Use Volume Formulas +674243,293,8.G.C.9,Know & Use Volume Formulas +165493,293,8.G.C.9,Know & Use Volume Formulas +36511,293,8.G.C.9,Know & Use Volume Formulas +91074,293,8.G.C.9,Know & Use Volume Formulas +14914,293,8.G.C.9,Know & Use Volume Formulas +213135,293,8.G.C.9,Know & Use Volume Formulas +115187,293,8.G.C.9,Know & Use Volume Formulas +48968,293,8.G.C.9,Know & Use Volume Formulas +157411,293,8.G.C.9,Know & Use Volume Formulas +223532,293,8.G.C.9,Know & Use Volume Formulas +48812,293,8.G.C.9,Know & Use Volume Formulas +151258,294,8.G.C.9,Know & Use Volume Formulas +151596,294,8.G.C.9,Know & Use Volume Formulas +351813,294,8.G.C.9,Know & Use Volume Formulas +352230,294,8.G.C.9,Know & Use Volume Formulas +353101,294,8.G.C.9,Know & Use Volume Formulas +58785,294,8.G.C.9,Know & Use Volume Formulas +154066,294,8.G.C.9,Know & Use Volume Formulas +212876,294,8.G.C.9,Know & Use Volume Formulas +139860,294,8.G.C.9,Know & Use Volume Formulas +151429,294,8.G.C.9,Know & Use Volume Formulas +351677,294,8.G.C.9,Know & Use Volume Formulas +351988,294,8.G.C.9,Know & Use Volume Formulas +333800,294,8.G.C.9,Know & Use Volume Formulas +352921,294,8.G.C.9,Know & Use Volume Formulas +125853,294,8.G.C.9,Know & Use Volume Formulas +348910,294,8.G.C.9,Know & Use Volume Formulas +333981,294,8.G.C.9,Know & Use Volume Formulas +297864,294,8.G.C.9,Know & Use Volume Formulas +58581,294,8.G.C.9,Know & Use Volume Formulas +352595,294,8.G.C.9,Know & Use Volume Formulas +164833,294,8.G.C.9,Know & Use Volume Formulas +350639,294,8.G.C.9,Know & Use Volume Formulas +125684,294,8.G.C.9,Know & Use Volume Formulas +352750,294,8.G.C.9,Know & Use Volume Formulas +333699,294,8.G.C.9,Know & Use Volume Formulas +333895,294,8.G.C.9,Know & Use Volume Formulas +352407,294,8.G.C.9,Know & Use Volume Formulas +86515,295,8.G.C.9,Know & Use Volume Formulas +89267,295,8.G.C.9,Know & Use Volume Formulas +138533,295,8.G.C.9,Know & Use Volume Formulas +26678,295,8.G.C.9,Know & Use Volume Formulas +36673,295,8.G.C.9,Know & Use Volume Formulas +138360,295,8.G.C.9,Know & Use Volume Formulas +315454,295,8.G.C.9,Know & Use Volume Formulas +348674,295,8.G.C.9,Know & Use Volume Formulas +151987,295,8.G.C.9,Know & Use Volume Formulas +151827,295,8.G.C.9,Know & Use Volume Formulas +27930,295,8.G.C.9,Know & Use Volume Formulas +26766,295,8.G.C.9,Know & Use Volume Formulas +351813,295,8.G.C.9,Know & Use Volume Formulas +115951,295,8.G.C.9,Know & Use Volume Formulas +596207,295,8.G.C.9,Know & Use Volume Formulas +165245,295,8.G.C.9,Know & Use Volume Formulas +351677,295,8.G.C.9,Know & Use Volume Formulas +27699,295,8.G.C.9,Know & Use Volume Formulas +351988,295,8.G.C.9,Know & Use Volume Formulas +297716,295,8.G.C.9,Know & Use Volume Formulas +674266,295,8.G.C.9,Know & Use Volume Formulas +27604,295,8.G.C.9,Know & Use Volume Formulas +50592,295,8.G.C.9,Know & Use Volume Formulas +233520,295,8.G.C.9,Know & Use Volume Formulas +203778,295,8.G.C.9,Know & Use Volume Formulas +116167,295,8.G.C.9,Know & Use Volume Formulas +233319,295,8.G.C.9,Know & Use Volume Formulas +180722,295,8.G.C.9,Know & Use Volume Formulas +86322,295,8.G.C.9,Know & Use Volume Formulas +152166,295,8.G.C.9,Know & Use Volume Formulas +6116,296,8.SP.A.1,Construct & Interpret Scatter Plots +173561,296,8.SP.A.1,Construct & Interpret Scatter Plots +124523,296,8.SP.A.1,Construct & Interpret Scatter Plots +400715,296,8.SP.A.1,Construct & Interpret Scatter Plots +33514,296,8.SP.A.1,Construct & Interpret Scatter Plots +296937,296,8.SP.A.1,Construct & Interpret Scatter Plots +68821,296,8.SP.A.1,Construct & Interpret Scatter Plots +68650,296,8.SP.A.1,Construct & Interpret Scatter Plots +312938,296,8.SP.A.1,Construct & Interpret Scatter Plots +77355,296,8.SP.A.1,Construct & Interpret Scatter Plots +90496,296,8.SP.A.1,Construct & Interpret Scatter Plots +327381,296,8.SP.A.1,Construct & Interpret Scatter Plots +90685,296,8.SP.A.1,Construct & Interpret Scatter Plots +480902,296,8.SP.A.1,Construct & Interpret Scatter Plots +33779,296,8.SP.A.1,Construct & Interpret Scatter Plots +233989,296,8.SP.A.1,Construct & Interpret Scatter Plots +533341,297,8.SP.A.2,Determine Line of Best Fit for Scatter Plots +604573,297,8.SP.A.2,Determine Line of Best Fit for Scatter Plots +636416,297,8.SP.A.2,Determine Line of Best Fit for Scatter Plots +296579,297,8.SP.A.2,Determine Line of Best Fit for Scatter Plots +296489,297,8.SP.A.2,Determine Line of Best Fit for Scatter Plots +232667,297,8.SP.A.2,Determine Line of Best Fit for Scatter Plots +186153,297,8.SP.A.2,Determine Line of Best Fit for Scatter Plots +185871,297,8.SP.A.2,Determine Line of Best Fit for Scatter Plots +170280,297,8.SP.A.2,Determine Line of Best Fit for Scatter Plots +170383,297,8.SP.A.2,Determine Line of Best Fit for Scatter Plots +36419,297,8.SP.A.2,Determine Line of Best Fit for Scatter Plots +480902,298,8.SP.A.3,Use Linear Equations Applied to Bivariate Data +23029,298,8.SP.A.3,Use Linear Equations Applied to Bivariate Data +22573,298,8.SP.A.3,Use Linear Equations Applied to Bivariate Data +22902,298,8.SP.A.3,Use Linear Equations Applied to Bivariate Data +296489,298,8.SP.A.3,Use Linear Equations Applied to Bivariate Data +296579,298,8.SP.A.3,Use Linear Equations Applied to Bivariate Data +180839,298,8.SP.A.3,Use Linear Equations Applied to Bivariate Data +76975,298,8.SP.A.3,Use Linear Equations Applied to Bivariate Data +76861,298,8.SP.A.3,Use Linear Equations Applied to Bivariate Data +604573,298,8.SP.A.3,Use Linear Equations Applied to Bivariate Data +636416,298,8.SP.A.3,Use Linear Equations Applied to Bivariate Data +84657,298,8.SP.A.3,Use Linear Equations Applied to Bivariate Data +173897,298,8.SP.A.3,Use Linear Equations Applied to Bivariate Data +12777,298,8.SP.A.3,Use Linear Equations Applied to Bivariate Data +84521,298,8.SP.A.3,Use Linear Equations Applied to Bivariate Data +253836,299,8.SP.A.4,Construct & Interpret Two Way Tables +69854,299,8.SP.A.4,Construct & Interpret Two Way Tables +604503,299,8.SP.A.4,Construct & Interpret Two Way Tables +179563,299,8.SP.A.4,Construct & Interpret Two Way Tables +180312,299,8.SP.A.4,Construct & Interpret Two Way Tables +636346,299,8.SP.A.4,Construct & Interpret Two Way Tables +254278,299,8.SP.A.4,Construct & Interpret Two Way Tables +299700,340,2.MD.B.5,Solve Word Problems Involving Lengths using Addition & Subtraction +427819,340,2.MD.B.5,Solve Word Problems Involving Lengths using Addition & Subtraction +222136,1129,5.NBT.A.2,Explain Patterns when Multiplying & Dividing Powers of 10 +2695,1131,5.NBT.B.7,Compute Decimal Problems Involving All 4 Operations +254319,1131,5.NBT.B.7,Compute Decimal Problems Involving All 4 Operations +3201,1131,5.NBT.B.7,Compute Decimal Problems Involving All 4 Operations +2812,1131,5.NBT.B.7,Compute Decimal Problems Involving All 4 Operations +48374,1131,5.NBT.B.7,Compute Decimal Problems Involving All 4 Operations +5038,1131,5.NBT.B.7,Compute Decimal Problems Involving All 4 Operations +256627,1131,5.NBT.B.7,Compute Decimal Problems Involving All 4 Operations +254716,1131,5.NBT.B.7,Compute Decimal Problems Involving All 4 Operations +254190,1131,5.NBT.B.7,Compute Decimal Problems Involving All 4 Operations +422237,1132,5.NBT.B.7,Compute Decimal Problems Involving All 4 Operations +422084,1132,5.NBT.B.7,Compute Decimal Problems Involving All 4 Operations +508887,1132,5.NBT.B.7,Compute Decimal Problems Involving All 4 Operations +508769,1132,5.NBT.B.7,Compute Decimal Problems Involving All 4 Operations +509009,1132,5.NBT.B.7,Compute Decimal Problems Involving All 4 Operations +508616,1132,5.NBT.B.7,Compute Decimal Problems Involving All 4 Operations +445524,1132,5.NBT.B.7,Compute Decimal Problems Involving All 4 Operations +79155,1132,5.NBT.B.7,Compute Decimal Problems Involving All 4 Operations +421173,1133,5.NBT.B.7,Compute Decimal Problems Involving All 4 Operations +508286,1133,5.NBT.B.7,Compute Decimal Problems Involving All 4 Operations +134923,1133,5.NBT.B.7,Compute Decimal Problems Involving All 4 Operations +508172,1133,5.NBT.B.7,Compute Decimal Problems Involving All 4 Operations +135051,1133,5.NBT.B.7,Compute Decimal Problems Involving All 4 Operations +134784,1133,5.NBT.B.7,Compute Decimal Problems Involving All 4 Operations +508017,1133,5.NBT.B.7,Compute Decimal Problems Involving All 4 Operations +508402,1133,5.NBT.B.7,Compute Decimal Problems Involving All 4 Operations +421310,1133,5.NBT.B.7,Compute Decimal Problems Involving All 4 Operations +421448,1133,5.NBT.B.7,Compute Decimal Problems Involving All 4 Operations +445641,1133,5.NBT.B.7,Compute Decimal Problems Involving All 4 Operations +421588,1133,5.NBT.B.7,Compute Decimal Problems Involving All 4 Operations +457262,1134,5.NF.B.4a,Interpret & Compute Products of Fractions and Whole Numbers +421967,1134,5.NF.B.4a,Interpret & Compute Products of Fractions and Whole Numbers +421838,1134,5.NF.B.4a,Interpret & Compute Products of Fractions and Whole Numbers +348598,1134,5.NF.B.4a,Interpret & Compute Products of Fractions and Whole Numbers +348818,1134,5.NF.B.4a,Interpret & Compute Products of Fractions and Whole Numbers +348936,1134,5.NF.B.4a,Interpret & Compute Products of Fractions and Whole Numbers +348711,1134,5.NF.B.4a,Interpret & Compute Products of Fractions and Whole Numbers +475491,1135,6.G.A.4,Represent 3D Figures Using Nets to Find Surface Area +115625,1135,6.G.A.4,Represent 3D Figures Using Nets to Find Surface Area +60186,1135,6.G.A.4,Represent 3D Figures Using Nets to Find Surface Area +79708,1135,6.G.A.4,Represent 3D Figures Using Nets to Find Surface Area +502515,1135,6.G.A.4,Represent 3D Figures Using Nets to Find Surface Area +54974,1135,6.G.A.4,Represent 3D Figures Using Nets to Find Surface Area +274073,1135,6.G.A.4,Represent 3D Figures Using Nets to Find Surface Area +349598,1135,6.G.A.4,Represent 3D Figures Using Nets to Find Surface Area +502164,1135,6.G.A.4,Represent 3D Figures Using Nets to Find Surface Area +115025,1135,6.G.A.4,Represent 3D Figures Using Nets to Find Surface Area +273669,1135,6.G.A.4,Represent 3D Figures Using Nets to Find Surface Area +406876,1135,6.G.A.4,Represent 3D Figures Using Nets to Find Surface Area +272246,1135,6.G.A.4,Represent 3D Figures Using Nets to Find Surface Area +637195,1135,6.G.A.4,Represent 3D Figures Using Nets to Find Surface Area +115789,1135,6.G.A.4,Represent 3D Figures Using Nets to Find Surface Area +558257,1135,6.G.A.4,Represent 3D Figures Using Nets to Find Surface Area +248279,1135,6.G.A.4,Represent 3D Figures Using Nets to Find Surface Area +14173,1135,6.G.A.4,Represent 3D Figures Using Nets to Find Surface Area +273879,1135,6.G.A.4,Represent 3D Figures Using Nets to Find Surface Area +295992,1135,6.G.A.4,Represent 3D Figures Using Nets to Find Surface Area +55545,1135,6.G.A.4,Represent 3D Figures Using Nets to Find Surface Area +168559,1135,6.G.A.4,Represent 3D Figures Using Nets to Find Surface Area +115150,1135,6.G.A.4,Represent 3D Figures Using Nets to Find Surface Area +502927,1135,6.G.A.4,Represent 3D Figures Using Nets to Find Surface Area +349875,1135,6.G.A.4,Represent 3D Figures Using Nets to Find Surface Area +115417,1135,6.G.A.4,Represent 3D Figures Using Nets to Find Surface Area +79262,1135,6.G.A.4,Represent 3D Figures Using Nets to Find Surface Area +295788,1135,6.G.A.4,Represent 3D Figures Using Nets to Find Surface Area +389120,1136,7.EE.B.4a,Solve 2-Step Equations +388622,1136,7.EE.B.4a,Solve 2-Step Equations +11331,1136,7.EE.B.4a,Solve 2-Step Equations +118504,1136,7.EE.B.4a,Solve 2-Step Equations +314711,1136,7.EE.B.4a,Solve 2-Step Equations +104742,1136,7.EE.B.4a,Solve 2-Step Equations +257823,1136,7.EE.B.4a,Solve 2-Step Equations +55274,1136,7.EE.B.4a,Solve 2-Step Equations +162424,1136,7.EE.B.4a,Solve 2-Step Equations +48612,1136,7.EE.B.4a,Solve 2-Step Equations +196520,1136,7.EE.B.4a,Solve 2-Step Equations +156040,1136,7.EE.B.4a,Solve 2-Step Equations +90188,1136,7.EE.B.4a,Solve 2-Step Equations +308259,1136,7.EE.B.4a,Solve 2-Step Equations +186074,1136,7.EE.B.4a,Solve 2-Step Equations +54241,1136,7.EE.B.4a,Solve 2-Step Equations +180669,1136,7.EE.B.4a,Solve 2-Step Equations +168704,1136,7.EE.B.4a,Solve 2-Step Equations +64354,1136,7.EE.B.4a,Solve 2-Step Equations +247400,1136,7.EE.B.4a,Solve 2-Step Equations +344535,1136,7.EE.B.4a,Solve 2-Step Equations +10359,1136,7.EE.B.4a,Solve 2-Step Equations +156315,1136,7.EE.B.4a,Solve 2-Step Equations +10737,1136,7.EE.B.4a,Solve 2-Step Equations +178070,1136,7.EE.B.4a,Solve 2-Step Equations +11235,1136,7.EE.B.4a,Solve 2-Step Equations +67861,1136,7.EE.B.4a,Solve 2-Step Equations +11131,1136,7.EE.B.4a,Solve 2-Step Equations +11040,1136,7.EE.B.4a,Solve 2-Step Equations +347162,1136,7.EE.B.4a,Solve 2-Step Equations +54233,1136,7.EE.B.4a,Solve 2-Step Equations +247823,1136,7.EE.B.4a,Solve 2-Step Equations +156598,1136,7.EE.B.4a,Solve 2-Step Equations +674289,1136,7.EE.B.4a,Solve 2-Step Equations +168477,1136,7.EE.B.4a,Solve 2-Step Equations +308414,1136,7.EE.B.4a,Solve 2-Step Equations +129703,1136,7.EE.B.4a,Solve 2-Step Equations +54349,1136,7.EE.B.4a,Solve 2-Step Equations +124948,1137,7.EE.B.4b,"Solve, Graph & Interpret 2-Step Inequalities" +189877,1137,7.EE.B.4b,"Solve, Graph & Interpret 2-Step Inequalities" +124074,1137,7.EE.B.4b,"Solve, Graph & Interpret 2-Step Inequalities" +104597,1137,7.EE.B.4b,"Solve, Graph & Interpret 2-Step Inequalities" +124637,1137,7.EE.B.4b,"Solve, Graph & Interpret 2-Step Inequalities" +163692,1137,7.EE.B.4b,"Solve, Graph & Interpret 2-Step Inequalities" +129703,1137,7.EE.B.4b,"Solve, Graph & Interpret 2-Step Inequalities" +237641,1137,7.EE.B.4b,"Solve, Graph & Interpret 2-Step Inequalities" +124358,1137,7.EE.B.4b,"Solve, Graph & Interpret 2-Step Inequalities" +237440,1137,7.EE.B.4b,"Solve, Graph & Interpret 2-Step Inequalities" +70471,1137,7.EE.B.4b,"Solve, Graph & Interpret 2-Step Inequalities" +85212,1137,7.EE.B.4b,"Solve, Graph & Interpret 2-Step Inequalities" +316024,1138,8.NS.A.1,Understand & Approximate Rational & Irrational Numbers +74236,1138,8.NS.A.1,Understand & Approximate Rational & Irrational Numbers +103419,2277,6.SP.B.4,"Display Numerical Data Using Dot Plots, Histograms & Box Plots" +150918,2277,6.SP.B.4,"Display Numerical Data Using Dot Plots, Histograms & Box Plots" +193572,2277,6.SP.B.4,"Display Numerical Data Using Dot Plots, Histograms & Box Plots" +125866,2277,6.SP.B.4,"Display Numerical Data Using Dot Plots, Histograms & Box Plots" +285834,2277,6.SP.B.4,"Display Numerical Data Using Dot Plots, Histograms & Box Plots" +57280,2277,6.SP.B.4,"Display Numerical Data Using Dot Plots, Histograms & Box Plots" +283170,2277,6.SP.B.4,"Display Numerical Data Using Dot Plots, Histograms & Box Plots" +57030,2277,6.SP.B.4,"Display Numerical Data Using Dot Plots, Histograms & Box Plots" +21754,2277,6.SP.B.4,"Display Numerical Data Using Dot Plots, Histograms & Box Plots" +591536,2277,6.SP.B.4,"Display Numerical Data Using Dot Plots, Histograms & Box Plots" +188925,2277,6.SP.B.4,"Display Numerical Data Using Dot Plots, Histograms & Box Plots" +21866,2277,6.SP.B.4,"Display Numerical Data Using Dot Plots, Histograms & Box Plots" +10007,2279,7.G.B.5,Use Facts About Angles to Write & Solve Equations +96584,2279,7.G.B.5,Use Facts About Angles to Write & Solve Equations +9804,2279,7.G.B.5,Use Facts About Angles to Write & Solve Equations +319333,2279,7.G.B.5,Use Facts About Angles to Write & Solve Equations +504723,2279,7.G.B.5,Use Facts About Angles to Write & Solve Equations +319240,2279,7.G.B.5,Use Facts About Angles to Write & Solve Equations +96780,2279,7.G.B.5,Use Facts About Angles to Write & Solve Equations +149928,2281,7.G.B.6,"Find Area, Volume & Surface Area of 2D/3D Objects" +145971,2283,8.G.A.3,Describe the Effect of Transformations on 2D Figures +309708,2283,8.G.A.3,Describe the Effect of Transformations on 2D Figures +145792,2283,8.G.A.3,Describe the Effect of Transformations on 2D Figures +146131,2283,8.G.A.3,Describe the Effect of Transformations on 2D Figures +175643,2283,8.G.A.3,Describe the Effect of Transformations on 2D Figures +170317,2283,8.G.A.3,Describe the Effect of Transformations on 2D Figures +28184,2283,8.G.A.3,Describe the Effect of Transformations on 2D Figures +81610,2283,8.G.A.3,Describe the Effect of Transformations on 2D Figures +239691,2283,8.G.A.3,Describe the Effect of Transformations on 2D Figures +77888,2284,8.G.A.5,Use Informal Arguments to Establish Facts about Angles for Similar Triangles +239815,2284,8.G.A.5,Use Informal Arguments to Establish Facts about Angles for Similar Triangles diff --git a/README.md b/README.md new file mode 100644 index 0000000000000000000000000000000000000000..40d0e11aab3ff9375f4508986e965d85a6139231 --- /dev/null +++ b/README.md @@ -0,0 +1,246 @@ +--- +license: cc-by-nc-4.0 + +extra_gated_prompt: "You agree to our [Responsible Use Guidelines](https://www.etrialstestbed.org/mathnet57963-guidelines)." + +extra_gated_fields: + First and Last Name: text + Affiliation(university, company, etc): text + Country: country + Why are you asking to use this dataset?: text + How are you going to use this dataset?: text + How will you store and secure this data?: text + Do you have a university-affiliated email we could use to verify your request? If so, please enter it, if not, please explain why: text + + I agree to use this dataset for non-commercial use ONLY: checkbox + While we think it's impossible for you to identify a student from these answers, you need to agree to not try to do so, and you also need to inform us if you find any PII in any of the images with the filenames: checkbox + Check box - I agree that this data will be stored on secured institutional systems, will not be shared with unauthorized parties and will deleted or returned to ASSISTments when my research is complete: checkbox + +configs: + - config_name: Foundational ASSIST Dataset + data_files: Data/Problems.csv + - config_name: Interactions + data_files: Data/Interactions.csv + - config_name: Skills + data_files: Data/Skills.csv + +--- + +**IMPORTANT UPDATE ON 3/19:** Due to an issue with git LFS 700k rows in interactions.csv were missing. Please redownload the dataset to use these rows. + +# Overview of Foundational ASSIST +Foundational ASSIST is a dataset containing all natural text of problems and student answers as recorded by ASSISTments. The problems are from from Illustrative Mathematics 6th - 8th grade math curriculum, a common core aligned curriculum popular in the United States. + +The data is in the "Data" folder. The code used to generate results in the original paper by Worden et al. is in the Code folder, and the results (in case you do not wish to reinference) are in the "Results" folder. + +The dataset is comprised of three files: +1. **Interactions**, which contains students attempts of problems, +2. **Problems**, which includes information relevant to problems, and +3. **Skills**, which links Problems to skills. +The dataset was curated to include 5,000 unique students who have each completed between 211-421 problems in ASSISTments. The dataset includes 1.7 million instances of students solving problems, complete with the answer text, problem text, distractor text, and more. + +# Interactions File +Interactions consists of 1,722,169 unique instances of students solving problems. The information provided includes a) problem_id, linking to Problems b) hint_count, the number of hints the student requested c) answer_text, the exact text of their first answer d) saw_answer, a boolean indicating whether the student requested to see the correct answer e) discrete_score, 0 the students score f) end_time, the time at which the student put in the correct answer to the problem g) user_xid, a unique identifier for each student. + +Note that ASSISTments provides a discrete_score of 1 only if the student gets the problem correct on their first attempt, without requesting any support. If the student requests a hint, requests the answer, or has multiple tries they receive a 0. Accordingly, a student's answer can be the correct answer, but they can receive a 0 if the student requests a hint or sees the answer before entering the answer. This is shown in “table 7 cognitive accuracy when answers are incorrect” in our paper. + +# Problems File +This file consists of information about 3,395 unique problems. The columns include +1. Problem Set Id, which links problems that follow one another +2. Problem Part, which indicates where in the Problem Set the problem occurs +3. Problem Type, describing the type of problem +4. Answer Type, describing the type of answer (see below table or more information) +5. Problem Body, the problem text with HTML or markup illustrating exactly what the student saw (code to convert to natural language is available on the github) +6. Fill-in Options +7. Fill-in Answers +8. Multiple Choice Options +9. Multiple Choice Answers +10. problem_id + +Problem Set example: PSB6N4 consists of three problems. The first is problem_id 151389 (as it has ‘Problem Part’ = 1, the second is problem_id 151533, and the third/last is 151647. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Answer Type + Description + Fill-in Options + Fill-in Answers + Multiple Choice Options + Multiple Choice Answers +
Numeric + The student must type in the correct number + The correct answer. If there are multiple correct answers they are separated by a “,”. + The correct answer. If there are multiple correct answers they are separated by a “,”. + n/a + n/a +
Drop Down + The student must select the correct option from a drop-down menu. These are similar to multiple choice + All the drop down options, separated by “</p>,” + The correct dropdown option. + n/a + n/a +
Algebraic Expression + The student must type in the correct, short, algebraic expression, or a similar equivalent expression. E.g. if the answer is a^2+b^2 then b^2+a^2 would also be correct. + The correct answer. If there are multiple correct answers they are separated by a “,”. + The correct answer. If there are multiple correct answers they are separated by a “,”. + n/a + n/a +
Ordering + The student must order some values in some order. Note the initial order of how these are presented to students is randomized. + The correct order of objects, separated by “,”. + The correct order of objects, separated by “,”. + n/a + n/a +
Exact Match + The student must type in exactly the correct answer. This could be a number, expression, point, list, etc. + The correct answer. If there are multiple correct answers they are separated by a “,”. Note that some answers, e.g. lists, require the whole text (1,2,3) and there is only a single answer. + The correct answer. If there are multiple correct answers they are separated by a “,”. Note that some answers, e.g. lists, require the whole text (1,2,3) and there is only a single answer. + n/a + n/a +
Exact Fraction + The student must type in exactly the correct fraction. + The correct answer. If there are multiple correct answers they are separated by a “,”. + The correct answer. If there are multiple correct answers they are separated by a “,”. + n/a + n/a +
Numeric Expression + The student must type in a numeric expression. Note that simplification occurs, e.g. if the answer is 11^3, 1331 is also considered correct. + The correct answer. If there are multiple correct answers they are separated by a “,”. + The correct answer. If there are multiple correct answers they are separated by a “,”. + n/a + n/a +
Multiple Choice + The student must select the correct option. + n/a + n/a + A list of options, separated by ‘||’. + The correct option. +
Check all that apply + The student must select all correct option(s). + n/a + n/a + A list of options, separated by ‘||’. + The correct option(s), separated by ‘||’. +
+ +# Skills File +The skills file consists of +1) problem_id, linking to problems in the Problems file +2) skill_id, a unique identifier per skill +3) node_code, which identifies the ASSISTments Skill tag Illustrative Math code for the skill and +4) node_name, a description of the skill. In total there are 224 unique skills. + +# Data Source +All data across each file are from [ASSISTments](https://new.assistments.org/), where students complete in-class work as well as homework and receive support and feedback from the platform. This work was done in conjunction with [Dr. Heffernan’s lab at WPI](https://www.neilheffernan.net/home). To ensure student privacy, our team attempted to remove all Personal Identifiable Information (PII). However, it is possible students could type PII into fill-in problems, which we aimed to detect and remove, but short of a manual review of 1.7 million interaction logs becomes infeasible. Accordingly, we ask that if people using this dataset come across PII to please contact us at [etrials@assistments.org](etrials@assistments.org) so it can be removed. + +# License and Sharing Agreement +This dataset is licensed under CC-BY-NC-4.0. We require that this dataset is used for research and educational purposes following this +[Responsible Use Guidelines](https://www.etrialstestbed.org/mathnet57963-guidelines). + +# Citation + +If you use the **FoundationalASSIST** dataset in your research, please cite the following paper: + +> Worden, E., Heffernan, C., Heffernan, N., & Sonkar, S. (2026). FoundationalASSIST: An Educational Dataset for Foundational Knowledge Tracing and Pedagogical Grounding of LLMs. *arXiv preprint arXiv:2602.00070*. + +### BibTeX + +```bibtex +@article{worden2026foundationalassist, + title={FoundationalASSIST: An Educational Dataset for Foundational Knowledge Tracing and Pedagogical Grounding of LLMs}, + author={Worden, Eamon and Heffernan, Cristina and Heffernan, Neil and Sonkar, Shashank}, + journal={arXiv preprint arXiv:2602.00070}, + year={2026} +} +``` + +### FAQs +Q: Where is the code that cleans the problem text? +A: This repository, in Code/clean_utils.py or cleantext.py, both are similar. + +Q: How does discrete_score work? +A: Discrete score is 1 if the student solved the problem on their first try without requesting a hint (hint_count) or an explanation/seeing the answer (saw_answer). +Note this is recorded by ASSISTments. There are 433 rows where discrete_score = 1 despite saw_answer = True or hint_count > 0. In these instances, the student correctly solved the problem then requested hints/explanation/the answer anyways. + +Q: Does the dataset track multiple attempts? (E.g. the student first incorrectly said 3, then incorrectly answered 6, then correctly answered 9) +A: No. We recognize it may be valuable to have this data. However, currently, answer_text (in Interactions.csv) is the first answer (right or wrong) the student submitted for the problem. Second/future attempts are not included in this dataset, but stay tuned. \ No newline at end of file diff --git a/Results/Problems_duplicated_problem_id.csv b/Results/Problems_duplicated_problem_id.csv new file mode 100644 index 0000000000000000000000000000000000000000..d7ebe708e1d8df54f2eec3efa921c7005cb715cc --- /dev/null +++ b/Results/Problems_duplicated_problem_id.csv @@ -0,0 +1,209 @@ +Problem Set Id,Problem Part,Problem Type,Answer Types,Problem Body,Fill-in Options,Fill-in Answers,Multiple Choice Options,Multiple Choice Answers,problem_id,duplicate_group_id,duplicate_problem_id_count,distinct_problem_body_count +PSBBP4J,2,Fill-in-the-blank(s),Numeric,"

Find the area of the triangle.

+

 

+

square units.

+

 

+

",11,11,,,242640,1,2,1 +PSBBP4J,2,Fill-in-the-blank(s),Numeric,"

Find the area of the triangle.

+

 

+

square units.

+

 

+

",11,11,,,242640,1,2,1 +PSBBPYN,1,Fill-in-the-blank(s),Numeric,"

Find the area of this trapezoid.

+

 

+

+

 

+

square units

",18,18,,,242072,2,2,1 +PSBBPYN,1,Fill-in-the-blank(s),Numeric,"

Find the area of this trapezoid.

+

 

+

+

 

+

square units

",18,18,,,242072,2,2,1 +PSBBUFM,1,Fill-in-the-blank(s),Numeric,"

Find the area of the shaded region in square units.

+

 

+

+

 

+

square units

",40,40,,,266614,3,2,1 +PSBBUFM,1,Fill-in-the-blank(s),Numeric,"

Find the area of the shaded region in square units.

+

 

+

+

 

+

square units

",40,40,,,266614,3,2,1 +PSBCTHE,3,Fill-in-the-blank(s),Numeric,"

There are 3 cats in a room and no other creatures. Each cat has 2 ears, 4 paws, and 1 tail.

+

 

+

+

 

+

 

+

 

+

Complete each statement:

+

 

+

There are paws for every tail.

+

There are paws for every ear.

","2, 4","2, 4",,,437233,4,4,1 +PSBCTHE,3,Fill-in-the-blank(s),Numeric,"

There are 3 cats in a room and no other creatures. Each cat has 2 ears, 4 paws, and 1 tail.

+

 

+

+

 

+

 

+

 

+

Complete each statement:

+

 

+

There are paws for every tail.

+

There are paws for every ear.

","2, 4","2, 4",,,437233,4,4,1 +PSBCTHE,3,Fill-in-the-blank(s),Numeric,"

There are 3 cats in a room and no other creatures. Each cat has 2 ears, 4 paws, and 1 tail.

+

 

+

+

 

+

 

+

 

+

Complete each statement:

+

 

+

There are paws for every tail.

+

There are paws for every ear.

","2, 4","2, 4",,,437233,4,4,1 +PSBCTHE,3,Fill-in-the-blank(s),Numeric,"

There are 3 cats in a room and no other creatures. Each cat has 2 ears, 4 paws, and 1 tail.

+

 

+

+

 

+

 

+

 

+

Complete each statement:

+

 

+

There are paws for every tail.

+

There are paws for every ear.

","4, 2","4, 2",,,437233,4,4,1 +PRABFEFN,1,Fill-in-the-blank(s),Numeric,"

A square has a side length of 5 feet. What is its area?

+

 

+

square feet

",25,25,,,89104,5,4,1 +PRABFEFN,1,Fill-in-the-blank(s),Numeric,"

A square has a side length of 5 feet. What is its area?

+

 

+

square feet

",25,25,,,89104,5,4,1 +PRABFEFN,1,Fill-in-the-blank(s),Numeric,"

A square has a side length of 5 feet. What is its area?

+

 

+

square feet

",25,25,,,89104,5,4,1 +PRABFEFN,1,Fill-in-the-blank(s),Numeric,"

A square has a side length of 5 feet. What is its area?

+

 

+

square feet

",25,25,,,89104,5,4,1 +PRABE64P,1,Fill-in-the-blank(s),Numeric,"

A square is 3 inches by 3 inches. What is its area?

+

 

+

square inches

",9,9,,,88850,6,4,1 +PRABE64P,1,Fill-in-the-blank(s),Numeric,"

A square is 3 inches by 3 inches. What is its area?

+

 

+

square inches

",9,9,,,88850,6,4,1 +PRABE64P,1,Fill-in-the-blank(s),Numeric,"

A square is 3 inches by 3 inches. What is its area?

+

 

+

square inches

",9,9,,,88850,6,4,1 +PRABE64P,1,Fill-in-the-blank(s),Numeric,"

A square is 3 inches by 3 inches. What is its area?

+

 

+

square inches

",9,9,,,88850,6,4,1 +PRABFEFP,1,Fill-in-the-blank(s),Numeric,"

The area of a square is 36 square centimeters. What is the length of each side of the square?

+

 

+

centimeters

",6,6,,,89321,7,4,1 +PRABFEFP,1,Fill-in-the-blank(s),Numeric,"

The area of a square is 36 square centimeters. What is the length of each side of the square?

+

 

+

centimeters

",6,6,,,89321,7,4,1 +PRABFEFP,1,Fill-in-the-blank(s),Numeric,"

The area of a square is 36 square centimeters. What is the length of each side of the square?

+

 

+

centimeters

",6,6,,,89321,7,4,1 +PRABFEFP,1,Fill-in-the-blank(s),Numeric,"

The area of a square is 36 square centimeters. What is the length of each side of the square?

+

 

+

centimeters

",6,6,,,89321,7,4,1 +PSBTTU,1,Fill-in-the-blank(s),Numeric,"

Find the area of this quadrilateral.

+

 

+

+

 

+

square units

",24,24,,,88316,8,4,1 +PSBTTU,1,Fill-in-the-blank(s),Numeric,"

Find the area of this quadrilateral.

+

 

+

+

 

+

square units

",24,24,,,88316,8,4,1 +PSBTTU,1,Fill-in-the-blank(s),Numeric,"

Find the area of this quadrilateral.

+

 

+

+

 

+

square units

",24,24,,,88316,8,4,1 +PSBTTU,1,Fill-in-the-blank(s),Numeric,"

Find the area of this quadrilateral.

+

 

+

+

 

+

square units

",24,24,,,88316,8,4,1 +PRABE64M,1,Multiple Choice (select all),Check All That Apply,"

Here is a diagram that describes the cups of green and white paint in a mixture.

+

 

+ + + + + + + + + + + +
green paint (cups)
white paint (cups)
+

 

+

Select all the statements that accurately describe this diagram.

",,,"The ratio of cups of white paint to cups of green paint is 2 to 4. || For every cup of green paint, there are two cups of white paint. ||

The ratio of cups of green paint to cups of white paint is 4 : 2.

|| For every cup of white paint, there are two cups of green paint. ||

The ratio of cups of green paint to cups of white paint is 2 : 4.

","The ratio of cups of white paint to cups of green paint is 2 to 4. ||

The ratio of cups of green paint to cups of white paint is 4 : 2.

|| For every cup of white paint, there are two cups of green paint.",88681,9,4,1 +PRABE64M,1,Multiple Choice (select all),Check All That Apply,"

Here is a diagram that describes the cups of green and white paint in a mixture.

+

 

+ + + + + + + + + + + +
green paint (cups)
white paint (cups)
+

 

+

Select all the statements that accurately describe this diagram.

",,,"The ratio of cups of white paint to cups of green paint is 2 to 4. || For every cup of green paint, there are two cups of white paint. ||

The ratio of cups of green paint to cups of white paint is 4 : 2.

|| For every cup of white paint, there are two cups of green paint. ||

The ratio of cups of green paint to cups of white paint is 2 : 4.

","The ratio of cups of white paint to cups of green paint is 2 to 4. ||

The ratio of cups of green paint to cups of white paint is 4 : 2.

|| For every cup of white paint, there are two cups of green paint.",88681,9,4,1 +PRABE64M,1,Multiple Choice (select all),Check All That Apply,"

Here is a diagram that describes the cups of green and white paint in a mixture.

+

 

+ + + + + + + + + + + +
green paint (cups)
white paint (cups)
+

 

+

Select all the statements that accurately describe this diagram.

",,,"The ratio of cups of white paint to cups of green paint is 2 to 4. || For every cup of green paint, there are two cups of white paint. ||

The ratio of cups of green paint to cups of white paint is 4 : 2.

|| For every cup of white paint, there are two cups of green paint. ||

The ratio of cups of green paint to cups of white paint is 2 : 4.

","The ratio of cups of white paint to cups of green paint is 2 to 4. ||

The ratio of cups of green paint to cups of white paint is 4 : 2.

|| For every cup of white paint, there are two cups of green paint.",88681,9,4,1 +PRABE64M,1,Multiple Choice (select all),Check All That Apply,"

Here is a diagram that describes the cups of green and white paint in a mixture.

+

 

+ + + + + + + + + + + +
green paint (cups)
white paint (cups)
+

 

+

Select all the statements that accurately describe this diagram.

",,,"The ratio of cups of white paint to cups of green paint is 2 to 4. || For every cup of green paint, there are two cups of white paint. ||

The ratio of cups of green paint to cups of white paint is 4 : 2.

|| For every cup of white paint, there are two cups of green paint. ||

The ratio of cups of green paint to cups of white paint is 2 : 4.

","The ratio of cups of white paint to cups of green paint is 2 to 4. ||

The ratio of cups of green paint to cups of white paint is 4 : 2.

|| For every cup of white paint, there are two cups of green paint.",88681,9,4,1 +PRABERFN,1,Multiple Choice (select 1),Multiple Choice,"

Which scale is equivalent to 1 cm to 1 km?

+
 
",,,"1 to 1,000 || 10,000 to 1 || 1 to 100,000 || 100,000 to 1 || 1 to 1,000,000","1 to 100,000",146478,10,2,1 +PRABERFN,1,Multiple Choice (select 1),Multiple Choice,"

Which scale is equivalent to 1 cm to 1 km?

+
 
",,,"1 to 1,000 || 10,000 to 1 || 1 to 100,000 || 100,000 to 1 || 1 to 1,000,000","1 to 100,000",146478,10,2,1 +PSB5BQ,1,Multiple Choice (select 1),Multiple Choice,"

In one version of trail mix, there are 3 cups of peanuts mixed with 2 cups of raisins. In another version of trail mix, there are 4.5 cups of peanuts mixed with 3 cups of raisins. Are the ratios equivalent for the two mixes?

",,,Yes || No,Yes,143888,11,2,1 +PSB5BQ,1,Multiple Choice (select 1),Multiple Choice,"

In one version of trail mix, there are 3 cups of peanuts mixed with 2 cups of raisins. In another version of trail mix, there are 4.5 cups of peanuts mixed with 3 cups of raisins. Are the ratios equivalent for the two mixes?

",,,Yes || No,Yes,143888,11,2,1 +PRABE55W,1,Multiple Choice (select all),Check All That Apply,

Select all the polygons.

,,,"

||

||

||

||

||

","

||

",243115,12,2,1 +PRABE55W,1,Multiple Choice (select all),Check All That Apply,

Select all the polygons.

,,,"

||

||

||

||

||

","

||

",243115,12,2,1 +PRABP75T,1,Multiple Choice (select all),Check All That Apply,"

Salt and sugar give two distinctly different tastes, one salty and the other sweet. In a mixture of salt and sugar, it is possible for the mixture to be salty, sweet or both. Will any of these mixtures taste exactly the same?

",,,"Mixture A: 2 cups water, 4 teaspoons salt, 0.25 cup sugar || Mixture B: 1.5 cups water, 3 teaspoons salt, 0.2 cup sugar || Mixture C: 1 cup water, 2 teaspoons salt, 0.125 cup sugar || None of these mixtures taste the same.","Mixture A: 2 cups water, 4 teaspoons salt, 0.25 cup sugar || Mixture C: 1 cup water, 2 teaspoons salt, 0.125 cup sugar",48435,13,2,1 +PRABP75T,1,Multiple Choice (select all),Check All That Apply,"

Salt and sugar give two distinctly different tastes, one salty and the other sweet. In a mixture of salt and sugar, it is possible for the mixture to be salty, sweet or both. Will any of these mixtures taste exactly the same?

",,,"Mixture A: 2 cups water, 4 teaspoons salt, 0.25 cup sugar || Mixture B: 1.5 cups water, 3 teaspoons salt, 0.2 cup sugar || Mixture C: 1 cup water, 2 teaspoons salt, 0.125 cup sugar || None of these mixtures taste the same.","Mixture A: 2 cups water, 4 teaspoons salt, 0.25 cup sugar || Mixture C: 1 cup water, 2 teaspoons salt, 0.125 cup sugar",48435,13,2,1 +PSBGXA,1,Multiple Choice (select 1),Multiple Choice,

The side lengths of Triangle B are all 5 more than the side lengths of Triangle A. Can Triangle B be a scaled copy of Triangle A?

,,,Yes || No,Yes,36042,14,2,1 +PSBGXA,1,Multiple Choice (select 1),Multiple Choice,

The side lengths of Triangle B are all 5 more than the side lengths of Triangle A. Can Triangle B be a scaled copy of Triangle A?

,,,Yes || No,Yes,36042,14,2,1 +PRABMQH8,1,Multiple Choice (select all),Check All That Apply,"

Triangle Z is a scale copy of Triangle M.

+

+


Select all the sets of values that could be the side lengths of Triangle Z. 

",,,"

8,11,14

|| 10,17.5,25 || 6,9,11 || 6,10.5,15 || 8,14,20","10,17.5,25 || 6,10.5,15 || 8,14,20",569234,15,2,1 +PRABMQH8,1,Multiple Choice (select all),Check All That Apply,"

Triangle Z is a scale copy of Triangle M.

+

+


Select all the sets of values that could be the side lengths of Triangle Z. 

",,,"

8,11,14

|| 10,17.5,25 || 6,9,11 || 6,10.5,15 || 8,14,20","10,17.5,25 || 6,10.5,15 || 8,14,20",569234,15,2,1 diff --git a/Results/Problems_same_body_different_problem_id.csv b/Results/Problems_same_body_different_problem_id.csv new file mode 100644 index 0000000000000000000000000000000000000000..ec078271f46937ef0d1dc70b4a1f6f5691f73335 --- /dev/null +++ b/Results/Problems_same_body_different_problem_id.csv @@ -0,0 +1,55 @@ +Problem Set Id,Problem Part,Problem Type,Answer Types,Problem Body,Fill-in Options,Fill-in Answers,Multiple Choice Options,Multiple Choice Answers,problem_id,duplicate_group_id,distinct_problem_id_count,distinct_problem_ids +PSB2CK,6,Fill-in-the-blank(s),Numeric,"

What is its answer?

+

 

+

",2.64,2.64,,,126628,1,3,126091;126362;126628 +PSB2CK,2,Fill-in-the-blank(s),Numeric,"

What is its answer?

+

 

+

",264,264,,,126091,1,3,126091;126362;126628 +PSB2CK,4,Fill-in-the-blank(s),Numeric,"

What is its answer?

+

 

+

",26.4,26.4,,,126362,1,3,126091;126362;126628 +PSBBS8M,2,Fill-in-the-blank(s),Numeric,"

How many different triangles are there?

+

 

+

different triangles

",3,3,,,259177,2,2,258731;259177 +PSBBS6F,2,Fill-in-the-blank(s),Numeric,"

How many different triangles are there?

+

 

+

different triangles

",4,4,,,258731,2,2,258731;259177 +PRABFG57,1,Order / Sort,Ordering,

Order these numbers from least to greatest:

,"

-12

,

12

,

-1

,

-112

,

1

,

0

","

-12

,

12

,

-1

,

-112

,

1

,

0

",,,406337,3,2,406337;6158 +PRABFKN2,1,Order / Sort,Ordering,

Order these numbers from least to greatest:

,"

-18

,

-17

,

-18

,

19

,

20

","

-18

,

-17

,

-18

,

19

,

20

",,,6158,3,2,406337;6158 +PSBDASC,2,Fill-in-the-blank(s),Numeric,"

What is the decimal representation of that number?

+

 

+

",0.5,0.5,,,522651,4,2,522651;523084 +PSBDASC,6,Fill-in-the-blank(s),Numeric,"

What is the decimal representation of that number?

+

 

+

",0.125,0.125,,,523084,4,2,522651;523084 +PSBCDYX,3,Fill-in-the-blank(s),Numeric,"

Solve the equation you wrote.

+

 

+

x =

",7.8,7.8,,,366764,5,2,366764;56163 +PSBMSN,3,Fill-in-the-blank(s),Numeric,"

Solve the equation you wrote.

+

 

+

x =

",11.6,11.6,,,56163,5,2,366764;56163 +PSBBSYB,2,Fill-in-the-blank(s),Numeric,"

If not, write it in scientific notation.

+

 

+

×10

","6, 3.6","6, 3.6",,,257604,6,3,257097;257352;257604 +PSBBSWV,2,Fill-in-the-blank(s),Numeric,"

If not, write it in scientific notation.

+

 

+

×10

","-4, 9.9","-4, 9.9",,,257352,6,3,257097;257352;257604 +PSBBSVC,2,Fill-in-the-blank(s),Numeric,"

If not, write it in scientific notation.

+

 

+

×10

","4, 4.82","4, 4.82",,,257097,6,3,257097;257352;257604 +PSBGBG,4,Fill-in-the-blank(s),Numeric,"

On which day did it occur?

+

 

+

Day

",11,11,,,32600,7,2,32363;32600 +PSBGBG,2,Fill-in-the-blank(s),Numeric,"

On which day did it occur?

+

 

+

Day

",14,14,,,32363,7,2,32363;32600 +PRABQM8U,1,Multiple Choice (select all),Check All That Apply,

Select all the true statements.

,,,"Given a box plot, it is always possible to calculate the mean of the data. || Given a box plot, it is always possible to calculate the median of the data. || Given a box plot, it is always possible to construct a corresponding dot plot. || Given a dot plot, it is always possible to construct a corresponding box plot. || Given a histogram, it is always possible to construct a corresponding box plot.","Given a box plot, it is always possible to calculate the median of the data. || Given a dot plot, it is always possible to construct a corresponding box plot.",193572,8,3,193572;362112;69320 +PRABEVAG,1,Multiple Choice (select all),Check All That Apply,

Select all the true statements.

,,,"

2.3 + (-2.3) is equal to zero.

||

(-3.7) + (-4.1) is positive.

||

-2.6 - -124 is positive.

||

52 + -2.5 is negative.

||

72 - (-100) is negative.

","

2.3 + (-2.3) is equal to zero.

||

-2.6 - -124 is positive.

",69320,8,3,193572;362112;69320 +PRABFJP8,1,Multiple Choice (select all),Check All That Apply,

Select all the true statements.

,,,"

-5 < -5

||

-6 < -5

||

-6 < 3

||

4 < -7

||

-7 < -8

","

-5 < -5

||

4 < -7

||

-7 < -8

",362112,8,3,193572;362112;69320 +PSBCKT6,1,Multiple Choice (select 1),Multiple Choice,"

For the pair of numbers below, select the number that is greater.

",,,"

42 · 107

||

8.5 · 108

","

8.5 · 108

",399091,9,3,398365;398730;399091 +PSBCKRX,1,Multiple Choice (select 1),Multiple Choice,"

For the pair of numbers below, select the number that is greater.

",,,"

2 · 106 

||

7.839 · 106 

","

7.839 · 106 

",398730,9,3,398365;398730;399091 +PSBCKP4,1,Multiple Choice (select 1),Multiple Choice,"

For the pair of numbers below, select the number that is greater.

",,,"

17·108   

||

4·108

","

17·108   

",398365,9,3,398365;398730;399091 +PRABQPRF,1,Multiple Choice (select 1),Multiple Choice,

Which of these describes a unique polygon?

,,,"A quadrilateral with 4 right angles || A triangle with angles 30°, 80°, and 70° || A triangle with side lengths 7 cm and 8 cm and a 70° angle || A triangle with each side length 5 inches",A triangle with each side length 5 inches,558308,10,2,483667;558308 +PRABEVDM,1,Multiple Choice (select 1),Multiple Choice,

Which of these describes a unique polygon?

,,,"A triangle with angles 30°, 50°, and 100° || A quadrilateral with each side length 5 cm || A triangle with side lengths 6 cm, 7 cm, and 8 cm || A triangle with side lengths 4 cm and 5 cm and a 50° angle","A triangle with side lengths 6 cm, 7 cm, and 8 cm",483667,10,2,483667;558308 +PSBBD9R,2,Multiple Choice (select 1),Multiple Choice,

Which group shows greater variability?

,,,

Group A

|| group B,

Group A

,193337,11,2,193337;529063 +PSBDBQU,2,Multiple Choice (select 1),Multiple Choice,

Which group shows greater variability?

,,,Group A || Group B,Group A,529063,11,2,193337;529063 diff --git a/Results/day_student_attempt_distribution.png b/Results/day_student_attempt_distribution.png new file mode 100644 index 0000000000000000000000000000000000000000..be9e7d9e58e30f31bc8306ee5bba8dff9661f8f4 --- /dev/null +++ b/Results/day_student_attempt_distribution.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d9f59cee525d97c2d4002c888725b17c8e49d1881249f83dbf44582f250dc74c +size 175846 diff --git a/Results/day_student_attempt_distribution_00173df52c65a9c13b45978c5a56ea2db67b17deded674486f7af64f7c5fd9ac.png b/Results/day_student_attempt_distribution_00173df52c65a9c13b45978c5a56ea2db67b17deded674486f7af64f7c5fd9ac.png new file mode 100644 index 0000000000000000000000000000000000000000..19281091e356710a14d5d74d17fe3f7364262d9d --- /dev/null +++ b/Results/day_student_attempt_distribution_00173df52c65a9c13b45978c5a56ea2db67b17deded674486f7af64f7c5fd9ac.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4ca130170fdcc3e821ab21ccc262d091b088c0fa069f585d20485e1cfec0e0f1 +size 133826 diff --git a/Results/day_student_attempt_distribution_001849d40d6bf1e2ed5826e4420e291e54655a2b6b77a9ab701faaeb4e899abe.png b/Results/day_student_attempt_distribution_001849d40d6bf1e2ed5826e4420e291e54655a2b6b77a9ab701faaeb4e899abe.png new file mode 100644 index 0000000000000000000000000000000000000000..a35613b5bb124c2e2bcb70d11dd4e5152d042533 --- /dev/null +++ b/Results/day_student_attempt_distribution_001849d40d6bf1e2ed5826e4420e291e54655a2b6b77a9ab701faaeb4e899abe.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e54a86b81d0221edd7bfc2449b2ef8cca2ed2cefcfef096ff6e23447d03e3ada +size 132799 diff --git a/Results/day_student_attempt_distribution_counts.csv b/Results/day_student_attempt_distribution_counts.csv new file mode 100644 index 0000000000000000000000000000000000000000..4aeaa4b1c771d380e6fd97528576ff1ff50936ae --- /dev/null +++ b/Results/day_student_attempt_distribution_counts.csv @@ -0,0 +1,2025 @@ +bin_left_min,bin_right_min,bin_width_min,attempt_count,probability,percentage +0.0,1440.0,1440.0,23192,0.013266292565453412,1.3266292565453413 +1440.0,2880.0,1440.0,7445,0.004258690416945527,0.42586904169455264 +2880.0,4320.0,1440.0,5730,0.0032776757675081086,0.32776757675081086 +4320.0,5760.0,1440.0,5120,0.0029287434432184144,0.29287434432184145 +5760.0,7200.0,1440.0,3768,0.002155372127743552,0.2155372127743552 +7200.0,8640.0,1440.0,6083,0.0034795988994331278,0.3479598899433128 +8640.0,10080.0,1440.0,7724,0.00441828405379278,0.441828405379278 +10080.0,11520.0,1440.0,9345,0.00534552880407736,0.534552880407736 +11520.0,12960.0,1440.0,8017,0.004585885973492584,0.4585885973492584 +12960.0,14400.0,1440.0,6082,0.0034790268792293743,0.34790268792293744 +14400.0,15840.0,1440.0,5533,0.00316498778736865,0.316498778736865 +15840.0,17280.0,1440.0,4821,0.002757709402296089,0.2757709402296089 +17280.0,18720.0,1440.0,5916,0.0033840715254062773,0.33840715254062775 +18720.0,20160.0,1440.0,7983,0.0045664372865649614,0.45664372865649616 +20160.0,21600.0,1440.0,9742,0.005572620824967538,0.5572620824967538 +21600.0,23040.0,1440.0,7324,0.004189475972291341,0.4189475972291341 +23040.0,24480.0,1440.0,5588,0.0031964488985750977,0.3196448898575098 +24480.0,25920.0,1440.0,4934,0.0028223476853202457,0.28223476853202456 +25920.0,27360.0,1440.0,5564,0.003182720413685011,0.3182720413685011 +27360.0,28800.0,1440.0,6029,0.0034487098084304336,0.34487098084304335 +28800.0,30240.0,1440.0,7412,0.004239813750221658,0.42398137502216576 +30240.0,31680.0,1440.0,7372,0.004216932942071514,0.4216932942071514 +31680.0,33120.0,1440.0,6102,0.0034904672833044464,0.34904672833044464 +33120.0,34560.0,1440.0,5304,0.003033995160709076,0.3033995160709076 +34560.0,36000.0,1440.0,3737,0.0021376395014271903,0.21376395014271904 +36000.0,37440.0,1440.0,3387,0.0019374324301134316,0.19374324301134316 +37440.0,38880.0,1440.0,5071,0.002900714453234488,0.2900714453234488 +38880.0,40320.0,1440.0,6743,0.0038571322339105017,0.3857132233910502 +40320.0,41760.0,1440.0,9154,0.005236272945160423,0.5236272945160423 +41760.0,43200.0,1440.0,9239,0.0052848946624794784,0.5284894662479478 +43200.0,44640.0,1440.0,5884,0.0033657668788861623,0.3365766878886162 +44640.0,46080.0,1440.0,5184,0.002965352736258645,0.29653527362586446 +46080.0,47520.0,1440.0,4854,0.002776586069019958,0.2776586069019958 +47520.0,48960.0,1440.0,4882,0.0027926026347250585,0.2792602634725058 +48960.0,50400.0,1440.0,7227,0.004133990012527243,0.4133990012527243 +50400.0,51840.0,1440.0,7490,0.004284431326114438,0.42844313261144384 +51840.0,53280.0,1440.0,6427,0.003676373849524365,0.36763738495243653 +53280.0,54720.0,1440.0,5257,0.0030071102111326573,0.30071102111326575 +54720.0,56160.0,1440.0,4643,0.002655889806027949,0.2655889806027949 +56160.0,57600.0,1440.0,4132,0.002363587481909861,0.2363587481909861 +57600.0,59040.0,1440.0,5752,0.0032902602119906873,0.3290260211990687 +59040.0,60480.0,1440.0,9015,0.005156762136838673,0.5156762136838673 +60480.0,61920.0,1440.0,8524,0.004875900216795657,0.48759002167956567 +61920.0,63360.0,1440.0,6874,0.003932066880602223,0.3932066880602223 +63360.0,64800.0,1440.0,5504,0.0031483992014597955,0.31483992014597956 +64800.0,66240.0,1440.0,5038,0.0028818377865106196,0.288183778651062 +66240.0,67680.0,1440.0,4214,0.002410493138617656,0.24104931386176562 +67680.0,69120.0,1440.0,5296,0.0030294189990790477,0.30294189990790477 +69120.0,70560.0,1440.0,8251,0.004719738701170925,0.4719738701170925 +70560.0,72000.0,1440.0,7738,0.004426292336645331,0.44262923366453305 +72000.0,73440.0,1440.0,5784,0.0033085648585108028,0.3308564858510803 +73440.0,74880.0,1440.0,4336,0.0024802796034755947,0.24802796034755947 +74880.0,76320.0,1440.0,3505,0.002004930814156356,0.2004930814156356 +76320.0,77760.0,1440.0,4391,0.0025117407146820424,0.25117407146820425 +77760.0,79200.0,1440.0,4840,0.0027685777861674076,0.27685777861674077 +79200.0,80640.0,1440.0,6987,0.0039967051636263795,0.39967051636263795 +80640.0,82080.0,1440.0,8834,0.005053226479959272,0.5053226479959272 +82080.0,83520.0,1440.0,7000,0.004004141426275176,0.40041414262751757 +83520.0,84960.0,1440.0,5356,0.0030637402113042633,0.30637402113042633 +84960.0,86400.0,1440.0,4326,0.002474559401438059,0.2474559401438059 +86400.0,87840.0,1440.0,4699,0.0026879229374381503,0.268792293743815 +87840.0,89280.0,1440.0,5394,0.0030854769790468997,0.30854769790469 +89280.0,90720.0,1440.0,7273,0.004160302941899908,0.4160302941899908 +90720.0,92160.0,1440.0,9231,0.00528031850084945,0.5280318500849449 +92160.0,93600.0,1440.0,6033,0.003450997889245448,0.3450997889245448 +93600.0,95040.0,1440.0,4921,0.002814911422671449,0.2814911422671449 +95040.0,96480.0,1440.0,4746,0.0027148078870145695,0.271480788701457 +96480.0,97920.0,1440.0,4554,0.002604980007893879,0.2604980007893879 +97920.0,99360.0,1440.0,5474,0.0031312385953471875,0.3131238595347188 +99360.0,100800.0,1440.0,7754,0.0044354446599053875,0.44354446599053876 +100800.0,102240.0,1440.0,9688,0.005541731733964844,0.5541731733964844 +102240.0,103680.0,1440.0,7308,0.004180323649031284,0.4180323649031284 +103680.0,105120.0,1440.0,5576,0.0031895846561300545,0.31895846561300545 +105120.0,106560.0,1440.0,5039,0.002882409806714373,0.28824098067143733 +106560.0,108000.0,1440.0,4260,0.0024368060679903214,0.24368060679903214 +108000.0,109440.0,1440.0,4618,0.002641589300934109,0.2641589300934109 +109440.0,110880.0,1440.0,6849,0.003917766375508383,0.39177663755083825 +110880.0,112320.0,1440.0,8346,0.004774080620527517,0.4774080620527517 +112320.0,113760.0,1440.0,6344,0.0036288961726128168,0.36288961726128166 +113760.0,115200.0,1440.0,4890,0.0027971787963550873,0.27971787963550876 +115200.0,116640.0,1440.0,4140,0.0023681636435398897,0.23681636435398898 +116640.0,118080.0,1440.0,4192,0.002397908694135077,0.2397908694135077 +118080.0,119520.0,1440.0,4827,0.002761141523518611,0.2761141523518611 +119520.0,120960.0,1440.0,6422,0.003673513748505597,0.3673513748505597 +120960.0,122400.0,1440.0,7819,0.004472625973149372,0.44726259731493717 +122400.0,123840.0,1440.0,7260,0.004152866679251111,0.4152866679251111 +123840.0,125280.0,1440.0,5226,0.0029893775848162957,0.29893775848162957 +125280.0,126720.0,1440.0,3913,0.002238315057287823,0.22383150572878233 +126720.0,128160.0,1440.0,3905,0.0022337388956577948,0.22337388956577947 +128160.0,129600.0,1440.0,5429,0.0031054976861782757,0.31054976861782757 +129600.0,131040.0,1440.0,8485,0.004853591428849267,0.4853591428849267 +131040.0,132480.0,1440.0,10897,0.006233304160302942,0.6233304160302943 +132480.0,133920.0,1440.0,8156,0.004665396781814333,0.4665396781814333 +133920.0,135360.0,1440.0,5219,0.0029853734433900204,0.29853734433900203 +135360.0,136800.0,1440.0,5154,0.002948192130146037,0.2948192130146037 +136800.0,138240.0,1440.0,5451,0.003118082130660855,0.31180821306608547 +138240.0,139680.0,1440.0,5788,0.003310852939325817,0.33108529393258174 +139680.0,141120.0,1440.0,7352,0.0042054925379964424,0.42054925379964425 +141120.0,142560.0,1440.0,7241,0.004141998295379793,0.4141998295379793 +142560.0,144000.0,1440.0,6630,0.0037924939508863454,0.37924939508863453 +144000.0,145440.0,1440.0,5260,0.003008826271743918,0.30088262717439185 +145440.0,146880.0,1440.0,4658,0.002664470109084253,0.26644701090842526 +146880.0,148320.0,1440.0,4052,0.0023178258656095735,0.23178258656095735 +148320.0,149760.0,1440.0,5203,0.002976221120129963,0.2976221120129963 +149760.0,151200.0,1440.0,5822,0.0033303016262534392,0.3330301626253439 +151200.0,152640.0,1440.0,7018,0.004014437789942741,0.4014437789942741 +152640.0,154080.0,1440.0,5205,0.00297736516053747,0.297736516053747 +154080.0,155520.0,1440.0,3545,0.0020278116223064998,0.20278116223065 +155520.0,156960.0,1440.0,3370,0.0019277080866496204,0.19277080866496205 +156960.0,158400.0,1440.0,4312,0.0024665511185855086,0.24665511185855085 +158400.0,159840.0,1440.0,4043,0.002312677683775791,0.23126776837757912 +159840.0,161280.0,1440.0,4952,0.0028326440489878104,0.283264404898781 +161280.0,162720.0,1440.0,6300,0.0036037272836476585,0.36037272836476586 +162720.0,164160.0,1440.0,5714,0.003268523444248051,0.3268523444248051 +164160.0,165600.0,1440.0,4615,0.002639873240322848,0.2639873240322848 +165600.0,167040.0,1440.0,3622,0.0020718571779955266,0.20718571779955267 +167040.0,168480.0,1440.0,3764,0.0021530840469285374,0.21530840469285376 +168480.0,169920.0,1440.0,4515,0.0025826712199474885,0.2582671219947488 +169920.0,171360.0,1440.0,5687,0.0032530788987467038,0.32530788987467035 +171360.0,172800.0,1440.0,5646,0.0032296260703928064,0.32296260703928065 +172800.0,174240.0,1440.0,5238,0.002996241827261339,0.2996241827261339 +174240.0,175680.0,1440.0,3861,0.0022085700066926364,0.22085700066926364 +175680.0,177120.0,1440.0,3170,0.0018133040458989012,0.1813304045898901 +177120.0,178560.0,1440.0,2921,0.0016708710151642557,0.16708710151642556 +178560.0,180000.0,1440.0,4143,0.0023698797041511507,0.23698797041511507 +180000.0,181440.0,1440.0,5273,0.0030162625343927146,0.30162625343927146 +181440.0,182880.0,1440.0,5991,0.003426973040687797,0.34269730406877974 +182880.0,184320.0,1440.0,5347,0.003058592029470481,0.3058592029470481 +184320.0,185760.0,1440.0,4534,0.0025935396038188068,0.2593539603818807 +185760.0,187200.0,1440.0,4108,0.0023498589970197747,0.23498589970197747 +187200.0,188640.0,1440.0,3561,0.0020369639455665575,0.20369639455665575 +188640.0,190080.0,1440.0,4037,0.0023092455625532693,0.23092455625532693 +190080.0,191520.0,1440.0,5811,0.00332400940401215,0.332400940401215 +191520.0,192960.0,1440.0,7649,0.0043753825385112605,0.43753825385112605 +192960.0,194400.0,1440.0,5520,0.0031575515247198533,0.3157551524719853 +194400.0,195840.0,1440.0,4670,0.002671334351529296,0.26713343515292964 +195840.0,197280.0,1440.0,3465,0.001982050006006212,0.19820500060062118 +197280.0,198720.0,1440.0,3546,0.0020283836425102533,0.20283836425102533 +198720.0,200160.0,1440.0,4868,0.002784594351872508,0.2784594351872508 +200160.0,201600.0,1440.0,6222,0.003559109707754878,0.35591097077548783 +201600.0,203040.0,1440.0,8385,0.004796389408473907,0.4796389408473907 +203040.0,204480.0,1440.0,6670,0.0038153747590364893,0.38153747590364895 +204480.0,205920.0,1440.0,4778,0.0027331125335346845,0.27331125335346845 +205920.0,207360.0,1440.0,3730,0.0021336353600009154,0.21336353600009153 +207360.0,208800.0,1440.0,3943,0.0022554756634004312,0.2255475663400431 +208800.0,210240.0,1440.0,4647,0.0026581778868429635,0.26581778868429634 +210240.0,211680.0,1440.0,7466,0.004270702841224352,0.4270702841224352 +211680.0,213120.0,1440.0,8267,0.004728891024430983,0.4728891024430983 +213120.0,214560.0,1440.0,7579,0.0043353411242485086,0.43353411242485085 +214560.0,216000.0,1440.0,5715,0.0032690954644518043,0.32690954644518044 +216000.0,217440.0,1440.0,4991,0.0028549528369342003,0.28549528369342003 +217440.0,218880.0,1440.0,5253,0.003004822130317643,0.30048221303176426 +218880.0,220320.0,1440.0,5710,0.0032662353634330364,0.32662353634330366 +220320.0,221760.0,1440.0,7992,0.004571585468398744,0.4571585468398744 +221760.0,223200.0,1440.0,7659,0.004381102740548796,0.4381102740548796 +223200.0,224640.0,1440.0,5592,0.003198736979390112,0.3198736979390112 +224640.0,226080.0,1440.0,4463,0.0025529261693523013,0.25529261693523014 +226080.0,227520.0,1440.0,4190,0.0023967646537275695,0.23967646537275694 +227520.0,228960.0,1440.0,4888,0.00279603475594758,0.279603475594758 +228960.0,230400.0,1440.0,4879,0.0027908865741137975,0.2790886574113798 +230400.0,231840.0,1440.0,6893,0.003942935264473541,0.3942935264473541 +231840.0,233280.0,1440.0,8049,0.0046041906200126985,0.46041906200126986 +233280.0,234720.0,1440.0,6288,0.003596863041202615,0.35968630412026154 +234720.0,236160.0,1440.0,5559,0.0031798603126662432,0.31798603126662434 +236160.0,237600.0,1440.0,4648,0.002658749907046717,0.2658749907046717 +237600.0,239040.0,1440.0,4266,0.002440238189212843,0.24402381892128427 +239040.0,240480.0,1440.0,6043,0.0034567180912829843,0.3456718091282984 +240480.0,241920.0,1440.0,6158,0.0035225004147146476,0.35225004147146477 +241920.0,243360.0,1440.0,7762,0.004440020821535416,0.44400208215354164 +243360.0,244800.0,1440.0,5370,0.0030717484941568136,0.30717484941568135 +244800.0,246240.0,1440.0,4346,0.0024859998055131306,0.24859998055131305 +246240.0,247680.0,1440.0,4301,0.002460258896344219,0.24602588963442187 +247680.0,249120.0,1440.0,3629,0.002075861319421802,0.2075861319421802 +249120.0,250560.0,1440.0,4929,0.0028194875843014777,0.2819487584301478 +250560.0,252000.0,1440.0,7119,0.004072211830521854,0.40722118305218535 +252000.0,253440.0,1440.0,7784,0.004452605266017996,0.4452605266017996 +253440.0,254880.0,1440.0,7381,0.0042220811239052965,0.42220811239052963 +254880.0,256320.0,1440.0,6971,0.003987552840366322,0.3987552840366322 +256320.0,257760.0,1440.0,6148,0.0035167802126771118,0.3516780212677112 +257760.0,259200.0,1440.0,5324,0.0030454355647841483,0.3045435564784148 +259200.0,260640.0,1440.0,7455,0.0042644106189830625,0.4264410618983062 +260640.0,262080.0,1440.0,9884,0.005653847693900548,0.5653847693900548 +262080.0,263520.0,1440.0,9631,0.0055091265823508885,0.5509126582350888 +263520.0,264960.0,1440.0,7200,0.004118545467025896,0.4118545467025896 +264960.0,266400.0,1440.0,6980,0.003992701022200104,0.3992701022200104 +266400.0,267840.0,1440.0,6067,0.0034704465761730705,0.3470446576173071 +267840.0,269280.0,1440.0,4996,0.0028578129379529687,0.2857812937952969 +269280.0,270720.0,1440.0,6873,0.003931494860398469,0.39314948603984695 +270720.0,272160.0,1440.0,8642,0.004943398600838582,0.4943398600838582 +272160.0,273600.0,1440.0,10025,0.0057345025426298055,0.5734502542629806 +273600.0,275040.0,1440.0,8084,0.0046242113271440745,0.46242113271440743 +275040.0,276480.0,1440.0,6894,0.0039435072846772945,0.39435072846772945 +276480.0,277920.0,1440.0,6571,0.0037587447588648833,0.3758744758864883 +277920.0,279360.0,1440.0,4481,0.002563222533019866,0.2563222533019866 +279360.0,280800.0,1440.0,5492,0.0031415349590147522,0.31415349590147523 +280800.0,282240.0,1440.0,8936,0.005111572540742139,0.511157254074214 +282240.0,283680.0,1440.0,8203,0.004692281731390753,0.4692281731390753 +283680.0,285120.0,1440.0,6827,0.003905181931025804,0.3905181931025804 +285120.0,286560.0,1440.0,4485,0.0025655106138348805,0.25655106138348804 +286560.0,288000.0,1440.0,4895,0.0028000388973738553,0.28000388973738555 +288000.0,289440.0,1440.0,4708,0.0026930711192719326,0.26930711192719325 +289440.0,290880.0,1440.0,5588,0.0031964488985750977,0.3196448898575098 +290880.0,292320.0,1440.0,6196,0.0035442371824572845,0.35442371824572844 +292320.0,293760.0,1440.0,6638,0.003797070112516374,0.37970701125163736 +293760.0,295200.0,1440.0,4219,0.002413353239636424,0.2413353239636424 +295200.0,296640.0,1440.0,4427,0.002532333442017172,0.25323334420171717 +296640.0,298080.0,1440.0,3523,0.0020152271778239206,0.20152271778239206 +298080.0,299520.0,1440.0,3386,0.001936860409909678,0.19368604099096778 +299520.0,300960.0,1440.0,3416,0.0019540210160222857,0.19540210160222857 +300960.0,302400.0,1440.0,4689,0.0026822027354006144,0.26822027354006145 +302400.0,303840.0,1440.0,4919,0.0028137673822639414,0.28137673822639414 +303840.0,305280.0,1440.0,4050,0.002316681825202066,0.2316681825202066 +305280.0,306720.0,1440.0,3303,0.0018893827329981294,0.18893827329981294 +306720.0,308160.0,1440.0,3342,0.0019116915209445198,0.19116915209445198 +308160.0,309600.0,1440.0,2774,0.001586784045212477,0.1586784045212477 +309600.0,311040.0,1440.0,3865,0.002210858087507651,0.22108580875076508 +311040.0,312480.0,1440.0,5617,0.003213037484483952,0.3213037484483952 +312480.0,313920.0,1440.0,5537,0.003167275868183664,0.3167275868183664 +313920.0,315360.0,1440.0,4331,0.002477419502456827,0.24774195024568268 +315360.0,316800.0,1440.0,3316,0.0018968189956469262,0.1896818995646926 +316800.0,318240.0,1440.0,2993,0.0017120564698345146,0.17120564698345145 +318240.0,319680.0,1440.0,3224,0.0018441931369015954,0.18441931369015954 +319680.0,321120.0,1440.0,4203,0.0024042009163763663,0.24042009163763664 +321120.0,322560.0,1440.0,5351,0.0030608801102854953,0.30608801102854954 +322560.0,324000.0,1440.0,5847,0.0033446021313472793,0.33446021313472796 +324000.0,325440.0,1440.0,4669,0.0026707623313255422,0.26707623313255424 +325440.0,326880.0,1440.0,3230,0.001847625258124117,0.1847625258124117 +326880.0,328320.0,1440.0,3480,0.001990630309062516,0.19906303090625163 +328320.0,329760.0,1440.0,3806,0.0021771088954861888,0.21771088954861886 +329760.0,331200.0,1440.0,3803,0.002175392834874928,0.2175392834874928 +331200.0,332640.0,1440.0,5145,0.0029430439483122545,0.29430439483122545 +332640.0,334080.0,1440.0,5694,0.003257083040172979,0.3257083040172979 +334080.0,335520.0,1440.0,4312,0.0024665511185855086,0.24665511185855085 +335520.0,336960.0,1440.0,3397,0.0019431526321509675,0.19431526321509676 +336960.0,338400.0,1440.0,3607,0.002063276874939223,0.20632768749392227 +338400.0,339840.0,1440.0,3564,0.002038680006177818,0.2038680006177818 +339840.0,341280.0,1440.0,3519,0.002012939097008906,0.20129390970089062 +341280.0,342720.0,1440.0,5207,0.0029785092009449775,0.29785092009449776 +342720.0,344160.0,1440.0,5572,0.00318729657531504,0.318729657531504 +344160.0,345600.0,1440.0,4293,0.00245568273471419,0.245568273471419 +345600.0,347040.0,1440.0,3420,0.0019563090968373,0.19563090968373 +347040.0,348480.0,1440.0,2728,0.0015604711158398114,0.15604711158398113 +348480.0,349920.0,1440.0,3000,0.0017160606112607898,0.17160606112607898 +349920.0,351360.0,1440.0,4888,0.00279603475594758,0.279603475594758 +351360.0,352800.0,1440.0,6046,0.003458434151894245,0.34584341518942446 +352800.0,354240.0,1440.0,5883,0.0033651948586824088,0.3365194858682409 +354240.0,355680.0,1440.0,5130,0.0029344636452559502,0.293446364525595 +355680.0,357120.0,1440.0,3902,0.002232022835046534,0.22320228350465338 +357120.0,358560.0,1440.0,3026,0.0017309331365583833,0.17309331365583833 +358560.0,360000.0,1440.0,2741,0.0015679073784886082,0.15679073784886083 +360000.0,361440.0,1440.0,3461,0.0019797619251911975,0.19797619251911974 +361440.0,362880.0,1440.0,3792,0.002169100612633638,0.2169100612633638 +362880.0,364320.0,1440.0,4145,0.0023710237445586577,0.23710237445586577 +364320.0,365760.0,1440.0,3517,0.002011795056601399,0.20117950566013992 +365760.0,367200.0,1440.0,1959,0.0011205875791532958,0.11205875791532957 +367200.0,368640.0,1440.0,1891,0.001081690205298051,0.10816902052980511 +368640.0,370080.0,1440.0,2139,0.001223551215828943,0.1223551215828943 +370080.0,371520.0,1440.0,3187,0.0018230283893627122,0.18230283893627122 +371520.0,372960.0,1440.0,3545,0.0020278116223064998,0.20278116223065 +372960.0,374400.0,1440.0,3864,0.0022102860673038974,0.22102860673038974 +374400.0,375840.0,1440.0,2867,0.0016399819241615613,0.16399819241615612 +375840.0,377280.0,1440.0,2740,0.0015673353582848547,0.15673353582848548 +377280.0,378720.0,1440.0,3450,0.001973469702949908,0.19734697029499082 +378720.0,380160.0,1440.0,2328,0.001331663034338373,0.13316630343383729 +380160.0,381600.0,1440.0,2414,0.0013808567718611821,0.13808567718611822 +381600.0,383040.0,1440.0,3150,0.0018018636418238292,0.18018636418238293 +383040.0,384480.0,1440.0,2915,0.001667438893941734,0.1667438893941734 +384480.0,385920.0,1440.0,1875,0.0010725378820379936,0.10725378820379936 +385920.0,387360.0,1440.0,1523,0.0008711867703167275,0.08711867703167275 +387360.0,388800.0,1440.0,1486,0.0008500220227778445,0.08500220227778445 +388800.0,390240.0,1440.0,1303,0.0007453423254909364,0.07453423254909364 +390240.0,391680.0,1440.0,2053,0.0011743574783061339,0.11743574783061339 +391680.0,393120.0,1440.0,2824,0.0016153850554001567,0.16153850554001567 +393120.0,394560.0,1440.0,2370,0.0013556878828960238,0.1355687882896024 +394560.0,396000.0,1440.0,1230,0.0007035848506169238,0.07035848506169239 +396000.0,397440.0,1440.0,1088,0.0006223579816839131,0.06223579816839131 +397440.0,398880.0,1440.0,994,0.000568588082531075,0.056858808253107504 +398880.0,400320.0,1440.0,606,0.0003466442434746795,0.03466442434746795 +400320.0,401760.0,1440.0,778,0.00044503171852029814,0.044503171852029816 +401760.0,403200.0,1440.0,1386,0.0007928200024024849,0.07928200024024848 +403200.0,404640.0,1440.0,1565,0.0008952116188743786,0.08952116188743786 +404640.0,406080.0,1440.0,1435,0.0008208489923864111,0.08208489923864111 +406080.0,407520.0,1440.0,645,0.0003689530314210698,0.036895303142106976 +407520.0,408960.0,1440.0,695,0.00039755404160874964,0.03975540416087497 +408960.0,410400.0,1440.0,404,0.00023109616231645303,0.023109616231645303 +410400.0,411840.0,1440.0,585,0.000334631819195854,0.0334631819195854 +411840.0,413280.0,1440.0,831,0.00047534878931923877,0.047534878931923874 +413280.0,414720.0,1440.0,814,0.0004656244458554276,0.04656244458554276 +414720.0,416160.0,1440.0,614,0.0003512204051047083,0.03512204051047083 +416160.0,417600.0,1440.0,536,0.00030660282921192775,0.030660282921192775 +417600.0,419040.0,1440.0,564,0.00032261939491702845,0.03226193949170285 +419040.0,420480.0,1440.0,531,0.00030374272819315976,0.030374272819315977 +420480.0,421920.0,1440.0,599,0.00034264010204840435,0.034264010204840434 +421920.0,423360.0,1440.0,782,0.0004473197993353125,0.04473197993353125 +423360.0,424800.0,1440.0,609,0.0003483603040859403,0.03483603040859403 +424800.0,426240.0,1440.0,449,0.0002568370714853649,0.02568370714853649 +426240.0,427680.0,1440.0,430,0.00024596868761404654,0.024596868761404656 +427680.0,429120.0,1440.0,442,0.0002528329300590897,0.025283293005908966 +429120.0,430560.0,1440.0,475,0.00027170959678295836,0.027170959678295838 +430560.0,432000.0,1440.0,669,0.0003826815163111561,0.03826815163111561 +432000.0,433440.0,1440.0,873,0.0004993736378768898,0.049937363787688975 +433440.0,434880.0,1440.0,591,0.0003380639404183756,0.03380639404183756 +434880.0,436320.0,1440.0,509,0.00029115828371058066,0.029115828371058066 +436320.0,437760.0,1440.0,529,0.0003025986877856526,0.03025986877856526 +437760.0,439200.0,1440.0,451,0.00025798111189287204,0.025798111189287203 +439200.0,440640.0,1440.0,378,0.00021622363701885952,0.02162236370188595 +440640.0,442080.0,1440.0,489,0.0002797178796355087,0.027971787963550872 +442080.0,443520.0,1440.0,607,0.0003472162636784331,0.03472162636784331 +443520.0,444960.0,1440.0,614,0.0003512204051047083,0.03512204051047083 +444960.0,446400.0,1440.0,494,0.0002825779806542767,0.02825779806542767 +446400.0,447840.0,1440.0,413,0.0002362443441502354,0.02362443441502354 +447840.0,449280.0,1440.0,345,0.00019734697029499083,0.019734697029499083 +449280.0,450720.0,1440.0,577,0.00033005565756582525,0.033005565756582526 +450720.0,452160.0,1440.0,480,0.00027456969780172635,0.027456969780172636 +452160.0,453600.0,1440.0,878,0.0005022337388956578,0.050223373889565784 +453600.0,455040.0,1440.0,778,0.00044503171852029814,0.044503171852029816 +455040.0,456480.0,1440.0,577,0.00033005565756582525,0.033005565756582526 +456480.0,457920.0,1440.0,468,0.0002677054553566832,0.026770545535668322 +457920.0,459360.0,1440.0,627,0.00035865666775350505,0.0358656667753505 +459360.0,460800.0,1440.0,430,0.00024596868761404654,0.024596868761404656 +460800.0,462240.0,1440.0,444,0.0002539769704665969,0.02539769704665969 +462240.0,463680.0,1440.0,822,0.0004702006074854564,0.04702006074854564 +463680.0,465120.0,1440.0,773,0.00044217161750153015,0.044217161750153014 +465120.0,466560.0,1440.0,733,0.0004192908093513863,0.041929080935138634 +466560.0,468000.0,1440.0,534,0.0003054587888044206,0.030545878880442058 +468000.0,469440.0,1440.0,438,0.0002505448492440753,0.025054484924407528 +469440.0,470880.0,1440.0,601,0.00034378414245591157,0.034378414245591155 +470880.0,472320.0,1440.0,699,0.000399842122423764,0.0399842122423764 +472320.0,473760.0,1440.0,1077,0.0006160657594426235,0.06160657594426235 +473760.0,475200.0,1440.0,1345,0.0007693671740485874,0.07693671740485873 +475200.0,476640.0,1440.0,1100,0.0006292222241289562,0.06292222241289562 +476640.0,478080.0,1440.0,753,0.0004307312134264582,0.04307312134264582 +478080.0,479520.0,1440.0,716,0.00040956646588757514,0.040956646588757514 +479520.0,480960.0,1440.0,721,0.00041242656690634313,0.041242656690634316 +480960.0,482400.0,1440.0,975,0.0005577196986597567,0.05577196986597567 +482400.0,483840.0,1440.0,1314,0.0007516345477322259,0.07516345477322259 +483840.0,485280.0,1440.0,999,0.000571448183549843,0.0571448183549843 +485280.0,486720.0,1440.0,527,0.0003014546473781454,0.03014546473781454 +486720.0,488160.0,1440.0,584,0.0003340597989921004,0.03340597989921004 +488160.0,489600.0,1440.0,634,0.00036266080917978026,0.036266080917978026 +489600.0,491040.0,1440.0,378,0.00021622363701885952,0.02162236370188595 +491040.0,492480.0,1440.0,474,0.00027113757657920475,0.027113757657920474 +492480.0,493920.0,1440.0,709,0.0004055623244613,0.04055623244613 +493920.0,495360.0,1440.0,825,0.0004719166680967172,0.04719166680967172 +495360.0,496800.0,1440.0,581,0.0003323437383808396,0.03323437383808396 +496800.0,498240.0,1440.0,680,0.0003889737385524457,0.03889737385524457 +498240.0,499680.0,1440.0,520,0.00029745050595187024,0.029745050595187023 +499680.0,501120.0,1440.0,602,0.0003443561626596651,0.034435616265966515 +501120.0,502560.0,1440.0,840,0.00048049697115302113,0.04804969711530211 +502560.0,504000.0,1440.0,1091,0.0006240740422951738,0.062407404229517384 +504000.0,505440.0,1440.0,1144,0.0006543911130941145,0.06543911130941145 +505440.0,506880.0,1440.0,1046,0.000598333133126262,0.0598333133126262 +506880.0,508320.0,1440.0,753,0.0004307312134264582,0.04307312134264582 +508320.0,509760.0,1440.0,854,0.0004885052540055714,0.04885052540055714 +509760.0,511200.0,1440.0,813,0.00046505242565167404,0.0465052425651674 +511200.0,512640.0,1440.0,916,0.0005239705066382945,0.05239705066382945 +512640.0,514080.0,1440.0,910,0.0005205383854157728,0.05205383854157728 +514080.0,515520.0,1440.0,1446,0.0008271412146277007,0.08271412146277007 +515520.0,516960.0,1440.0,926,0.0005296907086758305,0.05296907086758305 +516960.0,518400.0,1440.0,699,0.000399842122423764,0.0399842122423764 +518400.0,519840.0,1440.0,713,0.0004078504052763144,0.04078504052763144 +519840.0,521280.0,1440.0,825,0.0004719166680967172,0.04719166680967172 +521280.0,522720.0,1440.0,1068,0.0006109175776088412,0.061091757760884116 +522720.0,524160.0,1440.0,1629,0.0009318209119146088,0.09318209119146088 +524160.0,525600.0,1440.0,1395,0.0007979681842362672,0.07979681842362672 +525600.0,527040.0,1440.0,1405,0.0008036883862738032,0.08036883862738031 +527040.0,528480.0,1440.0,1046,0.000598333133126262,0.0598333133126262 +528480.0,529920.0,1440.0,816,0.0004667684862629348,0.04667684862629348 +529920.0,531360.0,1440.0,723,0.00041357060731385035,0.04135706073138504 +531360.0,532800.0,1440.0,890,0.000509097981340701,0.0509097981340701 +532800.0,534240.0,1440.0,1303,0.0007453423254909364,0.07453423254909364 +534240.0,535680.0,1440.0,1334,0.0007630749518072979,0.0763074951807298 +535680.0,537120.0,1440.0,856,0.0004896492944130786,0.04896492944130786 +537120.0,538560.0,1440.0,871,0.0004982295974693827,0.04982295974693827 +538560.0,540000.0,1440.0,696,0.0003981260618125032,0.03981260618125032 +540000.0,541440.0,1440.0,690,0.00039469394058998166,0.039469394058998165 +541440.0,542880.0,1440.0,928,0.0005308347490833377,0.05308347490833377 +542880.0,544320.0,1440.0,1423,0.0008139847499413679,0.0813984749941368 +544320.0,545760.0,1440.0,1405,0.0008036883862738032,0.08036883862738031 +545760.0,547200.0,1440.0,1039,0.0005943289916999869,0.059432899169998686 +547200.0,548640.0,1440.0,909,0.0005199663652120193,0.051996636521201935 +548640.0,550080.0,1440.0,743,0.00042501101138892224,0.042501101138892224 +550080.0,551520.0,1440.0,776,0.0004438876781127909,0.044388767811279095 +551520.0,552960.0,1440.0,928,0.0005308347490833377,0.05308347490833377 +552960.0,554400.0,1440.0,1152,0.0006589672747241433,0.06589672747241433 +554400.0,555840.0,1440.0,913,0.0005222544460270337,0.05222544460270337 +555840.0,557280.0,1440.0,629,0.00035980070816101227,0.035980070816101224 +557280.0,558720.0,1440.0,652,0.000372957172847345,0.0372957172847345 +558720.0,560160.0,1440.0,588,0.00033634787980711477,0.03363478798071148 +560160.0,561600.0,1440.0,736,0.0004210068699626471,0.04210068699626471 +561600.0,563040.0,1440.0,946,0.0005411311127509024,0.05411311127509024 +563040.0,564480.0,1440.0,1111,0.0006355144463702458,0.06355144463702458 +564480.0,565920.0,1440.0,1156,0.0006612553555391576,0.06612553555391576 +565920.0,567360.0,1440.0,1002,0.0005731642441611038,0.05731642441611038 +567360.0,568800.0,1440.0,671,0.0003838255567186633,0.03838255567186633 +568800.0,570240.0,1440.0,713,0.0004078504052763144,0.04078504052763144 +570240.0,571680.0,1440.0,799,0.0004570441427991237,0.04570441427991237 +571680.0,573120.0,1440.0,833,0.00047649282972674593,0.047649282972674595 +573120.0,574560.0,1440.0,919,0.0005256865672495553,0.05256865672495553 +574560.0,576000.0,1440.0,1166,0.0006669755575766936,0.06669755575766936 +576000.0,577440.0,1440.0,939,0.0005371269713246271,0.05371269713246271 +577440.0,578880.0,1440.0,654,0.00037410121325485215,0.03741012132548521 +578880.0,580320.0,1440.0,674,0.0003855416173299241,0.038554161732992406 +580320.0,581760.0,1440.0,705,0.00040327424364628556,0.04032742436462856 +581760.0,583200.0,1440.0,913,0.0005222544460270337,0.05222544460270337 +583200.0,584640.0,1440.0,1268,0.0007253216183595605,0.07253216183595605 +584640.0,586080.0,1440.0,1330,0.0007607868709922835,0.07607868709922834 +586080.0,587520.0,1440.0,1036,0.000592612931088726,0.059261293108872605 +587520.0,588960.0,1440.0,885,0.000506237880321933,0.05062378803219329 +588960.0,590400.0,1440.0,1230,0.0007035848506169238,0.07035848506169239 +590400.0,591840.0,1440.0,845,0.0004833570721717891,0.04833570721717891 +591840.0,593280.0,1440.0,1081,0.0006183538402576379,0.06183538402576379 +593280.0,594720.0,1440.0,1457,0.0008334334368689902,0.08334334368689901 +594720.0,596160.0,1440.0,1311,0.0007499184871209651,0.0749918487120965 +596160.0,597600.0,1440.0,1140,0.0006521030322791001,0.06521030322791001 +597600.0,599040.0,1440.0,860,0.0004919373752280931,0.04919373752280931 +599040.0,600480.0,1440.0,639,0.0003655209101985482,0.03655209101985482 +600480.0,601920.0,1440.0,639,0.0003655209101985482,0.03655209101985482 +601920.0,603360.0,1440.0,926,0.0005296907086758305,0.05296907086758305 +603360.0,604800.0,1440.0,1208,0.0006910004061343447,0.06910004061343447 +604800.0,606240.0,1440.0,1057,0.0006046253553675516,0.06046253553675516 +606240.0,607680.0,1440.0,986,0.0005640119209010462,0.05640119209010462 +607680.0,609120.0,1440.0,506,0.0002894422230993199,0.02894422230993199 +609120.0,610560.0,1440.0,302,0.00017275010153358617,0.017275010153358618 +610560.0,612000.0,1440.0,641,0.0003666649506060554,0.03666649506060554 +612000.0,613440.0,1440.0,706,0.00040384626385003917,0.04038462638500392 +613440.0,614880.0,1440.0,931,0.0005325508096945984,0.05325508096945984 +614880.0,616320.0,1440.0,854,0.0004885052540055714,0.04885052540055714 +616320.0,617760.0,1440.0,972,0.0005560036380484959,0.05560036380484959 +617760.0,619200.0,1440.0,597,0.00034149606164089714,0.03414960616408971 +619200.0,620640.0,1440.0,551,0.0003151831322682317,0.03151831322682317 +620640.0,622080.0,1440.0,423,0.00024196454618777136,0.024196454618777136 +622080.0,623520.0,1440.0,689,0.00039412192038622805,0.039412192038622805 +623520.0,624960.0,1440.0,854,0.0004885052540055714,0.04885052540055714 +624960.0,626400.0,1440.0,1108,0.000633798385758985,0.06337983857589849 +626400.0,627840.0,1440.0,1014,0.0005800284866061469,0.05800284866061469 +627840.0,629280.0,1440.0,953,0.0005451352541771775,0.054513525417717756 +629280.0,630720.0,1440.0,714,0.000408422425480068,0.0408422425480068 +630720.0,632160.0,1440.0,414,0.00023681636435398897,0.023681636435398896 +632160.0,633600.0,1440.0,878,0.0005022337388956578,0.050223373889565784 +633600.0,635040.0,1440.0,1127,0.0006446667696303033,0.06446667696303032 +635040.0,636480.0,1440.0,1313,0.0007510625275284723,0.07510625275284723 +636480.0,637920.0,1440.0,764,0.0004370234356677478,0.04370234356677478 +637920.0,639360.0,1440.0,520,0.00029745050595187024,0.029745050595187023 +639360.0,640800.0,1440.0,505,0.0002888702028955663,0.028887020289556628 +640800.0,642240.0,1440.0,613,0.0003506483849009547,0.03506483849009547 +642240.0,643680.0,1440.0,729,0.0004170027285363719,0.041700272853637185 +643680.0,645120.0,1440.0,882,0.0005045218197106721,0.05045218197106721 +645120.0,646560.0,1440.0,918,0.0005251145470458017,0.05251145470458017 +646560.0,648000.0,1440.0,936,0.0005354109107133664,0.053541091071336644 +648000.0,649440.0,1440.0,1176,0.0006726957596142295,0.06726957596142295 +649440.0,650880.0,1440.0,860,0.0004919373752280931,0.04919373752280931 +650880.0,652320.0,1440.0,722,0.00041299858711009674,0.04129985871100968 +652320.0,653760.0,1440.0,757,0.0004330192942414726,0.04330192942414726 +653760.0,655200.0,1440.0,1492,0.0008534541440003661,0.08534541440003661 +655200.0,656640.0,1440.0,1523,0.0008711867703167275,0.08711867703167275 +656640.0,658080.0,1440.0,1258,0.0007196014163220245,0.07196014163220245 +658080.0,659520.0,1440.0,1011,0.0005783124259948862,0.057831242599488616 +659520.0,660960.0,1440.0,649,0.00037124111223608416,0.03712411122360842 +660960.0,662400.0,1440.0,554,0.0003168991928794925,0.031689919287949245 +662400.0,663840.0,1440.0,675,0.0003861136375336777,0.03861136375336777 +663840.0,665280.0,1440.0,1044,0.0005971890927187548,0.05971890927187548 +665280.0,666720.0,1440.0,878,0.0005022337388956578,0.050223373889565784 +666720.0,668160.0,1440.0,659,0.00037696131427362013,0.037696131427362015 +668160.0,669600.0,1440.0,580,0.000331771718177086,0.0331771718177086 +669600.0,671040.0,1440.0,467,0.0002671334351529296,0.02671334351529296 +671040.0,672480.0,1440.0,417,0.00023853242496524977,0.023853242496524978 +672480.0,673920.0,1440.0,507,0.00029001424330307344,0.029001424330307345 +673920.0,675360.0,1440.0,714,0.000408422425480068,0.0408422425480068 +675360.0,676800.0,1440.0,709,0.0004055623244613,0.04055623244613 +676800.0,678240.0,1440.0,608,0.0003477882838821867,0.03477882838821867 +678240.0,679680.0,1440.0,398,0.00022766404109393143,0.022766404109393144 +679680.0,681120.0,1440.0,372,0.00021279151579633792,0.021279151579633792 +681120.0,682560.0,1440.0,382,0.0002185117178338739,0.02185117178338739 +682560.0,684000.0,1440.0,511,0.00029230232411808787,0.029230232411808787 +684000.0,685440.0,1440.0,817,0.0004673405064666884,0.04673405064666884 +685440.0,686880.0,1440.0,881,0.0005039497995069186,0.050394979950691865 +686880.0,688320.0,1440.0,984,0.0005628678804935391,0.05628678804935391 +688320.0,689760.0,1440.0,878,0.0005022337388956578,0.050223373889565784 +689760.0,691200.0,1440.0,693,0.00039641000120124243,0.03964100012012424 +691200.0,692640.0,1440.0,534,0.0003054587888044206,0.030545878880442058 +692640.0,694080.0,1440.0,697,0.0003986980820162568,0.03986980820162568 +694080.0,695520.0,1440.0,987,0.0005645839411047998,0.05645839411047998 +695520.0,696960.0,1440.0,991,0.0005668720219198142,0.05668720219198142 +696960.0,698400.0,1440.0,824,0.00047134464789296357,0.04713446478929636 +698400.0,699840.0,1440.0,442,0.0002528329300590897,0.025283293005908966 +699840.0,701280.0,1440.0,502,0.0002871541422843055,0.02871541422843055 +701280.0,702720.0,1440.0,521,0.0002980225261556238,0.02980225261556238 +702720.0,704160.0,1440.0,598,0.00034206808184465075,0.03420680818446507 +704160.0,705600.0,1440.0,974,0.0005571476784560031,0.05571476784560031 +705600.0,707040.0,1440.0,1446,0.0008271412146277007,0.08271412146277007 +707040.0,708480.0,1440.0,1042,0.0005960450523112476,0.05960450523112476 +708480.0,709920.0,1440.0,690,0.00039469394058998166,0.039469394058998165 +709920.0,711360.0,1440.0,481,0.00027514171800547996,0.027514171800547996 +711360.0,712800.0,1440.0,384,0.00021965575824138108,0.02196557582413811 +712800.0,714240.0,1440.0,548,0.00031346707165697094,0.031346707165697096 +714240.0,715680.0,1440.0,704,0.000402702223442532,0.040270222344253204 +715680.0,717120.0,1440.0,900,0.000514818183378237,0.0514818183378237 +717120.0,718560.0,1440.0,542,0.00031003495043444934,0.031003495043444934 +718560.0,720000.0,1440.0,559,0.00031975929389826046,0.03197592938982605 +720000.0,721440.0,1440.0,548,0.00031346707165697094,0.031346707165697096 +721440.0,722880.0,1440.0,440,0.0002516888896515825,0.025168888965158252 +722880.0,724320.0,1440.0,688,0.00039354990018247444,0.039354990018247445 +724320.0,725760.0,1440.0,905,0.0005176782843970049,0.05176782843970049 +725760.0,727200.0,1440.0,1047,0.0005989051533300156,0.05989051533300156 +727200.0,728640.0,1440.0,798,0.0004564721225953701,0.04564721225953701 +728640.0,730080.0,1440.0,692,0.0003958379809974888,0.03958379809974888 +730080.0,731520.0,1440.0,393,0.00022480394007516345,0.022480394007516346 +731520.0,732960.0,1440.0,430,0.00024596868761404654,0.024596868761404656 +732960.0,734400.0,1440.0,777,0.00044445969831654453,0.044445969831654455 +734400.0,735840.0,1440.0,1029,0.0005886087896624509,0.05886087896624509 +735840.0,737280.0,1440.0,1211,0.0006927164667456055,0.06927164667456055 +737280.0,738720.0,1440.0,1222,0.000699008688986895,0.0699008688986895 +738720.0,740160.0,1440.0,750,0.00042901515281519744,0.042901515281519746 +740160.0,741600.0,1440.0,887,0.0005073819207294402,0.05073819207294402 +741600.0,743040.0,1440.0,709,0.0004055623244613,0.04055623244613 +743040.0,744480.0,1440.0,816,0.0004667684862629348,0.04667684862629348 +744480.0,745920.0,1440.0,941,0.0005382710117321344,0.05382710117321344 +745920.0,747360.0,1440.0,907,0.0005188223248045121,0.051882232480451214 +747360.0,748800.0,1440.0,698,0.0003992701022200104,0.03992701022200104 +748800.0,750240.0,1440.0,389,0.00022251585926014907,0.022251585926014908 +750240.0,751680.0,1440.0,396,0.00022652000068642424,0.022652000068642424 +751680.0,753120.0,1440.0,403,0.00023052414211269942,0.023052414211269943 +753120.0,754560.0,1440.0,540,0.00030889091002694213,0.030889091002694213 +754560.0,756000.0,1440.0,653,0.00037352919305109854,0.03735291930510985 +756000.0,757440.0,1440.0,847,0.0004845011125792963,0.048450111257929626 +757440.0,758880.0,1440.0,697,0.0003986980820162568,0.03986980820162568 +758880.0,760320.0,1440.0,663,0.0003792493950886345,0.03792493950886345 +760320.0,761760.0,1440.0,603,0.00034492818286341873,0.034492818286341875 +761760.0,763200.0,1440.0,583,0.0003334877787883468,0.03334877787883468 +763200.0,764640.0,1440.0,512,0.0002928743443218414,0.029287434432184144 +764640.0,766080.0,1440.0,788,0.0004507519205578341,0.04507519205578341 +766080.0,767520.0,1440.0,1030,0.0005891808098662045,0.05891808098662045 +767520.0,768960.0,1440.0,765,0.0004375954558715014,0.04375954558715014 +768960.0,770400.0,1440.0,366,0.00020935939457381635,0.020935939457381637 +770400.0,771840.0,1440.0,468,0.0002677054553566832,0.026770545535668322 +771840.0,773280.0,1440.0,420,0.00024024848557651057,0.024024848557651055 +773280.0,774720.0,1440.0,442,0.0002528329300590897,0.025283293005908966 +774720.0,776160.0,1440.0,649,0.00037124111223608416,0.03712411122360842 +776160.0,777600.0,1440.0,831,0.00047534878931923877,0.047534878931923874 +777600.0,779040.0,1440.0,627,0.00035865666775350505,0.0358656667753505 +779040.0,780480.0,1440.0,730,0.0004175747487401255,0.04175747487401255 +780480.0,781920.0,1440.0,676,0.0003866856577374313,0.038668565773743134 +781920.0,783360.0,1440.0,521,0.0002980225261556238,0.02980225261556238 +783360.0,784800.0,1440.0,572,0.00032719555654705726,0.032719555654705725 +784800.0,786240.0,1440.0,860,0.0004919373752280931,0.04919373752280931 +786240.0,787680.0,1440.0,1024,0.0005857486886436829,0.05857486886436829 +787680.0,789120.0,1440.0,1097,0.0006275061635176955,0.06275061635176955 +789120.0,790560.0,1440.0,918,0.0005251145470458017,0.05251145470458017 +790560.0,792000.0,1440.0,459,0.00026255727352290085,0.026255727352290086 +792000.0,793440.0,1440.0,303,0.00017332212173733975,0.017332212173733975 +793440.0,794880.0,1440.0,730,0.0004175747487401255,0.04175747487401255 +794880.0,796320.0,1440.0,946,0.0005411311127509024,0.05411311127509024 +796320.0,797760.0,1440.0,1185,0.0006778439414480119,0.0677843941448012 +797760.0,799200.0,1440.0,1027,0.0005874647492549437,0.05874647492549437 +799200.0,800640.0,1440.0,503,0.00028772616248805906,0.028772616248805907 +800640.0,802080.0,1440.0,383,0.0002190837380376275,0.02190837380376275 +802080.0,803520.0,1440.0,407,0.0002328122229277138,0.02328122229277138 +803520.0,804960.0,1440.0,552,0.0003157551524719853,0.03157551524719853 +804960.0,806400.0,1440.0,745,0.00042615505179642945,0.042615505179642944 +806400.0,807840.0,1440.0,841,0.00048106899135677474,0.04810689913567748 +807840.0,809280.0,1440.0,668,0.0003821094961074025,0.03821094961074025 +809280.0,810720.0,1440.0,459,0.00026255727352290085,0.026255727352290086 +810720.0,812160.0,1440.0,533,0.000304886768600667,0.030488676860066698 +812160.0,813600.0,1440.0,375,0.00021450757640759872,0.021450757640759873 +813600.0,815040.0,1440.0,544,0.00031117899084195656,0.031117899084195655 +815040.0,816480.0,1440.0,705,0.00040327424364628556,0.04032742436462856 +816480.0,817920.0,1440.0,968,0.0005537155572334815,0.05537155572334815 +817920.0,819360.0,1440.0,799,0.0004570441427991237,0.04570441427991237 +819360.0,820800.0,1440.0,764,0.0004370234356677478,0.04370234356677478 +820800.0,822240.0,1440.0,635,0.0003632328293835338,0.03632328293835338 +822240.0,823680.0,1440.0,558,0.0003191872736945069,0.03191872736945069 +823680.0,825120.0,1440.0,744,0.00042558303159267584,0.042558303159267584 +825120.0,826560.0,1440.0,767,0.00043873949627900856,0.04387394962790086 +826560.0,828000.0,1440.0,716,0.00040956646588757514,0.040956646588757514 +828000.0,829440.0,1440.0,724,0.0004141426275176039,0.04141426275176039 +829440.0,830880.0,1440.0,570,0.00032605151613955004,0.032605151613955004 +830880.0,832320.0,1440.0,337,0.00019277080866496205,0.019277080866496203 +832320.0,833760.0,1440.0,250,0.00014300505093839915,0.014300505093839915 +833760.0,835200.0,1440.0,327,0.00018705060662742607,0.018705060662742606 +835200.0,836640.0,1440.0,510,0.00029173030391433426,0.029173030391433426 +836640.0,838080.0,1440.0,601,0.00034378414245591157,0.034378414245591155 +838080.0,839520.0,1440.0,516,0.00029516242513685586,0.029516242513685585 +839520.0,840960.0,1440.0,358,0.00020478323294378757,0.020478323294378757 +840960.0,842400.0,1440.0,201,0.0001149760609544729,0.011497606095447291 +842400.0,843840.0,1440.0,202,0.00011554808115822651,0.011554808115822652 +843840.0,845280.0,1440.0,326,0.0001864785864236725,0.01864785864236725 +845280.0,846720.0,1440.0,424,0.00024253656639152495,0.024253656639152493 +846720.0,848160.0,1440.0,458,0.00026198525331914724,0.026198525331914725 +848160.0,849600.0,1440.0,396,0.00022652000068642424,0.022652000068642424 +849600.0,851040.0,1440.0,486,0.00027800181902424794,0.027800181902424795 +851040.0,852480.0,1440.0,453,0.00025912515230037925,0.025912515230037927 +852480.0,853920.0,1440.0,268,0.00015330141460596387,0.015330141460596388 +853920.0,855360.0,1440.0,385,0.0002202277784451347,0.02202277784451347 +855360.0,856800.0,1440.0,471,0.000269421515967944,0.0269421515967944 +856800.0,858240.0,1440.0,444,0.0002539769704665969,0.02539769704665969 +858240.0,859680.0,1440.0,466,0.000266561414949176,0.0266561414949176 +859680.0,861120.0,1440.0,349,0.0001996350511100052,0.01996350511100052 +861120.0,862560.0,1440.0,360,0.00020592727335129476,0.020592727335129474 +862560.0,864000.0,1440.0,290,0.000165885859088543,0.0165885859088543 +864000.0,865440.0,1440.0,310,0.00017732626316361493,0.017732626316361494 +865440.0,866880.0,1440.0,435,0.0002488287886328145,0.024882878863281454 +866880.0,868320.0,1440.0,479,0.00027399767759797274,0.027399767759797272 +868320.0,869760.0,1440.0,319,0.00018247444499739732,0.01824744449973973 +869760.0,871200.0,1440.0,201,0.0001149760609544729,0.011497606095447291 +871200.0,872640.0,1440.0,154,8.809111137805387e-05,0.008809111137805387 +872640.0,874080.0,1440.0,254,0.00014529313175341352,0.014529313175341353 +874080.0,875520.0,1440.0,322,0.0001841905056086581,0.018419050560865808 +875520.0,876960.0,1440.0,390,0.00022308787946390268,0.02230878794639027 +876960.0,878400.0,1440.0,433,0.0002476847482253073,0.02476847482253073 +878400.0,879840.0,1440.0,390,0.00022308787946390268,0.02230878794639027 +879840.0,881280.0,1440.0,389,0.00022251585926014907,0.022251585926014908 +881280.0,882720.0,1440.0,420,0.00024024848557651057,0.024024848557651055 +882720.0,884160.0,1440.0,291,0.00016645787929229662,0.01664578792922966 +884160.0,885600.0,1440.0,376,0.0002150795966113523,0.02150795966113523 +885600.0,887040.0,1440.0,716,0.00040956646588757514,0.040956646588757514 +887040.0,888480.0,1440.0,873,0.0004993736378768898,0.049937363787688975 +888480.0,889920.0,1440.0,603,0.00034492818286341873,0.034492818286341875 +889920.0,891360.0,1440.0,163,9.323929321183625e-05,0.009323929321183625 +891360.0,892800.0,1440.0,205,0.0001172641417694873,0.01172641417694873 +892800.0,894240.0,1440.0,327,0.00018705060662742607,0.018705060662742606 +894240.0,895680.0,1440.0,303,0.00017332212173733975,0.017332212173733975 +895680.0,897120.0,1440.0,329,0.00018819464703493326,0.018819464703493327 +897120.0,898560.0,1440.0,399,0.00022823606129768504,0.022823606129768505 +898560.0,900000.0,1440.0,345,0.00019734697029499083,0.019734697029499083 +900000.0,901440.0,1440.0,105,6.006212139412764e-05,0.006006212139412764 +901440.0,902880.0,1440.0,130,7.436262648796756e-05,0.007436262648796756 +902880.0,904320.0,1440.0,171,9.781545484186502e-05,0.0097815454841865 +904320.0,905760.0,1440.0,169,9.667141443435783e-05,0.009667141443435784 +905760.0,907200.0,1440.0,106,6.0634141597881236e-05,0.006063414159788123 +907200.0,908640.0,1440.0,190,0.00010868383871318335,0.010868383871318336 +908640.0,910080.0,1440.0,66,3.7753333447737374e-05,0.0037753333447737374 +910080.0,911520.0,1440.0,60,3.4321212225215793e-05,0.0034321212225215795 +911520.0,912960.0,1440.0,32,1.830464652011509e-05,0.001830464652011509 +912960.0,914400.0,1440.0,26,1.4872525297593512e-05,0.001487252529759351 +914400.0,915840.0,1440.0,18,1.0296363667564739e-05,0.001029636366756474 +915840.0,917280.0,1440.0,44,2.516888896515825e-05,0.0025168888965158252 +917280.0,918720.0,1440.0,44,2.516888896515825e-05,0.0025168888965158252 +918720.0,920160.0,1440.0,75,4.2901515281519745e-05,0.004290151528151974 +920160.0,921600.0,1440.0,55,3.1461111206447814e-05,0.0031461111206447815 +921600.0,923040.0,1440.0,83,4.7477676911548515e-05,0.004747767691154851 +923040.0,924480.0,1440.0,36,2.0592727335129477e-05,0.002059272733512948 +924480.0,925920.0,1440.0,31,1.7732626316361495e-05,0.0017732626316361495 +925920.0,927360.0,1440.0,76,4.347353548527334e-05,0.004347353548527334 +927360.0,928800.0,1440.0,74,4.2329495077766144e-05,0.004232949507776615 +928800.0,930240.0,1440.0,39,2.2308787946390268e-05,0.002230878794639027 +930240.0,931680.0,1440.0,34,1.9448686927622285e-05,0.0019448686927622284 +931680.0,933120.0,1440.0,20,1.1440404075071931e-05,0.0011440404075071932 +933120.0,934560.0,1440.0,2,1.144040407507193e-06,0.00011440404075071931 +934560.0,936000.0,1440.0,21,1.2012424278825527e-05,0.0012012424278825527 +936000.0,937440.0,1440.0,20,1.1440404075071931e-05,0.0011440404075071932 +937440.0,938880.0,1440.0,37,2.1164747538883072e-05,0.0021164747538883074 +938880.0,940320.0,1440.0,27,1.5444545501347106e-05,0.0015444545501347106 +940320.0,941760.0,1440.0,40,2.2880808150143862e-05,0.0022880808150143863 +941760.0,943200.0,1440.0,27,1.5444545501347106e-05,0.0015444545501347106 +943200.0,944640.0,1440.0,1,5.720202037535965e-07,5.7202020375359656e-05 +944640.0,946080.0,1440.0,15,8.580303056303948e-06,0.0008580303056303949 +946080.0,947520.0,1440.0,10,5.7202020375359656e-06,0.0005720202037535966 +947520.0,948960.0,1440.0,37,2.1164747538883072e-05,0.0021164747538883074 +948960.0,950400.0,1440.0,33,1.8876666723868687e-05,0.0018876666723868687 +950400.0,951840.0,1440.0,11,6.292222241289563e-06,0.0006292222241289563 +951840.0,953280.0,1440.0,11,6.292222241289563e-06,0.0006292222241289563 +953280.0,954720.0,1440.0,10,5.7202020375359656e-06,0.0005720202037535966 +954720.0,956160.0,1440.0,10,5.7202020375359656e-06,0.0005720202037535966 +956160.0,957600.0,1440.0,26,1.4872525297593512e-05,0.001487252529759351 +957600.0,959040.0,1440.0,45,2.5740909168911845e-05,0.0025740909168911843 +959040.0,960480.0,1440.0,40,2.2880808150143862e-05,0.0022880808150143863 +960480.0,961920.0,1440.0,45,2.5740909168911845e-05,0.0025740909168911843 +961920.0,963360.0,1440.0,40,2.2880808150143862e-05,0.0022880808150143863 +963360.0,964800.0,1440.0,9,5.148181833782369e-06,0.000514818183378237 +964800.0,966240.0,1440.0,9,5.148181833782369e-06,0.000514818183378237 +966240.0,967680.0,1440.0,53,3.0317070798940618e-05,0.0030317070798940617 +967680.0,969120.0,1440.0,66,3.7753333447737374e-05,0.0037753333447737374 +969120.0,970560.0,1440.0,39,2.2308787946390268e-05,0.002230878794639027 +970560.0,972000.0,1440.0,104,5.949010119037405e-05,0.005949010119037404 +972000.0,973440.0,1440.0,36,2.0592727335129477e-05,0.002059272733512948 +973440.0,974880.0,1440.0,30,1.7160606112607897e-05,0.0017160606112607898 +974880.0,976320.0,1440.0,19,1.0868383871318335e-05,0.0010868383871318334 +976320.0,977760.0,1440.0,57,3.2605151613955e-05,0.0032605151613955 +977760.0,979200.0,1440.0,41,2.345282835389746e-05,0.002345282835389746 +979200.0,980640.0,1440.0,31,1.7732626316361495e-05,0.0017732626316361495 +980640.0,982080.0,1440.0,63,3.6037272836476584e-05,0.0036037272836476585 +982080.0,983520.0,1440.0,27,1.5444545501347106e-05,0.0015444545501347106 +983520.0,984960.0,1440.0,3,1.7160606112607897e-06,0.00017160606112607898 +984960.0,986400.0,1440.0,20,1.1440404075071931e-05,0.0011440404075071932 +986400.0,987840.0,1440.0,43,2.4596868761404653e-05,0.0024596868761404653 +987840.0,989280.0,1440.0,28,1.6016565705100704e-05,0.0016016565705100705 +989280.0,990720.0,1440.0,49,2.8028989983926233e-05,0.002802898998392623 +990720.0,992160.0,1440.0,76,4.347353548527334e-05,0.004347353548527334 +992160.0,993600.0,1440.0,45,2.5740909168911845e-05,0.0025740909168911843 +993600.0,995040.0,1440.0,34,1.9448686927622285e-05,0.0019448686927622284 +995040.0,996480.0,1440.0,50,2.8601010187679828e-05,0.0028601010187679827 +996480.0,997920.0,1440.0,60,3.4321212225215793e-05,0.0034321212225215795 +997920.0,999360.0,1440.0,41,2.345282835389746e-05,0.002345282835389746 +999360.0,1000800.0,1440.0,64,3.660929304023018e-05,0.003660929304023018 +1000800.0,1002240.0,1440.0,45,2.5740909168911845e-05,0.0025740909168911843 +1002240.0,1003680.0,1440.0,55,3.1461111206447814e-05,0.0031461111206447815 +1003680.0,1005120.0,1440.0,16,9.152323260057545e-06,0.0009152323260057545 +1005120.0,1006560.0,1440.0,14,8.008282852550352e-06,0.0008008282852550353 +1006560.0,1008000.0,1440.0,67,3.832535365149097e-05,0.003832535365149097 +1008000.0,1009440.0,1440.0,68,3.889737385524457e-05,0.003889737385524457 +1009440.0,1010880.0,1440.0,27,1.5444545501347106e-05,0.0015444545501347106 +1010880.0,1012320.0,1440.0,34,1.9448686927622285e-05,0.0019448686927622284 +1012320.0,1013760.0,1440.0,51,2.9173030391433426e-05,0.0029173030391433426 +1013760.0,1015200.0,1440.0,20,1.1440404075071931e-05,0.0011440404075071932 +1015200.0,1016640.0,1440.0,27,1.5444545501347106e-05,0.0015444545501347106 +1016640.0,1018080.0,1440.0,29,1.6588585908854302e-05,0.0016588585908854302 +1018080.0,1019520.0,1440.0,63,3.6037272836476584e-05,0.0036037272836476585 +1019520.0,1020960.0,1440.0,19,1.0868383871318335e-05,0.0010868383871318334 +1020960.0,1022400.0,1440.0,76,4.347353548527334e-05,0.004347353548527334 +1022400.0,1023840.0,1440.0,27,1.5444545501347106e-05,0.0015444545501347106 +1023840.0,1025280.0,1440.0,11,6.292222241289563e-06,0.0006292222241289563 +1025280.0,1026720.0,1440.0,21,1.2012424278825527e-05,0.0012012424278825527 +1026720.0,1028160.0,1440.0,33,1.8876666723868687e-05,0.0018876666723868687 +1028160.0,1029600.0,1440.0,30,1.7160606112607897e-05,0.0017160606112607898 +1029600.0,1031040.0,1440.0,31,1.7732626316361495e-05,0.0017732626316361495 +1031040.0,1032480.0,1440.0,42,2.4024848557651055e-05,0.0024024848557651053 +1032480.0,1033920.0,1440.0,48,2.7456969780172635e-05,0.0027456969780172637 +1033920.0,1035360.0,1440.0,8,4.576161630028772e-06,0.00045761616300287725 +1035360.0,1036800.0,1440.0,44,2.516888896515825e-05,0.0025168888965158252 +1036800.0,1038240.0,1440.0,71,4.061343446650536e-05,0.004061343446650536 +1038240.0,1039680.0,1440.0,32,1.830464652011509e-05,0.001830464652011509 +1039680.0,1041120.0,1440.0,50,2.8601010187679828e-05,0.0028601010187679827 +1041120.0,1042560.0,1440.0,16,9.152323260057545e-06,0.0009152323260057545 +1042560.0,1044000.0,1440.0,19,1.0868383871318335e-05,0.0010868383871318334 +1044000.0,1045440.0,1440.0,8,4.576161630028772e-06,0.00045761616300287725 +1045440.0,1046880.0,1440.0,5,2.8601010187679828e-06,0.0002860101018767983 +1046880.0,1048320.0,1440.0,74,4.2329495077766144e-05,0.004232949507776615 +1048320.0,1049760.0,1440.0,73,4.175747487401255e-05,0.004175747487401255 +1049760.0,1051200.0,1440.0,41,2.345282835389746e-05,0.002345282835389746 +1051200.0,1052640.0,1440.0,23,1.3156464686332721e-05,0.0013156464686332721 +1052640.0,1054080.0,1440.0,29,1.6588585908854302e-05,0.0016588585908854302 +1054080.0,1055520.0,1440.0,24,1.3728484890086318e-05,0.0013728484890086318 +1055520.0,1056960.0,1440.0,54,3.088909100269421e-05,0.003088909100269421 +1056960.0,1058400.0,1440.0,74,4.2329495077766144e-05,0.004232949507776615 +1058400.0,1059840.0,1440.0,76,4.347353548527334e-05,0.004347353548527334 +1059840.0,1061280.0,1440.0,70,4.004141426275176e-05,0.004004141426275176 +1061280.0,1062720.0,1440.0,33,1.8876666723868687e-05,0.0018876666723868687 +1062720.0,1064160.0,1440.0,47,2.6884949576419038e-05,0.0026884949576419038 +1064160.0,1065600.0,1440.0,50,2.8601010187679828e-05,0.0028601010187679827 +1065600.0,1067040.0,1440.0,43,2.4596868761404653e-05,0.0024596868761404653 +1067040.0,1068480.0,1440.0,59,3.37491920214622e-05,0.00337491920214622 +1068480.0,1069920.0,1440.0,29,1.6588585908854302e-05,0.0016588585908854302 +1069920.0,1071360.0,1440.0,54,3.088909100269421e-05,0.003088909100269421 +1071360.0,1072800.0,1440.0,33,1.8876666723868687e-05,0.0018876666723868687 +1072800.0,1074240.0,1440.0,30,1.7160606112607897e-05,0.0017160606112607898 +1074240.0,1075680.0,1440.0,23,1.3156464686332721e-05,0.0013156464686332721 +1075680.0,1077120.0,1440.0,56,3.203313141020141e-05,0.003203313141020141 +1077120.0,1078560.0,1440.0,53,3.0317070798940618e-05,0.0030317070798940617 +1078560.0,1080000.0,1440.0,17,9.724343463811142e-06,0.0009724343463811142 +1080000.0,1081440.0,1440.0,29,1.6588585908854302e-05,0.0016588585908854302 +1081440.0,1082880.0,1440.0,31,1.7732626316361495e-05,0.0017732626316361495 +1082880.0,1084320.0,1440.0,10,5.7202020375359656e-06,0.0005720202037535966 +1084320.0,1085760.0,1440.0,41,2.345282835389746e-05,0.002345282835389746 +1085760.0,1087200.0,1440.0,30,1.7160606112607897e-05,0.0017160606112607898 +1087200.0,1088640.0,1440.0,51,2.9173030391433426e-05,0.0029173030391433426 +1088640.0,1090080.0,1440.0,40,2.2880808150143862e-05,0.0022880808150143863 +1090080.0,1091520.0,1440.0,37,2.1164747538883072e-05,0.0021164747538883074 +1091520.0,1092960.0,1440.0,66,3.7753333447737374e-05,0.0037753333447737374 +1092960.0,1094400.0,1440.0,7,4.004141426275176e-06,0.00040041414262751763 +1094400.0,1095840.0,1440.0,8,4.576161630028772e-06,0.00045761616300287725 +1095840.0,1097280.0,1440.0,37,2.1164747538883072e-05,0.0021164747538883074 +1097280.0,1098720.0,1440.0,80,4.5761616300287725e-05,0.004576161630028773 +1098720.0,1100160.0,1440.0,69,3.9469394058998164e-05,0.003946939405899816 +1100160.0,1101600.0,1440.0,81,4.6333636504041326e-05,0.004633363650404132 +1101600.0,1103040.0,1440.0,81,4.6333636504041326e-05,0.004633363650404132 +1103040.0,1104480.0,1440.0,38,2.173676774263667e-05,0.002173676774263667 +1104480.0,1105920.0,1440.0,68,3.889737385524457e-05,0.003889737385524457 +1105920.0,1107360.0,1440.0,26,1.4872525297593512e-05,0.001487252529759351 +1107360.0,1108800.0,1440.0,70,4.004141426275176e-05,0.004004141426275176 +1108800.0,1110240.0,1440.0,49,2.8028989983926233e-05,0.002802898998392623 +1110240.0,1111680.0,1440.0,55,3.1461111206447814e-05,0.0031461111206447815 +1111680.0,1113120.0,1440.0,71,4.061343446650536e-05,0.004061343446650536 +1113120.0,1114560.0,1440.0,68,3.889737385524457e-05,0.003889737385524457 +1114560.0,1116000.0,1440.0,67,3.832535365149097e-05,0.003832535365149097 +1116000.0,1117440.0,1440.0,50,2.8601010187679828e-05,0.0028601010187679827 +1117440.0,1118880.0,1440.0,61,3.489323242896939e-05,0.0034893232428969386 +1118880.0,1120320.0,1440.0,92,5.2625858745330886e-05,0.0052625858745330885 +1120320.0,1121760.0,1440.0,43,2.4596868761404653e-05,0.0024596868761404653 +1121760.0,1123200.0,1440.0,38,2.173676774263667e-05,0.002173676774263667 +1123200.0,1124640.0,1440.0,7,4.004141426275176e-06,0.00040041414262751763 +1124640.0,1126080.0,1440.0,69,3.9469394058998164e-05,0.003946939405899816 +1126080.0,1127520.0,1440.0,47,2.6884949576419038e-05,0.0026884949576419038 +1127520.0,1128960.0,1440.0,78,4.4617575892780536e-05,0.004461757589278054 +1128960.0,1130400.0,1440.0,61,3.489323242896939e-05,0.0034893232428969386 +1130400.0,1131840.0,1440.0,23,1.3156464686332721e-05,0.0013156464686332721 +1131840.0,1133280.0,1440.0,10,5.7202020375359656e-06,0.0005720202037535966 +1133280.0,1134720.0,1440.0,35,2.002070713137588e-05,0.002002070713137588 +1134720.0,1136160.0,1440.0,14,8.008282852550352e-06,0.0008008282852550353 +1136160.0,1137600.0,1440.0,44,2.516888896515825e-05,0.0025168888965158252 +1137600.0,1139040.0,1440.0,42,2.4024848557651055e-05,0.0024024848557651053 +1139040.0,1140480.0,1440.0,80,4.5761616300287725e-05,0.004576161630028773 +1140480.0,1141920.0,1440.0,42,2.4024848557651055e-05,0.0024024848557651053 +1141920.0,1143360.0,1440.0,14,8.008282852550352e-06,0.0008008282852550353 +1143360.0,1144800.0,1440.0,14,8.008282852550352e-06,0.0008008282852550353 +1144800.0,1146240.0,1440.0,21,1.2012424278825527e-05,0.0012012424278825527 +1146240.0,1147680.0,1440.0,19,1.0868383871318335e-05,0.0010868383871318334 +1147680.0,1149120.0,1440.0,9,5.148181833782369e-06,0.000514818183378237 +1149120.0,1150560.0,1440.0,12,6.864242445043159e-06,0.0006864242445043159 +1150560.0,1152000.0,1440.0,8,4.576161630028772e-06,0.00045761616300287725 +1152000.0,1153440.0,1440.0,3,1.7160606112607897e-06,0.00017160606112607898 +1153440.0,1154880.0,1440.0,5,2.8601010187679828e-06,0.0002860101018767983 +1154880.0,1156320.0,1440.0,6,3.4321212225215794e-06,0.00034321212225215796 +1156320.0,1157760.0,1440.0,12,6.864242445043159e-06,0.0006864242445043159 +1157760.0,1159200.0,1440.0,38,2.173676774263667e-05,0.002173676774263667 +1159200.0,1160640.0,1440.0,50,2.8601010187679828e-05,0.0028601010187679827 +1160640.0,1162080.0,1440.0,12,6.864242445043159e-06,0.0006864242445043159 +1162080.0,1163520.0,1440.0,4,2.288080815014386e-06,0.00022880808150143862 +1163520.0,1164960.0,1440.0,8,4.576161630028772e-06,0.00045761616300287725 +1164960.0,1166400.0,1440.0,23,1.3156464686332721e-05,0.0013156464686332721 +1166400.0,1167840.0,1440.0,22,1.2584444482579125e-05,0.0012584444482579126 +1167840.0,1169280.0,1440.0,9,5.148181833782369e-06,0.000514818183378237 +1169280.0,1170720.0,1440.0,0,0.0,0.0 +1170720.0,1172160.0,1440.0,10,5.7202020375359656e-06,0.0005720202037535966 +1172160.0,1173600.0,1440.0,0,0.0,0.0 +1173600.0,1175040.0,1440.0,4,2.288080815014386e-06,0.00022880808150143862 +1175040.0,1176480.0,1440.0,27,1.5444545501347106e-05,0.0015444545501347106 +1176480.0,1177920.0,1440.0,51,2.9173030391433426e-05,0.0029173030391433426 +1177920.0,1179360.0,1440.0,31,1.7732626316361495e-05,0.0017732626316361495 +1179360.0,1180800.0,1440.0,18,1.0296363667564739e-05,0.001029636366756474 +1180800.0,1182240.0,1440.0,10,5.7202020375359656e-06,0.0005720202037535966 +1182240.0,1183680.0,1440.0,1,5.720202037535965e-07,5.7202020375359656e-05 +1183680.0,1185120.0,1440.0,0,0.0,0.0 +1185120.0,1186560.0,1440.0,7,4.004141426275176e-06,0.00040041414262751763 +1186560.0,1188000.0,1440.0,15,8.580303056303948e-06,0.0008580303056303949 +1188000.0,1189440.0,1440.0,63,3.6037272836476584e-05,0.0036037272836476585 +1189440.0,1190880.0,1440.0,88,5.03377779303165e-05,0.0050337777930316505 +1190880.0,1192320.0,1440.0,42,2.4024848557651055e-05,0.0024024848557651053 +1192320.0,1193760.0,1440.0,10,5.7202020375359656e-06,0.0005720202037535966 +1193760.0,1195200.0,1440.0,5,2.8601010187679828e-06,0.0002860101018767983 +1195200.0,1196640.0,1440.0,6,3.4321212225215794e-06,0.00034321212225215796 +1196640.0,1198080.0,1440.0,16,9.152323260057545e-06,0.0009152323260057545 +1198080.0,1199520.0,1440.0,52,2.9745050595187024e-05,0.002974505059518702 +1199520.0,1200960.0,1440.0,31,1.7732626316361495e-05,0.0017732626316361495 +1200960.0,1202400.0,1440.0,31,1.7732626316361495e-05,0.0017732626316361495 +1202400.0,1203840.0,1440.0,39,2.2308787946390268e-05,0.002230878794639027 +1203840.0,1205280.0,1440.0,33,1.8876666723868687e-05,0.0018876666723868687 +1205280.0,1206720.0,1440.0,30,1.7160606112607897e-05,0.0017160606112607898 +1206720.0,1208160.0,1440.0,58,3.3177171817708604e-05,0.0033177171817708605 +1208160.0,1209600.0,1440.0,21,1.2012424278825527e-05,0.0012012424278825527 +1209600.0,1211040.0,1440.0,26,1.4872525297593512e-05,0.001487252529759351 +1211040.0,1212480.0,1440.0,10,5.7202020375359656e-06,0.0005720202037535966 +1212480.0,1213920.0,1440.0,5,2.8601010187679828e-06,0.0002860101018767983 +1213920.0,1215360.0,1440.0,21,1.2012424278825527e-05,0.0012012424278825527 +1215360.0,1216800.0,1440.0,13,7.436262648796756e-06,0.0007436262648796755 +1216800.0,1218240.0,1440.0,10,5.7202020375359656e-06,0.0005720202037535966 +1218240.0,1219680.0,1440.0,5,2.8601010187679828e-06,0.0002860101018767983 +1219680.0,1221120.0,1440.0,27,1.5444545501347106e-05,0.0015444545501347106 +1221120.0,1222560.0,1440.0,3,1.7160606112607897e-06,0.00017160606112607898 +1222560.0,1224000.0,1440.0,0,0.0,0.0 +1224000.0,1225440.0,1440.0,14,8.008282852550352e-06,0.0008008282852550353 +1225440.0,1226880.0,1440.0,12,6.864242445043159e-06,0.0006864242445043159 +1226880.0,1228320.0,1440.0,23,1.3156464686332721e-05,0.0013156464686332721 +1228320.0,1229760.0,1440.0,2,1.144040407507193e-06,0.00011440404075071931 +1229760.0,1231200.0,1440.0,3,1.7160606112607897e-06,0.00017160606112607898 +1231200.0,1232640.0,1440.0,15,8.580303056303948e-06,0.0008580303056303949 +1232640.0,1234080.0,1440.0,0,0.0,0.0 +1234080.0,1235520.0,1440.0,8,4.576161630028772e-06,0.00045761616300287725 +1235520.0,1236960.0,1440.0,16,9.152323260057545e-06,0.0009152323260057545 +1236960.0,1238400.0,1440.0,6,3.4321212225215794e-06,0.00034321212225215796 +1238400.0,1239840.0,1440.0,1,5.720202037535965e-07,5.7202020375359656e-05 +1239840.0,1241280.0,1440.0,10,5.7202020375359656e-06,0.0005720202037535966 +1241280.0,1242720.0,1440.0,15,8.580303056303948e-06,0.0008580303056303949 +1242720.0,1244160.0,1440.0,7,4.004141426275176e-06,0.00040041414262751763 +1244160.0,1245600.0,1440.0,19,1.0868383871318335e-05,0.0010868383871318334 +1245600.0,1247040.0,1440.0,40,2.2880808150143862e-05,0.0022880808150143863 +1247040.0,1248480.0,1440.0,16,9.152323260057545e-06,0.0009152323260057545 +1248480.0,1249920.0,1440.0,16,9.152323260057545e-06,0.0009152323260057545 +1249920.0,1251360.0,1440.0,12,6.864242445043159e-06,0.0006864242445043159 +1251360.0,1252800.0,1440.0,7,4.004141426275176e-06,0.00040041414262751763 +1252800.0,1254240.0,1440.0,12,6.864242445043159e-06,0.0006864242445043159 +1254240.0,1255680.0,1440.0,32,1.830464652011509e-05,0.001830464652011509 +1255680.0,1257120.0,1440.0,60,3.4321212225215793e-05,0.0034321212225215795 +1257120.0,1258560.0,1440.0,31,1.7732626316361495e-05,0.0017732626316361495 +1258560.0,1260000.0,1440.0,16,9.152323260057545e-06,0.0009152323260057545 +1260000.0,1261440.0,1440.0,59,3.37491920214622e-05,0.00337491920214622 +1261440.0,1262880.0,1440.0,23,1.3156464686332721e-05,0.0013156464686332721 +1262880.0,1264320.0,1440.0,4,2.288080815014386e-06,0.00022880808150143862 +1264320.0,1265760.0,1440.0,32,1.830464652011509e-05,0.001830464652011509 +1265760.0,1267200.0,1440.0,72,4.1185454670258955e-05,0.004118545467025896 +1267200.0,1268640.0,1440.0,83,4.7477676911548515e-05,0.004747767691154851 +1268640.0,1270080.0,1440.0,24,1.3728484890086318e-05,0.0013728484890086318 +1270080.0,1271520.0,1440.0,114,6.521030322791e-05,0.006521030322791 +1271520.0,1272960.0,1440.0,30,1.7160606112607897e-05,0.0017160606112607898 +1272960.0,1274400.0,1440.0,6,3.4321212225215794e-06,0.00034321212225215796 +1274400.0,1275840.0,1440.0,29,1.6588585908854302e-05,0.0016588585908854302 +1275840.0,1277280.0,1440.0,60,3.4321212225215793e-05,0.0034321212225215795 +1277280.0,1278720.0,1440.0,12,6.864242445043159e-06,0.0006864242445043159 +1278720.0,1280160.0,1440.0,22,1.2584444482579125e-05,0.0012584444482579126 +1280160.0,1281600.0,1440.0,27,1.5444545501347106e-05,0.0015444545501347106 +1281600.0,1283040.0,1440.0,45,2.5740909168911845e-05,0.0025740909168911843 +1283040.0,1284480.0,1440.0,6,3.4321212225215794e-06,0.00034321212225215796 +1284480.0,1285920.0,1440.0,23,1.3156464686332721e-05,0.0013156464686332721 +1285920.0,1287360.0,1440.0,48,2.7456969780172635e-05,0.0027456969780172637 +1287360.0,1288800.0,1440.0,55,3.1461111206447814e-05,0.0031461111206447815 +1288800.0,1290240.0,1440.0,26,1.4872525297593512e-05,0.001487252529759351 +1290240.0,1291680.0,1440.0,63,3.6037272836476584e-05,0.0036037272836476585 +1291680.0,1293120.0,1440.0,23,1.3156464686332721e-05,0.0013156464686332721 +1293120.0,1294560.0,1440.0,15,8.580303056303948e-06,0.0008580303056303949 +1294560.0,1296000.0,1440.0,23,1.3156464686332721e-05,0.0013156464686332721 +1296000.0,1297440.0,1440.0,60,3.4321212225215793e-05,0.0034321212225215795 +1297440.0,1298880.0,1440.0,49,2.8028989983926233e-05,0.002802898998392623 +1298880.0,1300320.0,1440.0,47,2.6884949576419038e-05,0.0026884949576419038 +1300320.0,1301760.0,1440.0,75,4.2901515281519745e-05,0.004290151528151974 +1301760.0,1303200.0,1440.0,27,1.5444545501347106e-05,0.0015444545501347106 +1303200.0,1304640.0,1440.0,7,4.004141426275176e-06,0.00040041414262751763 +1304640.0,1306080.0,1440.0,10,5.7202020375359656e-06,0.0005720202037535966 +1306080.0,1307520.0,1440.0,35,2.002070713137588e-05,0.002002070713137588 +1307520.0,1308960.0,1440.0,16,9.152323260057545e-06,0.0009152323260057545 +1308960.0,1310400.0,1440.0,30,1.7160606112607897e-05,0.0017160606112607898 +1310400.0,1311840.0,1440.0,21,1.2012424278825527e-05,0.0012012424278825527 +1311840.0,1313280.0,1440.0,5,2.8601010187679828e-06,0.0002860101018767983 +1313280.0,1314720.0,1440.0,4,2.288080815014386e-06,0.00022880808150143862 +1314720.0,1316160.0,1440.0,1,5.720202037535965e-07,5.7202020375359656e-05 +1316160.0,1317600.0,1440.0,13,7.436262648796756e-06,0.0007436262648796755 +1317600.0,1319040.0,1440.0,18,1.0296363667564739e-05,0.001029636366756474 +1319040.0,1320480.0,1440.0,26,1.4872525297593512e-05,0.001487252529759351 +1320480.0,1321920.0,1440.0,29,1.6588585908854302e-05,0.0016588585908854302 +1321920.0,1323360.0,1440.0,9,5.148181833782369e-06,0.000514818183378237 +1323360.0,1324800.0,1440.0,4,2.288080815014386e-06,0.00022880808150143862 +1324800.0,1326240.0,1440.0,14,8.008282852550352e-06,0.0008008282852550353 +1326240.0,1327680.0,1440.0,69,3.9469394058998164e-05,0.003946939405899816 +1327680.0,1329120.0,1440.0,25,1.4300505093839914e-05,0.0014300505093839914 +1329120.0,1330560.0,1440.0,16,9.152323260057545e-06,0.0009152323260057545 +1330560.0,1332000.0,1440.0,39,2.2308787946390268e-05,0.002230878794639027 +1332000.0,1333440.0,1440.0,19,1.0868383871318335e-05,0.0010868383871318334 +1333440.0,1334880.0,1440.0,27,1.5444545501347106e-05,0.0015444545501347106 +1334880.0,1336320.0,1440.0,4,2.288080815014386e-06,0.00022880808150143862 +1336320.0,1337760.0,1440.0,2,1.144040407507193e-06,0.00011440404075071931 +1337760.0,1339200.0,1440.0,15,8.580303056303948e-06,0.0008580303056303949 +1339200.0,1340640.0,1440.0,35,2.002070713137588e-05,0.002002070713137588 +1340640.0,1342080.0,1440.0,20,1.1440404075071931e-05,0.0011440404075071932 +1342080.0,1343520.0,1440.0,40,2.2880808150143862e-05,0.0022880808150143863 +1343520.0,1344960.0,1440.0,10,5.7202020375359656e-06,0.0005720202037535966 +1344960.0,1346400.0,1440.0,15,8.580303056303948e-06,0.0008580303056303949 +1346400.0,1347840.0,1440.0,40,2.2880808150143862e-05,0.0022880808150143863 +1347840.0,1349280.0,1440.0,58,3.3177171817708604e-05,0.0033177171817708605 +1349280.0,1350720.0,1440.0,29,1.6588585908854302e-05,0.0016588585908854302 +1350720.0,1352160.0,1440.0,34,1.9448686927622285e-05,0.0019448686927622284 +1352160.0,1353600.0,1440.0,9,5.148181833782369e-06,0.000514818183378237 +1353600.0,1355040.0,1440.0,2,1.144040407507193e-06,0.00011440404075071931 +1355040.0,1356480.0,1440.0,20,1.1440404075071931e-05,0.0011440404075071932 +1356480.0,1357920.0,1440.0,17,9.724343463811142e-06,0.0009724343463811142 +1357920.0,1359360.0,1440.0,25,1.4300505093839914e-05,0.0014300505093839914 +1359360.0,1360800.0,1440.0,22,1.2584444482579125e-05,0.0012584444482579126 +1360800.0,1362240.0,1440.0,51,2.9173030391433426e-05,0.0029173030391433426 +1362240.0,1363680.0,1440.0,33,1.8876666723868687e-05,0.0018876666723868687 +1363680.0,1365120.0,1440.0,40,2.2880808150143862e-05,0.0022880808150143863 +1365120.0,1366560.0,1440.0,15,8.580303056303948e-06,0.0008580303056303949 +1366560.0,1368000.0,1440.0,36,2.0592727335129477e-05,0.002059272733512948 +1368000.0,1369440.0,1440.0,23,1.3156464686332721e-05,0.0013156464686332721 +1369440.0,1370880.0,1440.0,22,1.2584444482579125e-05,0.0012584444482579126 +1370880.0,1372320.0,1440.0,50,2.8601010187679828e-05,0.0028601010187679827 +1372320.0,1373760.0,1440.0,39,2.2308787946390268e-05,0.002230878794639027 +1373760.0,1375200.0,1440.0,18,1.0296363667564739e-05,0.001029636366756474 +1375200.0,1376640.0,1440.0,41,2.345282835389746e-05,0.002345282835389746 +1376640.0,1378080.0,1440.0,65,3.718131324398378e-05,0.003718131324398378 +1378080.0,1379520.0,1440.0,61,3.489323242896939e-05,0.0034893232428969386 +1379520.0,1380960.0,1440.0,64,3.660929304023018e-05,0.003660929304023018 +1380960.0,1382400.0,1440.0,38,2.173676774263667e-05,0.002173676774263667 +1382400.0,1383840.0,1440.0,12,6.864242445043159e-06,0.0006864242445043159 +1383840.0,1385280.0,1440.0,8,4.576161630028772e-06,0.00045761616300287725 +1385280.0,1386720.0,1440.0,8,4.576161630028772e-06,0.00045761616300287725 +1386720.0,1388160.0,1440.0,48,2.7456969780172635e-05,0.0027456969780172637 +1388160.0,1389600.0,1440.0,84,4.804969711530211e-05,0.004804969711530211 +1389600.0,1391040.0,1440.0,30,1.7160606112607897e-05,0.0017160606112607898 +1391040.0,1392480.0,1440.0,28,1.6016565705100704e-05,0.0016016565705100705 +1392480.0,1393920.0,1440.0,12,6.864242445043159e-06,0.0006864242445043159 +1393920.0,1395360.0,1440.0,9,5.148181833782369e-06,0.000514818183378237 +1395360.0,1396800.0,1440.0,2,1.144040407507193e-06,0.00011440404075071931 +1396800.0,1398240.0,1440.0,25,1.4300505093839914e-05,0.0014300505093839914 +1398240.0,1399680.0,1440.0,16,9.152323260057545e-06,0.0009152323260057545 +1399680.0,1401120.0,1440.0,12,6.864242445043159e-06,0.0006864242445043159 +1401120.0,1402560.0,1440.0,12,6.864242445043159e-06,0.0006864242445043159 +1402560.0,1404000.0,1440.0,54,3.088909100269421e-05,0.003088909100269421 +1404000.0,1405440.0,1440.0,36,2.0592727335129477e-05,0.002059272733512948 +1405440.0,1406880.0,1440.0,30,1.7160606112607897e-05,0.0017160606112607898 +1406880.0,1408320.0,1440.0,66,3.7753333447737374e-05,0.0037753333447737374 +1408320.0,1409760.0,1440.0,34,1.9448686927622285e-05,0.0019448686927622284 +1409760.0,1411200.0,1440.0,12,6.864242445043159e-06,0.0006864242445043159 +1411200.0,1412640.0,1440.0,27,1.5444545501347106e-05,0.0015444545501347106 +1412640.0,1414080.0,1440.0,21,1.2012424278825527e-05,0.0012012424278825527 +1414080.0,1415520.0,1440.0,7,4.004141426275176e-06,0.00040041414262751763 +1415520.0,1416960.0,1440.0,0,0.0,0.0 +1416960.0,1418400.0,1440.0,53,3.0317070798940618e-05,0.0030317070798940617 +1418400.0,1419840.0,1440.0,109,6.235020220914203e-05,0.006235020220914204 +1419840.0,1421280.0,1440.0,48,2.7456969780172635e-05,0.0027456969780172637 +1421280.0,1422720.0,1440.0,12,6.864242445043159e-06,0.0006864242445043159 +1422720.0,1424160.0,1440.0,2,1.144040407507193e-06,0.00011440404075071931 +1424160.0,1425600.0,1440.0,0,0.0,0.0 +1425600.0,1427040.0,1440.0,25,1.4300505093839914e-05,0.0014300505093839914 +1427040.0,1428480.0,1440.0,10,5.7202020375359656e-06,0.0005720202037535966 +1428480.0,1429920.0,1440.0,15,8.580303056303948e-06,0.0008580303056303949 +1429920.0,1431360.0,1440.0,18,1.0296363667564739e-05,0.001029636366756474 +1431360.0,1432800.0,1440.0,22,1.2584444482579125e-05,0.0012584444482579126 +1432800.0,1434240.0,1440.0,35,2.002070713137588e-05,0.002002070713137588 +1434240.0,1435680.0,1440.0,14,8.008282852550352e-06,0.0008008282852550353 +1435680.0,1437120.0,1440.0,0,0.0,0.0 +1437120.0,1438560.0,1440.0,0,0.0,0.0 +1438560.0,1440000.0,1440.0,14,8.008282852550352e-06,0.0008008282852550353 +1440000.0,1441440.0,1440.0,37,2.1164747538883072e-05,0.0021164747538883074 +1441440.0,1442880.0,1440.0,50,2.8601010187679828e-05,0.0028601010187679827 +1442880.0,1444320.0,1440.0,7,4.004141426275176e-06,0.00040041414262751763 +1444320.0,1445760.0,1440.0,10,5.7202020375359656e-06,0.0005720202037535966 +1445760.0,1447200.0,1440.0,0,0.0,0.0 +1447200.0,1448640.0,1440.0,0,0.0,0.0 +1448640.0,1450080.0,1440.0,1,5.720202037535965e-07,5.7202020375359656e-05 +1450080.0,1451520.0,1440.0,0,0.0,0.0 +1451520.0,1452960.0,1440.0,0,0.0,0.0 +1452960.0,1454400.0,1440.0,0,0.0,0.0 +1454400.0,1455840.0,1440.0,0,0.0,0.0 +1455840.0,1457280.0,1440.0,0,0.0,0.0 +1457280.0,1458720.0,1440.0,0,0.0,0.0 +1458720.0,1460160.0,1440.0,0,0.0,0.0 +1460160.0,1461600.0,1440.0,0,0.0,0.0 +1461600.0,1463040.0,1440.0,0,0.0,0.0 +1463040.0,1464480.0,1440.0,0,0.0,0.0 +1464480.0,1465920.0,1440.0,0,0.0,0.0 +1465920.0,1467360.0,1440.0,0,0.0,0.0 +1467360.0,1468800.0,1440.0,0,0.0,0.0 +1468800.0,1470240.0,1440.0,0,0.0,0.0 +1470240.0,1471680.0,1440.0,0,0.0,0.0 +1471680.0,1473120.0,1440.0,4,2.288080815014386e-06,0.00022880808150143862 +1473120.0,1474560.0,1440.0,0,0.0,0.0 +1474560.0,1476000.0,1440.0,0,0.0,0.0 +1476000.0,1477440.0,1440.0,0,0.0,0.0 +1477440.0,1478880.0,1440.0,0,0.0,0.0 +1478880.0,1480320.0,1440.0,0,0.0,0.0 +1480320.0,1481760.0,1440.0,0,0.0,0.0 +1481760.0,1483200.0,1440.0,0,0.0,0.0 +1483200.0,1484640.0,1440.0,0,0.0,0.0 +1484640.0,1486080.0,1440.0,0,0.0,0.0 +1486080.0,1487520.0,1440.0,0,0.0,0.0 +1487520.0,1488960.0,1440.0,0,0.0,0.0 +1488960.0,1490400.0,1440.0,0,0.0,0.0 +1490400.0,1491840.0,1440.0,0,0.0,0.0 +1491840.0,1493280.0,1440.0,0,0.0,0.0 +1493280.0,1494720.0,1440.0,0,0.0,0.0 +1494720.0,1496160.0,1440.0,0,0.0,0.0 +1496160.0,1497600.0,1440.0,0,0.0,0.0 +1497600.0,1499040.0,1440.0,0,0.0,0.0 +1499040.0,1500480.0,1440.0,0,0.0,0.0 +1500480.0,1501920.0,1440.0,0,0.0,0.0 +1501920.0,1503360.0,1440.0,0,0.0,0.0 +1503360.0,1504800.0,1440.0,0,0.0,0.0 +1504800.0,1506240.0,1440.0,0,0.0,0.0 +1506240.0,1507680.0,1440.0,0,0.0,0.0 +1507680.0,1509120.0,1440.0,0,0.0,0.0 +1509120.0,1510560.0,1440.0,0,0.0,0.0 +1510560.0,1512000.0,1440.0,0,0.0,0.0 +1512000.0,1513440.0,1440.0,0,0.0,0.0 +1513440.0,1514880.0,1440.0,0,0.0,0.0 +1514880.0,1516320.0,1440.0,0,0.0,0.0 +1516320.0,1517760.0,1440.0,0,0.0,0.0 +1517760.0,1519200.0,1440.0,0,0.0,0.0 +1519200.0,1520640.0,1440.0,0,0.0,0.0 +1520640.0,1522080.0,1440.0,0,0.0,0.0 +1522080.0,1523520.0,1440.0,0,0.0,0.0 +1523520.0,1524960.0,1440.0,0,0.0,0.0 +1524960.0,1526400.0,1440.0,0,0.0,0.0 +1526400.0,1527840.0,1440.0,0,0.0,0.0 +1527840.0,1529280.0,1440.0,0,0.0,0.0 +1529280.0,1530720.0,1440.0,0,0.0,0.0 +1530720.0,1532160.0,1440.0,0,0.0,0.0 +1532160.0,1533600.0,1440.0,0,0.0,0.0 +1533600.0,1535040.0,1440.0,0,0.0,0.0 +1535040.0,1536480.0,1440.0,0,0.0,0.0 +1536480.0,1537920.0,1440.0,0,0.0,0.0 +1537920.0,1539360.0,1440.0,0,0.0,0.0 +1539360.0,1540800.0,1440.0,0,0.0,0.0 +1540800.0,1542240.0,1440.0,0,0.0,0.0 +1542240.0,1543680.0,1440.0,3,1.7160606112607897e-06,0.00017160606112607898 +1543680.0,1545120.0,1440.0,0,0.0,0.0 +1545120.0,1546560.0,1440.0,0,0.0,0.0 +1546560.0,1548000.0,1440.0,0,0.0,0.0 +1548000.0,1549440.0,1440.0,0,0.0,0.0 +1549440.0,1550880.0,1440.0,0,0.0,0.0 +1550880.0,1552320.0,1440.0,0,0.0,0.0 +1552320.0,1553760.0,1440.0,0,0.0,0.0 +1553760.0,1555200.0,1440.0,2,1.144040407507193e-06,0.00011440404075071931 +1555200.0,1556640.0,1440.0,0,0.0,0.0 +1556640.0,1558080.0,1440.0,0,0.0,0.0 +1558080.0,1559520.0,1440.0,0,0.0,0.0 +1559520.0,1560960.0,1440.0,0,0.0,0.0 +1560960.0,1562400.0,1440.0,0,0.0,0.0 +1562400.0,1563840.0,1440.0,0,0.0,0.0 +1563840.0,1565280.0,1440.0,0,0.0,0.0 +1565280.0,1566720.0,1440.0,0,0.0,0.0 +1566720.0,1568160.0,1440.0,0,0.0,0.0 +1568160.0,1569600.0,1440.0,0,0.0,0.0 +1569600.0,1571040.0,1440.0,0,0.0,0.0 +1571040.0,1572480.0,1440.0,0,0.0,0.0 +1572480.0,1573920.0,1440.0,0,0.0,0.0 +1573920.0,1575360.0,1440.0,0,0.0,0.0 +1575360.0,1576800.0,1440.0,0,0.0,0.0 +1576800.0,1578240.0,1440.0,0,0.0,0.0 +1578240.0,1579680.0,1440.0,0,0.0,0.0 +1579680.0,1581120.0,1440.0,0,0.0,0.0 +1581120.0,1582560.0,1440.0,0,0.0,0.0 +1582560.0,1584000.0,1440.0,0,0.0,0.0 +1584000.0,1585440.0,1440.0,0,0.0,0.0 +1585440.0,1586880.0,1440.0,0,0.0,0.0 +1586880.0,1588320.0,1440.0,0,0.0,0.0 +1588320.0,1589760.0,1440.0,0,0.0,0.0 +1589760.0,1591200.0,1440.0,0,0.0,0.0 +1591200.0,1592640.0,1440.0,0,0.0,0.0 +1592640.0,1594080.0,1440.0,0,0.0,0.0 +1594080.0,1595520.0,1440.0,0,0.0,0.0 +1595520.0,1596960.0,1440.0,0,0.0,0.0 +1596960.0,1598400.0,1440.0,0,0.0,0.0 +1598400.0,1599840.0,1440.0,0,0.0,0.0 +1599840.0,1601280.0,1440.0,0,0.0,0.0 +1601280.0,1602720.0,1440.0,0,0.0,0.0 +1602720.0,1604160.0,1440.0,0,0.0,0.0 +1604160.0,1605600.0,1440.0,0,0.0,0.0 +1605600.0,1607040.0,1440.0,0,0.0,0.0 +1607040.0,1608480.0,1440.0,0,0.0,0.0 +1608480.0,1609920.0,1440.0,0,0.0,0.0 +1609920.0,1611360.0,1440.0,0,0.0,0.0 +1611360.0,1612800.0,1440.0,0,0.0,0.0 +1612800.0,1614240.0,1440.0,0,0.0,0.0 +1614240.0,1615680.0,1440.0,0,0.0,0.0 +1615680.0,1617120.0,1440.0,0,0.0,0.0 +1617120.0,1618560.0,1440.0,0,0.0,0.0 +1618560.0,1620000.0,1440.0,0,0.0,0.0 +1620000.0,1621440.0,1440.0,0,0.0,0.0 +1621440.0,1622880.0,1440.0,0,0.0,0.0 +1622880.0,1624320.0,1440.0,0,0.0,0.0 +1624320.0,1625760.0,1440.0,0,0.0,0.0 +1625760.0,1627200.0,1440.0,0,0.0,0.0 +1627200.0,1628640.0,1440.0,0,0.0,0.0 +1628640.0,1630080.0,1440.0,0,0.0,0.0 +1630080.0,1631520.0,1440.0,0,0.0,0.0 +1631520.0,1632960.0,1440.0,0,0.0,0.0 +1632960.0,1634400.0,1440.0,0,0.0,0.0 +1634400.0,1635840.0,1440.0,0,0.0,0.0 +1635840.0,1637280.0,1440.0,0,0.0,0.0 +1637280.0,1638720.0,1440.0,0,0.0,0.0 +1638720.0,1640160.0,1440.0,0,0.0,0.0 +1640160.0,1641600.0,1440.0,0,0.0,0.0 +1641600.0,1643040.0,1440.0,0,0.0,0.0 +1643040.0,1644480.0,1440.0,2,1.144040407507193e-06,0.00011440404075071931 +1644480.0,1645920.0,1440.0,0,0.0,0.0 +1645920.0,1647360.0,1440.0,0,0.0,0.0 +1647360.0,1648800.0,1440.0,1,5.720202037535965e-07,5.7202020375359656e-05 +1648800.0,1650240.0,1440.0,0,0.0,0.0 +1650240.0,1651680.0,1440.0,0,0.0,0.0 +1651680.0,1653120.0,1440.0,0,0.0,0.0 +1653120.0,1654560.0,1440.0,0,0.0,0.0 +1654560.0,1656000.0,1440.0,0,0.0,0.0 +1656000.0,1657440.0,1440.0,3,1.7160606112607897e-06,0.00017160606112607898 +1657440.0,1658880.0,1440.0,0,0.0,0.0 +1658880.0,1660320.0,1440.0,2,1.144040407507193e-06,0.00011440404075071931 +1660320.0,1661760.0,1440.0,0,0.0,0.0 +1661760.0,1663200.0,1440.0,0,0.0,0.0 +1663200.0,1664640.0,1440.0,0,0.0,0.0 +1664640.0,1666080.0,1440.0,0,0.0,0.0 +1666080.0,1667520.0,1440.0,0,0.0,0.0 +1667520.0,1668960.0,1440.0,0,0.0,0.0 +1668960.0,1670400.0,1440.0,0,0.0,0.0 +1670400.0,1671840.0,1440.0,0,0.0,0.0 +1671840.0,1673280.0,1440.0,2,1.144040407507193e-06,0.00011440404075071931 +1673280.0,1674720.0,1440.0,0,0.0,0.0 +1674720.0,1676160.0,1440.0,0,0.0,0.0 +1676160.0,1677600.0,1440.0,0,0.0,0.0 +1677600.0,1679040.0,1440.0,0,0.0,0.0 +1679040.0,1680480.0,1440.0,0,0.0,0.0 +1680480.0,1681920.0,1440.0,0,0.0,0.0 +1681920.0,1683360.0,1440.0,0,0.0,0.0 +1683360.0,1684800.0,1440.0,0,0.0,0.0 +1684800.0,1686240.0,1440.0,0,0.0,0.0 +1686240.0,1687680.0,1440.0,0,0.0,0.0 +1687680.0,1689120.0,1440.0,0,0.0,0.0 +1689120.0,1690560.0,1440.0,0,0.0,0.0 +1690560.0,1692000.0,1440.0,0,0.0,0.0 +1692000.0,1693440.0,1440.0,0,0.0,0.0 +1693440.0,1694880.0,1440.0,0,0.0,0.0 +1694880.0,1696320.0,1440.0,0,0.0,0.0 +1696320.0,1697760.0,1440.0,0,0.0,0.0 +1697760.0,1699200.0,1440.0,0,0.0,0.0 +1699200.0,1700640.0,1440.0,0,0.0,0.0 +1700640.0,1702080.0,1440.0,0,0.0,0.0 +1702080.0,1703520.0,1440.0,0,0.0,0.0 +1703520.0,1704960.0,1440.0,0,0.0,0.0 +1704960.0,1706400.0,1440.0,0,0.0,0.0 +1706400.0,1707840.0,1440.0,0,0.0,0.0 +1707840.0,1709280.0,1440.0,0,0.0,0.0 +1709280.0,1710720.0,1440.0,0,0.0,0.0 +1710720.0,1712160.0,1440.0,0,0.0,0.0 +1712160.0,1713600.0,1440.0,0,0.0,0.0 +1713600.0,1715040.0,1440.0,0,0.0,0.0 +1715040.0,1716480.0,1440.0,0,0.0,0.0 +1716480.0,1717920.0,1440.0,0,0.0,0.0 +1717920.0,1719360.0,1440.0,0,0.0,0.0 +1719360.0,1720800.0,1440.0,1,5.720202037535965e-07,5.7202020375359656e-05 +1720800.0,1722240.0,1440.0,0,0.0,0.0 +1722240.0,1723680.0,1440.0,0,0.0,0.0 +1723680.0,1725120.0,1440.0,0,0.0,0.0 +1725120.0,1726560.0,1440.0,0,0.0,0.0 +1726560.0,1728000.0,1440.0,0,0.0,0.0 +1728000.0,1729440.0,1440.0,0,0.0,0.0 +1729440.0,1730880.0,1440.0,0,0.0,0.0 +1730880.0,1732320.0,1440.0,0,0.0,0.0 +1732320.0,1733760.0,1440.0,0,0.0,0.0 +1733760.0,1735200.0,1440.0,0,0.0,0.0 +1735200.0,1736640.0,1440.0,0,0.0,0.0 +1736640.0,1738080.0,1440.0,0,0.0,0.0 +1738080.0,1739520.0,1440.0,0,0.0,0.0 +1739520.0,1740960.0,1440.0,0,0.0,0.0 +1740960.0,1742400.0,1440.0,0,0.0,0.0 +1742400.0,1743840.0,1440.0,0,0.0,0.0 +1743840.0,1745280.0,1440.0,0,0.0,0.0 +1745280.0,1746720.0,1440.0,0,0.0,0.0 +1746720.0,1748160.0,1440.0,0,0.0,0.0 +1748160.0,1749600.0,1440.0,0,0.0,0.0 +1749600.0,1751040.0,1440.0,0,0.0,0.0 +1751040.0,1752480.0,1440.0,0,0.0,0.0 +1752480.0,1753920.0,1440.0,0,0.0,0.0 +1753920.0,1755360.0,1440.0,0,0.0,0.0 +1755360.0,1756800.0,1440.0,0,0.0,0.0 +1756800.0,1758240.0,1440.0,0,0.0,0.0 +1758240.0,1759680.0,1440.0,0,0.0,0.0 +1759680.0,1761120.0,1440.0,0,0.0,0.0 +1761120.0,1762560.0,1440.0,0,0.0,0.0 +1762560.0,1764000.0,1440.0,0,0.0,0.0 +1764000.0,1765440.0,1440.0,0,0.0,0.0 +1765440.0,1766880.0,1440.0,0,0.0,0.0 +1766880.0,1768320.0,1440.0,0,0.0,0.0 +1768320.0,1769760.0,1440.0,0,0.0,0.0 +1769760.0,1771200.0,1440.0,0,0.0,0.0 +1771200.0,1772640.0,1440.0,0,0.0,0.0 +1772640.0,1774080.0,1440.0,0,0.0,0.0 +1774080.0,1775520.0,1440.0,3,1.7160606112607897e-06,0.00017160606112607898 +1775520.0,1776960.0,1440.0,0,0.0,0.0 +1776960.0,1778400.0,1440.0,0,0.0,0.0 +1778400.0,1779840.0,1440.0,0,0.0,0.0 +1779840.0,1781280.0,1440.0,0,0.0,0.0 +1781280.0,1782720.0,1440.0,0,0.0,0.0 +1782720.0,1784160.0,1440.0,0,0.0,0.0 +1784160.0,1785600.0,1440.0,0,0.0,0.0 +1785600.0,1787040.0,1440.0,0,0.0,0.0 +1787040.0,1788480.0,1440.0,0,0.0,0.0 +1788480.0,1789920.0,1440.0,0,0.0,0.0 +1789920.0,1791360.0,1440.0,0,0.0,0.0 +1791360.0,1792800.0,1440.0,0,0.0,0.0 +1792800.0,1794240.0,1440.0,0,0.0,0.0 +1794240.0,1795680.0,1440.0,0,0.0,0.0 +1795680.0,1797120.0,1440.0,0,0.0,0.0 +1797120.0,1798560.0,1440.0,0,0.0,0.0 +1798560.0,1800000.0,1440.0,0,0.0,0.0 +1800000.0,1801440.0,1440.0,0,0.0,0.0 +1801440.0,1802880.0,1440.0,0,0.0,0.0 +1802880.0,1804320.0,1440.0,0,0.0,0.0 +1804320.0,1805760.0,1440.0,0,0.0,0.0 +1805760.0,1807200.0,1440.0,0,0.0,0.0 +1807200.0,1808640.0,1440.0,0,0.0,0.0 +1808640.0,1810080.0,1440.0,0,0.0,0.0 +1810080.0,1811520.0,1440.0,0,0.0,0.0 +1811520.0,1812960.0,1440.0,0,0.0,0.0 +1812960.0,1814400.0,1440.0,0,0.0,0.0 +1814400.0,1815840.0,1440.0,0,0.0,0.0 +1815840.0,1817280.0,1440.0,0,0.0,0.0 +1817280.0,1818720.0,1440.0,0,0.0,0.0 +1818720.0,1820160.0,1440.0,0,0.0,0.0 +1820160.0,1821600.0,1440.0,0,0.0,0.0 +1821600.0,1823040.0,1440.0,0,0.0,0.0 +1823040.0,1824480.0,1440.0,0,0.0,0.0 +1824480.0,1825920.0,1440.0,0,0.0,0.0 +1825920.0,1827360.0,1440.0,0,0.0,0.0 +1827360.0,1828800.0,1440.0,0,0.0,0.0 +1828800.0,1830240.0,1440.0,0,0.0,0.0 +1830240.0,1831680.0,1440.0,0,0.0,0.0 +1831680.0,1833120.0,1440.0,0,0.0,0.0 +1833120.0,1834560.0,1440.0,0,0.0,0.0 +1834560.0,1836000.0,1440.0,0,0.0,0.0 +1836000.0,1837440.0,1440.0,0,0.0,0.0 +1837440.0,1838880.0,1440.0,0,0.0,0.0 +1838880.0,1840320.0,1440.0,0,0.0,0.0 +1840320.0,1841760.0,1440.0,0,0.0,0.0 +1841760.0,1843200.0,1440.0,0,0.0,0.0 +1843200.0,1844640.0,1440.0,0,0.0,0.0 +1844640.0,1846080.0,1440.0,0,0.0,0.0 +1846080.0,1847520.0,1440.0,0,0.0,0.0 +1847520.0,1848960.0,1440.0,0,0.0,0.0 +1848960.0,1850400.0,1440.0,0,0.0,0.0 +1850400.0,1851840.0,1440.0,0,0.0,0.0 +1851840.0,1853280.0,1440.0,0,0.0,0.0 +1853280.0,1854720.0,1440.0,0,0.0,0.0 +1854720.0,1856160.0,1440.0,0,0.0,0.0 +1856160.0,1857600.0,1440.0,0,0.0,0.0 +1857600.0,1859040.0,1440.0,0,0.0,0.0 +1859040.0,1860480.0,1440.0,0,0.0,0.0 +1860480.0,1861920.0,1440.0,0,0.0,0.0 +1861920.0,1863360.0,1440.0,0,0.0,0.0 +1863360.0,1864800.0,1440.0,0,0.0,0.0 +1864800.0,1866240.0,1440.0,0,0.0,0.0 +1866240.0,1867680.0,1440.0,0,0.0,0.0 +1867680.0,1869120.0,1440.0,0,0.0,0.0 +1869120.0,1870560.0,1440.0,0,0.0,0.0 +1870560.0,1872000.0,1440.0,0,0.0,0.0 +1872000.0,1873440.0,1440.0,0,0.0,0.0 +1873440.0,1874880.0,1440.0,0,0.0,0.0 +1874880.0,1876320.0,1440.0,0,0.0,0.0 +1876320.0,1877760.0,1440.0,0,0.0,0.0 +1877760.0,1879200.0,1440.0,0,0.0,0.0 +1879200.0,1880640.0,1440.0,0,0.0,0.0 +1880640.0,1882080.0,1440.0,0,0.0,0.0 +1882080.0,1883520.0,1440.0,0,0.0,0.0 +1883520.0,1884960.0,1440.0,0,0.0,0.0 +1884960.0,1886400.0,1440.0,0,0.0,0.0 +1886400.0,1887840.0,1440.0,0,0.0,0.0 +1887840.0,1889280.0,1440.0,0,0.0,0.0 +1889280.0,1890720.0,1440.0,0,0.0,0.0 +1890720.0,1892160.0,1440.0,0,0.0,0.0 +1892160.0,1893600.0,1440.0,0,0.0,0.0 +1893600.0,1895040.0,1440.0,0,0.0,0.0 +1895040.0,1896480.0,1440.0,0,0.0,0.0 +1896480.0,1897920.0,1440.0,0,0.0,0.0 +1897920.0,1899360.0,1440.0,0,0.0,0.0 +1899360.0,1900800.0,1440.0,0,0.0,0.0 +1900800.0,1902240.0,1440.0,0,0.0,0.0 +1902240.0,1903680.0,1440.0,0,0.0,0.0 +1903680.0,1905120.0,1440.0,0,0.0,0.0 +1905120.0,1906560.0,1440.0,0,0.0,0.0 +1906560.0,1908000.0,1440.0,0,0.0,0.0 +1908000.0,1909440.0,1440.0,0,0.0,0.0 +1909440.0,1910880.0,1440.0,0,0.0,0.0 +1910880.0,1912320.0,1440.0,0,0.0,0.0 +1912320.0,1913760.0,1440.0,0,0.0,0.0 +1913760.0,1915200.0,1440.0,0,0.0,0.0 +1915200.0,1916640.0,1440.0,0,0.0,0.0 +1916640.0,1918080.0,1440.0,0,0.0,0.0 +1918080.0,1919520.0,1440.0,0,0.0,0.0 +1919520.0,1920960.0,1440.0,0,0.0,0.0 +1920960.0,1922400.0,1440.0,0,0.0,0.0 +1922400.0,1923840.0,1440.0,0,0.0,0.0 +1923840.0,1925280.0,1440.0,0,0.0,0.0 +1925280.0,1926720.0,1440.0,0,0.0,0.0 +1926720.0,1928160.0,1440.0,0,0.0,0.0 +1928160.0,1929600.0,1440.0,0,0.0,0.0 +1929600.0,1931040.0,1440.0,0,0.0,0.0 +1931040.0,1932480.0,1440.0,0,0.0,0.0 +1932480.0,1933920.0,1440.0,0,0.0,0.0 +1933920.0,1935360.0,1440.0,0,0.0,0.0 +1935360.0,1936800.0,1440.0,0,0.0,0.0 +1936800.0,1938240.0,1440.0,0,0.0,0.0 +1938240.0,1939680.0,1440.0,0,0.0,0.0 +1939680.0,1941120.0,1440.0,0,0.0,0.0 +1941120.0,1942560.0,1440.0,0,0.0,0.0 +1942560.0,1944000.0,1440.0,0,0.0,0.0 +1944000.0,1945440.0,1440.0,0,0.0,0.0 +1945440.0,1946880.0,1440.0,0,0.0,0.0 +1946880.0,1948320.0,1440.0,0,0.0,0.0 +1948320.0,1949760.0,1440.0,0,0.0,0.0 +1949760.0,1951200.0,1440.0,0,0.0,0.0 +1951200.0,1952640.0,1440.0,0,0.0,0.0 +1952640.0,1954080.0,1440.0,0,0.0,0.0 +1954080.0,1955520.0,1440.0,0,0.0,0.0 +1955520.0,1956960.0,1440.0,0,0.0,0.0 +1956960.0,1958400.0,1440.0,0,0.0,0.0 +1958400.0,1959840.0,1440.0,0,0.0,0.0 +1959840.0,1961280.0,1440.0,0,0.0,0.0 +1961280.0,1962720.0,1440.0,0,0.0,0.0 +1962720.0,1964160.0,1440.0,0,0.0,0.0 +1964160.0,1965600.0,1440.0,0,0.0,0.0 +1965600.0,1967040.0,1440.0,0,0.0,0.0 +1967040.0,1968480.0,1440.0,0,0.0,0.0 +1968480.0,1969920.0,1440.0,0,0.0,0.0 +1969920.0,1971360.0,1440.0,0,0.0,0.0 +1971360.0,1972800.0,1440.0,0,0.0,0.0 +1972800.0,1974240.0,1440.0,0,0.0,0.0 +1974240.0,1975680.0,1440.0,0,0.0,0.0 +1975680.0,1977120.0,1440.0,0,0.0,0.0 +1977120.0,1978560.0,1440.0,0,0.0,0.0 +1978560.0,1980000.0,1440.0,0,0.0,0.0 +1980000.0,1981440.0,1440.0,0,0.0,0.0 +1981440.0,1982880.0,1440.0,0,0.0,0.0 +1982880.0,1984320.0,1440.0,0,0.0,0.0 +1984320.0,1985760.0,1440.0,0,0.0,0.0 +1985760.0,1987200.0,1440.0,0,0.0,0.0 +1987200.0,1988640.0,1440.0,0,0.0,0.0 +1988640.0,1990080.0,1440.0,0,0.0,0.0 +1990080.0,1991520.0,1440.0,0,0.0,0.0 +1991520.0,1992960.0,1440.0,0,0.0,0.0 +1992960.0,1994400.0,1440.0,0,0.0,0.0 +1994400.0,1995840.0,1440.0,0,0.0,0.0 +1995840.0,1997280.0,1440.0,0,0.0,0.0 +1997280.0,1998720.0,1440.0,0,0.0,0.0 +1998720.0,2000160.0,1440.0,0,0.0,0.0 +2000160.0,2001600.0,1440.0,0,0.0,0.0 +2001600.0,2003040.0,1440.0,0,0.0,0.0 +2003040.0,2004480.0,1440.0,0,0.0,0.0 +2004480.0,2005920.0,1440.0,0,0.0,0.0 +2005920.0,2007360.0,1440.0,0,0.0,0.0 +2007360.0,2008800.0,1440.0,0,0.0,0.0 +2008800.0,2010240.0,1440.0,0,0.0,0.0 +2010240.0,2011680.0,1440.0,0,0.0,0.0 +2011680.0,2013120.0,1440.0,0,0.0,0.0 +2013120.0,2014560.0,1440.0,0,0.0,0.0 +2014560.0,2016000.0,1440.0,0,0.0,0.0 +2016000.0,2017440.0,1440.0,0,0.0,0.0 +2017440.0,2018880.0,1440.0,0,0.0,0.0 +2018880.0,2020320.0,1440.0,0,0.0,0.0 +2020320.0,2021760.0,1440.0,0,0.0,0.0 +2021760.0,2023200.0,1440.0,0,0.0,0.0 +2023200.0,2024640.0,1440.0,0,0.0,0.0 +2024640.0,2026080.0,1440.0,0,0.0,0.0 +2026080.0,2027520.0,1440.0,0,0.0,0.0 +2027520.0,2028960.0,1440.0,0,0.0,0.0 +2028960.0,2030400.0,1440.0,0,0.0,0.0 +2030400.0,2031840.0,1440.0,0,0.0,0.0 +2031840.0,2033280.0,1440.0,0,0.0,0.0 +2033280.0,2034720.0,1440.0,0,0.0,0.0 +2034720.0,2036160.0,1440.0,0,0.0,0.0 +2036160.0,2037600.0,1440.0,0,0.0,0.0 +2037600.0,2039040.0,1440.0,0,0.0,0.0 +2039040.0,2040480.0,1440.0,0,0.0,0.0 +2040480.0,2041920.0,1440.0,0,0.0,0.0 +2041920.0,2043360.0,1440.0,0,0.0,0.0 +2043360.0,2044800.0,1440.0,0,0.0,0.0 +2044800.0,2046240.0,1440.0,0,0.0,0.0 +2046240.0,2047680.0,1440.0,0,0.0,0.0 +2047680.0,2049120.0,1440.0,0,0.0,0.0 +2049120.0,2050560.0,1440.0,0,0.0,0.0 +2050560.0,2052000.0,1440.0,0,0.0,0.0 +2052000.0,2053440.0,1440.0,0,0.0,0.0 +2053440.0,2054880.0,1440.0,0,0.0,0.0 +2054880.0,2056320.0,1440.0,0,0.0,0.0 +2056320.0,2057760.0,1440.0,0,0.0,0.0 +2057760.0,2059200.0,1440.0,0,0.0,0.0 +2059200.0,2060640.0,1440.0,0,0.0,0.0 +2060640.0,2062080.0,1440.0,0,0.0,0.0 +2062080.0,2063520.0,1440.0,0,0.0,0.0 +2063520.0,2064960.0,1440.0,0,0.0,0.0 +2064960.0,2066400.0,1440.0,0,0.0,0.0 +2066400.0,2067840.0,1440.0,0,0.0,0.0 +2067840.0,2069280.0,1440.0,0,0.0,0.0 +2069280.0,2070720.0,1440.0,0,0.0,0.0 +2070720.0,2072160.0,1440.0,0,0.0,0.0 +2072160.0,2073600.0,1440.0,0,0.0,0.0 +2073600.0,2075040.0,1440.0,0,0.0,0.0 +2075040.0,2076480.0,1440.0,1,5.720202037535965e-07,5.7202020375359656e-05 +2076480.0,2077920.0,1440.0,0,0.0,0.0 +2077920.0,2079360.0,1440.0,0,0.0,0.0 +2079360.0,2080800.0,1440.0,0,0.0,0.0 +2080800.0,2082240.0,1440.0,0,0.0,0.0 +2082240.0,2083680.0,1440.0,0,0.0,0.0 +2083680.0,2085120.0,1440.0,0,0.0,0.0 +2085120.0,2086560.0,1440.0,0,0.0,0.0 +2086560.0,2088000.0,1440.0,0,0.0,0.0 +2088000.0,2089440.0,1440.0,0,0.0,0.0 +2089440.0,2090880.0,1440.0,0,0.0,0.0 +2090880.0,2092320.0,1440.0,0,0.0,0.0 +2092320.0,2093760.0,1440.0,0,0.0,0.0 +2093760.0,2095200.0,1440.0,0,0.0,0.0 +2095200.0,2096640.0,1440.0,0,0.0,0.0 +2096640.0,2098080.0,1440.0,0,0.0,0.0 +2098080.0,2099520.0,1440.0,0,0.0,0.0 +2099520.0,2100960.0,1440.0,0,0.0,0.0 +2100960.0,2102400.0,1440.0,0,0.0,0.0 +2102400.0,2103840.0,1440.0,0,0.0,0.0 +2103840.0,2105280.0,1440.0,0,0.0,0.0 +2105280.0,2106720.0,1440.0,0,0.0,0.0 +2106720.0,2108160.0,1440.0,0,0.0,0.0 +2108160.0,2109600.0,1440.0,0,0.0,0.0 +2109600.0,2111040.0,1440.0,0,0.0,0.0 +2111040.0,2112480.0,1440.0,0,0.0,0.0 +2112480.0,2113920.0,1440.0,1,5.720202037535965e-07,5.7202020375359656e-05 +2113920.0,2115360.0,1440.0,0,0.0,0.0 +2115360.0,2116800.0,1440.0,0,0.0,0.0 +2116800.0,2118240.0,1440.0,0,0.0,0.0 +2118240.0,2119680.0,1440.0,0,0.0,0.0 +2119680.0,2121120.0,1440.0,0,0.0,0.0 +2121120.0,2122560.0,1440.0,0,0.0,0.0 +2122560.0,2124000.0,1440.0,0,0.0,0.0 +2124000.0,2125440.0,1440.0,0,0.0,0.0 +2125440.0,2126880.0,1440.0,0,0.0,0.0 +2126880.0,2128320.0,1440.0,0,0.0,0.0 +2128320.0,2129760.0,1440.0,0,0.0,0.0 +2129760.0,2131200.0,1440.0,0,0.0,0.0 +2131200.0,2132640.0,1440.0,0,0.0,0.0 +2132640.0,2134080.0,1440.0,0,0.0,0.0 +2134080.0,2135520.0,1440.0,0,0.0,0.0 +2135520.0,2136960.0,1440.0,3,1.7160606112607897e-06,0.00017160606112607898 +2136960.0,2138400.0,1440.0,0,0.0,0.0 +2138400.0,2139840.0,1440.0,0,0.0,0.0 +2139840.0,2141280.0,1440.0,0,0.0,0.0 +2141280.0,2142720.0,1440.0,0,0.0,0.0 +2142720.0,2144160.0,1440.0,0,0.0,0.0 +2144160.0,2145600.0,1440.0,0,0.0,0.0 +2145600.0,2147040.0,1440.0,0,0.0,0.0 +2147040.0,2148480.0,1440.0,0,0.0,0.0 +2148480.0,2149920.0,1440.0,0,0.0,0.0 +2149920.0,2151360.0,1440.0,0,0.0,0.0 +2151360.0,2152800.0,1440.0,0,0.0,0.0 +2152800.0,2154240.0,1440.0,0,0.0,0.0 +2154240.0,2155680.0,1440.0,0,0.0,0.0 +2155680.0,2157120.0,1440.0,0,0.0,0.0 +2157120.0,2158560.0,1440.0,0,0.0,0.0 +2158560.0,2160000.0,1440.0,0,0.0,0.0 +2160000.0,2161440.0,1440.0,0,0.0,0.0 +2161440.0,2162880.0,1440.0,0,0.0,0.0 +2162880.0,2164320.0,1440.0,0,0.0,0.0 +2164320.0,2165760.0,1440.0,0,0.0,0.0 +2165760.0,2167200.0,1440.0,0,0.0,0.0 +2167200.0,2168640.0,1440.0,0,0.0,0.0 +2168640.0,2170080.0,1440.0,0,0.0,0.0 +2170080.0,2171520.0,1440.0,0,0.0,0.0 +2171520.0,2172960.0,1440.0,0,0.0,0.0 +2172960.0,2174400.0,1440.0,0,0.0,0.0 +2174400.0,2175840.0,1440.0,0,0.0,0.0 +2175840.0,2177280.0,1440.0,0,0.0,0.0 +2177280.0,2178720.0,1440.0,0,0.0,0.0 +2178720.0,2180160.0,1440.0,0,0.0,0.0 +2180160.0,2181600.0,1440.0,0,0.0,0.0 +2181600.0,2183040.0,1440.0,0,0.0,0.0 +2183040.0,2184480.0,1440.0,0,0.0,0.0 +2184480.0,2185920.0,1440.0,0,0.0,0.0 +2185920.0,2187360.0,1440.0,0,0.0,0.0 +2187360.0,2188800.0,1440.0,0,0.0,0.0 +2188800.0,2190240.0,1440.0,0,0.0,0.0 +2190240.0,2191680.0,1440.0,0,0.0,0.0 +2191680.0,2193120.0,1440.0,0,0.0,0.0 +2193120.0,2194560.0,1440.0,0,0.0,0.0 +2194560.0,2196000.0,1440.0,0,0.0,0.0 +2196000.0,2197440.0,1440.0,4,2.288080815014386e-06,0.00022880808150143862 +2197440.0,2198880.0,1440.0,1,5.720202037535965e-07,5.7202020375359656e-05 +2198880.0,2200320.0,1440.0,0,0.0,0.0 +2200320.0,2201760.0,1440.0,0,0.0,0.0 +2201760.0,2203200.0,1440.0,0,0.0,0.0 +2203200.0,2204640.0,1440.0,1,5.720202037535965e-07,5.7202020375359656e-05 +2204640.0,2206080.0,1440.0,3,1.7160606112607897e-06,0.00017160606112607898 +2206080.0,2207520.0,1440.0,0,0.0,0.0 +2207520.0,2208960.0,1440.0,0,0.0,0.0 +2208960.0,2210400.0,1440.0,0,0.0,0.0 +2210400.0,2211840.0,1440.0,0,0.0,0.0 +2211840.0,2213280.0,1440.0,0,0.0,0.0 +2213280.0,2214720.0,1440.0,3,1.7160606112607897e-06,0.00017160606112607898 +2214720.0,2216160.0,1440.0,1,5.720202037535965e-07,5.7202020375359656e-05 +2216160.0,2217600.0,1440.0,0,0.0,0.0 +2217600.0,2219040.0,1440.0,0,0.0,0.0 +2219040.0,2220480.0,1440.0,0,0.0,0.0 +2220480.0,2221920.0,1440.0,0,0.0,0.0 +2221920.0,2223360.0,1440.0,0,0.0,0.0 +2223360.0,2224800.0,1440.0,0,0.0,0.0 +2224800.0,2226240.0,1440.0,0,0.0,0.0 +2226240.0,2227680.0,1440.0,0,0.0,0.0 +2227680.0,2229120.0,1440.0,0,0.0,0.0 +2229120.0,2230560.0,1440.0,0,0.0,0.0 +2230560.0,2232000.0,1440.0,0,0.0,0.0 +2232000.0,2233440.0,1440.0,0,0.0,0.0 +2233440.0,2234880.0,1440.0,0,0.0,0.0 +2234880.0,2236320.0,1440.0,0,0.0,0.0 +2236320.0,2237760.0,1440.0,3,1.7160606112607897e-06,0.00017160606112607898 +2237760.0,2239200.0,1440.0,0,0.0,0.0 +2239200.0,2240640.0,1440.0,0,0.0,0.0 +2240640.0,2242080.0,1440.0,0,0.0,0.0 +2242080.0,2243520.0,1440.0,0,0.0,0.0 +2243520.0,2244960.0,1440.0,0,0.0,0.0 +2244960.0,2246400.0,1440.0,0,0.0,0.0 +2246400.0,2247840.0,1440.0,0,0.0,0.0 +2247840.0,2249280.0,1440.0,0,0.0,0.0 +2249280.0,2250720.0,1440.0,0,0.0,0.0 +2250720.0,2252160.0,1440.0,0,0.0,0.0 +2252160.0,2253600.0,1440.0,0,0.0,0.0 +2253600.0,2255040.0,1440.0,1,5.720202037535965e-07,5.7202020375359656e-05 +2255040.0,2256480.0,1440.0,4,2.288080815014386e-06,0.00022880808150143862 +2256480.0,2257920.0,1440.0,0,0.0,0.0 +2257920.0,2259360.0,1440.0,0,0.0,0.0 +2259360.0,2260800.0,1440.0,0,0.0,0.0 +2260800.0,2262240.0,1440.0,0,0.0,0.0 +2262240.0,2263680.0,1440.0,0,0.0,0.0 +2263680.0,2265120.0,1440.0,0,0.0,0.0 +2265120.0,2266560.0,1440.0,2,1.144040407507193e-06,0.00011440404075071931 +2266560.0,2268000.0,1440.0,0,0.0,0.0 +2268000.0,2269440.0,1440.0,0,0.0,0.0 +2269440.0,2270880.0,1440.0,0,0.0,0.0 +2270880.0,2272320.0,1440.0,0,0.0,0.0 +2272320.0,2273760.0,1440.0,0,0.0,0.0 +2273760.0,2275200.0,1440.0,0,0.0,0.0 +2275200.0,2276640.0,1440.0,0,0.0,0.0 +2276640.0,2278080.0,1440.0,1,5.720202037535965e-07,5.7202020375359656e-05 +2278080.0,2279520.0,1440.0,11,6.292222241289563e-06,0.0006292222241289563 +2279520.0,2280960.0,1440.0,0,0.0,0.0 +2280960.0,2282400.0,1440.0,0,0.0,0.0 +2282400.0,2283840.0,1440.0,0,0.0,0.0 +2283840.0,2285280.0,1440.0,0,0.0,0.0 +2285280.0,2286720.0,1440.0,0,0.0,0.0 +2286720.0,2288160.0,1440.0,0,0.0,0.0 +2288160.0,2289600.0,1440.0,0,0.0,0.0 +2289600.0,2291040.0,1440.0,4,2.288080815014386e-06,0.00022880808150143862 +2291040.0,2292480.0,1440.0,0,0.0,0.0 +2292480.0,2293920.0,1440.0,0,0.0,0.0 +2293920.0,2295360.0,1440.0,0,0.0,0.0 +2295360.0,2296800.0,1440.0,0,0.0,0.0 +2296800.0,2298240.0,1440.0,0,0.0,0.0 +2298240.0,2299680.0,1440.0,0,0.0,0.0 +2299680.0,2301120.0,1440.0,0,0.0,0.0 +2301120.0,2302560.0,1440.0,0,0.0,0.0 +2302560.0,2304000.0,1440.0,0,0.0,0.0 +2304000.0,2305440.0,1440.0,0,0.0,0.0 +2305440.0,2306880.0,1440.0,0,0.0,0.0 +2306880.0,2308320.0,1440.0,0,0.0,0.0 +2308320.0,2309760.0,1440.0,0,0.0,0.0 +2309760.0,2311200.0,1440.0,0,0.0,0.0 +2311200.0,2312640.0,1440.0,0,0.0,0.0 +2312640.0,2314080.0,1440.0,0,0.0,0.0 +2314080.0,2315520.0,1440.0,0,0.0,0.0 +2315520.0,2316960.0,1440.0,1,5.720202037535965e-07,5.7202020375359656e-05 +2316960.0,2318400.0,1440.0,0,0.0,0.0 +2318400.0,2319840.0,1440.0,0,0.0,0.0 +2319840.0,2321280.0,1440.0,0,0.0,0.0 +2321280.0,2322720.0,1440.0,0,0.0,0.0 +2322720.0,2324160.0,1440.0,0,0.0,0.0 +2324160.0,2325600.0,1440.0,0,0.0,0.0 +2325600.0,2327040.0,1440.0,0,0.0,0.0 +2327040.0,2328480.0,1440.0,0,0.0,0.0 +2328480.0,2329920.0,1440.0,0,0.0,0.0 +2329920.0,2331360.0,1440.0,0,0.0,0.0 +2331360.0,2332800.0,1440.0,0,0.0,0.0 +2332800.0,2334240.0,1440.0,0,0.0,0.0 +2334240.0,2335680.0,1440.0,0,0.0,0.0 +2335680.0,2337120.0,1440.0,0,0.0,0.0 +2337120.0,2338560.0,1440.0,0,0.0,0.0 +2338560.0,2340000.0,1440.0,0,0.0,0.0 +2340000.0,2341440.0,1440.0,0,0.0,0.0 +2341440.0,2342880.0,1440.0,0,0.0,0.0 +2342880.0,2344320.0,1440.0,0,0.0,0.0 +2344320.0,2345760.0,1440.0,0,0.0,0.0 +2345760.0,2347200.0,1440.0,0,0.0,0.0 +2347200.0,2348640.0,1440.0,0,0.0,0.0 +2348640.0,2350080.0,1440.0,0,0.0,0.0 +2350080.0,2351520.0,1440.0,0,0.0,0.0 +2351520.0,2352960.0,1440.0,0,0.0,0.0 +2352960.0,2354400.0,1440.0,0,0.0,0.0 +2354400.0,2355840.0,1440.0,0,0.0,0.0 +2355840.0,2357280.0,1440.0,0,0.0,0.0 +2357280.0,2358720.0,1440.0,0,0.0,0.0 +2358720.0,2360160.0,1440.0,0,0.0,0.0 +2360160.0,2361600.0,1440.0,0,0.0,0.0 +2361600.0,2363040.0,1440.0,0,0.0,0.0 +2363040.0,2364480.0,1440.0,0,0.0,0.0 +2364480.0,2365920.0,1440.0,0,0.0,0.0 +2365920.0,2367360.0,1440.0,1,5.720202037535965e-07,5.7202020375359656e-05 +2367360.0,2368800.0,1440.0,5,2.8601010187679828e-06,0.0002860101018767983 +2368800.0,2370240.0,1440.0,0,0.0,0.0 +2370240.0,2371680.0,1440.0,6,3.4321212225215794e-06,0.00034321212225215796 +2371680.0,2373120.0,1440.0,0,0.0,0.0 +2373120.0,2374560.0,1440.0,0,0.0,0.0 +2374560.0,2376000.0,1440.0,0,0.0,0.0 +2376000.0,2377440.0,1440.0,0,0.0,0.0 +2377440.0,2378880.0,1440.0,0,0.0,0.0 +2378880.0,2380320.0,1440.0,0,0.0,0.0 +2380320.0,2381760.0,1440.0,0,0.0,0.0 +2381760.0,2383200.0,1440.0,0,0.0,0.0 +2383200.0,2384640.0,1440.0,0,0.0,0.0 +2384640.0,2386080.0,1440.0,0,0.0,0.0 +2386080.0,2387520.0,1440.0,0,0.0,0.0 +2387520.0,2388960.0,1440.0,0,0.0,0.0 +2388960.0,2390400.0,1440.0,0,0.0,0.0 +2390400.0,2391840.0,1440.0,6,3.4321212225215794e-06,0.00034321212225215796 +2391840.0,2393280.0,1440.0,0,0.0,0.0 +2393280.0,2394720.0,1440.0,0,0.0,0.0 +2394720.0,2396160.0,1440.0,0,0.0,0.0 +2396160.0,2397600.0,1440.0,0,0.0,0.0 +2397600.0,2399040.0,1440.0,0,0.0,0.0 +2399040.0,2400480.0,1440.0,0,0.0,0.0 +2400480.0,2401920.0,1440.0,0,0.0,0.0 +2401920.0,2403360.0,1440.0,0,0.0,0.0 +2403360.0,2404800.0,1440.0,0,0.0,0.0 +2404800.0,2406240.0,1440.0,0,0.0,0.0 +2406240.0,2407680.0,1440.0,0,0.0,0.0 +2407680.0,2409120.0,1440.0,0,0.0,0.0 +2409120.0,2410560.0,1440.0,4,2.288080815014386e-06,0.00022880808150143862 +2410560.0,2412000.0,1440.0,1,5.720202037535965e-07,5.7202020375359656e-05 +2412000.0,2413440.0,1440.0,0,0.0,0.0 +2413440.0,2414880.0,1440.0,0,0.0,0.0 +2414880.0,2416320.0,1440.0,0,0.0,0.0 +2416320.0,2417760.0,1440.0,0,0.0,0.0 +2417760.0,2419200.0,1440.0,0,0.0,0.0 +2419200.0,2420640.0,1440.0,0,0.0,0.0 +2420640.0,2422080.0,1440.0,0,0.0,0.0 +2422080.0,2423520.0,1440.0,0,0.0,0.0 +2423520.0,2424960.0,1440.0,0,0.0,0.0 +2424960.0,2426400.0,1440.0,0,0.0,0.0 +2426400.0,2427840.0,1440.0,0,0.0,0.0 +2427840.0,2429280.0,1440.0,0,0.0,0.0 +2429280.0,2430720.0,1440.0,0,0.0,0.0 +2430720.0,2432160.0,1440.0,0,0.0,0.0 +2432160.0,2433600.0,1440.0,0,0.0,0.0 +2433600.0,2435040.0,1440.0,0,0.0,0.0 +2435040.0,2436480.0,1440.0,0,0.0,0.0 +2436480.0,2437920.0,1440.0,0,0.0,0.0 +2437920.0,2439360.0,1440.0,1,5.720202037535965e-07,5.7202020375359656e-05 +2439360.0,2440800.0,1440.0,0,0.0,0.0 +2440800.0,2442240.0,1440.0,4,2.288080815014386e-06,0.00022880808150143862 +2442240.0,2443680.0,1440.0,0,0.0,0.0 +2443680.0,2445120.0,1440.0,0,0.0,0.0 +2445120.0,2446560.0,1440.0,0,0.0,0.0 +2446560.0,2448000.0,1440.0,0,0.0,0.0 +2448000.0,2449440.0,1440.0,0,0.0,0.0 +2449440.0,2450880.0,1440.0,4,2.288080815014386e-06,0.00022880808150143862 +2450880.0,2452320.0,1440.0,0,0.0,0.0 +2452320.0,2453760.0,1440.0,0,0.0,0.0 +2453760.0,2455200.0,1440.0,0,0.0,0.0 +2455200.0,2456640.0,1440.0,0,0.0,0.0 +2456640.0,2458080.0,1440.0,0,0.0,0.0 +2458080.0,2459520.0,1440.0,0,0.0,0.0 +2459520.0,2460960.0,1440.0,0,0.0,0.0 +2460960.0,2462400.0,1440.0,0,0.0,0.0 +2462400.0,2463840.0,1440.0,0,0.0,0.0 +2463840.0,2465280.0,1440.0,0,0.0,0.0 +2465280.0,2466720.0,1440.0,0,0.0,0.0 +2466720.0,2468160.0,1440.0,0,0.0,0.0 +2468160.0,2469600.0,1440.0,4,2.288080815014386e-06,0.00022880808150143862 +2469600.0,2471040.0,1440.0,0,0.0,0.0 +2471040.0,2472480.0,1440.0,0,0.0,0.0 +2472480.0,2473920.0,1440.0,0,0.0,0.0 +2473920.0,2475360.0,1440.0,0,0.0,0.0 +2475360.0,2476800.0,1440.0,0,0.0,0.0 +2476800.0,2478240.0,1440.0,0,0.0,0.0 +2478240.0,2479680.0,1440.0,0,0.0,0.0 +2479680.0,2481120.0,1440.0,0,0.0,0.0 +2481120.0,2482560.0,1440.0,0,0.0,0.0 +2482560.0,2484000.0,1440.0,0,0.0,0.0 +2484000.0,2485440.0,1440.0,0,0.0,0.0 +2485440.0,2486880.0,1440.0,0,0.0,0.0 +2486880.0,2488320.0,1440.0,0,0.0,0.0 +2488320.0,2489760.0,1440.0,0,0.0,0.0 +2489760.0,2491200.0,1440.0,0,0.0,0.0 +2491200.0,2492640.0,1440.0,0,0.0,0.0 +2492640.0,2494080.0,1440.0,0,0.0,0.0 +2494080.0,2495520.0,1440.0,0,0.0,0.0 +2495520.0,2496960.0,1440.0,0,0.0,0.0 +2496960.0,2498400.0,1440.0,0,0.0,0.0 +2498400.0,2499840.0,1440.0,0,0.0,0.0 +2499840.0,2501280.0,1440.0,0,0.0,0.0 +2501280.0,2502720.0,1440.0,0,0.0,0.0 +2502720.0,2504160.0,1440.0,0,0.0,0.0 +2504160.0,2505600.0,1440.0,0,0.0,0.0 +2505600.0,2507040.0,1440.0,0,0.0,0.0 +2507040.0,2508480.0,1440.0,0,0.0,0.0 +2508480.0,2509920.0,1440.0,0,0.0,0.0 +2509920.0,2511360.0,1440.0,0,0.0,0.0 +2511360.0,2512800.0,1440.0,0,0.0,0.0 +2512800.0,2514240.0,1440.0,0,0.0,0.0 +2514240.0,2515680.0,1440.0,0,0.0,0.0 +2515680.0,2517120.0,1440.0,0,0.0,0.0 +2517120.0,2518560.0,1440.0,0,0.0,0.0 +2518560.0,2520000.0,1440.0,0,0.0,0.0 +2520000.0,2521440.0,1440.0,0,0.0,0.0 +2521440.0,2522880.0,1440.0,0,0.0,0.0 +2522880.0,2524320.0,1440.0,0,0.0,0.0 +2524320.0,2525760.0,1440.0,0,0.0,0.0 +2525760.0,2527200.0,1440.0,0,0.0,0.0 +2527200.0,2528640.0,1440.0,0,0.0,0.0 +2528640.0,2530080.0,1440.0,0,0.0,0.0 +2530080.0,2531520.0,1440.0,0,0.0,0.0 +2531520.0,2532960.0,1440.0,0,0.0,0.0 +2532960.0,2534400.0,1440.0,0,0.0,0.0 +2534400.0,2535840.0,1440.0,0,0.0,0.0 +2535840.0,2537280.0,1440.0,0,0.0,0.0 +2537280.0,2538720.0,1440.0,0,0.0,0.0 +2538720.0,2540160.0,1440.0,0,0.0,0.0 +2540160.0,2541600.0,1440.0,0,0.0,0.0 +2541600.0,2543040.0,1440.0,0,0.0,0.0 +2543040.0,2544480.0,1440.0,0,0.0,0.0 +2544480.0,2545920.0,1440.0,0,0.0,0.0 +2545920.0,2547360.0,1440.0,0,0.0,0.0 +2547360.0,2548800.0,1440.0,0,0.0,0.0 +2548800.0,2550240.0,1440.0,0,0.0,0.0 +2550240.0,2551680.0,1440.0,0,0.0,0.0 +2551680.0,2553120.0,1440.0,0,0.0,0.0 +2553120.0,2554560.0,1440.0,0,0.0,0.0 +2554560.0,2556000.0,1440.0,0,0.0,0.0 +2556000.0,2557440.0,1440.0,0,0.0,0.0 +2557440.0,2558880.0,1440.0,0,0.0,0.0 +2558880.0,2560320.0,1440.0,0,0.0,0.0 +2560320.0,2561760.0,1440.0,0,0.0,0.0 +2561760.0,2563200.0,1440.0,0,0.0,0.0 +2563200.0,2564640.0,1440.0,0,0.0,0.0 +2564640.0,2566080.0,1440.0,0,0.0,0.0 +2566080.0,2567520.0,1440.0,0,0.0,0.0 +2567520.0,2568960.0,1440.0,0,0.0,0.0 +2568960.0,2570400.0,1440.0,0,0.0,0.0 +2570400.0,2571840.0,1440.0,0,0.0,0.0 +2571840.0,2573280.0,1440.0,0,0.0,0.0 +2573280.0,2574720.0,1440.0,0,0.0,0.0 +2574720.0,2576160.0,1440.0,0,0.0,0.0 +2576160.0,2577600.0,1440.0,4,2.288080815014386e-06,0.00022880808150143862 +2577600.0,2579040.0,1440.0,0,0.0,0.0 +2579040.0,2580480.0,1440.0,4,2.288080815014386e-06,0.00022880808150143862 +2580480.0,2581920.0,1440.0,0,0.0,0.0 +2581920.0,2583360.0,1440.0,0,0.0,0.0 +2583360.0,2584800.0,1440.0,0,0.0,0.0 +2584800.0,2586240.0,1440.0,0,0.0,0.0 +2586240.0,2587680.0,1440.0,0,0.0,0.0 +2587680.0,2589120.0,1440.0,0,0.0,0.0 +2589120.0,2590560.0,1440.0,0,0.0,0.0 +2590560.0,2592000.0,1440.0,0,0.0,0.0 +2592000.0,2593440.0,1440.0,4,2.288080815014386e-06,0.00022880808150143862 +2593440.0,2594880.0,1440.0,0,0.0,0.0 +2594880.0,2596320.0,1440.0,0,0.0,0.0 +2596320.0,2597760.0,1440.0,0,0.0,0.0 +2597760.0,2599200.0,1440.0,0,0.0,0.0 +2599200.0,2600640.0,1440.0,0,0.0,0.0 +2600640.0,2602080.0,1440.0,0,0.0,0.0 +2602080.0,2603520.0,1440.0,12,6.864242445043159e-06,0.0006864242445043159 +2603520.0,2604960.0,1440.0,0,0.0,0.0 +2604960.0,2606400.0,1440.0,0,0.0,0.0 +2606400.0,2607840.0,1440.0,0,0.0,0.0 +2607840.0,2609280.0,1440.0,0,0.0,0.0 +2609280.0,2610720.0,1440.0,0,0.0,0.0 +2610720.0,2612160.0,1440.0,0,0.0,0.0 +2612160.0,2613600.0,1440.0,0,0.0,0.0 +2613600.0,2615040.0,1440.0,0,0.0,0.0 +2615040.0,2616480.0,1440.0,0,0.0,0.0 +2616480.0,2617920.0,1440.0,0,0.0,0.0 +2617920.0,2619360.0,1440.0,0,0.0,0.0 +2619360.0,2620800.0,1440.0,0,0.0,0.0 +2620800.0,2622240.0,1440.0,0,0.0,0.0 +2622240.0,2623680.0,1440.0,0,0.0,0.0 +2623680.0,2625120.0,1440.0,0,0.0,0.0 +2625120.0,2626560.0,1440.0,0,0.0,0.0 +2626560.0,2628000.0,1440.0,0,0.0,0.0 +2628000.0,2629440.0,1440.0,0,0.0,0.0 +2629440.0,2630880.0,1440.0,0,0.0,0.0 +2630880.0,2632320.0,1440.0,1,5.720202037535965e-07,5.7202020375359656e-05 +2632320.0,2633760.0,1440.0,1,5.720202037535965e-07,5.7202020375359656e-05 +2633760.0,2635200.0,1440.0,0,0.0,0.0 +2635200.0,2636640.0,1440.0,0,0.0,0.0 +2636640.0,2638080.0,1440.0,0,0.0,0.0 +2638080.0,2639520.0,1440.0,0,0.0,0.0 +2639520.0,2640960.0,1440.0,0,0.0,0.0 +2640960.0,2642400.0,1440.0,0,0.0,0.0 +2642400.0,2643840.0,1440.0,7,4.004141426275176e-06,0.00040041414262751763 +2643840.0,2645280.0,1440.0,0,0.0,0.0 +2645280.0,2646720.0,1440.0,0,0.0,0.0 +2646720.0,2648160.0,1440.0,0,0.0,0.0 +2648160.0,2649600.0,1440.0,0,0.0,0.0 +2649600.0,2651040.0,1440.0,0,0.0,0.0 +2651040.0,2652480.0,1440.0,0,0.0,0.0 +2652480.0,2653920.0,1440.0,0,0.0,0.0 +2653920.0,2655360.0,1440.0,0,0.0,0.0 +2655360.0,2656800.0,1440.0,0,0.0,0.0 +2656800.0,2658240.0,1440.0,0,0.0,0.0 +2658240.0,2659680.0,1440.0,0,0.0,0.0 +2659680.0,2661120.0,1440.0,0,0.0,0.0 +2661120.0,2662560.0,1440.0,0,0.0,0.0 +2662560.0,2664000.0,1440.0,0,0.0,0.0 +2664000.0,2665440.0,1440.0,0,0.0,0.0 +2665440.0,2666880.0,1440.0,0,0.0,0.0 +2666880.0,2668320.0,1440.0,0,0.0,0.0 +2668320.0,2669760.0,1440.0,0,0.0,0.0 +2669760.0,2671200.0,1440.0,3,1.7160606112607897e-06,0.00017160606112607898 +2671200.0,2672640.0,1440.0,0,0.0,0.0 +2672640.0,2674080.0,1440.0,0,0.0,0.0 +2674080.0,2675520.0,1440.0,0,0.0,0.0 +2675520.0,2676960.0,1440.0,0,0.0,0.0 +2676960.0,2678400.0,1440.0,3,1.7160606112607897e-06,0.00017160606112607898 +2678400.0,2679840.0,1440.0,3,1.7160606112607897e-06,0.00017160606112607898 +2679840.0,2681280.0,1440.0,0,0.0,0.0 +2681280.0,2682720.0,1440.0,0,0.0,0.0 +2682720.0,2684160.0,1440.0,0,0.0,0.0 +2684160.0,2685600.0,1440.0,0,0.0,0.0 +2685600.0,2687040.0,1440.0,0,0.0,0.0 +2687040.0,2688480.0,1440.0,0,0.0,0.0 +2688480.0,2689920.0,1440.0,0,0.0,0.0 +2689920.0,2691360.0,1440.0,0,0.0,0.0 +2691360.0,2692800.0,1440.0,0,0.0,0.0 +2692800.0,2694240.0,1440.0,0,0.0,0.0 +2694240.0,2695680.0,1440.0,0,0.0,0.0 +2695680.0,2697120.0,1440.0,0,0.0,0.0 +2697120.0,2698560.0,1440.0,0,0.0,0.0 +2698560.0,2700000.0,1440.0,0,0.0,0.0 +2700000.0,2701440.0,1440.0,0,0.0,0.0 +2701440.0,2702880.0,1440.0,0,0.0,0.0 +2702880.0,2704320.0,1440.0,0,0.0,0.0 +2704320.0,2705760.0,1440.0,0,0.0,0.0 +2705760.0,2707200.0,1440.0,0,0.0,0.0 +2707200.0,2708640.0,1440.0,0,0.0,0.0 +2708640.0,2710080.0,1440.0,0,0.0,0.0 +2710080.0,2711520.0,1440.0,0,0.0,0.0 +2711520.0,2712960.0,1440.0,4,2.288080815014386e-06,0.00022880808150143862 +2712960.0,2714400.0,1440.0,4,2.288080815014386e-06,0.00022880808150143862 +2714400.0,2715840.0,1440.0,0,0.0,0.0 +2715840.0,2717280.0,1440.0,0,0.0,0.0 +2717280.0,2718720.0,1440.0,0,0.0,0.0 +2718720.0,2720160.0,1440.0,0,0.0,0.0 +2720160.0,2721600.0,1440.0,0,0.0,0.0 +2721600.0,2723040.0,1440.0,0,0.0,0.0 +2723040.0,2724480.0,1440.0,0,0.0,0.0 +2724480.0,2725920.0,1440.0,0,0.0,0.0 +2725920.0,2727360.0,1440.0,0,0.0,0.0 +2727360.0,2728800.0,1440.0,0,0.0,0.0 +2728800.0,2730240.0,1440.0,0,0.0,0.0 +2730240.0,2731680.0,1440.0,0,0.0,0.0 +2731680.0,2733120.0,1440.0,0,0.0,0.0 +2733120.0,2734560.0,1440.0,0,0.0,0.0 +2734560.0,2736000.0,1440.0,0,0.0,0.0 +2736000.0,2737440.0,1440.0,0,0.0,0.0 +2737440.0,2738880.0,1440.0,0,0.0,0.0 +2738880.0,2740320.0,1440.0,0,0.0,0.0 +2740320.0,2741760.0,1440.0,0,0.0,0.0 +2741760.0,2743200.0,1440.0,0,0.0,0.0 +2743200.0,2744640.0,1440.0,0,0.0,0.0 +2744640.0,2746080.0,1440.0,0,0.0,0.0 +2746080.0,2747520.0,1440.0,0,0.0,0.0 +2747520.0,2748960.0,1440.0,0,0.0,0.0 +2748960.0,2750400.0,1440.0,0,0.0,0.0 +2750400.0,2751840.0,1440.0,0,0.0,0.0 +2751840.0,2753280.0,1440.0,0,0.0,0.0 +2753280.0,2754720.0,1440.0,0,0.0,0.0 +2754720.0,2756160.0,1440.0,0,0.0,0.0 +2756160.0,2757600.0,1440.0,0,0.0,0.0 +2757600.0,2759040.0,1440.0,0,0.0,0.0 +2759040.0,2760480.0,1440.0,0,0.0,0.0 +2760480.0,2761920.0,1440.0,0,0.0,0.0 +2761920.0,2763360.0,1440.0,0,0.0,0.0 +2763360.0,2764800.0,1440.0,0,0.0,0.0 +2764800.0,2766240.0,1440.0,0,0.0,0.0 +2766240.0,2767680.0,1440.0,0,0.0,0.0 +2767680.0,2769120.0,1440.0,0,0.0,0.0 +2769120.0,2770560.0,1440.0,0,0.0,0.0 +2770560.0,2772000.0,1440.0,0,0.0,0.0 +2772000.0,2773440.0,1440.0,0,0.0,0.0 +2773440.0,2774880.0,1440.0,0,0.0,0.0 +2774880.0,2776320.0,1440.0,0,0.0,0.0 +2776320.0,2777760.0,1440.0,0,0.0,0.0 +2777760.0,2779200.0,1440.0,0,0.0,0.0 +2779200.0,2780640.0,1440.0,0,0.0,0.0 +2780640.0,2782080.0,1440.0,0,0.0,0.0 +2782080.0,2783520.0,1440.0,0,0.0,0.0 +2783520.0,2784960.0,1440.0,0,0.0,0.0 +2784960.0,2786400.0,1440.0,0,0.0,0.0 +2786400.0,2787840.0,1440.0,0,0.0,0.0 +2787840.0,2789280.0,1440.0,0,0.0,0.0 +2789280.0,2790720.0,1440.0,0,0.0,0.0 +2790720.0,2792160.0,1440.0,0,0.0,0.0 +2792160.0,2793600.0,1440.0,0,0.0,0.0 +2793600.0,2795040.0,1440.0,0,0.0,0.0 +2795040.0,2796480.0,1440.0,0,0.0,0.0 +2796480.0,2797920.0,1440.0,0,0.0,0.0 +2797920.0,2799360.0,1440.0,0,0.0,0.0 +2799360.0,2800800.0,1440.0,0,0.0,0.0 +2800800.0,2802240.0,1440.0,0,0.0,0.0 +2802240.0,2803680.0,1440.0,0,0.0,0.0 +2803680.0,2805120.0,1440.0,0,0.0,0.0 +2805120.0,2806560.0,1440.0,0,0.0,0.0 +2806560.0,2808000.0,1440.0,0,0.0,0.0 +2808000.0,2809440.0,1440.0,0,0.0,0.0 +2809440.0,2810880.0,1440.0,0,0.0,0.0 +2810880.0,2812320.0,1440.0,1,5.720202037535965e-07,5.7202020375359656e-05 +2812320.0,2813760.0,1440.0,0,0.0,0.0 +2813760.0,2815200.0,1440.0,0,0.0,0.0 +2815200.0,2816640.0,1440.0,0,0.0,0.0 +2816640.0,2818080.0,1440.0,0,0.0,0.0 +2818080.0,2819520.0,1440.0,0,0.0,0.0 +2819520.0,2820960.0,1440.0,0,0.0,0.0 +2820960.0,2822400.0,1440.0,3,1.7160606112607897e-06,0.00017160606112607898 +2822400.0,2823840.0,1440.0,0,0.0,0.0 +2823840.0,2825280.0,1440.0,0,0.0,0.0 +2825280.0,2826720.0,1440.0,0,0.0,0.0 +2826720.0,2828160.0,1440.0,0,0.0,0.0 +2828160.0,2829600.0,1440.0,0,0.0,0.0 +2829600.0,2831040.0,1440.0,0,0.0,0.0 +2831040.0,2832480.0,1440.0,0,0.0,0.0 +2832480.0,2833920.0,1440.0,0,0.0,0.0 +2833920.0,2835360.0,1440.0,0,0.0,0.0 +2835360.0,2836800.0,1440.0,0,0.0,0.0 +2836800.0,2838240.0,1440.0,0,0.0,0.0 +2838240.0,2839680.0,1440.0,0,0.0,0.0 +2839680.0,2841120.0,1440.0,0,0.0,0.0 +2841120.0,2842560.0,1440.0,0,0.0,0.0 +2842560.0,2844000.0,1440.0,0,0.0,0.0 +2844000.0,2845440.0,1440.0,0,0.0,0.0 +2845440.0,2846880.0,1440.0,0,0.0,0.0 +2846880.0,2848320.0,1440.0,0,0.0,0.0 +2848320.0,2849760.0,1440.0,0,0.0,0.0 +2849760.0,2851200.0,1440.0,0,0.0,0.0 +2851200.0,2852640.0,1440.0,0,0.0,0.0 +2852640.0,2854080.0,1440.0,0,0.0,0.0 +2854080.0,2855520.0,1440.0,0,0.0,0.0 +2855520.0,2856960.0,1440.0,0,0.0,0.0 +2856960.0,2858400.0,1440.0,0,0.0,0.0 +2858400.0,2859840.0,1440.0,0,0.0,0.0 +2859840.0,2861280.0,1440.0,0,0.0,0.0 +2861280.0,2862720.0,1440.0,0,0.0,0.0 +2862720.0,2864160.0,1440.0,0,0.0,0.0 +2864160.0,2865600.0,1440.0,3,1.7160606112607897e-06,0.00017160606112607898 +2865600.0,2867040.0,1440.0,0,0.0,0.0 +2867040.0,2868480.0,1440.0,0,0.0,0.0 +2868480.0,2869920.0,1440.0,0,0.0,0.0 +2869920.0,2871360.0,1440.0,0,0.0,0.0 +2871360.0,2872800.0,1440.0,0,0.0,0.0 +2872800.0,2874240.0,1440.0,0,0.0,0.0 +2874240.0,2875680.0,1440.0,0,0.0,0.0 +2875680.0,2877120.0,1440.0,0,0.0,0.0 +2877120.0,2878560.0,1440.0,0,0.0,0.0 +2878560.0,2880000.0,1440.0,0,0.0,0.0 +2880000.0,2881440.0,1440.0,0,0.0,0.0 +2881440.0,2882880.0,1440.0,0,0.0,0.0 +2882880.0,2884320.0,1440.0,0,0.0,0.0 +2884320.0,2885760.0,1440.0,0,0.0,0.0 +2885760.0,2887200.0,1440.0,0,0.0,0.0 +2887200.0,2888640.0,1440.0,0,0.0,0.0 +2888640.0,2890080.0,1440.0,0,0.0,0.0 +2890080.0,2891520.0,1440.0,0,0.0,0.0 +2891520.0,2892960.0,1440.0,0,0.0,0.0 +2892960.0,2894400.0,1440.0,0,0.0,0.0 +2894400.0,2895840.0,1440.0,0,0.0,0.0 +2895840.0,2897280.0,1440.0,0,0.0,0.0 +2897280.0,2898720.0,1440.0,0,0.0,0.0 +2898720.0,2900160.0,1440.0,0,0.0,0.0 +2900160.0,2901600.0,1440.0,0,0.0,0.0 +2901600.0,2903040.0,1440.0,0,0.0,0.0 +2903040.0,2904480.0,1440.0,3,1.7160606112607897e-06,0.00017160606112607898 +2904480.0,2905920.0,1440.0,0,0.0,0.0 +2905920.0,2907360.0,1440.0,0,0.0,0.0 +2907360.0,2908800.0,1440.0,0,0.0,0.0 +2908800.0,2910240.0,1440.0,0,0.0,0.0 +2910240.0,2911680.0,1440.0,0,0.0,0.0 +2911680.0,2913120.0,1440.0,0,0.0,0.0 +2913120.0,2914560.0,1440.0,8,4.576161630028772e-06,0.00045761616300287725 diff --git a/Results/day_student_attempt_distribution_counts_00173df52c65a9c13b45978c5a56ea2db67b17deded674486f7af64f7c5fd9ac.csv b/Results/day_student_attempt_distribution_counts_00173df52c65a9c13b45978c5a56ea2db67b17deded674486f7af64f7c5fd9ac.csv new file mode 100644 index 0000000000000000000000000000000000000000..7afab2851008fee542ba6d5d1c0db6b4399302d3 --- /dev/null +++ b/Results/day_student_attempt_distribution_counts_00173df52c65a9c13b45978c5a56ea2db67b17deded674486f7af64f7c5fd9ac.csv @@ -0,0 +1,262 @@ +bin_left_min,bin_right_min,bin_width_min,attempt_count,probability,percentage +0.0,1440.0,1440.0,1,0.002617801047120419,0.2617801047120419 +1440.0,2880.0,1440.0,2,0.005235602094240838,0.5235602094240838 +2880.0,4320.0,1440.0,1,0.002617801047120419,0.2617801047120419 +4320.0,5760.0,1440.0,0,0.0,0.0 +5760.0,7200.0,1440.0,0,0.0,0.0 +7200.0,8640.0,1440.0,0,0.0,0.0 +8640.0,10080.0,1440.0,0,0.0,0.0 +10080.0,11520.0,1440.0,0,0.0,0.0 +11520.0,12960.0,1440.0,3,0.007853403141361256,0.7853403141361256 +12960.0,14400.0,1440.0,0,0.0,0.0 +14400.0,15840.0,1440.0,0,0.0,0.0 +15840.0,17280.0,1440.0,6,0.015706806282722512,1.5706806282722512 +17280.0,18720.0,1440.0,0,0.0,0.0 +18720.0,20160.0,1440.0,0,0.0,0.0 +20160.0,21600.0,1440.0,2,0.005235602094240838,0.5235602094240838 +21600.0,23040.0,1440.0,3,0.007853403141361256,0.7853403141361256 +23040.0,24480.0,1440.0,0,0.0,0.0 +24480.0,25920.0,1440.0,0,0.0,0.0 +25920.0,27360.0,1440.0,8,0.020942408376963352,2.094240837696335 +27360.0,28800.0,1440.0,0,0.0,0.0 +28800.0,30240.0,1440.0,0,0.0,0.0 +30240.0,31680.0,1440.0,0,0.0,0.0 +31680.0,33120.0,1440.0,1,0.002617801047120419,0.2617801047120419 +33120.0,34560.0,1440.0,1,0.002617801047120419,0.2617801047120419 +34560.0,36000.0,1440.0,4,0.010471204188481676,1.0471204188481675 +36000.0,37440.0,1440.0,1,0.002617801047120419,0.2617801047120419 +37440.0,38880.0,1440.0,0,0.0,0.0 +38880.0,40320.0,1440.0,0,0.0,0.0 +40320.0,41760.0,1440.0,0,0.0,0.0 +41760.0,43200.0,1440.0,0,0.0,0.0 +43200.0,44640.0,1440.0,1,0.002617801047120419,0.2617801047120419 +44640.0,46080.0,1440.0,0,0.0,0.0 +46080.0,47520.0,1440.0,0,0.0,0.0 +47520.0,48960.0,1440.0,0,0.0,0.0 +48960.0,50400.0,1440.0,0,0.0,0.0 +50400.0,51840.0,1440.0,9,0.02356020942408377,2.356020942408377 +51840.0,53280.0,1440.0,0,0.0,0.0 +53280.0,54720.0,1440.0,0,0.0,0.0 +54720.0,56160.0,1440.0,0,0.0,0.0 +56160.0,57600.0,1440.0,0,0.0,0.0 +57600.0,59040.0,1440.0,0,0.0,0.0 +59040.0,60480.0,1440.0,0,0.0,0.0 +60480.0,61920.0,1440.0,6,0.015706806282722512,1.5706806282722512 +61920.0,63360.0,1440.0,3,0.007853403141361256,0.7853403141361256 +63360.0,64800.0,1440.0,8,0.020942408376963352,2.094240837696335 +64800.0,66240.0,1440.0,8,0.020942408376963352,2.094240837696335 +66240.0,67680.0,1440.0,0,0.0,0.0 +67680.0,69120.0,1440.0,0,0.0,0.0 +69120.0,70560.0,1440.0,2,0.005235602094240838,0.5235602094240838 +70560.0,72000.0,1440.0,12,0.031413612565445025,3.1413612565445024 +72000.0,73440.0,1440.0,9,0.02356020942408377,2.356020942408377 +73440.0,74880.0,1440.0,3,0.007853403141361256,0.7853403141361256 +74880.0,76320.0,1440.0,6,0.015706806282722512,1.5706806282722512 +76320.0,77760.0,1440.0,0,0.0,0.0 +77760.0,79200.0,1440.0,0,0.0,0.0 +79200.0,80640.0,1440.0,0,0.0,0.0 +80640.0,82080.0,1440.0,0,0.0,0.0 +82080.0,83520.0,1440.0,0,0.0,0.0 +83520.0,84960.0,1440.0,0,0.0,0.0 +84960.0,86400.0,1440.0,0,0.0,0.0 +86400.0,87840.0,1440.0,0,0.0,0.0 +87840.0,89280.0,1440.0,0,0.0,0.0 +89280.0,90720.0,1440.0,0,0.0,0.0 +90720.0,92160.0,1440.0,0,0.0,0.0 +92160.0,93600.0,1440.0,1,0.002617801047120419,0.2617801047120419 +93600.0,95040.0,1440.0,1,0.002617801047120419,0.2617801047120419 +95040.0,96480.0,1440.0,0,0.0,0.0 +96480.0,97920.0,1440.0,1,0.002617801047120419,0.2617801047120419 +97920.0,99360.0,1440.0,0,0.0,0.0 +99360.0,100800.0,1440.0,0,0.0,0.0 +100800.0,102240.0,1440.0,0,0.0,0.0 +102240.0,103680.0,1440.0,3,0.007853403141361256,0.7853403141361256 +103680.0,105120.0,1440.0,8,0.020942408376963352,2.094240837696335 +105120.0,106560.0,1440.0,0,0.0,0.0 +106560.0,108000.0,1440.0,0,0.0,0.0 +108000.0,109440.0,1440.0,0,0.0,0.0 +109440.0,110880.0,1440.0,3,0.007853403141361256,0.7853403141361256 +110880.0,112320.0,1440.0,0,0.0,0.0 +112320.0,113760.0,1440.0,0,0.0,0.0 +113760.0,115200.0,1440.0,0,0.0,0.0 +115200.0,116640.0,1440.0,7,0.01832460732984293,1.832460732984293 +116640.0,118080.0,1440.0,1,0.002617801047120419,0.2617801047120419 +118080.0,119520.0,1440.0,0,0.0,0.0 +119520.0,120960.0,1440.0,0,0.0,0.0 +120960.0,122400.0,1440.0,0,0.0,0.0 +122400.0,123840.0,1440.0,0,0.0,0.0 +123840.0,125280.0,1440.0,8,0.020942408376963352,2.094240837696335 +125280.0,126720.0,1440.0,3,0.007853403141361256,0.7853403141361256 +126720.0,128160.0,1440.0,0,0.0,0.0 +128160.0,129600.0,1440.0,0,0.0,0.0 +129600.0,131040.0,1440.0,10,0.02617801047120419,2.6178010471204187 +131040.0,132480.0,1440.0,3,0.007853403141361256,0.7853403141361256 +132480.0,133920.0,1440.0,14,0.03664921465968586,3.664921465968586 +133920.0,135360.0,1440.0,0,0.0,0.0 +135360.0,136800.0,1440.0,1,0.002617801047120419,0.2617801047120419 +136800.0,138240.0,1440.0,1,0.002617801047120419,0.2617801047120419 +138240.0,139680.0,1440.0,0,0.0,0.0 +139680.0,141120.0,1440.0,1,0.002617801047120419,0.2617801047120419 +141120.0,142560.0,1440.0,0,0.0,0.0 +142560.0,144000.0,1440.0,0,0.0,0.0 +144000.0,145440.0,1440.0,1,0.002617801047120419,0.2617801047120419 +145440.0,146880.0,1440.0,0,0.0,0.0 +146880.0,148320.0,1440.0,0,0.0,0.0 +148320.0,149760.0,1440.0,0,0.0,0.0 +149760.0,151200.0,1440.0,0,0.0,0.0 +151200.0,152640.0,1440.0,0,0.0,0.0 +152640.0,154080.0,1440.0,0,0.0,0.0 +154080.0,155520.0,1440.0,0,0.0,0.0 +155520.0,156960.0,1440.0,0,0.0,0.0 +156960.0,158400.0,1440.0,0,0.0,0.0 +158400.0,159840.0,1440.0,0,0.0,0.0 +159840.0,161280.0,1440.0,0,0.0,0.0 +161280.0,162720.0,1440.0,0,0.0,0.0 +162720.0,164160.0,1440.0,7,0.01832460732984293,1.832460732984293 +164160.0,165600.0,1440.0,3,0.007853403141361256,0.7853403141361256 +165600.0,167040.0,1440.0,7,0.01832460732984293,1.832460732984293 +167040.0,168480.0,1440.0,0,0.0,0.0 +168480.0,169920.0,1440.0,0,0.0,0.0 +169920.0,171360.0,1440.0,1,0.002617801047120419,0.2617801047120419 +171360.0,172800.0,1440.0,5,0.013089005235602094,1.3089005235602094 +172800.0,174240.0,1440.0,7,0.01832460732984293,1.832460732984293 +174240.0,175680.0,1440.0,3,0.007853403141361256,0.7853403141361256 +175680.0,177120.0,1440.0,0,0.0,0.0 +177120.0,178560.0,1440.0,0,0.0,0.0 +178560.0,180000.0,1440.0,0,0.0,0.0 +180000.0,181440.0,1440.0,2,0.005235602094240838,0.5235602094240838 +181440.0,182880.0,1440.0,9,0.02356020942408377,2.356020942408377 +182880.0,184320.0,1440.0,2,0.005235602094240838,0.5235602094240838 +184320.0,185760.0,1440.0,0,0.0,0.0 +185760.0,187200.0,1440.0,0,0.0,0.0 +187200.0,188640.0,1440.0,0,0.0,0.0 +188640.0,190080.0,1440.0,0,0.0,0.0 +190080.0,191520.0,1440.0,0,0.0,0.0 +191520.0,192960.0,1440.0,0,0.0,0.0 +192960.0,194400.0,1440.0,0,0.0,0.0 +194400.0,195840.0,1440.0,0,0.0,0.0 +195840.0,197280.0,1440.0,0,0.0,0.0 +197280.0,198720.0,1440.0,0,0.0,0.0 +198720.0,200160.0,1440.0,0,0.0,0.0 +200160.0,201600.0,1440.0,0,0.0,0.0 +201600.0,203040.0,1440.0,0,0.0,0.0 +203040.0,204480.0,1440.0,0,0.0,0.0 +204480.0,205920.0,1440.0,0,0.0,0.0 +205920.0,207360.0,1440.0,0,0.0,0.0 +207360.0,208800.0,1440.0,0,0.0,0.0 +208800.0,210240.0,1440.0,0,0.0,0.0 +210240.0,211680.0,1440.0,0,0.0,0.0 +211680.0,213120.0,1440.0,0,0.0,0.0 +213120.0,214560.0,1440.0,2,0.005235602094240838,0.5235602094240838 +214560.0,216000.0,1440.0,1,0.002617801047120419,0.2617801047120419 +216000.0,217440.0,1440.0,8,0.020942408376963352,2.094240837696335 +217440.0,218880.0,1440.0,6,0.015706806282722512,1.5706806282722512 +218880.0,220320.0,1440.0,0,0.0,0.0 +220320.0,221760.0,1440.0,2,0.005235602094240838,0.5235602094240838 +221760.0,223200.0,1440.0,3,0.007853403141361256,0.7853403141361256 +223200.0,224640.0,1440.0,3,0.007853403141361256,0.7853403141361256 +224640.0,226080.0,1440.0,0,0.0,0.0 +226080.0,227520.0,1440.0,1,0.002617801047120419,0.2617801047120419 +227520.0,228960.0,1440.0,0,0.0,0.0 +228960.0,230400.0,1440.0,0,0.0,0.0 +230400.0,231840.0,1440.0,0,0.0,0.0 +231840.0,233280.0,1440.0,0,0.0,0.0 +233280.0,234720.0,1440.0,6,0.015706806282722512,1.5706806282722512 +234720.0,236160.0,1440.0,8,0.020942408376963352,2.094240837696335 +236160.0,237600.0,1440.0,1,0.002617801047120419,0.2617801047120419 +237600.0,239040.0,1440.0,4,0.010471204188481676,1.0471204188481675 +239040.0,240480.0,1440.0,0,0.0,0.0 +240480.0,241920.0,1440.0,0,0.0,0.0 +241920.0,243360.0,1440.0,2,0.005235602094240838,0.5235602094240838 +243360.0,244800.0,1440.0,3,0.007853403141361256,0.7853403141361256 +244800.0,246240.0,1440.0,4,0.010471204188481676,1.0471204188481675 +246240.0,247680.0,1440.0,2,0.005235602094240838,0.5235602094240838 +247680.0,249120.0,1440.0,1,0.002617801047120419,0.2617801047120419 +249120.0,250560.0,1440.0,0,0.0,0.0 +250560.0,252000.0,1440.0,1,0.002617801047120419,0.2617801047120419 +252000.0,253440.0,1440.0,0,0.0,0.0 +253440.0,254880.0,1440.0,0,0.0,0.0 +254880.0,256320.0,1440.0,0,0.0,0.0 +256320.0,257760.0,1440.0,4,0.010471204188481676,1.0471204188481675 +257760.0,259200.0,1440.0,4,0.010471204188481676,1.0471204188481675 +259200.0,260640.0,1440.0,0,0.0,0.0 +260640.0,262080.0,1440.0,0,0.0,0.0 +262080.0,263520.0,1440.0,5,0.013089005235602094,1.3089005235602094 +263520.0,264960.0,1440.0,2,0.005235602094240838,0.5235602094240838 +264960.0,266400.0,1440.0,2,0.005235602094240838,0.5235602094240838 +266400.0,267840.0,1440.0,0,0.0,0.0 +267840.0,269280.0,1440.0,0,0.0,0.0 +269280.0,270720.0,1440.0,0,0.0,0.0 +270720.0,272160.0,1440.0,6,0.015706806282722512,1.5706806282722512 +272160.0,273600.0,1440.0,0,0.0,0.0 +273600.0,275040.0,1440.0,4,0.010471204188481676,1.0471204188481675 +275040.0,276480.0,1440.0,0,0.0,0.0 +276480.0,277920.0,1440.0,0,0.0,0.0 +277920.0,279360.0,1440.0,0,0.0,0.0 +279360.0,280800.0,1440.0,0,0.0,0.0 +280800.0,282240.0,1440.0,0,0.0,0.0 +282240.0,283680.0,1440.0,4,0.010471204188481676,1.0471204188481675 +283680.0,285120.0,1440.0,0,0.0,0.0 +285120.0,286560.0,1440.0,0,0.0,0.0 +286560.0,288000.0,1440.0,7,0.01832460732984293,1.832460732984293 +288000.0,289440.0,1440.0,0,0.0,0.0 +289440.0,290880.0,1440.0,0,0.0,0.0 +290880.0,292320.0,1440.0,0,0.0,0.0 +292320.0,293760.0,1440.0,5,0.013089005235602094,1.3089005235602094 +293760.0,295200.0,1440.0,1,0.002617801047120419,0.2617801047120419 +295200.0,296640.0,1440.0,6,0.015706806282722512,1.5706806282722512 +296640.0,298080.0,1440.0,6,0.015706806282722512,1.5706806282722512 +298080.0,299520.0,1440.0,5,0.013089005235602094,1.3089005235602094 +299520.0,300960.0,1440.0,0,0.0,0.0 +300960.0,302400.0,1440.0,0,0.0,0.0 +302400.0,303840.0,1440.0,6,0.015706806282722512,1.5706806282722512 +303840.0,305280.0,1440.0,17,0.04450261780104712,4.450261780104712 +305280.0,306720.0,1440.0,0,0.0,0.0 +306720.0,308160.0,1440.0,8,0.020942408376963352,2.094240837696335 +308160.0,309600.0,1440.0,0,0.0,0.0 +309600.0,311040.0,1440.0,0,0.0,0.0 +311040.0,312480.0,1440.0,0,0.0,0.0 +312480.0,313920.0,1440.0,0,0.0,0.0 +313920.0,315360.0,1440.0,0,0.0,0.0 +315360.0,316800.0,1440.0,0,0.0,0.0 +316800.0,318240.0,1440.0,0,0.0,0.0 +318240.0,319680.0,1440.0,0,0.0,0.0 +319680.0,321120.0,1440.0,0,0.0,0.0 +321120.0,322560.0,1440.0,0,0.0,0.0 +322560.0,324000.0,1440.0,1,0.002617801047120419,0.2617801047120419 +324000.0,325440.0,1440.0,3,0.007853403141361256,0.7853403141361256 +325440.0,326880.0,1440.0,0,0.0,0.0 +326880.0,328320.0,1440.0,4,0.010471204188481676,1.0471204188481675 +328320.0,329760.0,1440.0,1,0.002617801047120419,0.2617801047120419 +329760.0,331200.0,1440.0,0,0.0,0.0 +331200.0,332640.0,1440.0,0,0.0,0.0 +332640.0,334080.0,1440.0,0,0.0,0.0 +334080.0,335520.0,1440.0,0,0.0,0.0 +335520.0,336960.0,1440.0,0,0.0,0.0 +336960.0,338400.0,1440.0,0,0.0,0.0 +338400.0,339840.0,1440.0,0,0.0,0.0 +339840.0,341280.0,1440.0,0,0.0,0.0 +341280.0,342720.0,1440.0,0,0.0,0.0 +342720.0,344160.0,1440.0,0,0.0,0.0 +344160.0,345600.0,1440.0,0,0.0,0.0 +345600.0,347040.0,1440.0,0,0.0,0.0 +347040.0,348480.0,1440.0,0,0.0,0.0 +348480.0,349920.0,1440.0,0,0.0,0.0 +349920.0,351360.0,1440.0,0,0.0,0.0 +351360.0,352800.0,1440.0,0,0.0,0.0 +352800.0,354240.0,1440.0,0,0.0,0.0 +354240.0,355680.0,1440.0,0,0.0,0.0 +355680.0,357120.0,1440.0,0,0.0,0.0 +357120.0,358560.0,1440.0,5,0.013089005235602094,1.3089005235602094 +358560.0,360000.0,1440.0,0,0.0,0.0 +360000.0,361440.0,1440.0,0,0.0,0.0 +361440.0,362880.0,1440.0,0,0.0,0.0 +362880.0,364320.0,1440.0,0,0.0,0.0 +364320.0,365760.0,1440.0,0,0.0,0.0 +365760.0,367200.0,1440.0,0,0.0,0.0 +367200.0,368640.0,1440.0,1,0.002617801047120419,0.2617801047120419 +368640.0,370080.0,1440.0,0,0.0,0.0 +370080.0,371520.0,1440.0,0,0.0,0.0 +371520.0,372960.0,1440.0,1,0.002617801047120419,0.2617801047120419 +372960.0,374400.0,1440.0,1,0.002617801047120419,0.2617801047120419 +374400.0,375840.0,1440.0,2,0.005235602094240838,0.5235602094240838 diff --git a/Results/day_student_attempt_distribution_counts_001849d40d6bf1e2ed5826e4420e291e54655a2b6b77a9ab701faaeb4e899abe.csv b/Results/day_student_attempt_distribution_counts_001849d40d6bf1e2ed5826e4420e291e54655a2b6b77a9ab701faaeb4e899abe.csv new file mode 100644 index 0000000000000000000000000000000000000000..681d018abc60c2452313d21a9d73c478c14fa87f --- /dev/null +++ b/Results/day_student_attempt_distribution_counts_001849d40d6bf1e2ed5826e4420e291e54655a2b6b77a9ab701faaeb4e899abe.csv @@ -0,0 +1,256 @@ +bin_left_min,bin_right_min,bin_width_min,attempt_count,probability,percentage +0.0,1440.0,1440.0,4,0.010958904109589041,1.095890410958904 +1440.0,2880.0,1440.0,4,0.010958904109589041,1.095890410958904 +2880.0,4320.0,1440.0,1,0.0027397260273972603,0.273972602739726 +4320.0,5760.0,1440.0,2,0.005479452054794521,0.547945205479452 +5760.0,7200.0,1440.0,0,0.0,0.0 +7200.0,8640.0,1440.0,0,0.0,0.0 +8640.0,10080.0,1440.0,4,0.010958904109589041,1.095890410958904 +10080.0,11520.0,1440.0,5,0.0136986301369863,1.36986301369863 +11520.0,12960.0,1440.0,1,0.0027397260273972603,0.273972602739726 +12960.0,14400.0,1440.0,5,0.0136986301369863,1.36986301369863 +14400.0,15840.0,1440.0,2,0.005479452054794521,0.547945205479452 +15840.0,17280.0,1440.0,0,0.0,0.0 +17280.0,18720.0,1440.0,0,0.0,0.0 +18720.0,20160.0,1440.0,6,0.01643835616438356,1.643835616438356 +20160.0,21600.0,1440.0,3,0.00821917808219178,0.821917808219178 +21600.0,23040.0,1440.0,2,0.005479452054794521,0.547945205479452 +23040.0,24480.0,1440.0,2,0.005479452054794521,0.547945205479452 +24480.0,25920.0,1440.0,1,0.0027397260273972603,0.273972602739726 +25920.0,27360.0,1440.0,0,0.0,0.0 +27360.0,28800.0,1440.0,0,0.0,0.0 +28800.0,30240.0,1440.0,5,0.0136986301369863,1.36986301369863 +30240.0,31680.0,1440.0,0,0.0,0.0 +31680.0,33120.0,1440.0,0,0.0,0.0 +33120.0,34560.0,1440.0,1,0.0027397260273972603,0.273972602739726 +34560.0,36000.0,1440.0,16,0.043835616438356165,4.383561643835616 +36000.0,37440.0,1440.0,0,0.0,0.0 +37440.0,38880.0,1440.0,0,0.0,0.0 +38880.0,40320.0,1440.0,1,0.0027397260273972603,0.273972602739726 +40320.0,41760.0,1440.0,0,0.0,0.0 +41760.0,43200.0,1440.0,2,0.005479452054794521,0.547945205479452 +43200.0,44640.0,1440.0,0,0.0,0.0 +44640.0,46080.0,1440.0,1,0.0027397260273972603,0.273972602739726 +46080.0,47520.0,1440.0,0,0.0,0.0 +47520.0,48960.0,1440.0,0,0.0,0.0 +48960.0,50400.0,1440.0,4,0.010958904109589041,1.095890410958904 +50400.0,51840.0,1440.0,1,0.0027397260273972603,0.273972602739726 +51840.0,53280.0,1440.0,2,0.005479452054794521,0.547945205479452 +53280.0,54720.0,1440.0,2,0.005479452054794521,0.547945205479452 +54720.0,56160.0,1440.0,2,0.005479452054794521,0.547945205479452 +56160.0,57600.0,1440.0,0,0.0,0.0 +57600.0,59040.0,1440.0,0,0.0,0.0 +59040.0,60480.0,1440.0,0,0.0,0.0 +60480.0,61920.0,1440.0,2,0.005479452054794521,0.547945205479452 +61920.0,63360.0,1440.0,0,0.0,0.0 +63360.0,64800.0,1440.0,0,0.0,0.0 +64800.0,66240.0,1440.0,0,0.0,0.0 +66240.0,67680.0,1440.0,0,0.0,0.0 +67680.0,69120.0,1440.0,0,0.0,0.0 +69120.0,70560.0,1440.0,2,0.005479452054794521,0.547945205479452 +70560.0,72000.0,1440.0,3,0.00821917808219178,0.821917808219178 +72000.0,73440.0,1440.0,3,0.00821917808219178,0.821917808219178 +73440.0,74880.0,1440.0,7,0.019178082191780823,1.9178082191780823 +74880.0,76320.0,1440.0,3,0.00821917808219178,0.821917808219178 +76320.0,77760.0,1440.0,0,0.0,0.0 +77760.0,79200.0,1440.0,0,0.0,0.0 +79200.0,80640.0,1440.0,2,0.005479452054794521,0.547945205479452 +80640.0,82080.0,1440.0,8,0.021917808219178082,2.191780821917808 +82080.0,83520.0,1440.0,2,0.005479452054794521,0.547945205479452 +83520.0,84960.0,1440.0,4,0.010958904109589041,1.095890410958904 +84960.0,86400.0,1440.0,0,0.0,0.0 +86400.0,87840.0,1440.0,0,0.0,0.0 +87840.0,89280.0,1440.0,0,0.0,0.0 +89280.0,90720.0,1440.0,4,0.010958904109589041,1.095890410958904 +90720.0,92160.0,1440.0,0,0.0,0.0 +92160.0,93600.0,1440.0,6,0.01643835616438356,1.643835616438356 +93600.0,95040.0,1440.0,0,0.0,0.0 +95040.0,96480.0,1440.0,4,0.010958904109589041,1.095890410958904 +96480.0,97920.0,1440.0,0,0.0,0.0 +97920.0,99360.0,1440.0,0,0.0,0.0 +99360.0,100800.0,1440.0,0,0.0,0.0 +100800.0,102240.0,1440.0,3,0.00821917808219178,0.821917808219178 +102240.0,103680.0,1440.0,6,0.01643835616438356,1.643835616438356 +103680.0,105120.0,1440.0,3,0.00821917808219178,0.821917808219178 +105120.0,106560.0,1440.0,1,0.0027397260273972603,0.273972602739726 +106560.0,108000.0,1440.0,0,0.0,0.0 +108000.0,109440.0,1440.0,0,0.0,0.0 +109440.0,110880.0,1440.0,0,0.0,0.0 +110880.0,112320.0,1440.0,0,0.0,0.0 +112320.0,113760.0,1440.0,0,0.0,0.0 +113760.0,115200.0,1440.0,0,0.0,0.0 +115200.0,116640.0,1440.0,0,0.0,0.0 +116640.0,118080.0,1440.0,0,0.0,0.0 +118080.0,119520.0,1440.0,0,0.0,0.0 +119520.0,120960.0,1440.0,1,0.0027397260273972603,0.273972602739726 +120960.0,122400.0,1440.0,3,0.00821917808219178,0.821917808219178 +122400.0,123840.0,1440.0,2,0.005479452054794521,0.547945205479452 +123840.0,125280.0,1440.0,5,0.0136986301369863,1.36986301369863 +125280.0,126720.0,1440.0,3,0.00821917808219178,0.821917808219178 +126720.0,128160.0,1440.0,0,0.0,0.0 +128160.0,129600.0,1440.0,0,0.0,0.0 +129600.0,131040.0,1440.0,8,0.021917808219178082,2.191780821917808 +131040.0,132480.0,1440.0,5,0.0136986301369863,1.36986301369863 +132480.0,133920.0,1440.0,4,0.010958904109589041,1.095890410958904 +133920.0,135360.0,1440.0,6,0.01643835616438356,1.643835616438356 +135360.0,136800.0,1440.0,4,0.010958904109589041,1.095890410958904 +136800.0,138240.0,1440.0,0,0.0,0.0 +138240.0,139680.0,1440.0,0,0.0,0.0 +139680.0,141120.0,1440.0,0,0.0,0.0 +141120.0,142560.0,1440.0,0,0.0,0.0 +142560.0,144000.0,1440.0,0,0.0,0.0 +144000.0,145440.0,1440.0,0,0.0,0.0 +145440.0,146880.0,1440.0,0,0.0,0.0 +146880.0,148320.0,1440.0,0,0.0,0.0 +148320.0,149760.0,1440.0,0,0.0,0.0 +149760.0,151200.0,1440.0,0,0.0,0.0 +151200.0,152640.0,1440.0,0,0.0,0.0 +152640.0,154080.0,1440.0,0,0.0,0.0 +154080.0,155520.0,1440.0,0,0.0,0.0 +155520.0,156960.0,1440.0,0,0.0,0.0 +156960.0,158400.0,1440.0,0,0.0,0.0 +158400.0,159840.0,1440.0,0,0.0,0.0 +159840.0,161280.0,1440.0,0,0.0,0.0 +161280.0,162720.0,1440.0,0,0.0,0.0 +162720.0,164160.0,1440.0,0,0.0,0.0 +164160.0,165600.0,1440.0,0,0.0,0.0 +165600.0,167040.0,1440.0,0,0.0,0.0 +167040.0,168480.0,1440.0,0,0.0,0.0 +168480.0,169920.0,1440.0,0,0.0,0.0 +169920.0,171360.0,1440.0,0,0.0,0.0 +171360.0,172800.0,1440.0,0,0.0,0.0 +172800.0,174240.0,1440.0,0,0.0,0.0 +174240.0,175680.0,1440.0,0,0.0,0.0 +175680.0,177120.0,1440.0,0,0.0,0.0 +177120.0,178560.0,1440.0,0,0.0,0.0 +178560.0,180000.0,1440.0,0,0.0,0.0 +180000.0,181440.0,1440.0,3,0.00821917808219178,0.821917808219178 +181440.0,182880.0,1440.0,7,0.019178082191780823,1.9178082191780823 +182880.0,184320.0,1440.0,0,0.0,0.0 +184320.0,185760.0,1440.0,8,0.021917808219178082,2.191780821917808 +185760.0,187200.0,1440.0,5,0.0136986301369863,1.36986301369863 +187200.0,188640.0,1440.0,0,0.0,0.0 +188640.0,190080.0,1440.0,0,0.0,0.0 +190080.0,191520.0,1440.0,0,0.0,0.0 +191520.0,192960.0,1440.0,3,0.00821917808219178,0.821917808219178 +192960.0,194400.0,1440.0,0,0.0,0.0 +194400.0,195840.0,1440.0,2,0.005479452054794521,0.547945205479452 +195840.0,197280.0,1440.0,0,0.0,0.0 +197280.0,198720.0,1440.0,0,0.0,0.0 +198720.0,200160.0,1440.0,0,0.0,0.0 +200160.0,201600.0,1440.0,3,0.00821917808219178,0.821917808219178 +201600.0,203040.0,1440.0,1,0.0027397260273972603,0.273972602739726 +203040.0,204480.0,1440.0,4,0.010958904109589041,1.095890410958904 +204480.0,205920.0,1440.0,8,0.021917808219178082,2.191780821917808 +205920.0,207360.0,1440.0,0,0.0,0.0 +207360.0,208800.0,1440.0,0,0.0,0.0 +208800.0,210240.0,1440.0,0,0.0,0.0 +210240.0,211680.0,1440.0,2,0.005479452054794521,0.547945205479452 +211680.0,213120.0,1440.0,2,0.005479452054794521,0.547945205479452 +213120.0,214560.0,1440.0,0,0.0,0.0 +214560.0,216000.0,1440.0,5,0.0136986301369863,1.36986301369863 +216000.0,217440.0,1440.0,3,0.00821917808219178,0.821917808219178 +217440.0,218880.0,1440.0,0,0.0,0.0 +218880.0,220320.0,1440.0,0,0.0,0.0 +220320.0,221760.0,1440.0,4,0.010958904109589041,1.095890410958904 +221760.0,223200.0,1440.0,5,0.0136986301369863,1.36986301369863 +223200.0,224640.0,1440.0,6,0.01643835616438356,1.643835616438356 +224640.0,226080.0,1440.0,0,0.0,0.0 +226080.0,227520.0,1440.0,0,0.0,0.0 +227520.0,228960.0,1440.0,0,0.0,0.0 +228960.0,230400.0,1440.0,0,0.0,0.0 +230400.0,231840.0,1440.0,0,0.0,0.0 +231840.0,233280.0,1440.0,4,0.010958904109589041,1.095890410958904 +233280.0,234720.0,1440.0,0,0.0,0.0 +234720.0,236160.0,1440.0,1,0.0027397260273972603,0.273972602739726 +236160.0,237600.0,1440.0,0,0.0,0.0 +237600.0,239040.0,1440.0,0,0.0,0.0 +239040.0,240480.0,1440.0,0,0.0,0.0 +240480.0,241920.0,1440.0,0,0.0,0.0 +241920.0,243360.0,1440.0,0,0.0,0.0 +243360.0,244800.0,1440.0,6,0.01643835616438356,1.643835616438356 +244800.0,246240.0,1440.0,5,0.0136986301369863,1.36986301369863 +246240.0,247680.0,1440.0,0,0.0,0.0 +247680.0,249120.0,1440.0,0,0.0,0.0 +249120.0,250560.0,1440.0,0,0.0,0.0 +250560.0,252000.0,1440.0,0,0.0,0.0 +252000.0,253440.0,1440.0,0,0.0,0.0 +253440.0,254880.0,1440.0,0,0.0,0.0 +254880.0,256320.0,1440.0,0,0.0,0.0 +256320.0,257760.0,1440.0,3,0.00821917808219178,0.821917808219178 +257760.0,259200.0,1440.0,0,0.0,0.0 +259200.0,260640.0,1440.0,0,0.0,0.0 +260640.0,262080.0,1440.0,2,0.005479452054794521,0.547945205479452 +262080.0,263520.0,1440.0,0,0.0,0.0 +263520.0,264960.0,1440.0,0,0.0,0.0 +264960.0,266400.0,1440.0,2,0.005479452054794521,0.547945205479452 +266400.0,267840.0,1440.0,6,0.01643835616438356,1.643835616438356 +267840.0,269280.0,1440.0,0,0.0,0.0 +269280.0,270720.0,1440.0,0,0.0,0.0 +270720.0,272160.0,1440.0,4,0.010958904109589041,1.095890410958904 +272160.0,273600.0,1440.0,0,0.0,0.0 +273600.0,275040.0,1440.0,4,0.010958904109589041,1.095890410958904 +275040.0,276480.0,1440.0,5,0.0136986301369863,1.36986301369863 +276480.0,277920.0,1440.0,0,0.0,0.0 +277920.0,279360.0,1440.0,0,0.0,0.0 +279360.0,280800.0,1440.0,0,0.0,0.0 +280800.0,282240.0,1440.0,0,0.0,0.0 +282240.0,283680.0,1440.0,0,0.0,0.0 +283680.0,285120.0,1440.0,0,0.0,0.0 +285120.0,286560.0,1440.0,0,0.0,0.0 +286560.0,288000.0,1440.0,0,0.0,0.0 +288000.0,289440.0,1440.0,0,0.0,0.0 +289440.0,290880.0,1440.0,0,0.0,0.0 +290880.0,292320.0,1440.0,0,0.0,0.0 +292320.0,293760.0,1440.0,1,0.0027397260273972603,0.273972602739726 +293760.0,295200.0,1440.0,0,0.0,0.0 +295200.0,296640.0,1440.0,0,0.0,0.0 +296640.0,298080.0,1440.0,0,0.0,0.0 +298080.0,299520.0,1440.0,0,0.0,0.0 +299520.0,300960.0,1440.0,0,0.0,0.0 +300960.0,302400.0,1440.0,2,0.005479452054794521,0.547945205479452 +302400.0,303840.0,1440.0,2,0.005479452054794521,0.547945205479452 +303840.0,305280.0,1440.0,3,0.00821917808219178,0.821917808219178 +305280.0,306720.0,1440.0,6,0.01643835616438356,1.643835616438356 +306720.0,308160.0,1440.0,4,0.010958904109589041,1.095890410958904 +308160.0,309600.0,1440.0,0,0.0,0.0 +309600.0,311040.0,1440.0,0,0.0,0.0 +311040.0,312480.0,1440.0,4,0.010958904109589041,1.095890410958904 +312480.0,313920.0,1440.0,6,0.01643835616438356,1.643835616438356 +313920.0,315360.0,1440.0,4,0.010958904109589041,1.095890410958904 +315360.0,316800.0,1440.0,0,0.0,0.0 +316800.0,318240.0,1440.0,0,0.0,0.0 +318240.0,319680.0,1440.0,0,0.0,0.0 +319680.0,321120.0,1440.0,0,0.0,0.0 +321120.0,322560.0,1440.0,0,0.0,0.0 +322560.0,324000.0,1440.0,0,0.0,0.0 +324000.0,325440.0,1440.0,0,0.0,0.0 +325440.0,326880.0,1440.0,0,0.0,0.0 +326880.0,328320.0,1440.0,0,0.0,0.0 +328320.0,329760.0,1440.0,0,0.0,0.0 +329760.0,331200.0,1440.0,0,0.0,0.0 +331200.0,332640.0,1440.0,6,0.01643835616438356,1.643835616438356 +332640.0,334080.0,1440.0,4,0.010958904109589041,1.095890410958904 +334080.0,335520.0,1440.0,1,0.0027397260273972603,0.273972602739726 +335520.0,336960.0,1440.0,1,0.0027397260273972603,0.273972602739726 +336960.0,338400.0,1440.0,1,0.0027397260273972603,0.273972602739726 +338400.0,339840.0,1440.0,0,0.0,0.0 +339840.0,341280.0,1440.0,0,0.0,0.0 +341280.0,342720.0,1440.0,1,0.0027397260273972603,0.273972602739726 +342720.0,344160.0,1440.0,0,0.0,0.0 +344160.0,345600.0,1440.0,5,0.0136986301369863,1.36986301369863 +345600.0,347040.0,1440.0,9,0.024657534246575342,2.4657534246575343 +347040.0,348480.0,1440.0,0,0.0,0.0 +348480.0,349920.0,1440.0,0,0.0,0.0 +349920.0,351360.0,1440.0,0,0.0,0.0 +351360.0,352800.0,1440.0,0,0.0,0.0 +352800.0,354240.0,1440.0,0,0.0,0.0 +354240.0,355680.0,1440.0,0,0.0,0.0 +355680.0,357120.0,1440.0,0,0.0,0.0 +357120.0,358560.0,1440.0,0,0.0,0.0 +358560.0,360000.0,1440.0,0,0.0,0.0 +360000.0,361440.0,1440.0,0,0.0,0.0 +361440.0,362880.0,1440.0,3,0.00821917808219178,0.821917808219178 +362880.0,364320.0,1440.0,3,0.00821917808219178,0.821917808219178 +364320.0,365760.0,1440.0,2,0.005479452054794521,0.547945205479452 +365760.0,367200.0,1440.0,1,0.0027397260273972603,0.273972602739726 diff --git a/Results/inference_data_kt_results.zip b/Results/inference_data_kt_results.zip new file mode 100644 index 0000000000000000000000000000000000000000..61700a04a2359fa3040a9aa87f9423d62d4dcfdb --- /dev/null +++ b/Results/inference_data_kt_results.zip @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d5ecb945b29f013a0da9f770266b80724f4f9d92da04e41357b69f309622d0ea +size 2080602643 diff --git a/Results/month_student_attempt_distribution.png b/Results/month_student_attempt_distribution.png new file mode 100644 index 0000000000000000000000000000000000000000..c785a189536d6ac2087cba5c4c64abb2291496b8 --- /dev/null +++ b/Results/month_student_attempt_distribution.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:442e60a126f5498f4ee1e9ba97405427d565e6659d01abefc07f01a1e7a243a5 +size 197234 diff --git a/Results/month_student_attempt_distribution_00173df52c65a9c13b45978c5a56ea2db67b17deded674486f7af64f7c5fd9ac.png b/Results/month_student_attempt_distribution_00173df52c65a9c13b45978c5a56ea2db67b17deded674486f7af64f7c5fd9ac.png new file mode 100644 index 0000000000000000000000000000000000000000..36174cc99f1270946b591f83dfebc3f24ab10c18 --- /dev/null +++ b/Results/month_student_attempt_distribution_00173df52c65a9c13b45978c5a56ea2db67b17deded674486f7af64f7c5fd9ac.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4d58fe3403e553e2ee8ae640314ea937ddf945fbb255c7ab68af92337be250d8 +size 169398 diff --git a/Results/month_student_attempt_distribution_001849d40d6bf1e2ed5826e4420e291e54655a2b6b77a9ab701faaeb4e899abe.png b/Results/month_student_attempt_distribution_001849d40d6bf1e2ed5826e4420e291e54655a2b6b77a9ab701faaeb4e899abe.png new file mode 100644 index 0000000000000000000000000000000000000000..8bf3ff7aa26e59b1309ac619741654a73c79b050 --- /dev/null +++ b/Results/month_student_attempt_distribution_001849d40d6bf1e2ed5826e4420e291e54655a2b6b77a9ab701faaeb4e899abe.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7fe38ee116deae89995201cf4c7ea145c0fa3da0b98b8f6677950478c6c17b48 +size 160411 diff --git a/Results/month_student_attempt_distribution_counts.csv b/Results/month_student_attempt_distribution_counts.csv new file mode 100644 index 0000000000000000000000000000000000000000..91309d42b0c9ffc4c861b895b7564a6ea46ef389 --- /dev/null +++ b/Results/month_student_attempt_distribution_counts.csv @@ -0,0 +1,69 @@ +bin_left_min,bin_right_min,bin_width_min,attempt_count,probability,percentage +0.0,43200.0,43200.0,209461,0.1198159238984321,11.98159238984321 +43200.0,86400.0,43200.0,177545,0.1015593270754323,10.155932707543231 +86400.0,129600.0,43200.0,176130,0.10074991848712096,10.074991848712097 +129600.0,172800.0,43200.0,167676,0.09591405968458806,9.591405968458806 +172800.0,216000.0,43200.0,155115,0.08872891390523913,8.872891390523913 +216000.0,259200.0,43200.0,174585,0.09986614727232165,9.986614727232165 +259200.0,302400.0,43200.0,189411,0.10834691881317249,10.834691881317248 +302400.0,345600.0,43200.0,125970,0.07205738506684056,7.205738506684057 +345600.0,388800.0,43200.0,97012,0.055492824006543914,5.549282400654391 +388800.0,432000.0,43200.0,28306,0.016191603887449304,1.6191603887449304 +432000.0,475200.0,43200.0,18574,0.010624703264519303,1.0624703264519304 +475200.0,518400.0,43200.0,24530,0.014031655598075725,1.4031655598075725 +518400.0,561600.0,43200.0,29081,0.016634919545358343,1.6634919545358344 +561600.0,604800.0,43200.0,29056,0.016620619040264503,1.6620619040264504 +604800.0,648000.0,43200.0,23457,0.013417877919448115,1.3417877919448116 +648000.0,691200.0,43200.0,23176,0.013257140242193355,1.3257140242193355 +691200.0,734400.0,43200.0,21084,0.01206047397594083,1.206047397594083 +734400.0,777600.0,43200.0,21215,0.012135408622632552,1.213540862263255 +777600.0,820800.0,43200.0,20921,0.011967234682728993,1.1967234682728993 +820800.0,864000.0,43200.0,13592,0.007774898609418885,0.7774898609418884 +864000.0,907200.0,43200.0,10107,0.0057814081993376,0.57814081993376 +907200.0,950400.0,43200.0,1273,0.0007281817193783284,0.07281817193783284 +950400.0,993600.0,43200.0,1086,0.0006212139412764059,0.06212139412764059 +993600.0,1036800.0,43200.0,1155,0.000660683335335404,0.0660683335335404 +1036800.0,1080000.0,43200.0,1266,0.0007241775779520533,0.07241775779520533 +1080000.0,1123200.0,43200.0,1494,0.0008545981844078733,0.08545981844078733 +1123200.0,1166400.0,43200.0,810,0.0004633363650404132,0.04633363650404132 +1166400.0,1209600.0,43200.0,730,0.0004175747487401255,0.04175747487401255 +1209600.0,1252800.0,43200.0,362,0.00020707131375880195,0.020707131375880195 +1252800.0,1296000.0,43200.0,1075,0.0006149217190351163,0.06149217190351163 +1296000.0,1339200.0,43200.0,716,0.00040956646588757514,0.040956646588757514 +1339200.0,1382400.0,43200.0,972,0.0005560036380484959,0.05560036380484959 +1382400.0,1425600.0,43200.0,817,0.0004673405064666884,0.04673405064666884 +1425600.0,1468800.0,43200.0,258,0.00014758121256842793,0.014758121256842793 +1468800.0,1512000.0,43200.0,4,2.288080815014386e-06,0.00022880808150143862 +1512000.0,1555200.0,43200.0,5,2.8601010187679828e-06,0.0002860101018767983 +1555200.0,1598400.0,43200.0,0,0.0,0.0 +1598400.0,1641600.0,43200.0,0,0.0,0.0 +1641600.0,1684800.0,43200.0,10,5.7202020375359656e-06,0.0005720202037535966 +1684800.0,1728000.0,43200.0,1,5.720202037535965e-07,5.7202020375359656e-05 +1728000.0,1771200.0,43200.0,0,0.0,0.0 +1771200.0,1814400.0,43200.0,3,1.7160606112607897e-06,0.00017160606112607898 +1814400.0,1857600.0,43200.0,0,0.0,0.0 +1857600.0,1900800.0,43200.0,0,0.0,0.0 +1900800.0,1944000.0,43200.0,0,0.0,0.0 +1944000.0,1987200.0,43200.0,0,0.0,0.0 +1987200.0,2030400.0,43200.0,0,0.0,0.0 +2030400.0,2073600.0,43200.0,0,0.0,0.0 +2073600.0,2116800.0,43200.0,2,1.144040407507193e-06,0.00011440404075071931 +2116800.0,2160000.0,43200.0,3,1.7160606112607897e-06,0.00017160606112607898 +2160000.0,2203200.0,43200.0,5,2.8601010187679828e-06,0.0002860101018767983 +2203200.0,2246400.0,43200.0,11,6.292222241289563e-06,0.0006292222241289563 +2246400.0,2289600.0,43200.0,19,1.0868383871318335e-05,0.0010868383871318334 +2289600.0,2332800.0,43200.0,5,2.8601010187679828e-06,0.0002860101018767983 +2332800.0,2376000.0,43200.0,12,6.864242445043159e-06,0.0006864242445043159 +2376000.0,2419200.0,43200.0,11,6.292222241289563e-06,0.0006292222241289563 +2419200.0,2462400.0,43200.0,9,5.148181833782369e-06,0.000514818183378237 +2462400.0,2505600.0,43200.0,4,2.288080815014386e-06,0.00022880808150143862 +2505600.0,2548800.0,43200.0,0,0.0,0.0 +2548800.0,2592000.0,43200.0,8,4.576161630028772e-06,0.00045761616300287725 +2592000.0,2635200.0,43200.0,18,1.0296363667564739e-05,0.001029636366756474 +2635200.0,2678400.0,43200.0,13,7.436262648796756e-06,0.0007436262648796755 +2678400.0,2721600.0,43200.0,11,6.292222241289563e-06,0.0006292222241289563 +2721600.0,2764800.0,43200.0,0,0.0,0.0 +2764800.0,2808000.0,43200.0,0,0.0,0.0 +2808000.0,2851200.0,43200.0,4,2.288080815014386e-06,0.00022880808150143862 +2851200.0,2894400.0,43200.0,3,1.7160606112607897e-06,0.00017160606112607898 +2894400.0,2937600.0,43200.0,11,6.292222241289563e-06,0.0006292222241289563 diff --git a/Results/month_student_attempt_distribution_counts_00173df52c65a9c13b45978c5a56ea2db67b17deded674486f7af64f7c5fd9ac.csv b/Results/month_student_attempt_distribution_counts_00173df52c65a9c13b45978c5a56ea2db67b17deded674486f7af64f7c5fd9ac.csv new file mode 100644 index 0000000000000000000000000000000000000000..aaa0387a1baa9167bf66d490b6137adecada48d0 --- /dev/null +++ b/Results/month_student_attempt_distribution_counts_00173df52c65a9c13b45978c5a56ea2db67b17deded674486f7af64f7c5fd9ac.csv @@ -0,0 +1,10 @@ +bin_left_min,bin_right_min,bin_width_min,attempt_count,probability,percentage +0.0,43200.0,43200.0,33,0.08638743455497382,8.638743455497382 +43200.0,86400.0,43200.0,67,0.17539267015706805,17.539267015706805 +86400.0,129600.0,43200.0,36,0.09424083769633508,9.424083769633508 +129600.0,172800.0,43200.0,54,0.14136125654450263,14.136125654450263 +172800.0,216000.0,43200.0,26,0.06806282722513089,6.806282722513089 +216000.0,259200.0,43200.0,63,0.1649214659685864,16.49214659685864 +259200.0,302400.0,43200.0,53,0.1387434554973822,13.874345549738221 +302400.0,345600.0,43200.0,40,0.10471204188481675,10.471204188481675 +345600.0,388800.0,43200.0,10,0.02617801047120419,2.6178010471204187 diff --git a/Results/month_student_attempt_distribution_counts_001849d40d6bf1e2ed5826e4420e291e54655a2b6b77a9ab701faaeb4e899abe.csv b/Results/month_student_attempt_distribution_counts_001849d40d6bf1e2ed5826e4420e291e54655a2b6b77a9ab701faaeb4e899abe.csv new file mode 100644 index 0000000000000000000000000000000000000000..03e6007b3c14fb80b0283370949a0dbd268900b1 --- /dev/null +++ b/Results/month_student_attempt_distribution_counts_001849d40d6bf1e2ed5826e4420e291e54655a2b6b77a9ab701faaeb4e899abe.csv @@ -0,0 +1,10 @@ +bin_left_min,bin_right_min,bin_width_min,attempt_count,probability,percentage +0.0,43200.0,43200.0,67,0.18356164383561643,18.356164383561644 +43200.0,86400.0,43200.0,48,0.13150684931506848,13.150684931506849 +86400.0,129600.0,43200.0,41,0.11232876712328767,11.232876712328768 +129600.0,172800.0,43200.0,27,0.07397260273972603,7.397260273972603 +172800.0,216000.0,43200.0,53,0.14520547945205478,14.520547945205479 +216000.0,259200.0,43200.0,37,0.10136986301369863,10.136986301369863 +259200.0,302400.0,43200.0,26,0.07123287671232877,7.123287671232877 +302400.0,345600.0,43200.0,48,0.13150684931506848,13.150684931506849 +345600.0,388800.0,43200.0,18,0.049315068493150684,4.931506849315069 diff --git a/Results/pedagogical_grounding/README.md b/Results/pedagogical_grounding/README.md new file mode 100644 index 0000000000000000000000000000000000000000..6bf4b6fa34c3feacb8015605b3faac75418bd88c --- /dev/null +++ b/Results/pedagogical_grounding/README.md @@ -0,0 +1,275 @@ +# Pedagogical Grounding + +This module provides tools for analyzing educational assessment data and benchmarking LLMs on pedagogical reasoning tasks. + +## Overview + +The pedagogical grounding work consists of two parts: + +1. **Analysis Scripts** - Compute pedagogical metrics from student response data +2. **LLM Benchmark** - Evaluate LLMs on pedagogical reasoning tasks + +--- + +## Part 1: Analysis Scripts + +These scripts analyze the FoundationalKT dataset to compute pedagogical metrics. + +### IRT Parameters (`irt_parameters.py`) + +Computes Item Response Theory parameters for assessment items using Bayesian inference. + +```bash +python pedagogical_grounding/irt_parameters.py \ + --data-dir foundationalktdataset/ \ + --output-dir pedagogical_grounding/output/ +``` + +**Output:** `irt_parameters.json` (~2,548 problems) + +| Field | Description | +|-------|-------------| +| `problem_id` | Unique problem identifier | +| `difficulty_1pl` | 1PL (Rasch) difficulty parameter | +| `difficulty_2pl` | 2PL difficulty parameter (primary metric) | +| `discrimination_2pl` | 2PL discrimination parameter | +| `percent_correct` | Empirical accuracy rate | +| `n_responses` | Number of student responses | + +**Interpretation:** +- `difficulty_2pl`: Higher = harder (range: -1.35 to 0.91) +- `discrimination_2pl`: Higher = better at distinguishing student ability (range: 0.01 to 0.91) + +### Distractor Analysis (`distractor_analysis.py`) + +Analyzes the effectiveness of wrong answer choices in multiple-choice questions. + +```bash +python pedagogical_grounding/distractor_analysis.py \ + --data-dir foundationalktdataset/ \ + --output-dir pedagogical_grounding/output/ +``` + +**Output:** `distractor_stats.json` (~236 MC problems) + +| Field | Description | +|-------|-------------| +| `problem_id` | Unique problem identifier | +| `n_choices` | Number of answer options | +| `correct_rate` | Fraction choosing correct answer | +| `distractors` | Dict of wrong answers → count | +| `distractor_frequencies` | Dict of wrong answers → frequency | +| `most_common_distractor` | Most frequently chosen wrong answer | +| `least_common_distractor` | Least frequently chosen wrong answer | + +--- + +## Part 2: LLM Benchmark + +Benchmarks LLMs on 4 pedagogical reasoning tasks using zero-shot evaluation. + +### Tasks + +| Task | Description | Data Source | Metric | +|------|-------------|-------------|--------| +| `difficulty` | Which of two questions is harder? | IRT params | Binary accuracy | +| `discrimination` | Which question better distinguishes ability? | IRT params | Binary accuracy | +| `distractor_most` | Which wrong answer is most commonly chosen? | Distractor stats | Multi-class accuracy | +| `distractor_least` | Which wrong answer is least commonly chosen? | Distractor stats | Multi-class accuracy | + +### Scripts + +All benchmark scripts are located in this folder (`pedagogical_grounding/`): + +| File | Description | +|------|-------------| +| `pedagogical_inference_base.py` | Base module with data loading, sampling, prompts, inference | +| `gptoss120b_pedagogical.py` | GPT-OSS-120B model config | +| `qwen3next80b_instruct_pedagogical.py` | Qwen3-Next-80B-Instruct model config | +| `qwen3next80b_thinking_pedagogical.py` | Qwen3-Next-80B-Thinking model config | +| `evaluate_pedagogical.py` | Evaluation script for accuracy metrics | + +### Usage + +**Run all commands from the project root directory.** + +#### Run Inference + +```bash +# Difficulty comparison (stratified sampling, 1000 pairs) +CUDA_VISIBLE_DEVICES=0,1,2,3 python pedagogical_grounding/gptoss120b_pedagogical.py \ + --task difficulty \ + --num-samples 1000 \ + --sampling-mode stratified \ + --num-gpus 4 + +# Discrimination comparison +CUDA_VISIBLE_DEVICES=0,1,2,3 python pedagogical_grounding/gptoss120b_pedagogical.py \ + --task discrimination \ + --num-samples 1000 \ + --num-gpus 4 + +# Most common distractor prediction +CUDA_VISIBLE_DEVICES=0,1,2,3 python pedagogical_grounding/gptoss120b_pedagogical.py \ + --task distractor_most \ + --num-gpus 4 + +# Least common distractor prediction +CUDA_VISIBLE_DEVICES=0,1,2,3 python pedagogical_grounding/gptoss120b_pedagogical.py \ + --task distractor_least \ + --num-gpus 4 + +# All tasks at once +CUDA_VISIBLE_DEVICES=0,1,2,3 python pedagogical_grounding/gptoss120b_pedagogical.py \ + --task all \ + --num-samples 500 \ + --num-gpus 4 +``` + +#### Evaluate Results + +```bash +python pedagogical_grounding/evaluate_pedagogical.py --input gptoss120b_pedagogical_difficulty_n1000_stratified.jsonl +python pedagogical_grounding/evaluate_pedagogical.py --input results.jsonl --output metrics.json +``` + +### CLI Arguments + +| Argument | Description | Default | +|----------|-------------|---------| +| `--task` | Task to run: `difficulty`, `discrimination`, `distractor_most`, `distractor_least`, `all` | Required | +| `--sampling-mode` | `random` or `stratified` (ensures meaningful differences) | `stratified` | +| `--num-samples` | Number of pairs/problems to sample | 1000 | +| `--min-difference` | Minimum difference for stratified sampling | 0.2 | +| `--batch-size` | Batch size for vLLM inference | 500 | +| `--num-gpus` | Number of GPUs for tensor parallelism | 1 | +| `--data-dir` | Base directory containing data files | `.` | + +### Sampling Modes + +**Random:** Any two questions randomly paired (may include trivial comparisons). + +**Stratified:** Ensures meaningful differences between pairs: +- Small: 0.2–0.5 difference +- Medium: 0.5–1.0 difference +- Large: >1.0 difference + +### Output Format (JSONL) + +**Comparison tasks:** +```json +{ + "prediction_id": "difficulty_405080_448452", + "task": "difficulty", + "problem_id_a": 405080, + "problem_id_b": 448452, + "value_a": -0.234, + "value_b": -0.533, + "difference": 0.299, + "stratum": "small", + "ground_truth": "A", + "predicted_answer": "A", + "is_correct": true +} +``` + +**Distractor tasks:** +```json +{ + "prediction_id": "distractor_most_74236", + "task": "distractor_most", + "problem_id": 74236, + "n_choices": 4, + "ground_truth_letter": "B", + "ground_truth_text": "Elena is correct", + "ground_truth_freq": 0.207, + "predicted_answer": "B", + "is_correct": true +} +``` + +### Baselines + +| Task | Random Baseline | +|------|-----------------| +| Difficulty comparison | 50% | +| Discrimination comparison | 50% | +| Distractor (3 options) | 33% | +| Distractor (4 options) | 25% | + +### Evaluation Metrics + +The evaluation script computes: + +- **Overall accuracy** vs random baseline +- **By stratum** (for comparison tasks): small/medium/large difference +- **By difference magnitude**: very_small/small/medium/large +- **By number of distractors** (for distractor tasks) +- **By ground truth frequency**: rare/moderate/common distractors + +--- + +## Data Flow + +``` +foundationalktdataset/ +├── Interactions.csv # Student responses +├── Problems.csv # Problem text and answers +└── Skills.csv # Skill metadata + │ + ▼ +┌───────────────────────────────────────┐ +│ Analysis Scripts (Part 1) │ +│ irt_parameters.py, distractor_analysis.py │ +└───────────────────────────────────────┘ + │ + ▼ +pedagogical_grounding/output/ +├── irt_parameters.json # 2,548 problems with IRT params +└── distractor_stats.json # 236 MC problems with distractor data + │ + ▼ +┌───────────────────────────────────────┐ +│ LLM Benchmark (Part 2) │ +│ pedagogical_inference_base.py │ +│ + model configs │ +└───────────────────────────────────────┘ + │ + ▼ +Output: JSONL predictions + evaluation metrics +``` + +--- + +## File Structure + +``` +foundationalKT-ss/ +├── pedagogical_grounding/ +│ ├── README.md # This file +│ │ +│ │ # Analysis Scripts (Part 1) +│ ├── irt_parameters.py # IRT parameter computation +│ ├── distractor_analysis.py # Distractor effectiveness analysis +│ │ +│ │ # LLM Benchmark (Part 2) +│ ├── pedagogical_inference_base.py # Benchmark base module +│ ├── gptoss120b_pedagogical.py # GPT-OSS-120B config +│ ├── qwen3next80b_instruct_pedagogical.py # Qwen3 Instruct config +│ ├── qwen3next80b_thinking_pedagogical.py # Qwen3 Thinking config +│ ├── evaluate_pedagogical.py # Evaluation script +│ │ +│ │ # Output Data +│ └── output/ +│ ├── irt_parameters.json # IRT results (2,548 problems) +│ ├── irt_parameters.png # IRT visualizations +│ ├── distractor_stats.json # Distractor results (236 problems) +│ └── distractor_analysis.png # Distractor visualizations +│ +├── foundationalktdataset/ # Source data +│ ├── Interactions.csv +│ ├── Problems.csv +│ └── Skills.csv +│ +└── clean_utils.py # Text cleaning utilities +``` diff --git a/Results/pedagogical_grounding/batch_evaluate.py b/Results/pedagogical_grounding/batch_evaluate.py new file mode 100644 index 0000000000000000000000000000000000000000..a54a9e83a7c562488d5090434a274d30b6f2f30d --- /dev/null +++ b/Results/pedagogical_grounding/batch_evaluate.py @@ -0,0 +1,328 @@ +""" +Batch evaluation script for Pedagogical Grounding LLM Benchmark. + +Analyzes all result files in a directory and creates aggregate comparison tables. + +Usage: + python pedagogical_grounding/batch_evaluate.py --input-dir pedagogical_grounding/results + python pedagogical_grounding/batch_evaluate.py --input-dir results --output summary.json +""" + +import argparse +import glob +import json +import os +import re +from collections import defaultdict +from typing import Dict, List, Tuple + +from evaluate_pedagogical import ( + load_results, + evaluate_comparison_task, + evaluate_distractor_task, +) + + +def extract_model_name(filename: str) -> str: + """Extract model name from filename.""" + basename = os.path.basename(filename) + # Pattern: {model}_pedagogical_{task}_... + match = re.match(r'^(.+?)_pedagogical_', basename) + if match: + return match.group(1) + return basename.replace('.jsonl', '') + + +def evaluate_file(filepath: str) -> Tuple[str, Dict]: + """Evaluate a single file and return model name and metrics.""" + model_name = extract_model_name(filepath) + results = load_results(filepath) + + metrics = { + 'file': os.path.basename(filepath), + 'total_predictions': len(results), + 'tasks': {} + } + + # Identify and evaluate tasks + tasks = set(r.get('task') for r in results if r.get('task')) + + for task in tasks: + if task in ['difficulty', 'discrimination']: + task_metrics = evaluate_comparison_task(results, task) + elif task in ['distractor_most', 'distractor_least']: + task_metrics = evaluate_distractor_task(results, task) + else: + continue + + if 'error' not in task_metrics: + metrics['tasks'][task] = task_metrics + + return model_name, metrics + + +def print_header(title: str, width: int = 80) -> None: + """Print a formatted header.""" + print() + print("=" * width) + print(f" {title}") + print("=" * width) + + +def print_accuracy_table(all_metrics: Dict[str, Dict], task: str) -> None: + """Print accuracy comparison table for a task.""" + models = sorted(all_metrics.keys()) + + # Get baseline + if task in ['difficulty', 'discrimination']: + baseline = 0.5 + baseline_label = "50.0%" + else: + baseline = None # Varies by model + baseline_label = "varies" + + # Header + print(f"\n{'Model':<35} {'Accuracy':>10} {'Lift':>10} {'N':>8}") + print("-" * 65) + + # Data rows + for model in models: + task_metrics = all_metrics[model]['tasks'].get(task) + if task_metrics and 'error' not in task_metrics: + acc = task_metrics['accuracy'] + lift = task_metrics['lift_over_random'] + n = task_metrics['total'] + print(f"{model:<35} {acc:>9.1%} {lift:>+9.1%} {n:>8}") + else: + print(f"{model:<35} {'N/A':>10} {'N/A':>10} {'N/A':>8}") + + print("-" * 65) + print(f"{'Random Baseline':<35} {baseline_label:>10}") + + +def print_stratum_table(all_metrics: Dict[str, Dict], task: str) -> None: + """Print stratum breakdown comparison table.""" + models = sorted(all_metrics.keys()) + strata = ['small', 'medium', 'large'] + + # Header + header = f"{'Model':<30}" + for s in strata: + header += f" {s:>12}" + print(f"\n{header}") + print("-" * (30 + 13 * len(strata))) + + # Data rows + for model in models: + task_metrics = all_metrics[model]['tasks'].get(task) + if task_metrics and 'error' not in task_metrics: + row = f"{model:<30}" + by_stratum = task_metrics.get('by_stratum', {}) + for s in strata: + if s in by_stratum: + acc = by_stratum[s]['accuracy'] + row += f" {acc:>11.1%}" + else: + row += f" {'N/A':>12}" + print(row) + + +def print_summary_table(all_metrics: Dict[str, Dict]) -> None: + """Print overall summary table with all tasks.""" + models = sorted(all_metrics.keys()) + tasks = ['difficulty', 'discrimination', 'distractor_most', 'distractor_least'] + task_abbrev = { + 'difficulty': 'Diff', + 'discrimination': 'Disc', + 'distractor_most': 'D-Most', + 'distractor_least': 'D-Least' + } + + # Header + header = f"{'Model':<30}" + for t in tasks: + header += f" {task_abbrev[t]:>10}" + header += f" {'Avg':>10}" + print(f"\n{header}") + print("-" * (30 + 11 * (len(tasks) + 1))) + + # Data rows + for model in models: + row = f"{model:<30}" + accs = [] + for t in tasks: + task_metrics = all_metrics[model]['tasks'].get(t) + if task_metrics and 'error' not in task_metrics: + acc = task_metrics['accuracy'] + row += f" {acc:>9.1%}" + accs.append(acc) + else: + row += f" {'N/A':>10}" + + # Average + if accs: + avg = sum(accs) / len(accs) + row += f" {avg:>9.1%}" + else: + row += f" {'N/A':>10}" + + print(row) + + # Baseline row + print("-" * (30 + 11 * (len(tasks) + 1))) + baseline_row = f"{'Random Baseline':<30}" + baseline_row += f" {'50.0%':>10}" # difficulty + baseline_row += f" {'50.0%':>10}" # discrimination + baseline_row += f" {'~35%':>10}" # distractor_most + baseline_row += f" {'~35%':>10}" # distractor_least + baseline_row += f" {'~43%':>10}" # avg + print(baseline_row) + + +def print_lift_table(all_metrics: Dict[str, Dict]) -> None: + """Print lift over random baseline table.""" + models = sorted(all_metrics.keys()) + tasks = ['difficulty', 'discrimination', 'distractor_most', 'distractor_least'] + task_abbrev = { + 'difficulty': 'Diff', + 'discrimination': 'Disc', + 'distractor_most': 'D-Most', + 'distractor_least': 'D-Least' + } + + # Header + header = f"{'Model':<30}" + for t in tasks: + header += f" {task_abbrev[t]:>10}" + header += f" {'Avg Lift':>10}" + print(f"\n{header}") + print("-" * (30 + 11 * (len(tasks) + 1))) + + # Data rows + for model in models: + row = f"{model:<30}" + lifts = [] + for t in tasks: + task_metrics = all_metrics[model]['tasks'].get(t) + if task_metrics and 'error' not in task_metrics: + lift = task_metrics['lift_over_random'] + row += f" {lift:>+9.1%}" + lifts.append(lift) + else: + row += f" {'N/A':>10}" + + # Average lift + if lifts: + avg_lift = sum(lifts) / len(lifts) + row += f" {avg_lift:>+9.1%}" + else: + row += f" {'N/A':>10}" + + print(row) + + +def print_best_model_per_task(all_metrics: Dict[str, Dict]) -> None: + """Print best model for each task.""" + tasks = ['difficulty', 'discrimination', 'distractor_most', 'distractor_least'] + + print(f"\n{'Task':<20} {'Best Model':<30} {'Accuracy':>10} {'Lift':>10}") + print("-" * 72) + + for task in tasks: + best_model = None + best_acc = -1 + best_lift = 0 + + for model, metrics in all_metrics.items(): + task_metrics = metrics['tasks'].get(task) + if task_metrics and 'error' not in task_metrics: + if task_metrics['accuracy'] > best_acc: + best_acc = task_metrics['accuracy'] + best_lift = task_metrics['lift_over_random'] + best_model = model + + if best_model: + print(f"{task:<20} {best_model:<30} {best_acc:>9.1%} {best_lift:>+9.1%}") + else: + print(f"{task:<20} {'N/A':<30} {'N/A':>10} {'N/A':>10}") + + +def main(): + parser = argparse.ArgumentParser( + description="Batch evaluate Pedagogical Grounding Benchmark results" + ) + parser.add_argument( + "--input-dir", "-i", + type=str, + required=True, + help="Directory containing JSONL result files" + ) + parser.add_argument( + "--output", "-o", + type=str, + default=None, + help="Output JSON file for aggregate metrics (optional)" + ) + parser.add_argument( + "--pattern", + type=str, + default="*.jsonl", + help="Glob pattern for result files (default: *.jsonl)" + ) + args = parser.parse_args() + + # Find all result files + pattern = os.path.join(args.input_dir, args.pattern) + files = sorted(glob.glob(pattern)) + + if not files: + print(f"No files found matching: {pattern}") + return + + print(f"Found {len(files)} result files in {args.input_dir}") + + # Evaluate all files + all_metrics = {} + for filepath in files: + print(f" Loading: {os.path.basename(filepath)}") + model_name, metrics = evaluate_file(filepath) + all_metrics[model_name] = metrics + + # Print aggregate tables + print_header("PEDAGOGICAL GROUNDING BENCHMARK - AGGREGATE RESULTS") + + # Summary table + print_header("ACCURACY BY TASK", width=72) + print_summary_table(all_metrics) + + # Lift table + print_header("LIFT OVER RANDOM BASELINE", width=72) + print_lift_table(all_metrics) + + # Best model per task + print_header("BEST MODEL PER TASK", width=72) + print_best_model_per_task(all_metrics) + + # Detailed stratum breakdown for comparison tasks + print_header("DIFFICULTY - ACCURACY BY STRATUM", width=70) + print_stratum_table(all_metrics, 'difficulty') + + print_header("DISCRIMINATION - ACCURACY BY STRATUM", width=70) + print_stratum_table(all_metrics, 'discrimination') + + # Individual task tables + for task in ['difficulty', 'discrimination', 'distractor_most', 'distractor_least']: + print_header(f"{task.upper()} - DETAILED", width=65) + print_accuracy_table(all_metrics, task) + + # Save aggregate metrics if output specified + if args.output: + with open(args.output, 'w') as f: + json.dump(all_metrics, f, indent=2) + print(f"\nAggregate metrics saved to {args.output}") + + print() + + +if __name__ == "__main__": + main() diff --git a/Results/pedagogical_grounding/distractor_analysis.py b/Results/pedagogical_grounding/distractor_analysis.py new file mode 100644 index 0000000000000000000000000000000000000000..eafcc3cbac5f981ea7df9ced1801028e0e7ed1f2 --- /dev/null +++ b/Results/pedagogical_grounding/distractor_analysis.py @@ -0,0 +1,299 @@ +""" +Distractor Analysis for Pedagogical Grounding + +Computes distractor effectiveness for Multiple Choice (select 1) questions +with more than 2 choices. Identifies most/least common wrong answers. +""" + +import argparse +import os +import json +import pandas as pd +import numpy as np +import matplotlib.pyplot as plt +from collections import Counter + +# Configuration +DEFAULT_DATA_DIR = "foundationalktdataset" +STUDENT_FILE = "Interactions.csv" +PROBLEMS_FILE = "Problems.csv" + + +def parse_args(): + parser = argparse.ArgumentParser(description="Analyze distractor effectiveness") + parser.add_argument( + "--data-dir", "-d", + type=str, + default=DEFAULT_DATA_DIR, + help=f"Directory containing input CSV files (default: {DEFAULT_DATA_DIR})" + ) + parser.add_argument( + "--output-dir", "-o", + type=str, + default="pedagogical_grounding/output", + help="Directory to save output (default: pedagogical_grounding/output)" + ) + parser.add_argument( + "--no-plots", + action="store_true", + help="Skip generating plots" + ) + return parser.parse_args() + + +def load_data(data_dir): + """Load student and problem data.""" + print(f"Loading data from {data_dir}...") + + student_df = pd.read_csv(os.path.join(data_dir, STUDENT_FILE)) + problems_df = pd.read_csv(os.path.join(data_dir, PROBLEMS_FILE)) + + print(f" Loaded {len(student_df):,} student interactions") + print(f" Loaded {len(problems_df):,} problems") + + return student_df, problems_df + + +def get_answer_options(answer_string): + """Parse pipe-delimited answer options.""" + if pd.isna(answer_string) or answer_string == '': + return [] + return [opt.strip() for opt in answer_string.split('||') if opt.strip()] + + +def get_correct_answers(correct_string): + """Parse pipe-delimited correct answers.""" + if pd.isna(correct_string) or correct_string == '': + return [] + return [ans.strip() for ans in correct_string.split('||') if ans.strip()] + + +def normalize_answer(text): + """Normalize answer text for comparison.""" + if pd.isna(text): + return "" + import re + # Remove HTML tags + text = re.sub(r'<[^>]+>', '', str(text)) + # Normalize whitespace + text = ' '.join(text.split()) + return text.strip().lower() + + +def analyze_distractors(student_df, problems_df): + """Analyze distractor effectiveness for MC (select 1) with >2 choices.""" + print("\n" + "=" * 60) + print(" DISTRACTOR ANALYSIS") + print("=" * 60) + + # Filter to MC (select 1) problems + mc_problems = problems_df[problems_df['Problem Type'] == 'Multiple Choice (select 1)'].copy() + + # Count choices + mc_problems['answer_options'] = mc_problems['Multiple Choice Options'].apply(get_answer_options) + mc_problems['n_choices'] = mc_problems['answer_options'].apply(len) + + # Filter to >2 choices + mc_problems = mc_problems[mc_problems['n_choices'] > 2].copy() + print(f"\nMC (select 1) problems with >2 choices: {len(mc_problems)}") + + # Get correct answers + mc_problems['correct_answers'] = mc_problems['Multiple Choice Answers'].apply(get_correct_answers) + + # Filter student data to these problems + problem_ids = set(mc_problems['problem_id']) + mc_interactions = student_df[student_df['problem_id'].isin(problem_ids)].copy() + print(f"Student interactions for these problems: {len(mc_interactions):,}") + + # Merge to get answer options + mc_interactions = mc_interactions.merge( + mc_problems[['problem_id', 'answer_options', 'correct_answers', 'n_choices']], + on='problem_id', + how='left' + ) + + # Analyze each problem + results = [] + + for problem_id in mc_problems['problem_id'].unique(): + problem_data = mc_interactions[mc_interactions['problem_id'] == problem_id] + + if len(problem_data) < 10: # Skip problems with too few responses + continue + + problem_info = mc_problems[mc_problems['problem_id'] == problem_id].iloc[0] + answer_options = problem_info['answer_options'] + correct_answers = problem_info['Fill-in Answers'] + + # Normalize correct answers for comparison + correct_normalized = set(normalize_answer(a) for a in correct_answers) + + # Count responses for each option + option_counts = Counter() + total_responses = 0 + + for _, row in problem_data.iterrows(): + student_answer = row['answer_text'] + if pd.isna(student_answer): + continue + + # Normalize student answer + student_normalized = normalize_answer(student_answer) + + # Match to options + for opt in answer_options: + opt_normalized = normalize_answer(opt) + if student_normalized == opt_normalized or student_normalized in opt_normalized or opt_normalized in student_normalized: + option_counts[opt] += 1 + total_responses += 1 + break + + if total_responses < 10: + continue + + # Separate correct and incorrect options + distractors = {} + correct_count = 0 + + for opt in answer_options: + opt_normalized = normalize_answer(opt) + count = option_counts.get(opt, 0) + + if opt_normalized in correct_normalized or any(normalize_answer(c) in opt_normalized or opt_normalized in normalize_answer(c) for c in correct_answers): + correct_count = count + else: + distractors[opt] = count + + if not distractors: + continue + + # Find most/least common distractor + sorted_distractors = sorted(distractors.items(), key=lambda x: x[1], reverse=True) + most_common = sorted_distractors[0] + least_common = sorted_distractors[-1] + + # Compute frequencies + distractor_freqs = {opt: count / total_responses for opt, count in distractors.items()} + + results.append({ + 'problem_id': int(problem_id), + 'n_choices': int(problem_info['n_choices']), + 'total_responses': int(total_responses), + 'correct_count': int(correct_count), + 'correct_rate': correct_count / total_responses, + 'distractors': {opt: int(count) for opt, count in distractors.items()}, + 'distractor_frequencies': distractor_freqs, + 'most_common_distractor': most_common[0], + 'most_common_distractor_freq': most_common[1] / total_responses, + 'least_common_distractor': least_common[0], + 'least_common_distractor_freq': least_common[1] / total_responses, + }) + + print(f"Problems with sufficient data: {len(results)}") + + return results + + +def print_summary(results): + """Print summary statistics.""" + print("\n--- Summary Statistics ---") + + correct_rates = [r['correct_rate'] for r in results] + most_common_freqs = [r['most_common_distractor_freq'] for r in results] + least_common_freqs = [r['least_common_distractor_freq'] for r in results] + + print(f"\nCorrect Answer Rate:") + print(f" Mean: {np.mean(correct_rates):.1%}") + print(f" Median: {np.median(correct_rates):.1%}") + print(f" Min: {np.min(correct_rates):.1%}") + print(f" Max: {np.max(correct_rates):.1%}") + + print(f"\nMost Common Distractor Frequency:") + print(f" Mean: {np.mean(most_common_freqs):.1%}") + print(f" Median: {np.median(most_common_freqs):.1%}") + + print(f"\nLeast Common Distractor Frequency:") + print(f" Mean: {np.mean(least_common_freqs):.1%}") + print(f" Median: {np.median(least_common_freqs):.1%}") + + # Count problems where least common distractor is never chosen + never_chosen = sum(1 for r in results if r['least_common_distractor_freq'] == 0) + print(f"\nProblems with ineffective distractor (0 selections): {never_chosen} ({100*never_chosen/len(results):.1f}%)") + + +def save_results(results, output_dir): + """Save results to JSON.""" + os.makedirs(output_dir, exist_ok=True) + output_path = os.path.join(output_dir, 'distractor_stats.json') + + with open(output_path, 'w') as f: + json.dump(results, f, indent=2) + + print(f"\nSaved: {output_path}") + + +def plot_results(results, output_dir): + """Generate plots.""" + os.makedirs(output_dir, exist_ok=True) + + fig, axes = plt.subplots(1, 3, figsize=(15, 5)) + + # Plot 1: Correct rate distribution + correct_rates = [r['correct_rate'] for r in results] + axes[0].hist(correct_rates, bins=20, edgecolor='black', alpha=0.7) + axes[0].set_xlabel('Correct Answer Rate') + axes[0].set_ylabel('Number of Problems') + axes[0].set_title('Distribution of Correct Answer Rates') + axes[0].axvline(np.mean(correct_rates), color='red', linestyle='--', label=f'Mean: {np.mean(correct_rates):.1%}') + axes[0].legend() + + # Plot 2: Most common distractor frequency + most_common_freqs = [r['most_common_distractor_freq'] for r in results] + axes[1].hist(most_common_freqs, bins=20, edgecolor='black', alpha=0.7, color='orange') + axes[1].set_xlabel('Most Common Distractor Frequency') + axes[1].set_ylabel('Number of Problems') + axes[1].set_title('Distribution of Most Common Distractor') + axes[1].axvline(np.mean(most_common_freqs), color='red', linestyle='--', label=f'Mean: {np.mean(most_common_freqs):.1%}') + axes[1].legend() + + # Plot 3: Least common distractor frequency + least_common_freqs = [r['least_common_distractor_freq'] for r in results] + axes[2].hist(least_common_freqs, bins=20, edgecolor='black', alpha=0.7, color='green') + axes[2].set_xlabel('Least Common Distractor Frequency') + axes[2].set_ylabel('Number of Problems') + axes[2].set_title('Distribution of Least Common Distractor') + axes[2].axvline(np.mean(least_common_freqs), color='red', linestyle='--', label=f'Mean: {np.mean(least_common_freqs):.1%}') + axes[2].legend() + + plt.tight_layout() + plot_path = os.path.join(output_dir, 'distractor_analysis.png') + plt.savefig(plot_path, dpi=150) + plt.close() + + print(f"Saved: {plot_path}") + + +def main(): + args = parse_args() + + # Load data + student_df, problems_df = load_data(args.data_dir) + + # Analyze distractors + results = analyze_distractors(student_df, problems_df) + + # Print summary + print_summary(results) + + # Save results + save_results(results, args.output_dir) + + # Plot + if not args.no_plots: + plot_results(results, args.output_dir) + + print("\nDone!") + + +if __name__ == "__main__": + main() diff --git a/Results/pedagogical_grounding/evaluate_pedagogical.py b/Results/pedagogical_grounding/evaluate_pedagogical.py new file mode 100644 index 0000000000000000000000000000000000000000..71077c6e56ec043cff780bc01a0a7959159d32ab --- /dev/null +++ b/Results/pedagogical_grounding/evaluate_pedagogical.py @@ -0,0 +1,285 @@ +""" +Evaluation script for Pedagogical Grounding LLM Benchmark. + +Computes accuracy metrics for: +1. Difficulty comparison task +2. Discrimination comparison task +3. Most common distractor prediction +4. Least common distractor prediction + +Usage: + python evaluate_pedagogical.py --input results.jsonl + python evaluate_pedagogical.py --input results.jsonl --output metrics.json +""" + +import argparse +import json +from collections import defaultdict +from typing import Dict, List, Optional + + +def load_results(jsonl_path: str) -> List[Dict]: + """Load results from JSONL file.""" + results = [] + with open(jsonl_path, 'r') as f: + for line in f: + if line.strip(): + results.append(json.loads(line)) + return results + + +def evaluate_comparison_task(results: List[Dict], task_name: str) -> Dict: + """Evaluate a comparison task (difficulty or discrimination).""" + task_results = [r for r in results if r.get('task') == task_name] + + if not task_results: + return {'error': f'No results found for task: {task_name}'} + + total = len(task_results) + correct = sum(1 for r in task_results if r.get('is_correct', False)) + accuracy = correct / total if total > 0 else 0 + + # Breakdown by stratum + stratum_stats = defaultdict(lambda: {'correct': 0, 'total': 0}) + for r in task_results: + stratum = r.get('stratum', 'unknown') + stratum_stats[stratum]['total'] += 1 + if r.get('is_correct', False): + stratum_stats[stratum]['correct'] += 1 + + stratum_accuracy = {} + for stratum, stats in stratum_stats.items(): + if stats['total'] > 0: + stratum_accuracy[stratum] = { + 'accuracy': stats['correct'] / stats['total'], + 'correct': stats['correct'], + 'total': stats['total'] + } + + # Breakdown by difficulty difference bins + diff_bins = [ + ('very_small', 0, 0.2), + ('small', 0.2, 0.5), + ('medium', 0.5, 1.0), + ('large', 1.0, float('inf')) + ] + + diff_stats = defaultdict(lambda: {'correct': 0, 'total': 0}) + for r in task_results: + diff = r.get('difference', 0) + for bin_name, low, high in diff_bins: + if low <= diff < high: + diff_stats[bin_name]['total'] += 1 + if r.get('is_correct', False): + diff_stats[bin_name]['correct'] += 1 + break + + diff_accuracy = {} + for bin_name, stats in diff_stats.items(): + if stats['total'] > 0: + diff_accuracy[bin_name] = { + 'accuracy': stats['correct'] / stats['total'], + 'correct': stats['correct'], + 'total': stats['total'] + } + + return { + 'task': task_name, + 'total': total, + 'correct': correct, + 'accuracy': accuracy, + 'baseline_random': 0.5, # Random guess for binary choice + 'lift_over_random': accuracy - 0.5, + 'by_stratum': dict(stratum_accuracy), + 'by_difference': dict(diff_accuracy) + } + + +def evaluate_distractor_task(results: List[Dict], task_name: str) -> Dict: + """Evaluate a distractor task (most or least common).""" + task_results = [r for r in results if r.get('task') == task_name] + + if not task_results: + return {'error': f'No results found for task: {task_name}'} + + total = len(task_results) + correct = sum(1 for r in task_results if r.get('is_correct', False)) + accuracy = correct / total if total > 0 else 0 + + # Breakdown by number of choices + choices_stats = defaultdict(lambda: {'correct': 0, 'total': 0}) + for r in task_results: + n_choices = r.get('n_choices', 0) + # Number of distractors = n_choices - 1 (excluding correct answer) + n_distractors = n_choices - 1 if n_choices > 1 else 1 + choices_stats[n_distractors]['total'] += 1 + if r.get('is_correct', False): + choices_stats[n_distractors]['correct'] += 1 + + choices_accuracy = {} + baseline_by_choices = {} + for n_distractors, stats in sorted(choices_stats.items()): + if stats['total'] > 0: + acc = stats['correct'] / stats['total'] + baseline = 1.0 / n_distractors if n_distractors > 0 else 0 + choices_accuracy[f'{n_distractors}_distractors'] = { + 'accuracy': acc, + 'correct': stats['correct'], + 'total': stats['total'], + 'baseline_random': baseline, + 'lift_over_random': acc - baseline + } + baseline_by_choices[n_distractors] = baseline + + # Compute weighted average baseline + total_weighted_baseline = 0 + for r in task_results: + n_choices = r.get('n_choices', 0) + n_distractors = n_choices - 1 if n_choices > 1 else 1 + if n_distractors > 0: + total_weighted_baseline += 1.0 / n_distractors + avg_baseline = total_weighted_baseline / total if total > 0 else 0 + + # Breakdown by ground truth frequency + freq_bins = [ + ('very_rare', 0, 0.05), + ('rare', 0.05, 0.10), + ('moderate', 0.10, 0.20), + ('common', 0.20, 0.30), + ('very_common', 0.30, 1.0) + ] + + freq_stats = defaultdict(lambda: {'correct': 0, 'total': 0}) + for r in task_results: + freq = r.get('ground_truth_freq', 0) + for bin_name, low, high in freq_bins: + if low <= freq < high: + freq_stats[bin_name]['total'] += 1 + if r.get('is_correct', False): + freq_stats[bin_name]['correct'] += 1 + break + + freq_accuracy = {} + for bin_name, stats in freq_stats.items(): + if stats['total'] > 0: + freq_accuracy[bin_name] = { + 'accuracy': stats['correct'] / stats['total'], + 'correct': stats['correct'], + 'total': stats['total'] + } + + return { + 'task': task_name, + 'total': total, + 'correct': correct, + 'accuracy': accuracy, + 'baseline_random_avg': avg_baseline, + 'lift_over_random': accuracy - avg_baseline, + 'by_num_distractors': dict(choices_accuracy), + 'by_ground_truth_freq': dict(freq_accuracy) + } + + +def print_comparison_results(metrics: Dict) -> None: + """Print comparison task results.""" + print(f"\n{'='*60}") + print(f"Task: {metrics['task'].upper()}") + print(f"{'='*60}") + + print(f"\nOverall Accuracy: {metrics['accuracy']:.1%} ({metrics['correct']}/{metrics['total']})") + print(f"Random Baseline: {metrics['baseline_random']:.1%}") + print(f"Lift over Random: {metrics['lift_over_random']:+.1%}") + + if metrics.get('by_stratum'): + print(f"\nBy Sampling Stratum:") + for stratum, stats in sorted(metrics['by_stratum'].items()): + print(f" {stratum:12}: {stats['accuracy']:.1%} ({stats['correct']}/{stats['total']})") + + if metrics.get('by_difference'): + print(f"\nBy Value Difference:") + for bin_name, stats in metrics['by_difference'].items(): + print(f" {bin_name:12}: {stats['accuracy']:.1%} ({stats['correct']}/{stats['total']})") + + +def print_distractor_results(metrics: Dict) -> None: + """Print distractor task results.""" + print(f"\n{'='*60}") + print(f"Task: {metrics['task'].upper()}") + print(f"{'='*60}") + + print(f"\nOverall Accuracy: {metrics['accuracy']:.1%} ({metrics['correct']}/{metrics['total']})") + print(f"Random Baseline: {metrics['baseline_random_avg']:.1%} (weighted avg)") + print(f"Lift over Random: {metrics['lift_over_random']:+.1%}") + + if metrics.get('by_num_distractors'): + print(f"\nBy Number of Distractors:") + for key, stats in sorted(metrics['by_num_distractors'].items()): + print(f" {key:15}: {stats['accuracy']:.1%} ({stats['correct']}/{stats['total']}) " + f"[baseline: {stats['baseline_random']:.1%}, lift: {stats['lift_over_random']:+.1%}]") + + if metrics.get('by_ground_truth_freq'): + print(f"\nBy Ground Truth Frequency:") + for bin_name, stats in metrics['by_ground_truth_freq'].items(): + print(f" {bin_name:12}: {stats['accuracy']:.1%} ({stats['correct']}/{stats['total']})") + + +def main(): + parser = argparse.ArgumentParser( + description="Evaluate Pedagogical Grounding Benchmark Results" + ) + parser.add_argument( + "--input", "-i", + type=str, + required=True, + help="Input JSONL file with predictions" + ) + parser.add_argument( + "--output", "-o", + type=str, + default=None, + help="Output JSON file for metrics (optional)" + ) + args = parser.parse_args() + + print(f"Loading results from {args.input}...") + results = load_results(args.input) + print(f"Loaded {len(results)} predictions") + + # Identify tasks in results + tasks = set(r.get('task') for r in results if r.get('task')) + print(f"Tasks found: {tasks}") + + all_metrics = {} + + # Evaluate each task + for task in sorted(tasks): + if task in ['difficulty', 'discrimination']: + metrics = evaluate_comparison_task(results, task) + print_comparison_results(metrics) + elif task in ['distractor_most', 'distractor_least']: + metrics = evaluate_distractor_task(results, task) + print_distractor_results(metrics) + else: + print(f"Unknown task: {task}") + continue + + all_metrics[task] = metrics + + # Summary + print(f"\n{'='*60}") + print("SUMMARY") + print(f"{'='*60}") + for task, metrics in all_metrics.items(): + if 'error' not in metrics: + print(f"{task:20}: {metrics['accuracy']:.1%} accuracy " + f"({metrics['lift_over_random']:+.1%} vs random)") + + # Save metrics if output specified + if args.output: + with open(args.output, 'w') as f: + json.dump(all_metrics, f, indent=2) + print(f"\nMetrics saved to {args.output}") + + +if __name__ == "__main__": + main() diff --git a/Results/pedagogical_grounding/gptoss120b_pedagogical.py b/Results/pedagogical_grounding/gptoss120b_pedagogical.py new file mode 100644 index 0000000000000000000000000000000000000000..f61984fe519860bf8ad691d6a48d4727c26250a7 --- /dev/null +++ b/Results/pedagogical_grounding/gptoss120b_pedagogical.py @@ -0,0 +1,57 @@ +""" +Pedagogical Grounding benchmark with GPT-OSS-120B model. + +Usage: + # Run difficulty comparison task + CUDA_VISIBLE_DEVICES=0,1,2,3 python gptoss120b_pedagogical.py \ + --task difficulty \ + --data-dir . \ + --num-gpus 4 \ + --num-samples 1000 \ + --sampling-mode stratified \ + --cache-dir /data1/ + + # Run discrimination comparison task + CUDA_VISIBLE_DEVICES=0,1,2,3 python gptoss120b_pedagogical.py \ + --task discrimination \ + --data-dir . \ + --num-gpus 4 \ + --num-samples 1000 + + # Run most common distractor task + CUDA_VISIBLE_DEVICES=0,1,2,3 python gptoss120b_pedagogical.py \ + --task distractor_most \ + --data-dir . \ + --num-gpus 4 + + # Run least common distractor task + CUDA_VISIBLE_DEVICES=0,1,2,3 python gptoss120b_pedagogical.py \ + --task distractor_least \ + --data-dir . \ + --num-gpus 4 + + # Run all tasks + CUDA_VISIBLE_DEVICES=0,1,2,3 python gptoss120b_pedagogical.py \ + --task all \ + --data-dir . \ + --num-gpus 4 \ + --num-samples 500 +""" + +from pedagogical_inference_base import run_inference + +MODEL_CONFIG = { + "model_id": "openai/gpt-oss-120b", + "gen_configs": { + "temperature": 0.7, + "top_p": 0.95, + "top_k": 20, + "max_tokens": 1024, # Shorter responses expected for this task + "repetition_penalty": 1.0, + }, + "output_prefix": "gptoss120b", + "system_prompt_prefix": "Reasoning: medium\n\n", +} + +if __name__ == "__main__": + run_inference(MODEL_CONFIG) diff --git a/Results/pedagogical_grounding/irt_parameters.py b/Results/pedagogical_grounding/irt_parameters.py new file mode 100644 index 0000000000000000000000000000000000000000..12d7846627dd104c5a2992edd80f7c6bdb049b02 --- /dev/null +++ b/Results/pedagogical_grounding/irt_parameters.py @@ -0,0 +1,384 @@ +""" +IRT Parameter Estimation for Pedagogical Grounding + +Computes Item Response Theory parameters (1PL, 2PL) from student response data +using py-irt (Bayesian inference with Pyro, native sparse data support). +""" + +import argparse +import os +import json +import pandas as pd +import numpy as np +import matplotlib.pyplot as plt +import torch +import pyro + +from py_irt.models.one_param_logistic import OneParamLog +from py_irt.models.two_param_logistic import TwoParamLog + +# Configuration +DEFAULT_DATA_DIR = "foundationalktdataset" +STUDENT_FILE = "Interactions.csv" +PROBLEMS_FILE = "Problems.csv" + + +def parse_args(): + parser = argparse.ArgumentParser(description="Compute IRT parameters using py-irt") + parser.add_argument( + "--data-dir", "-d", + type=str, + default=DEFAULT_DATA_DIR, + help=f"Directory containing input CSV files (default: {DEFAULT_DATA_DIR})" + ) + parser.add_argument( + "--output-dir", "-o", + type=str, + default="pedagogical_grounding/output", + help="Directory to save output (default: pedagogical_grounding/output)" + ) + parser.add_argument( + "--min-responses", + type=int, + default=50, + help="Minimum responses per problem to include (default: 50)" + ) + parser.add_argument( + "--epochs", + type=int, + default=500, + help="Number of training epochs (default: 500)" + ) + parser.add_argument( + "--device", + type=str, + default="cpu", + choices=["cpu", "gpu"], + help="Device for training (default: cpu)" + ) + parser.add_argument( + "--no-plots", + action="store_true", + help="Skip generating plots" + ) + return parser.parse_args() + + +def load_data(data_dir): + """Load student and problem data.""" + print(f"Loading data from {data_dir}...") + + student_df = pd.read_csv(os.path.join(data_dir, STUDENT_FILE)) + problems_df = pd.read_csv(os.path.join(data_dir, PROBLEMS_FILE)) + + print(f" Loaded {len(student_df):,} student interactions") + print(f" Loaded {len(problems_df):,} problems") + + return student_df, problems_df + + +def prepare_sparse_data(student_df, min_responses=50): + """Prepare data in sparse format for py-irt (no imputation needed).""" + print("\nPreparing sparse data for IRT...") + + # Use discrete_score as binary response (0/1) + responses = student_df[['user_id', 'problem_id', 'discrete_score']].copy() + + # Remove NaN responses + responses = responses.dropna(subset=['discrete_score']) + + # Handle duplicate (student, problem) pairs - take first attempt + responses = responses.drop_duplicates(subset=['user_id', 'problem_id'], keep='first') + print(f" Unique (student, problem) pairs: {len(responses):,}") + + # Filter problems with enough responses + problem_counts = responses.groupby('problem_id').size() + valid_problems = problem_counts[problem_counts >= min_responses].index + responses = responses[responses['problem_id'].isin(valid_problems)] + print(f" Problems with >= {min_responses} responses: {len(valid_problems):,}") + + # Create mappings + unique_students = responses['user_id'].unique() + unique_problems = responses['problem_id'].unique() + + student_to_idx = {s: i for i, s in enumerate(unique_students)} + problem_to_idx = {p: i for i, p in enumerate(unique_problems)} + idx_to_problem = {i: p for p, i in problem_to_idx.items()} + + # Convert to indices + student_indices = responses['user_id'].map(student_to_idx).values + problem_indices = responses['problem_id'].map(problem_to_idx).values + response_values = responses['discrete_score'].values + + print(f" Students: {len(unique_students):,}") + print(f" Problems: {len(unique_problems):,}") + print(f" Observations: {len(responses):,}") + + return (student_indices, problem_indices, response_values, + len(unique_students), len(unique_problems), idx_to_problem) + + +def compute_simple_difficulty(student_df, min_responses=50): + """Compute simple difficulty as -logit(percent_correct) for all problems.""" + print("\nComputing simple difficulty estimates...") + + responses = student_df[['problem_id', 'discrete_score']].copy() + + # Compute percent correct per problem + problem_stats = responses.groupby('problem_id').agg( + n_responses=('discrete_score', 'count'), + percent_correct=('discrete_score', 'mean') + ).reset_index() + + # Filter by min responses + problem_stats = problem_stats[problem_stats['n_responses'] >= min_responses] + + # Compute IRT-scale difficulty: -logit(p) = log((1-p)/p) + # Clamp to avoid log(0) + p = problem_stats['percent_correct'].clip(0.001, 0.999) + problem_stats['difficulty_simple'] = np.log((1 - p) / p) + + print(f" Problems with simple difficulty: {len(problem_stats):,}") + + return problem_stats + + +def fit_irt_models(student_indices, problem_indices, response_values, + num_students, num_problems, epochs, device): + """Fit 1PL and 2PL IRT models using py-irt.""" + print(f"\nFitting IRT models ({epochs} epochs, device={device})...") + + # Convert to tensors + device_torch = torch.device('cuda' if device == 'gpu' else 'cpu') + models = torch.tensor(student_indices, dtype=torch.long, device=device_torch) + items = torch.tensor(problem_indices, dtype=torch.long, device=device_torch) + # Ensure responses are 0/1 integers, then convert to float for Bernoulli + response_int = np.round(response_values).astype(int).clip(0, 1) + obs = torch.tensor(response_int, dtype=torch.float, device=device_torch) + + results = {} + + # Fit 1PL + print(" Fitting 1PL (Rasch)...") + try: + pyro.clear_param_store() + model_1pl = OneParamLog( + priors='vague', + device=device, + num_items=num_problems, + num_models=num_students, + verbose=False + ) + model_1pl.fit(models, items, obs, num_epochs=epochs) + + # Extract parameters + difficulty_1pl = pyro.param('loc_diff').detach().cpu().numpy() + results['1PL'] = { + 'difficulty': difficulty_1pl.tolist() + } + print(f" Difficulty range: [{difficulty_1pl.min():.2f}, {difficulty_1pl.max():.2f}]") + except Exception as e: + print(f" 1PL failed: {e}") + results['1PL'] = None + + # Fit 2PL + print(" Fitting 2PL...") + try: + pyro.clear_param_store() + model_2pl = TwoParamLog( + priors='vague', + device=device, + num_items=num_problems, + num_models=num_students, + verbose=False + ) + model_2pl.fit(models, items, obs, num_epochs=epochs) + + # Extract parameters + difficulty_2pl = pyro.param('loc_diff').detach().cpu().numpy() + discrimination_2pl = pyro.param('loc_slope').detach().cpu().numpy() + + results['2PL'] = { + 'difficulty': difficulty_2pl.tolist(), + 'discrimination': discrimination_2pl.tolist() + } + print(f" Difficulty range: [{difficulty_2pl.min():.2f}, {difficulty_2pl.max():.2f}]") + print(f" Discrimination range: [{discrimination_2pl.min():.2f}, {discrimination_2pl.max():.2f}]") + except Exception as e: + print(f" 2PL failed: {e}") + results['2PL'] = None + + return results + + +def format_results(irt_results, idx_to_problem, simple_stats): + """Format results as per-problem dictionary.""" + formatted = [] + + # Get IRT problems + irt_problem_ids = set(idx_to_problem.values()) + + # Process IRT results + for idx, problem_id in idx_to_problem.items(): + item = {'problem_id': int(problem_id)} + + if irt_results['1PL']: + item['difficulty_1pl'] = float(irt_results['1PL']['difficulty'][idx]) + + if irt_results['2PL']: + item['difficulty_2pl'] = float(irt_results['2PL']['difficulty'][idx]) + item['discrimination_2pl'] = float(irt_results['2PL']['discrimination'][idx]) + + # Add simple difficulty + simple_row = simple_stats[simple_stats['problem_id'] == problem_id] + if len(simple_row) > 0: + item['difficulty_simple'] = float(simple_row['difficulty_simple'].iloc[0]) + item['percent_correct'] = float(simple_row['percent_correct'].iloc[0]) + item['n_responses'] = int(simple_row['n_responses'].iloc[0]) + + formatted.append(item) + + # Add problems not in IRT but in simple stats + for _, row in simple_stats.iterrows(): + if row['problem_id'] not in irt_problem_ids: + formatted.append({ + 'problem_id': int(row['problem_id']), + 'difficulty_simple': float(row['difficulty_simple']), + 'percent_correct': float(row['percent_correct']), + 'n_responses': int(row['n_responses']) + }) + + return formatted + + +def print_summary(irt_results, simple_stats): + """Print summary statistics.""" + print("\n--- Summary Statistics ---") + + print(f"\nSimple Difficulty (all {len(simple_stats)} problems):") + print(f" Mean: {simple_stats['difficulty_simple'].mean():.2f}") + print(f" Std: {simple_stats['difficulty_simple'].std():.2f}") + print(f" Range: [{simple_stats['difficulty_simple'].min():.2f}, {simple_stats['difficulty_simple'].max():.2f}]") + + if irt_results['2PL']: + difficulties = irt_results['2PL']['difficulty'] + discriminations = irt_results['2PL']['discrimination'] + + print(f"\n2PL Difficulty (b):") + print(f" Mean: {np.mean(difficulties):.2f}") + print(f" Std: {np.std(difficulties):.2f}") + print(f" Range: [{np.min(difficulties):.2f}, {np.max(difficulties):.2f}]") + + print(f"\n2PL Discrimination (a):") + print(f" Mean: {np.mean(discriminations):.2f}") + print(f" Std: {np.std(discriminations):.2f}") + print(f" Range: [{np.min(discriminations):.2f}, {np.max(discriminations):.2f}]") + + # Categorize difficulty + easy = sum(1 for d in difficulties if d < -1) + medium = sum(1 for d in difficulties if -1 <= d <= 1) + hard = sum(1 for d in difficulties if d > 1) + print(f"\nDifficulty Categories:") + print(f" Easy (b < -1): {easy} ({100*easy/len(difficulties):.1f}%)") + print(f" Medium (-1 <= b <= 1): {medium} ({100*medium/len(difficulties):.1f}%)") + print(f" Hard (b > 1): {hard} ({100*hard/len(difficulties):.1f}%)") + + +def save_results(formatted_results, output_dir): + """Save results to JSON.""" + os.makedirs(output_dir, exist_ok=True) + + output_path = os.path.join(output_dir, 'irt_parameters.json') + with open(output_path, 'w') as f: + json.dump(formatted_results, f, indent=2) + print(f"\nSaved: {output_path}") + print(f" Total problems: {len(formatted_results)}") + + +def plot_results(irt_results, simple_stats, output_dir): + """Generate plots.""" + os.makedirs(output_dir, exist_ok=True) + + fig, axes = plt.subplots(2, 2, figsize=(12, 10)) + + # Plot 1: Simple difficulty distribution (all problems) + axes[0, 0].hist(simple_stats['difficulty_simple'], bins=30, edgecolor='black', alpha=0.7, color='steelblue') + axes[0, 0].set_xlabel('Difficulty (logit scale)') + axes[0, 0].set_ylabel('Number of Problems') + axes[0, 0].set_title(f'Simple Difficulty Distribution (n={len(simple_stats)})') + axes[0, 0].axvline(0, color='red', linestyle='--', alpha=0.5) + + if irt_results['2PL']: + difficulties = irt_results['2PL']['difficulty'] + discriminations = irt_results['2PL']['discrimination'] + + # Plot 2: 2PL Difficulty + axes[0, 1].hist(difficulties, bins=30, edgecolor='black', alpha=0.7, color='orange') + axes[0, 1].set_xlabel('Difficulty (b)') + axes[0, 1].set_ylabel('Number of Problems') + axes[0, 1].set_title(f'2PL Difficulty Distribution (n={len(difficulties)})') + axes[0, 1].axvline(0, color='red', linestyle='--', alpha=0.5) + + # Plot 3: 2PL Discrimination + axes[1, 0].hist(discriminations, bins=30, edgecolor='black', alpha=0.7, color='green') + axes[1, 0].set_xlabel('Discrimination (a)') + axes[1, 0].set_ylabel('Number of Problems') + axes[1, 0].set_title('2PL Discrimination Distribution') + axes[1, 0].axvline(1, color='red', linestyle='--', alpha=0.5) + + # Plot 4: Difficulty vs Discrimination scatter + axes[1, 1].scatter(difficulties, discriminations, alpha=0.5) + axes[1, 1].set_xlabel('Difficulty (b)') + axes[1, 1].set_ylabel('Discrimination (a)') + axes[1, 1].set_title('Difficulty vs Discrimination') + axes[1, 1].axhline(1, color='red', linestyle='--', alpha=0.3) + axes[1, 1].axvline(0, color='red', linestyle='--', alpha=0.3) + else: + for ax in [axes[0, 1], axes[1, 0], axes[1, 1]]: + ax.text(0.5, 0.5, '2PL not fitted', ha='center', va='center', transform=ax.transAxes) + + plt.tight_layout() + plot_path = os.path.join(output_dir, 'irt_parameters.png') + plt.savefig(plot_path, dpi=150) + plt.close() + + print(f"Saved: {plot_path}") + + +def main(): + args = parse_args() + + # Load data + student_df, problems_df = load_data(args.data_dir) + + # Compute simple difficulty for ALL problems + simple_stats = compute_simple_difficulty(student_df, args.min_responses) + + # Prepare sparse data for IRT (no imputation!) + (student_indices, problem_indices, response_values, + num_students, num_problems, idx_to_problem) = prepare_sparse_data( + student_df, args.min_responses + ) + + # Fit IRT models + irt_results = fit_irt_models( + student_indices, problem_indices, response_values, + num_students, num_problems, args.epochs, args.device + ) + + # Print summary + print_summary(irt_results, simple_stats) + + # Format and save results + formatted = format_results(irt_results, idx_to_problem, simple_stats) + save_results(formatted, args.output_dir) + + # Plot + if not args.no_plots: + plot_results(irt_results, simple_stats, args.output_dir) + + print("\nDone!") + + +if __name__ == "__main__": + main() diff --git a/Results/pedagogical_grounding/llama33_70b_instruct_pedagogical.py b/Results/pedagogical_grounding/llama33_70b_instruct_pedagogical.py new file mode 100644 index 0000000000000000000000000000000000000000..c16936bdbe1ccc9552d9898c23f08c7ee84b06c4 --- /dev/null +++ b/Results/pedagogical_grounding/llama33_70b_instruct_pedagogical.py @@ -0,0 +1,56 @@ +""" +Pedagogical Grounding benchmark with Llama-3.3-70B-Instruct model. + +Usage: + # Run difficulty comparison task + CUDA_VISIBLE_DEVICES=0,1,2,3 python pedagogical_grounding/llama33_70b_instruct_pedagogical.py \ + --task difficulty \ + --data-dir . \ + --num-gpus 4 \ + --num-samples 1000 \ + --sampling-mode stratified \ + --cache-dir /data1/ + + # Run discrimination comparison task + CUDA_VISIBLE_DEVICES=0,1,2,3 python pedagogical_grounding/llama33_70b_instruct_pedagogical.py \ + --task discrimination \ + --data-dir . \ + --num-gpus 4 \ + --num-samples 1000 + + # Run most common distractor task + CUDA_VISIBLE_DEVICES=0,1,2,3 python pedagogical_grounding/llama33_70b_instruct_pedagogical.py \ + --task distractor_most \ + --data-dir . \ + --num-gpus 4 + + # Run least common distractor task + CUDA_VISIBLE_DEVICES=0,1,2,3 python pedagogical_grounding/llama33_70b_instruct_pedagogical.py \ + --task distractor_least \ + --data-dir . \ + --num-gpus 4 + + # Run all tasks + CUDA_VISIBLE_DEVICES=0,1,2,3 python pedagogical_grounding/llama33_70b_instruct_pedagogical.py \ + --task all \ + --data-dir . \ + --num-gpus 4 \ + --num-samples 500 +""" + +from pedagogical_inference_base import run_inference + +MODEL_CONFIG = { + "model_id": "meta-llama/Llama-3.3-70B-Instruct", + "gen_configs": { + "temperature": 0.7, + "top_p": 0.9, + "max_tokens": 1024, + "repetition_penalty": 1.0, + }, + "output_prefix": "llama33_70b_instruct", + "system_prompt_prefix": "", +} + +if __name__ == "__main__": + run_inference(MODEL_CONFIG) diff --git a/Results/pedagogical_grounding/output/distractor_analysis.png b/Results/pedagogical_grounding/output/distractor_analysis.png new file mode 100644 index 0000000000000000000000000000000000000000..b640df9dff0c64ac767e13599ff9463d55ce5846 Binary files /dev/null and b/Results/pedagogical_grounding/output/distractor_analysis.png differ diff --git a/Results/pedagogical_grounding/output/distractor_stats.json b/Results/pedagogical_grounding/output/distractor_stats.json new file mode 100644 index 0000000000000000000000000000000000000000..99ad2ad7fdf9e919e81b1bf6ae93e9767204a7b0 --- /dev/null +++ b/Results/pedagogical_grounding/output/distractor_stats.json @@ -0,0 +1,4844 @@ +[ + { + "problem_id": 74236, + "n_choices": 4, + "total_responses": 256, + "correct_count": 140, + "correct_rate": 0.546875, + "distractors": { + "Han is correct": 29, + "Elena is correct": 53, + "Neither is correct": 34 + }, + "distractor_frequencies": { + "Han is correct": 0.11328125, + "Elena is correct": 0.20703125, + "Neither is correct": 0.1328125 + }, + "most_common_distractor": "Elena is correct", + "most_common_distractor_freq": 0.20703125, + "least_common_distractor": "Han is correct", + "least_common_distractor_freq": 0.11328125 + }, + { + "problem_id": 97579, + "n_choices": 4, + "total_responses": 309, + "correct_count": 222, + "correct_rate": 0.7184466019417476, + "distractors": { + "Agree with both": 52, + "Agree with Jada": 35, + "Disagree with both": 0 + }, + "distractor_frequencies": { + "Agree with both": 0.16828478964401294, + "Agree with Jada": 0.11326860841423948, + "Disagree with both": 0.0 + }, + "most_common_distractor": "Agree with both", + "most_common_distractor_freq": 0.16828478964401294, + "least_common_distractor": "Disagree with both", + "least_common_distractor_freq": 0.0 + }, + { + "problem_id": 78469, + "n_choices": 4, + "total_responses": 237, + "correct_count": 104, + "correct_rate": 0.4388185654008439, + "distractors": { + "I agree with Jada": 58, + "I agree with both of them": 63, + "I agree with neither of them": 12 + }, + "distractor_frequencies": { + "I agree with Jada": 0.24472573839662448, + "I agree with both of them": 0.26582278481012656, + "I agree with neither of them": 0.05063291139240506 + }, + "most_common_distractor": "I agree with both of them", + "most_common_distractor_freq": 0.26582278481012656, + "least_common_distractor": "I agree with neither of them", + "least_common_distractor_freq": 0.05063291139240506 + }, + { + "problem_id": 78941, + "n_choices": 4, + "total_responses": 53, + "correct_count": 43, + "correct_rate": 0.8113207547169812, + "distractors": { + "72 \u22c5 2": 4, + "72 \u2212 2": 2, + "2 \u00f7 72": 4 + }, + "distractor_frequencies": { + "72 \u22c5 2": 0.07547169811320754, + "72 \u2212 2": 0.03773584905660377, + "2 \u00f7 72": 0.07547169811320754 + }, + "most_common_distractor": "72 \u22c5 2", + "most_common_distractor_freq": 0.07547169811320754, + "least_common_distractor": "72 \u2212 2", + "least_common_distractor_freq": 0.03773584905660377 + }, + { + "problem_id": 518730, + "n_choices": 4, + "total_responses": 41, + "correct_count": 29, + "correct_rate": 0.7073170731707317, + "distractors": { + "96": 7, + "125": 4, + "216": 1 + }, + "distractor_frequencies": { + "96": 0.17073170731707318, + "125": 0.0975609756097561, + "216": 0.024390243902439025 + }, + "most_common_distractor": "96", + "most_common_distractor_freq": 0.17073170731707318, + "least_common_distractor": "216", + "least_common_distractor_freq": 0.024390243902439025 + }, + { + "problem_id": 158855, + "n_choices": 3, + "total_responses": 514, + "correct_count": 128, + "correct_rate": 0.2490272373540856, + "distractors": { + "Sixth-grade students": 180, + "Seventh-grade students": 206 + }, + "distractor_frequencies": { + "Sixth-grade students": 0.35019455252918286, + "Seventh-grade students": 0.40077821011673154 + }, + "most_common_distractor": "Seventh-grade students", + "most_common_distractor_freq": 0.40077821011673154, + "least_common_distractor": "Sixth-grade students", + "least_common_distractor_freq": 0.35019455252918286 + }, + { + "problem_id": 42864, + "n_choices": 5, + "total_responses": 33, + "correct_count": 32, + "correct_rate": 0.9696969696969697, + "distractors": { + "unlikely": 0, + "equally likely as not": 1, + "likely": 0, + "certain": 0 + }, + "distractor_frequencies": { + "unlikely": 0.0, + "equally likely as not": 0.030303030303030304, + "likely": 0.0, + "certain": 0.0 + }, + "most_common_distractor": "equally likely as not", + "most_common_distractor_freq": 0.030303030303030304, + "least_common_distractor": "certain", + "least_common_distractor_freq": 0.0 + }, + { + "problem_id": 146523, + "n_choices": 4, + "total_responses": 692, + "correct_count": 432, + "correct_rate": 0.6242774566473989, + "distractors": { + "The square\u2019s side length is 5.": 109, + "The square\u2019s side length is between 6 and 7.": 111, + "The square\u2019s side length is 7.": 40 + }, + "distractor_frequencies": { + "The square\u2019s side length is 5.": 0.157514450867052, + "The square\u2019s side length is between 6 and 7.": 0.16040462427745664, + "The square\u2019s side length is 7.": 0.057803468208092484 + }, + "most_common_distractor": "The square\u2019s side length is between 6 and 7.", + "most_common_distractor_freq": 0.16040462427745664, + "least_common_distractor": "The square\u2019s side length is 7.", + "least_common_distractor_freq": 0.057803468208092484 + }, + { + "problem_id": 273669, + "n_choices": 4, + "total_responses": 1372, + "correct_count": 820, + "correct_rate": 0.597667638483965, + "distractors": { + "16 square units": 154, + "32 square units": 285, + "48 square units": 113 + }, + "distractor_frequencies": { + "16 square units": 0.11224489795918367, + "32 square units": 0.20772594752186588, + "48 square units": 0.08236151603498543 + }, + "most_common_distractor": "32 square units", + "most_common_distractor_freq": 0.20772594752186588, + "least_common_distractor": "48 square units", + "least_common_distractor_freq": 0.08236151603498543 + }, + { + "problem_id": 39966, + "n_choices": 4, + "total_responses": 438, + "correct_count": 31, + "correct_rate": 0.07077625570776255, + "distractors": { + "

-24\u00b0C

": 274, + "

24\u00b0C

": 11 + }, + "distractor_frequencies": { + "

-24\u00b0C

": 0.6255707762557078, + "

24\u00b0C

": 0.02511415525114155 + }, + "most_common_distractor": "

-24\u00b0C

", + "most_common_distractor_freq": 0.6255707762557078, + "least_common_distractor": "

24\u00b0C

", + "least_common_distractor_freq": 0.02511415525114155 + }, + { + "problem_id": 79163, + "n_choices": 4, + "total_responses": 26, + "correct_count": 18, + "correct_rate": 0.6923076923076923, + "distractors": { + "The high temperature in Lubbock increased as time passed.": 4, + "Initially, the high temperature was warmer in Phoenix than in Memphis.": 4, + "The high temperature in Phoenix rose faster than the temperature in NewOrleans.": 0 + }, + "distractor_frequencies": { + "The high temperature in Lubbock increased as time passed.": 0.15384615384615385, + "Initially, the high temperature was warmer in Phoenix than in Memphis.": 0.15384615384615385, + "The high temperature in Phoenix rose faster than the temperature in NewOrleans.": 0.0 + }, + "most_common_distractor": "The high temperature in Lubbock increased as time passed.", + "most_common_distractor_freq": 0.15384615384615385, + "least_common_distractor": "The high temperature in Phoenix rose faster than the temperature in NewOrleans.", + "least_common_distractor_freq": 0.0 + }, + { + "problem_id": 63054, + "n_choices": 4, + "total_responses": 733, + "correct_count": 0, + "correct_rate": 0.0, + "distractors": { + "Quadrant IV": 0 + }, + "distractor_frequencies": { + "Quadrant IV": 0.0 + }, + "most_common_distractor": "Quadrant IV", + "most_common_distractor_freq": 0.0, + "least_common_distractor": "Quadrant IV", + "least_common_distractor_freq": 0.0 + }, + { + "problem_id": 188655, + "n_choices": 4, + "total_responses": 570, + "correct_count": 324, + "correct_rate": 0.5684210526315789, + "distractors": { + "The mean is less than the median.": 139, + "The mean is approximately equal to the median.": 86, + "The mean cannot be determined.": 21 + }, + "distractor_frequencies": { + "The mean is less than the median.": 0.24385964912280703, + "The mean is approximately equal to the median.": 0.15087719298245614, + "The mean cannot be determined.": 0.03684210526315789 + }, + "most_common_distractor": "The mean is less than the median.", + "most_common_distractor_freq": 0.24385964912280703, + "least_common_distractor": "The mean cannot be determined.", + "least_common_distractor_freq": 0.03684210526315789 + }, + { + "problem_id": 46209, + "n_choices": 3, + "total_responses": 1315, + "correct_count": 1087, + "correct_rate": 0.8266159695817491, + "distractors": { + "

medium

": 202, + "

small

": 26 + }, + "distractor_frequencies": { + "

medium

": 0.15361216730038021, + "

small

": 0.01977186311787072 + }, + "most_common_distractor": "

medium

", + "most_common_distractor_freq": 0.15361216730038021, + "least_common_distractor": "

small

", + "least_common_distractor_freq": 0.01977186311787072 + }, + { + "problem_id": 278232, + "n_choices": 4, + "total_responses": 61, + "correct_count": 49, + "correct_rate": 0.8032786885245902, + "distractors": { + "0.1645 feet": 2, + "4.1125 feet": 6, + "41.125 feet": 4 + }, + "distractor_frequencies": { + "0.1645 feet": 0.03278688524590164, + "4.1125 feet": 0.09836065573770492, + "41.125 feet": 0.06557377049180328 + }, + "most_common_distractor": "4.1125 feet", + "most_common_distractor_freq": 0.09836065573770492, + "least_common_distractor": "0.1645 feet", + "least_common_distractor_freq": 0.03278688524590164 + }, + { + "problem_id": 674243, + "n_choices": 4, + "total_responses": 31, + "correct_count": 11, + "correct_rate": 0.3548387096774194, + "distractors": { + "

15,795 cm³

": 18, + "2,534 cm\u00b3": 0, + "512 cm\u00b3": 2 + }, + "distractor_frequencies": { + "

15,795 cm³

": 0.5806451612903226, + "2,534 cm\u00b3": 0.0, + "512 cm\u00b3": 0.06451612903225806 + }, + "most_common_distractor": "

15,795 cm³

", + "most_common_distractor_freq": 0.5806451612903226, + "least_common_distractor": "2,534 cm\u00b3", + "least_common_distractor_freq": 0.0 + }, + { + "problem_id": 146478, + "n_choices": 5, + "total_responses": 2940, + "correct_count": 1254, + "correct_rate": 0.42653061224489797, + "distractors": { + "1 to 1,000": 1202, + "10,000 to 1": 182, + "100,000 to 1": 302, + "1 to 1,000,000": 0 + }, + "distractor_frequencies": { + "1 to 1,000": 0.408843537414966, + "10,000 to 1": 0.06190476190476191, + "100,000 to 1": 0.10272108843537416, + "1 to 1,000,000": 0.0 + }, + "most_common_distractor": "1 to 1,000", + "most_common_distractor_freq": 0.408843537414966, + "least_common_distractor": "1 to 1,000,000", + "least_common_distractor_freq": 0.0 + }, + { + "problem_id": 117977, + "n_choices": 3, + "total_responses": 142, + "correct_count": 96, + "correct_rate": 0.676056338028169, + "distractors": { + "8:05-8:09": 25, + "8:25-8:29": 21 + }, + "distractor_frequencies": { + "8:05-8:09": 0.176056338028169, + "8:25-8:29": 0.14788732394366197 + }, + "most_common_distractor": "8:05-8:09", + "most_common_distractor_freq": 0.176056338028169, + "least_common_distractor": "8:25-8:29", + "least_common_distractor_freq": 0.14788732394366197 + }, + { + "problem_id": 509942, + "n_choices": 4, + "total_responses": 1983, + "correct_count": 943, + "correct_rate": 0.475542107917297, + "distractors": { + "$3.04": 226, + "$12.16": 257, + "$18.24": 557 + }, + "distractor_frequencies": { + "$3.04": 0.11396873424104892, + "$12.16": 0.129601613716591, + "$18.24": 0.28088754412506306 + }, + "most_common_distractor": "$18.24", + "most_common_distractor_freq": 0.28088754412506306, + "least_common_distractor": "$3.04", + "least_common_distractor_freq": 0.11396873424104892 + }, + { + "problem_id": 115193, + "n_choices": 4, + "total_responses": 58, + "correct_count": 42, + "correct_rate": 0.7241379310344828, + "distractors": { + "12 teaspoons": 7, + "18 teaspoons": 4, + "26 teaspoons": 5 + }, + "distractor_frequencies": { + "12 teaspoons": 0.1206896551724138, + "18 teaspoons": 0.06896551724137931, + "26 teaspoons": 0.08620689655172414 + }, + "most_common_distractor": "12 teaspoons", + "most_common_distractor_freq": 0.1206896551724138, + "least_common_distractor": "18 teaspoons", + "least_common_distractor_freq": 0.06896551724137931 + }, + { + "problem_id": 189992, + "n_choices": 4, + "total_responses": 347, + "correct_count": 186, + "correct_rate": 0.5360230547550432, + "distractors": { + "

A

": 31, + "

B

": 84, + "

C

": 46 + }, + "distractor_frequencies": { + "

A

": 0.0893371757925072, + "

B

": 0.2420749279538905, + "

C

": 0.13256484149855907 + }, + "most_common_distractor": "

B

", + "most_common_distractor_freq": 0.2420749279538905, + "least_common_distractor": "

A

", + "least_common_distractor_freq": 0.0893371757925072 + }, + { + "problem_id": 295992, + "n_choices": 4, + "total_responses": 81, + "correct_count": 51, + "correct_rate": 0.6296296296296297, + "distractors": { + "Box A": 2, + "Box B": 23, + "Boxes A,B,C fits the same number of 1-centimeter cubes": 5 + }, + "distractor_frequencies": { + "Box A": 0.024691358024691357, + "Box B": 0.2839506172839506, + "Boxes A,B,C fits the same number of 1-centimeter cubes": 0.06172839506172839 + }, + "most_common_distractor": "Box B", + "most_common_distractor_freq": 0.2839506172839506, + "least_common_distractor": "Box A", + "least_common_distractor_freq": 0.024691358024691357 + }, + { + "problem_id": 41980, + "n_choices": 5, + "total_responses": 33, + "correct_count": 0, + "correct_rate": 0.0, + "distractors": { + "impossible": 2, + "equally likely as not": 1, + "certain": 0 + }, + "distractor_frequencies": { + "impossible": 0.06060606060606061, + "equally likely as not": 0.030303030303030304, + "certain": 0.0 + }, + "most_common_distractor": "impossible", + "most_common_distractor_freq": 0.06060606060606061, + "least_common_distractor": "certain", + "least_common_distractor_freq": 0.0 + }, + { + "problem_id": 40538, + "n_choices": 4, + "total_responses": 73, + "correct_count": 0, + "correct_rate": 0.0, + "distractors": { + "Translate 3 units up, then 3 units down.": 55, + "

Reflect over line p, then reflect over line p again.

": 16, + "Translate 1 unit to the right, then 4 units to the left, then 3 units to the right.": 2 + }, + "distractor_frequencies": { + "Translate 3 units up, then 3 units down.": 0.7534246575342466, + "

Reflect over line p, then reflect over line p again.

": 0.2191780821917808, + "Translate 1 unit to the right, then 4 units to the left, then 3 units to the right.": 0.0273972602739726 + }, + "most_common_distractor": "Translate 3 units up, then 3 units down.", + "most_common_distractor_freq": 0.7534246575342466, + "least_common_distractor": "Translate 1 unit to the right, then 4 units to the left, then 3 units to the right.", + "least_common_distractor_freq": 0.0273972602739726 + }, + { + "problem_id": 247727, + "n_choices": 4, + "total_responses": 318, + "correct_count": 168, + "correct_rate": 0.5283018867924528, + "distractors": { + "4.5%": 83, + "95.7%": 67, + "104.5%": 0 + }, + "distractor_frequencies": { + "4.5%": 0.2610062893081761, + "95.7%": 0.21069182389937108, + "104.5%": 0.0 + }, + "most_common_distractor": "4.5%", + "most_common_distractor_freq": 0.2610062893081761, + "least_common_distractor": "104.5%", + "least_common_distractor_freq": 0.0 + }, + { + "problem_id": 3724, + "n_choices": 4, + "total_responses": 10, + "correct_count": 3, + "correct_rate": 0.3, + "distractors": { + "(4, 1)": 2, + "(7, 4)": 4, + "(11, 1)": 1 + }, + "distractor_frequencies": { + "(4, 1)": 0.2, + "(7, 4)": 0.4, + "(11, 1)": 0.1 + }, + "most_common_distractor": "(7, 4)", + "most_common_distractor_freq": 0.4, + "least_common_distractor": "(11, 1)", + "least_common_distractor_freq": 0.1 + }, + { + "problem_id": 24438, + "n_choices": 4, + "total_responses": 69, + "correct_count": 11, + "correct_rate": 0.15942028985507245, + "distractors": { + "The distance between the heights of the whale and the plane is -10,460 feet.": 8, + "The difference in height between the whale and the plane is 10,460 feet.": 30, + "The difference in height between the whale and the ship is -1,040 feet.": 20 + }, + "distractor_frequencies": { + "The distance between the heights of the whale and the plane is -10,460 feet.": 0.11594202898550725, + "The difference in height between the whale and the plane is 10,460 feet.": 0.43478260869565216, + "The difference in height between the whale and the ship is -1,040 feet.": 0.2898550724637681 + }, + "most_common_distractor": "The difference in height between the whale and the plane is 10,460 feet.", + "most_common_distractor_freq": 0.43478260869565216, + "least_common_distractor": "The distance between the heights of the whale and the plane is -10,460 feet.", + "least_common_distractor_freq": 0.11594202898550725 + }, + { + "problem_id": 115085, + "n_choices": 4, + "total_responses": 34, + "correct_count": 29, + "correct_rate": 0.8529411764705882, + "distractors": { + "60": 4, + "180": 1, + "360": 0 + }, + "distractor_frequencies": { + "60": 0.11764705882352941, + "180": 0.029411764705882353, + "360": 0.0 + }, + "most_common_distractor": "60", + "most_common_distractor_freq": 0.11764705882352941, + "least_common_distractor": "360", + "least_common_distractor_freq": 0.0 + }, + { + "problem_id": 350639, + "n_choices": 3, + "total_responses": 105, + "correct_count": 69, + "correct_rate": 0.6571428571428571, + "distractors": { + "greater than 2.9\u00b3": 27, + "equal to 2.9\u00b3": 9 + }, + "distractor_frequencies": { + "greater than 2.9\u00b3": 0.2571428571428571, + "equal to 2.9\u00b3": 0.08571428571428572 + }, + "most_common_distractor": "greater than 2.9\u00b3", + "most_common_distractor_freq": 0.2571428571428571, + "least_common_distractor": "equal to 2.9\u00b3", + "least_common_distractor_freq": 0.08571428571428572 + }, + { + "problem_id": 14371, + "n_choices": 4, + "total_responses": 680, + "correct_count": 502, + "correct_rate": 0.7382352941176471, + "distractors": { + "

7.57

": 0, + "

21

": 92, + "

75.7

": 86 + }, + "distractor_frequencies": { + "

7.57

": 0.0, + "

21

": 0.13529411764705881, + "

75.7

": 0.1264705882352941 + }, + "most_common_distractor": "

21

", + "most_common_distractor_freq": 0.13529411764705881, + "least_common_distractor": "

7.57

", + "least_common_distractor_freq": 0.0 + }, + { + "problem_id": 308146, + "n_choices": 4, + "total_responses": 34, + "correct_count": 33, + "correct_rate": 0.9705882352941176, + "distractors": { + "

38

": 0, + "

1

": 1 + }, + "distractor_frequencies": { + "

38

": 0.0, + "

1

": 0.029411764705882353 + }, + "most_common_distractor": "

1

", + "most_common_distractor_freq": 0.029411764705882353, + "least_common_distractor": "

38

", + "least_common_distractor_freq": 0.0 + }, + { + "problem_id": 239815, + "n_choices": 4, + "total_responses": 111, + "correct_count": 25, + "correct_rate": 0.22522522522522523, + "distractors": { + "Triangles 1 and 2 each have a 35\u00ba angle.": 48, + "Triangles 3 and 4 are both isosceles. They each have a 40\u00ba angle.": 35, + "Triangle 5 has a 30\u00ba angle and a 90\u00ba angle. Triangle 6 has a 30\u00ba angle and a 70\u00ba angle.": 3 + }, + "distractor_frequencies": { + "Triangles 1 and 2 each have a 35\u00ba angle.": 0.43243243243243246, + "Triangles 3 and 4 are both isosceles. They each have a 40\u00ba angle.": 0.3153153153153153, + "Triangle 5 has a 30\u00ba angle and a 90\u00ba angle. Triangle 6 has a 30\u00ba angle and a 70\u00ba angle.": 0.02702702702702703 + }, + "most_common_distractor": "Triangles 1 and 2 each have a 35\u00ba angle.", + "most_common_distractor_freq": 0.43243243243243246, + "least_common_distractor": "Triangle 5 has a 30\u00ba angle and a 90\u00ba angle. Triangle 6 has a 30\u00ba angle and a 70\u00ba angle.", + "least_common_distractor_freq": 0.02702702702702703 + }, + { + "problem_id": 93881, + "n_choices": 3, + "total_responses": 660, + "correct_count": 0, + "correct_rate": 0.0, + "distractors": { + "Yes": 152 + }, + "distractor_frequencies": { + "Yes": 0.23030303030303031 + }, + "most_common_distractor": "Yes", + "most_common_distractor_freq": 0.23030303030303031, + "least_common_distractor": "Yes", + "least_common_distractor_freq": 0.23030303030303031 + }, + { + "problem_id": 21032, + "n_choices": 4, + "total_responses": 53, + "correct_count": 40, + "correct_rate": 0.7547169811320755, + "distractors": { + "

Multiply 12 by 3, then divide by 8.

": 10, + "

Multiply 3 by 8, then divide by 12.

": 3, + "

Multiply 12 by 18, then multiply by 3.

": 0 + }, + "distractor_frequencies": { + "

Multiply 12 by 3, then divide by 8.

": 0.18867924528301888, + "

Multiply 3 by 8, then divide by 12.

": 0.05660377358490566, + "

Multiply 12 by 18, then multiply by 3.

": 0.0 + }, + "most_common_distractor": "

Multiply 12 by 3, then divide by 8.

", + "most_common_distractor_freq": 0.18867924528301888, + "least_common_distractor": "

Multiply 12 by 18, then multiply by 3.

", + "least_common_distractor_freq": 0.0 + }, + { + "problem_id": 363244, + "n_choices": 4, + "total_responses": 448, + "correct_count": 286, + "correct_rate": 0.6383928571428571, + "distractors": { + "It is significantly less than the MAD of the U.S. data set.": 57, + "It is exactly equal to the MAD of the U.S. data set.": 32, + "It is approximately equal to the MAD of the U.S. data set.": 73 + }, + "distractor_frequencies": { + "It is significantly less than the MAD of the U.S. data set.": 0.12723214285714285, + "It is exactly equal to the MAD of the U.S. data set.": 0.07142857142857142, + "It is approximately equal to the MAD of the U.S. data set.": 0.16294642857142858 + }, + "most_common_distractor": "It is approximately equal to the MAD of the U.S. data set.", + "most_common_distractor_freq": 0.16294642857142858, + "least_common_distractor": "It is exactly equal to the MAD of the U.S. data set.", + "least_common_distractor_freq": 0.07142857142857142 + }, + { + "problem_id": 274984, + "n_choices": 4, + "total_responses": 952, + "correct_count": 771, + "correct_rate": 0.8098739495798319, + "distractors": { + "

$9.60

": 86, + "

$10.60

": 29, + "

$5.90

": 66 + }, + "distractor_frequencies": { + "

$9.60

": 0.09033613445378151, + "

$10.60

": 0.03046218487394958, + "

$5.90

": 0.06932773109243698 + }, + "most_common_distractor": "

$9.60

", + "most_common_distractor_freq": 0.09033613445378151, + "least_common_distractor": "

$10.60

", + "least_common_distractor_freq": 0.03046218487394958 + }, + { + "problem_id": 75212, + "n_choices": 4, + "total_responses": 29, + "correct_count": 21, + "correct_rate": 0.7241379310344828, + "distractors": { + "

18 mile per hour

": 0, + "

18 hours per mile

": 0, + "

8 hours per mile

": 8 + }, + "distractor_frequencies": { + "

18 mile per hour

": 0.0, + "

18 hours per mile

": 0.0, + "

8 hours per mile

": 0.27586206896551724 + }, + "most_common_distractor": "

8 hours per mile

", + "most_common_distractor_freq": 0.27586206896551724, + "least_common_distractor": "

18 hours per mile

", + "least_common_distractor_freq": 0.0 + }, + { + "problem_id": 145792, + "n_choices": 3, + "total_responses": 403, + "correct_count": 342, + "correct_rate": 0.8486352357320099, + "distractors": { + "ED": 23, + "GJ": 38 + }, + "distractor_frequencies": { + "ED": 0.05707196029776675, + "GJ": 0.09429280397022333 + }, + "most_common_distractor": "GJ", + "most_common_distractor_freq": 0.09429280397022333, + "least_common_distractor": "ED", + "least_common_distractor_freq": 0.05707196029776675 + }, + { + "problem_id": 297864, + "n_choices": 4, + "total_responses": 45, + "correct_count": 23, + "correct_rate": 0.5111111111111111, + "distractors": { + "23": 5, + "26 ": 14, + "62": 3 + }, + "distractor_frequencies": { + "23": 0.1111111111111111, + "26 ": 0.3111111111111111, + "62": 0.06666666666666667 + }, + "most_common_distractor": "26 ", + "most_common_distractor_freq": 0.3111111111111111, + "least_common_distractor": "62", + "least_common_distractor_freq": 0.06666666666666667 + }, + { + "problem_id": 278455, + "n_choices": 4, + "total_responses": 60, + "correct_count": 0, + "correct_rate": 0.0, + "distractors": { + "10,000": 5, + "100,000": 18 + }, + "distractor_frequencies": { + "10,000": 0.08333333333333333, + "100,000": 0.3 + }, + "most_common_distractor": "100,000", + "most_common_distractor_freq": 0.3, + "least_common_distractor": "10,000", + "least_common_distractor_freq": 0.08333333333333333 + }, + { + "problem_id": 28184, + "n_choices": 4, + "total_responses": 62, + "correct_count": 49, + "correct_rate": 0.7903225806451613, + "distractors": { + "Dilations of a triangle must be congruent to the original triangle.": 6, + "Dilations of a segment must be congruent to the original segment.": 4, + "Dilations of a circle must be congruent to the original circle.": 3 + }, + "distractor_frequencies": { + "Dilations of a triangle must be congruent to the original triangle.": 0.0967741935483871, + "Dilations of a segment must be congruent to the original segment.": 0.06451612903225806, + "Dilations of a circle must be congruent to the original circle.": 0.04838709677419355 + }, + "most_common_distractor": "Dilations of a triangle must be congruent to the original triangle.", + "most_common_distractor_freq": 0.0967741935483871, + "least_common_distractor": "Dilations of a circle must be congruent to the original circle.", + "least_common_distractor_freq": 0.04838709677419355 + }, + { + "problem_id": 4091, + "n_choices": 4, + "total_responses": 157, + "correct_count": 123, + "correct_rate": 0.7834394904458599, + "distractors": { + "90%": 10, + "9%": 7, + "0.6%": 17 + }, + "distractor_frequencies": { + "90%": 0.06369426751592357, + "9%": 0.044585987261146494, + "0.6%": 0.10828025477707007 + }, + "most_common_distractor": "0.6%", + "most_common_distractor_freq": 0.10828025477707007, + "least_common_distractor": "9%", + "least_common_distractor_freq": 0.044585987261146494 + }, + { + "problem_id": 3634, + "n_choices": 4, + "total_responses": 10, + "correct_count": 6, + "correct_rate": 0.6, + "distractors": { + "(-6, 0)": 3, + "(4, 2)": 1, + "(5, 1)": 0 + }, + "distractor_frequencies": { + "(-6, 0)": 0.3, + "(4, 2)": 0.1, + "(5, 1)": 0.0 + }, + "most_common_distractor": "(-6, 0)", + "most_common_distractor_freq": 0.3, + "least_common_distractor": "(5, 1)", + "least_common_distractor_freq": 0.0 + }, + { + "problem_id": 130499, + "n_choices": 4, + "total_responses": 160, + "correct_count": 92, + "correct_rate": 0.575, + "distractors": { + "4, 4, 4": 31, + "6, 6, 2": 27, + "7, 8, 13": 10 + }, + "distractor_frequencies": { + "4, 4, 4": 0.19375, + "6, 6, 2": 0.16875, + "7, 8, 13": 0.0625 + }, + "most_common_distractor": "4, 4, 4", + "most_common_distractor_freq": 0.19375, + "least_common_distractor": "7, 8, 13", + "least_common_distractor_freq": 0.0625 + }, + { + "problem_id": 606133, + "n_choices": 4, + "total_responses": 103, + "correct_count": 47, + "correct_rate": 0.4563106796116505, + "distractors": { + "1,240 square miles": 23, + "94,500 square miles": 26, + "119,000 square miles": 7 + }, + "distractor_frequencies": { + "1,240 square miles": 0.22330097087378642, + "94,500 square miles": 0.2524271844660194, + "119,000 square miles": 0.06796116504854369 + }, + "most_common_distractor": "94,500 square miles", + "most_common_distractor_freq": 0.2524271844660194, + "least_common_distractor": "119,000 square miles", + "least_common_distractor_freq": 0.06796116504854369 + }, + { + "problem_id": 209506, + "n_choices": 3, + "total_responses": 65, + "correct_count": 41, + "correct_rate": 0.6307692307692307, + "distractors": { + "First tree": 12, + "Second tree": 12 + }, + "distractor_frequencies": { + "First tree": 0.18461538461538463, + "Second tree": 0.18461538461538463 + }, + "most_common_distractor": "First tree", + "most_common_distractor_freq": 0.18461538461538463, + "least_common_distractor": "Second tree", + "least_common_distractor_freq": 0.18461538461538463 + }, + { + "problem_id": 134923, + "n_choices": 6, + "total_responses": 154, + "correct_count": 107, + "correct_rate": 0.6948051948051948, + "distractors": { + "0.608571": 9, + "60.8571": 16, + "608.571": 5, + "6085.71": 5, + "60857.1": 12 + }, + "distractor_frequencies": { + "0.608571": 0.05844155844155844, + "60.8571": 0.1038961038961039, + "608.571": 0.032467532467532464, + "6085.71": 0.032467532467532464, + "60857.1": 0.07792207792207792 + }, + "most_common_distractor": "60.8571", + "most_common_distractor_freq": 0.1038961038961039, + "least_common_distractor": "6085.71", + "least_common_distractor_freq": 0.032467532467532464 + }, + { + "problem_id": 560450, + "n_choices": 4, + "total_responses": 22, + "correct_count": 15, + "correct_rate": 0.6818181818181818, + "distractors": { + "24.5 miles": 5, + "59.5 miles": 0, + "200 miles": 2 + }, + "distractor_frequencies": { + "24.5 miles": 0.22727272727272727, + "59.5 miles": 0.0, + "200 miles": 0.09090909090909091 + }, + "most_common_distractor": "24.5 miles", + "most_common_distractor_freq": 0.22727272727272727, + "least_common_distractor": "59.5 miles", + "least_common_distractor_freq": 0.0 + }, + { + "problem_id": 171657, + "n_choices": 6, + "total_responses": 150, + "correct_count": 113, + "correct_rate": 0.7533333333333333, + "distractors": { + "doughnuts": 1, + "straws": 4, + "hot dogs": 3, + "apples": 0, + "french fries": 29 + }, + "distractor_frequencies": { + "doughnuts": 0.006666666666666667, + "straws": 0.02666666666666667, + "hot dogs": 0.02, + "apples": 0.0, + "french fries": 0.19333333333333333 + }, + "most_common_distractor": "french fries", + "most_common_distractor_freq": 0.19333333333333333, + "least_common_distractor": "apples", + "least_common_distractor_freq": 0.0 + }, + { + "problem_id": 156504, + "n_choices": 4, + "total_responses": 16, + "correct_count": 0, + "correct_rate": 0.0, + "distractors": { + "4,000": 5 + }, + "distractor_frequencies": { + "4,000": 0.3125 + }, + "most_common_distractor": "4,000", + "most_common_distractor_freq": 0.3125, + "least_common_distractor": "4,000", + "least_common_distractor_freq": 0.3125 + }, + { + "problem_id": 274206, + "n_choices": 4, + "total_responses": 631, + "correct_count": 354, + "correct_rate": 0.561014263074485, + "distractors": { + "

(-5, -2)

": 42, + "

(-4, -1)

": 102, + "

(4, -1)

": 133 + }, + "distractor_frequencies": { + "

(-5, -2)

": 0.06656101426307448, + "

(-4, -1)

": 0.16164817749603805, + "

(4, -1)

": 0.21077654516640254 + }, + "most_common_distractor": "

(4, -1)

", + "most_common_distractor_freq": 0.21077654516640254, + "least_common_distractor": "

(-5, -2)

", + "least_common_distractor_freq": 0.06656101426307448 + }, + { + "problem_id": 215152, + "n_choices": 4, + "total_responses": 475, + "correct_count": 183, + "correct_rate": 0.38526315789473686, + "distractors": { + "

A rectangle that is 3.25 inches wide and 6.1 inches long.

": 64, + "

A parallelogram with a base of 5.875 inches and a height of 3.5 inches.

": 96, + "

A triangle with a base of 7.18 inches and a height of 5.4 inches.

": 132 + }, + "distractor_frequencies": { + "

A rectangle that is 3.25 inches wide and 6.1 inches long.

": 0.13473684210526315, + "

A parallelogram with a base of 5.875 inches and a height of 3.5 inches.

": 0.20210526315789473, + "

A triangle with a base of 7.18 inches and a height of 5.4 inches.

": 0.27789473684210525 + }, + "most_common_distractor": "

A triangle with a base of 7.18 inches and a height of 5.4 inches.

", + "most_common_distractor_freq": 0.27789473684210525, + "least_common_distractor": "

A rectangle that is 3.25 inches wide and 6.1 inches long.

", + "least_common_distractor_freq": 0.13473684210526315 + }, + { + "problem_id": 68821, + "n_choices": 4, + "total_responses": 320, + "correct_count": 292, + "correct_rate": 0.9125, + "distractors": { + "The slope is positive.": 8, + "The slope is zero.": 9, + "There is no association.": 11 + }, + "distractor_frequencies": { + "The slope is positive.": 0.025, + "The slope is zero.": 0.028125, + "There is no association.": 0.034375 + }, + "most_common_distractor": "There is no association.", + "most_common_distractor_freq": 0.034375, + "least_common_distractor": "The slope is positive.", + "least_common_distractor_freq": 0.025 + }, + { + "problem_id": 204910, + "n_choices": 4, + "total_responses": 556, + "correct_count": 424, + "correct_rate": 0.762589928057554, + "distractors": { + "

0.171 grams

": 64, + "

1.71 grams

": 64, + "

171 grams

": 4 + }, + "distractor_frequencies": { + "

0.171 grams

": 0.11510791366906475, + "

1.71 grams

": 0.11510791366906475, + "

171 grams

": 0.007194244604316547 + }, + "most_common_distractor": "

0.171 grams

", + "most_common_distractor_freq": 0.11510791366906475, + "least_common_distractor": "

171 grams

", + "least_common_distractor_freq": 0.007194244604316547 + }, + { + "problem_id": 107995, + "n_choices": 3, + "total_responses": 468, + "correct_count": 318, + "correct_rate": 0.6794871794871795, + "distractors": { + "Triangle 1: A triangle where one angle measures 20 degrees and another angle measures 45 degrees.": 55, + "Triangle 2: A triangle where one angle measures 120 degrees and another angle measures 50 degrees.": 95 + }, + "distractor_frequencies": { + "Triangle 1: A triangle where one angle measures 20 degrees and another angle measures 45 degrees.": 0.11752136752136752, + "Triangle 2: A triangle where one angle measures 120 degrees and another angle measures 50 degrees.": 0.202991452991453 + }, + "most_common_distractor": "Triangle 2: A triangle where one angle measures 120 degrees and another angle measures 50 degrees.", + "most_common_distractor_freq": 0.202991452991453, + "least_common_distractor": "Triangle 1: A triangle where one angle measures 20 degrees and another angle measures 45 degrees.", + "least_common_distractor_freq": 0.11752136752136752 + }, + { + "problem_id": 360720, + "n_choices": 4, + "total_responses": 45, + "correct_count": 44, + "correct_rate": 0.9777777777777777, + "distractors": { + "

95 grams

": 0, + "

7 grams

": 1 + }, + "distractor_frequencies": { + "

95 grams

": 0.0, + "

7 grams

": 0.022222222222222223 + }, + "most_common_distractor": "

7 grams

", + "most_common_distractor_freq": 0.022222222222222223, + "least_common_distractor": "

95 grams

", + "least_common_distractor_freq": 0.0 + }, + { + "problem_id": 273879, + "n_choices": 4, + "total_responses": 1248, + "correct_count": 944, + "correct_rate": 0.7564102564102564, + "distractors": { + "The number of square inches that cover the top of the trunk.": 149, + "The number of square inches of horizontal surface inside the trunk.": 71, + "The number of cubic feet that can be packed inside the trunk.": 84 + }, + "distractor_frequencies": { + "The number of square inches that cover the top of the trunk.": 0.11939102564102565, + "The number of square inches of horizontal surface inside the trunk.": 0.05689102564102564, + "The number of cubic feet that can be packed inside the trunk.": 0.0673076923076923 + }, + "most_common_distractor": "The number of square inches that cover the top of the trunk.", + "most_common_distractor_freq": 0.11939102564102565, + "least_common_distractor": "The number of square inches of horizontal surface inside the trunk.", + "least_common_distractor_freq": 0.05689102564102564 + }, + { + "problem_id": 325132, + "n_choices": 4, + "total_responses": 73, + "correct_count": 0, + "correct_rate": 0.0, + "distractors": { + "

2

": 46, + "

1

": 27, + "

43

": 0 + }, + "distractor_frequencies": { + "

2

": 0.6301369863013698, + "

1

": 0.3698630136986301, + "

43

": 0.0 + }, + "most_common_distractor": "

2

", + "most_common_distractor_freq": 0.6301369863013698, + "least_common_distractor": "

43

", + "least_common_distractor_freq": 0.0 + }, + { + "problem_id": 7018, + "n_choices": 3, + "total_responses": 65, + "correct_count": 39, + "correct_rate": 0.6, + "distractors": { + "Less than": 17, + "Equal to": 9 + }, + "distractor_frequencies": { + "Less than": 0.26153846153846155, + "Equal to": 0.13846153846153847 + }, + "most_common_distractor": "Less than", + "most_common_distractor_freq": 0.26153846153846155, + "least_common_distractor": "Equal to", + "least_common_distractor_freq": 0.13846153846153847 + }, + { + "problem_id": 145971, + "n_choices": 3, + "total_responses": 405, + "correct_count": 366, + "correct_rate": 0.9037037037037037, + "distractors": { + "ED": 31, + "FH": 8 + }, + "distractor_frequencies": { + "ED": 0.07654320987654321, + "FH": 0.019753086419753086 + }, + "most_common_distractor": "ED", + "most_common_distractor_freq": 0.07654320987654321, + "least_common_distractor": "FH", + "least_common_distractor_freq": 0.019753086419753086 + }, + { + "problem_id": 42766, + "n_choices": 5, + "total_responses": 33, + "correct_count": 0, + "correct_rate": 0.0, + "distractors": { + "impossible": 0, + "unlikely": 16, + "certain": 0 + }, + "distractor_frequencies": { + "impossible": 0.0, + "unlikely": 0.48484848484848486, + "certain": 0.0 + }, + "most_common_distractor": "unlikely", + "most_common_distractor_freq": 0.48484848484848486, + "least_common_distractor": "certain", + "least_common_distractor_freq": 0.0 + }, + { + "problem_id": 591659, + "n_choices": 4, + "total_responses": 48, + "correct_count": 33, + "correct_rate": 0.6875, + "distractors": { + "The mean is equal to 8.": 8, + "The mean is greater than 8.": 3, + "There is not enough information to determine the mean.": 4 + }, + "distractor_frequencies": { + "The mean is equal to 8.": 0.16666666666666666, + "The mean is greater than 8.": 0.0625, + "There is not enough information to determine the mean.": 0.08333333333333333 + }, + "most_common_distractor": "The mean is equal to 8.", + "most_common_distractor_freq": 0.16666666666666666, + "least_common_distractor": "The mean is greater than 8.", + "least_common_distractor_freq": 0.0625 + }, + { + "problem_id": 50592, + "n_choices": 4, + "total_responses": 435, + "correct_count": 299, + "correct_rate": 0.6873563218390805, + "distractors": { + "8 cm": 86, + "4.5 oz": 35, + "14 cm": 15 + }, + "distractor_frequencies": { + "8 cm": 0.19770114942528735, + "4.5 oz": 0.08045977011494253, + "14 cm": 0.034482758620689655 + }, + "most_common_distractor": "8 cm", + "most_common_distractor_freq": 0.19770114942528735, + "least_common_distractor": "14 cm", + "least_common_distractor_freq": 0.034482758620689655 + }, + { + "problem_id": 35781, + "n_choices": 4, + "total_responses": 18, + "correct_count": 15, + "correct_rate": 0.8333333333333334, + "distractors": { + "12y - 5": 2, + "5 - 12y": 0, + "30 - 12y": 1 + }, + "distractor_frequencies": { + "12y - 5": 0.1111111111111111, + "5 - 12y": 0.0, + "30 - 12y": 0.05555555555555555 + }, + "most_common_distractor": "12y - 5", + "most_common_distractor_freq": 0.1111111111111111, + "least_common_distractor": "5 - 12y", + "least_common_distractor_freq": 0.0 + }, + { + "problem_id": 8234, + "n_choices": 4, + "total_responses": 28, + "correct_count": 16, + "correct_rate": 0.5714285714285714, + "distractors": { + "4.8": 4, + "6.2": 7, + "8.3": 1 + }, + "distractor_frequencies": { + "4.8": 0.14285714285714285, + "6.2": 0.25, + "8.3": 0.03571428571428571 + }, + "most_common_distractor": "6.2", + "most_common_distractor_freq": 0.25, + "least_common_distractor": "8.3", + "least_common_distractor_freq": 0.03571428571428571 + }, + { + "problem_id": 138228, + "n_choices": 4, + "total_responses": 243, + "correct_count": 175, + "correct_rate": 0.720164609053498, + "distractors": { + "

8.8

": 6, + "

0.88

": 56, + "

0.0088

": 6 + }, + "distractor_frequencies": { + "

8.8

": 0.024691358024691357, + "

0.88

": 0.23045267489711935, + "

0.0088

": 0.024691358024691357 + }, + "most_common_distractor": "

0.88

", + "most_common_distractor_freq": 0.23045267489711935, + "least_common_distractor": "

0.0088

", + "least_common_distractor_freq": 0.024691358024691357 + }, + { + "problem_id": 127489, + "n_choices": 4, + "total_responses": 186, + "correct_count": 114, + "correct_rate": 0.6129032258064516, + "distractors": { + "10 for $10": 13, + "2 for $3": 22, + "$0.80 each": 37 + }, + "distractor_frequencies": { + "10 for $10": 0.06989247311827956, + "2 for $3": 0.11827956989247312, + "$0.80 each": 0.1989247311827957 + }, + "most_common_distractor": "$0.80 each", + "most_common_distractor_freq": 0.1989247311827957, + "least_common_distractor": "10 for $10", + "least_common_distractor_freq": 0.06989247311827956 + }, + { + "problem_id": 590968, + "n_choices": 4, + "total_responses": 77, + "correct_count": 55, + "correct_rate": 0.7142857142857143, + "distractors": { + "1,000,000": 11, + "10,000": 9, + "1,000": 2 + }, + "distractor_frequencies": { + "1,000,000": 0.14285714285714285, + "10,000": 0.11688311688311688, + "1,000": 0.025974025974025976 + }, + "most_common_distractor": "1,000,000", + "most_common_distractor_freq": 0.14285714285714285, + "least_common_distractor": "1,000", + "least_common_distractor_freq": 0.025974025974025976 + }, + { + "problem_id": 12289, + "n_choices": 4, + "total_responses": 19, + "correct_count": 15, + "correct_rate": 0.7894736842105263, + "distractors": { + "1,200": 4, + "200": 0, + "30": 0 + }, + "distractor_frequencies": { + "1,200": 0.21052631578947367, + "200": 0.0, + "30": 0.0 + }, + "most_common_distractor": "1,200", + "most_common_distractor_freq": 0.21052631578947367, + "least_common_distractor": "30", + "least_common_distractor_freq": 0.0 + }, + { + "problem_id": 182080, + "n_choices": 4, + "total_responses": 934, + "correct_count": 401, + "correct_rate": 0.42933618843683086, + "distractors": { + "Andre is correct": 141, + "Elena is correct": 195, + "Both are correct": 197 + }, + "distractor_frequencies": { + "Andre is correct": 0.15096359743040685, + "Elena is correct": 0.20877944325481798, + "Both are correct": 0.21092077087794434 + }, + "most_common_distractor": "Both are correct", + "most_common_distractor_freq": 0.21092077087794434, + "least_common_distractor": "Andre is correct", + "least_common_distractor_freq": 0.15096359743040685 + }, + { + "problem_id": 83813, + "n_choices": 4, + "total_responses": 10, + "correct_count": 5, + "correct_rate": 0.5, + "distractors": { + "Noah's Solution": 1, + "Lin's Solution": 3, + "Neither Solutions": 1 + }, + "distractor_frequencies": { + "Noah's Solution": 0.1, + "Lin's Solution": 0.3, + "Neither Solutions": 0.1 + }, + "most_common_distractor": "Lin's Solution", + "most_common_distractor_freq": 0.3, + "least_common_distractor": "Neither Solutions", + "least_common_distractor_freq": 0.1 + }, + { + "problem_id": 350622, + "n_choices": 3, + "total_responses": 565, + "correct_count": 0, + "correct_rate": 0.0, + "distractors": { + "Yes": 148 + }, + "distractor_frequencies": { + "Yes": 0.26194690265486725 + }, + "most_common_distractor": "Yes", + "most_common_distractor_freq": 0.26194690265486725, + "least_common_distractor": "Yes", + "least_common_distractor_freq": 0.26194690265486725 + }, + { + "problem_id": 178083, + "n_choices": 4, + "total_responses": 454, + "correct_count": 209, + "correct_rate": 0.460352422907489, + "distractors": { + "About 100 in\u00b2": 36, + "About 300 in\u00b2": 43, + "About 900 in\u00b2": 166 + }, + "distractor_frequencies": { + "About 100 in\u00b2": 0.07929515418502203, + "About 300 in\u00b2": 0.0947136563876652, + "About 900 in\u00b2": 0.3656387665198238 + }, + "most_common_distractor": "About 900 in\u00b2", + "most_common_distractor_freq": 0.3656387665198238, + "least_common_distractor": "About 100 in\u00b2", + "least_common_distractor_freq": 0.07929515418502203 + }, + { + "problem_id": 116435, + "n_choices": 3, + "total_responses": 19, + "correct_count": 0, + "correct_rate": 0.0, + "distractors": { + "4": 2 + }, + "distractor_frequencies": { + "4": 0.10526315789473684 + }, + "most_common_distractor": "4", + "most_common_distractor_freq": 0.10526315789473684, + "least_common_distractor": "4", + "least_common_distractor_freq": 0.10526315789473684 + }, + { + "problem_id": 636346, + "n_choices": 4, + "total_responses": 41, + "correct_count": 19, + "correct_rate": 0.4634146341463415, + "distractors": { + "33": 5, + "85": 11, + "107": 6 + }, + "distractor_frequencies": { + "33": 0.12195121951219512, + "85": 0.2682926829268293, + "107": 0.14634146341463414 + }, + "most_common_distractor": "85", + "most_common_distractor_freq": 0.2682926829268293, + "least_common_distractor": "33", + "least_common_distractor_freq": 0.12195121951219512 + }, + { + "problem_id": 375982, + "n_choices": 4, + "total_responses": 1138, + "correct_count": 736, + "correct_rate": 0.6467486818980668, + "distractors": { + "6 units": 132, + "4.8 units": 95, + "5 units": 175 + }, + "distractor_frequencies": { + "6 units": 0.11599297012302284, + "4.8 units": 0.08347978910369068, + "5 units": 0.15377855887521968 + }, + "most_common_distractor": "5 units", + "most_common_distractor_freq": 0.15377855887521968, + "least_common_distractor": "4.8 units", + "least_common_distractor_freq": 0.08347978910369068 + }, + { + "problem_id": 53138, + "n_choices": 4, + "total_responses": 224, + "correct_count": 103, + "correct_rate": 0.45982142857142855, + "distractors": { + "-2x \u2212 5": 52, + "-2x + 5": 11, + "-2x \u2212 10": 58 + }, + "distractor_frequencies": { + "-2x \u2212 5": 0.23214285714285715, + "-2x + 5": 0.049107142857142856, + "-2x \u2212 10": 0.25892857142857145 + }, + "most_common_distractor": "-2x \u2212 10", + "most_common_distractor_freq": 0.25892857142857145, + "least_common_distractor": "-2x + 5", + "least_common_distractor_freq": 0.049107142857142856 + }, + { + "problem_id": 3501, + "n_choices": 3, + "total_responses": 19, + "correct_count": 19, + "correct_rate": 1.0, + "distractors": { + "Day 2": 0, + "Day 3": 0 + }, + "distractor_frequencies": { + "Day 2": 0.0, + "Day 3": 0.0 + }, + "most_common_distractor": "Day 2", + "most_common_distractor_freq": 0.0, + "least_common_distractor": "Day 3", + "least_common_distractor_freq": 0.0 + }, + { + "problem_id": 362327, + "n_choices": 4, + "total_responses": 339, + "correct_count": 265, + "correct_rate": 0.7817109144542773, + "distractors": { + "Jada": 36, + "Andre": 20, + "Neither": 18 + }, + "distractor_frequencies": { + "Jada": 0.10619469026548672, + "Andre": 0.058997050147492625, + "Neither": 0.05309734513274336 + }, + "most_common_distractor": "Jada", + "most_common_distractor_freq": 0.10619469026548672, + "least_common_distractor": "Neither", + "least_common_distractor_freq": 0.05309734513274336 + }, + { + "problem_id": 55545, + "n_choices": 4, + "total_responses": 221, + "correct_count": 89, + "correct_rate": 0.40271493212669685, + "distractors": { + "P\u2019s surface area is less than Q\u2019s surface area.": 30, + "P\u2019s surface area is equal to Q\u2019s surface area.": 88, + "There is not enough information given to compare their surface areas.": 14 + }, + "distractor_frequencies": { + "P\u2019s surface area is less than Q\u2019s surface area.": 0.13574660633484162, + "P\u2019s surface area is equal to Q\u2019s surface area.": 0.39819004524886875, + "There is not enough information given to compare their surface areas.": 0.06334841628959276 + }, + "most_common_distractor": "P\u2019s surface area is equal to Q\u2019s surface area.", + "most_common_distractor_freq": 0.39819004524886875, + "least_common_distractor": "There is not enough information given to compare their surface areas.", + "least_common_distractor_freq": 0.06334841628959276 + }, + { + "problem_id": 196678, + "n_choices": 4, + "total_responses": 28, + "correct_count": 0, + "correct_rate": 0.0, + "distractors": { + "True for all triangles": 28, + "True for some right triangles": 0, + "Never true": 0 + }, + "distractor_frequencies": { + "True for all triangles": 1.0, + "True for some right triangles": 0.0, + "Never true": 0.0 + }, + "most_common_distractor": "True for all triangles", + "most_common_distractor_freq": 1.0, + "least_common_distractor": "Never true", + "least_common_distractor_freq": 0.0 + }, + { + "problem_id": 77989, + "n_choices": 4, + "total_responses": 188, + "correct_count": 98, + "correct_rate": 0.5212765957446809, + "distractors": { + "

Another plant can be genetically modified to produce flowers 10% of the time. Plant 30 groups of 5 seeds each and wait 6 months for the plants to grow and count the fraction of groups that produce flowers.

": 50, + "

Roll a standard number cube 5 times. Each time a 6 appears, it represents a plant producing flowers. Repeat this process 30 times and count the fraction of times at least one number 6 appears.

": 40, + "

Create a spinner with 10 equal sections and mark one of them “flowers.” Spin the spinner 5 times to represent the 5 seeds. Repeat this process 30 times and count the fraction of times that at least 1 “flower” was spun.

": 0 + }, + "distractor_frequencies": { + "

Another plant can be genetically modified to produce flowers 10% of the time. Plant 30 groups of 5 seeds each and wait 6 months for the plants to grow and count the fraction of groups that produce flowers.

": 0.26595744680851063, + "

Roll a standard number cube 5 times. Each time a 6 appears, it represents a plant producing flowers. Repeat this process 30 times and count the fraction of times at least one number 6 appears.

": 0.2127659574468085, + "

Create a spinner with 10 equal sections and mark one of them “flowers.” Spin the spinner 5 times to represent the 5 seeds. Repeat this process 30 times and count the fraction of times that at least 1 “flower” was spun.

": 0.0 + }, + "most_common_distractor": "

Another plant can be genetically modified to produce flowers 10% of the time. Plant 30 groups of 5 seeds each and wait 6 months for the plants to grow and count the fraction of groups that produce flowers.

", + "most_common_distractor_freq": 0.26595744680851063, + "least_common_distractor": "

Create a spinner with 10 equal sections and mark one of them “flowers.” Spin the spinner 5 times to represent the 5 seeds. Repeat this process 30 times and count the fraction of times that at least 1 “flower” was spun.

", + "least_common_distractor_freq": 0.0 + }, + { + "problem_id": 262715, + "n_choices": 4, + "total_responses": 367, + "correct_count": 305, + "correct_rate": 0.8310626702997275, + "distractors": { + "I agree with Andre": 30, + "I agree with Elena": 30, + "I don't agree with either": 2 + }, + "distractor_frequencies": { + "I agree with Andre": 0.08174386920980926, + "I agree with Elena": 0.08174386920980926, + "I don't agree with either": 0.005449591280653951 + }, + "most_common_distractor": "I agree with Andre", + "most_common_distractor_freq": 0.08174386920980926, + "least_common_distractor": "I don't agree with either", + "least_common_distractor_freq": 0.005449591280653951 + }, + { + "problem_id": 502927, + "n_choices": 4, + "total_responses": 10, + "correct_count": 7, + "correct_rate": 0.7, + "distractors": { + "Q\u2019s surface area is equal to P\u2019s surface area.": 2, + "Q\u2019s surface area is greater than P\u2019s surface area.": 1, + "There is not enough information given to compare their surface areas.": 0 + }, + "distractor_frequencies": { + "Q\u2019s surface area is equal to P\u2019s surface area.": 0.2, + "Q\u2019s surface area is greater than P\u2019s surface area.": 0.1, + "There is not enough information given to compare their surface areas.": 0.0 + }, + "most_common_distractor": "Q\u2019s surface area is equal to P\u2019s surface area.", + "most_common_distractor_freq": 0.2, + "least_common_distractor": "There is not enough information given to compare their surface areas.", + "least_common_distractor_freq": 0.0 + }, + { + "problem_id": 14567, + "n_choices": 3, + "total_responses": 27, + "correct_count": 27, + "correct_rate": 1.0, + "distractors": { + "City A": 0, + "Neither city": 0 + }, + "distractor_frequencies": { + "City A": 0.0, + "Neither city": 0.0 + }, + "most_common_distractor": "City A", + "most_common_distractor_freq": 0.0, + "least_common_distractor": "Neither city", + "least_common_distractor_freq": 0.0 + }, + { + "problem_id": 275670, + "n_choices": 4, + "total_responses": 52, + "correct_count": 37, + "correct_rate": 0.7115384615384616, + "distractors": { + "Translate 5 units right, then 5 units down.": 3, + "Translate 3 units down, then 2 units up, and then 1 unit down.": 4, + "Rotate 120\u00b0 counterclockwise around center C, then rotate 240\u00b0 clockwise around C again.": 8 + }, + "distractor_frequencies": { + "Translate 5 units right, then 5 units down.": 0.057692307692307696, + "Translate 3 units down, then 2 units up, and then 1 unit down.": 0.07692307692307693, + "Rotate 120\u00b0 counterclockwise around center C, then rotate 240\u00b0 clockwise around C again.": 0.15384615384615385 + }, + "most_common_distractor": "Rotate 120\u00b0 counterclockwise around center C, then rotate 240\u00b0 clockwise around C again.", + "most_common_distractor_freq": 0.15384615384615385, + "least_common_distractor": "Translate 5 units right, then 5 units down.", + "least_common_distractor_freq": 0.057692307692307696 + }, + { + "problem_id": 7452, + "n_choices": 3, + "total_responses": 65, + "correct_count": 43, + "correct_rate": 0.6615384615384615, + "distractors": { + "Greater than": 16, + "Equal to": 6 + }, + "distractor_frequencies": { + "Greater than": 0.24615384615384617, + "Equal to": 0.09230769230769231 + }, + "most_common_distractor": "Greater than", + "most_common_distractor_freq": 0.24615384615384617, + "least_common_distractor": "Equal to", + "least_common_distractor_freq": 0.09230769230769231 + }, + { + "problem_id": 588631, + "n_choices": 4, + "total_responses": 24, + "correct_count": 17, + "correct_rate": 0.7083333333333334, + "distractors": { + "45 pages": 4, + "105 pages": 2, + "120 pages": 1 + }, + "distractor_frequencies": { + "45 pages": 0.16666666666666666, + "105 pages": 0.08333333333333333, + "120 pages": 0.041666666666666664 + }, + "most_common_distractor": "45 pages", + "most_common_distractor_freq": 0.16666666666666666, + "least_common_distractor": "120 pages", + "least_common_distractor_freq": 0.041666666666666664 + }, + { + "problem_id": 9287, + "n_choices": 3, + "total_responses": 67, + "correct_count": 57, + "correct_rate": 0.8507462686567164, + "distractors": { + "Priya": 7, + "Neither": 3 + }, + "distractor_frequencies": { + "Priya": 0.1044776119402985, + "Neither": 0.04477611940298507 + }, + "most_common_distractor": "Priya", + "most_common_distractor_freq": 0.1044776119402985, + "least_common_distractor": "Neither", + "least_common_distractor_freq": 0.04477611940298507 + }, + { + "problem_id": 43505, + "n_choices": 3, + "total_responses": 129, + "correct_count": 89, + "correct_rate": 0.689922480620155, + "distractors": { + "Diego's": 25, + "Elena's": 15 + }, + "distractor_frequencies": { + "Diego's": 0.1937984496124031, + "Elena's": 0.11627906976744186 + }, + "most_common_distractor": "Diego's", + "most_common_distractor_freq": 0.1937984496124031, + "least_common_distractor": "Elena's", + "least_common_distractor_freq": 0.11627906976744186 + }, + { + "problem_id": 351684, + "n_choices": 5, + "total_responses": 36, + "correct_count": 23, + "correct_rate": 0.6388888888888888, + "distractors": { + "B": 1, + "C": 1, + "E": 0 + }, + "distractor_frequencies": { + "B": 0.027777777777777776, + "C": 0.027777777777777776, + "E": 0.0 + }, + "most_common_distractor": "B", + "most_common_distractor_freq": 0.027777777777777776, + "least_common_distractor": "E", + "least_common_distractor_freq": 0.0 + }, + { + "problem_id": 247330, + "n_choices": 4, + "total_responses": 186, + "correct_count": 0, + "correct_rate": 0.0, + "distractors": { + "

b=29f

": 186, + "

b=52f

": 0, + "

b=92f

": 0 + }, + "distractor_frequencies": { + "

b=29f

": 1.0, + "

b=52f

": 0.0, + "

b=92f

": 0.0 + }, + "most_common_distractor": "

b=29f

", + "most_common_distractor_freq": 1.0, + "least_common_distractor": "

b=92f

", + "least_common_distractor_freq": 0.0 + }, + { + "problem_id": 590738, + "n_choices": 4, + "total_responses": 51, + "correct_count": 49, + "correct_rate": 0.9607843137254902, + "distractors": { + "210.975 km": 1, + "21.0975 km": 0, + "0.8439 km": 1 + }, + "distractor_frequencies": { + "210.975 km": 0.0196078431372549, + "21.0975 km": 0.0, + "0.8439 km": 0.0196078431372549 + }, + "most_common_distractor": "210.975 km", + "most_common_distractor_freq": 0.0196078431372549, + "least_common_distractor": "21.0975 km", + "least_common_distractor_freq": 0.0 + }, + { + "problem_id": 444018, + "n_choices": 4, + "total_responses": 23, + "correct_count": 11, + "correct_rate": 0.4782608695652174, + "distractors": { + "274,963": 2, + "244,905": 6, + "1,997": 4 + }, + "distractor_frequencies": { + "274,963": 0.08695652173913043, + "244,905": 0.2608695652173913, + "1,997": 0.17391304347826086 + }, + "most_common_distractor": "244,905", + "most_common_distractor_freq": 0.2608695652173913, + "least_common_distractor": "274,963", + "least_common_distractor_freq": 0.08695652173913043 + }, + { + "problem_id": 42091, + "n_choices": 5, + "total_responses": 33, + "correct_count": 0, + "correct_rate": 0.0, + "distractors": { + "impossible": 0, + "certain": 3 + }, + "distractor_frequencies": { + "impossible": 0.0, + "certain": 0.09090909090909091 + }, + "most_common_distractor": "certain", + "most_common_distractor_freq": 0.09090909090909091, + "least_common_distractor": "impossible", + "least_common_distractor_freq": 0.0 + }, + { + "problem_id": 42491, + "n_choices": 5, + "total_responses": 33, + "correct_count": 0, + "correct_rate": 0.0, + "distractors": { + "impossible": 0, + "unlikely": 6, + "certain": 0 + }, + "distractor_frequencies": { + "impossible": 0.0, + "unlikely": 0.18181818181818182, + "certain": 0.0 + }, + "most_common_distractor": "unlikely", + "most_common_distractor_freq": 0.18181818181818182, + "least_common_distractor": "certain", + "least_common_distractor_freq": 0.0 + }, + { + "problem_id": 97961, + "n_choices": 4, + "total_responses": 37, + "correct_count": 19, + "correct_rate": 0.5135135135135135, + "distractors": { + "107.1%": 3, + "93.3%": 7, + "7.1%": 8 + }, + "distractor_frequencies": { + "107.1%": 0.08108108108108109, + "93.3%": 0.1891891891891892, + "7.1%": 0.21621621621621623 + }, + "most_common_distractor": "7.1%", + "most_common_distractor_freq": 0.21621621621621623, + "least_common_distractor": "107.1%", + "least_common_distractor_freq": 0.08108108108108109 + }, + { + "problem_id": 347917, + "n_choices": 4, + "total_responses": 1129, + "correct_count": 626, + "correct_rate": 0.5544729849424269, + "distractors": { + "

I agree with Mai.

": 266, + "

I agree with both.

": 151, + "

I agree with neither.

": 86 + }, + "distractor_frequencies": { + "

I agree with Mai.

": 0.23560673162090345, + "

I agree with both.

": 0.1337466784765279, + "

I agree with neither.

": 0.07617360496014172 + }, + "most_common_distractor": "

I agree with Mai.

", + "most_common_distractor_freq": 0.23560673162090345, + "least_common_distractor": "

I agree with neither.

", + "least_common_distractor_freq": 0.07617360496014172 + }, + { + "problem_id": 558308, + "n_choices": 4, + "total_responses": 18, + "correct_count": 2, + "correct_rate": 0.1111111111111111, + "distractors": { + "A quadrilateral with 4 right angles": 5, + "A triangle with angles 30\u00b0, 80\u00b0, and 70\u00b0": 4, + "A triangle with side lengths 7 cm and 8 cm and a 70\u00b0 angle": 7 + }, + "distractor_frequencies": { + "A quadrilateral with 4 right angles": 0.2777777777777778, + "A triangle with angles 30\u00b0, 80\u00b0, and 70\u00b0": 0.2222222222222222, + "A triangle with side lengths 7 cm and 8 cm and a 70\u00b0 angle": 0.3888888888888889 + }, + "most_common_distractor": "A triangle with side lengths 7 cm and 8 cm and a 70\u00b0 angle", + "most_common_distractor_freq": 0.3888888888888889, + "least_common_distractor": "A triangle with angles 30\u00b0, 80\u00b0, and 70\u00b0", + "least_common_distractor_freq": 0.2222222222222222 + }, + { + "problem_id": 63338, + "n_choices": 3, + "total_responses": 66, + "correct_count": 44, + "correct_rate": 0.6666666666666666, + "distractors": { + "Rolling an even number": 2, + "A coin landing heads-up": 20 + }, + "distractor_frequencies": { + "Rolling an even number": 0.030303030303030304, + "A coin landing heads-up": 0.30303030303030304 + }, + "most_common_distractor": "A coin landing heads-up", + "most_common_distractor_freq": 0.30303030303030304, + "least_common_distractor": "Rolling an even number", + "least_common_distractor_freq": 0.030303030303030304 + }, + { + "problem_id": 204565, + "n_choices": 4, + "total_responses": 1906, + "correct_count": 1507, + "correct_rate": 0.7906610703043022, + "distractors": { + "0.5": 90, + "0.6": 187, + "0.8": 122 + }, + "distractor_frequencies": { + "0.5": 0.0472193074501574, + "0.6": 0.09811122770199371, + "0.8": 0.06400839454354669 + }, + "most_common_distractor": "0.6", + "most_common_distractor_freq": 0.09811122770199371, + "least_common_distractor": "0.5", + "least_common_distractor_freq": 0.0472193074501574 + }, + { + "problem_id": 78121, + "n_choices": 4, + "total_responses": 851, + "correct_count": 635, + "correct_rate": 0.7461809635722679, + "distractors": { + "

A trapezoidal prism

": 39, + "

A rectangular pyramid

": 42, + "

A triangular prism

": 135 + }, + "distractor_frequencies": { + "

A trapezoidal prism

": 0.045828437132784956, + "

A rectangular pyramid

": 0.04935370152761457, + "

A triangular prism

": 0.15863689776733256 + }, + "most_common_distractor": "

A triangular prism

", + "most_common_distractor_freq": 0.15863689776733256, + "least_common_distractor": "

A trapezoidal prism

", + "least_common_distractor_freq": 0.045828437132784956 + }, + { + "problem_id": 42642, + "n_choices": 4, + "total_responses": 661, + "correct_count": 364, + "correct_rate": 0.5506807866868382, + "distractors": { + "14 \u2212 (-8)": 76, + "14 + (-8)": 65, + "(-14) + (-8)": 156 + }, + "distractor_frequencies": { + "14 \u2212 (-8)": 0.11497730711043873, + "14 + (-8)": 0.09833585476550681, + "(-14) + (-8)": 0.23600605143721634 + }, + "most_common_distractor": "(-14) + (-8)", + "most_common_distractor_freq": 0.23600605143721634, + "least_common_distractor": "14 + (-8)", + "least_common_distractor_freq": 0.09833585476550681 + }, + { + "problem_id": 57280, + "n_choices": 3, + "total_responses": 595, + "correct_count": 451, + "correct_rate": 0.7579831932773109, + "distractors": { + "Movie A": 121, + "Movie B": 23 + }, + "distractor_frequencies": { + "Movie A": 0.20336134453781513, + "Movie B": 0.03865546218487395 + }, + "most_common_distractor": "Movie A", + "most_common_distractor_freq": 0.20336134453781513, + "least_common_distractor": "Movie B", + "least_common_distractor_freq": 0.03865546218487395 + }, + { + "problem_id": 295788, + "n_choices": 4, + "total_responses": 82, + "correct_count": 50, + "correct_rate": 0.6097560975609756, + "distractors": { + "Box B": 7, + "Box C": 8, + "Boxes A,B,C uses the same amount of cardboard": 17 + }, + "distractor_frequencies": { + "Box B": 0.08536585365853659, + "Box C": 0.0975609756097561, + "Boxes A,B,C uses the same amount of cardboard": 0.2073170731707317 + }, + "most_common_distractor": "Boxes A,B,C uses the same amount of cardboard", + "most_common_distractor_freq": 0.2073170731707317, + "least_common_distractor": "Box B", + "least_common_distractor_freq": 0.08536585365853659 + }, + { + "problem_id": 189877, + "n_choices": 4, + "total_responses": 73, + "correct_count": 59, + "correct_rate": 0.8082191780821918, + "distractors": { + "9.99 + 1.29n \u2265 50": 7, + "9.99 - 1.29n \u2265 50": 4, + "9.99 - 1.29n \u2264 50": 3 + }, + "distractor_frequencies": { + "9.99 + 1.29n \u2265 50": 0.0958904109589041, + "9.99 - 1.29n \u2265 50": 0.0547945205479452, + "9.99 - 1.29n \u2264 50": 0.0410958904109589 + }, + "most_common_distractor": "9.99 + 1.29n \u2265 50", + "most_common_distractor_freq": 0.0958904109589041, + "least_common_distractor": "9.99 - 1.29n \u2264 50", + "least_common_distractor_freq": 0.0410958904109589 + }, + { + "problem_id": 144266, + "n_choices": 4, + "total_responses": 56, + "correct_count": 36, + "correct_rate": 0.6428571428571429, + "distractors": { + "(2, 3)": 5, + "(3, 2)": 14, + "(5, 1)": 1 + }, + "distractor_frequencies": { + "(2, 3)": 0.08928571428571429, + "(3, 2)": 0.25, + "(5, 1)": 0.017857142857142856 + }, + "most_common_distractor": "(3, 2)", + "most_common_distractor_freq": 0.25, + "least_common_distractor": "(5, 1)", + "least_common_distractor_freq": 0.017857142857142856 + }, + { + "problem_id": 456048, + "n_choices": 4, + "total_responses": 539, + "correct_count": 310, + "correct_rate": 0.575139146567718, + "distractors": { + "

125 square feet

": 121, + "

1,250 feet

": 93, + "

1,250 square feet

": 15 + }, + "distractor_frequencies": { + "

125 square feet

": 0.22448979591836735, + "

1,250 feet

": 0.1725417439703154, + "

1,250 square feet

": 0.027829313543599257 + }, + "most_common_distractor": "

125 square feet

", + "most_common_distractor_freq": 0.22448979591836735, + "least_common_distractor": "

1,250 square feet

", + "least_common_distractor_freq": 0.027829313543599257 + }, + { + "problem_id": 164771, + "n_choices": 4, + "total_responses": 1592, + "correct_count": 884, + "correct_rate": 0.5552763819095478, + "distractors": { + "I agree with only Lin": 278, + "I agree with only Jada": 369, + "I agree with neither Jada or Lin": 61 + }, + "distractor_frequencies": { + "I agree with only Lin": 0.17462311557788945, + "I agree with only Jada": 0.23178391959798994, + "I agree with neither Jada or Lin": 0.038316582914572864 + }, + "most_common_distractor": "I agree with only Jada", + "most_common_distractor_freq": 0.23178391959798994, + "least_common_distractor": "I agree with neither Jada or Lin", + "least_common_distractor_freq": 0.038316582914572864 + }, + { + "problem_id": 68115, + "n_choices": 4, + "total_responses": 148, + "correct_count": 116, + "correct_rate": 0.7837837837837838, + "distractors": { + "A quadrilateral that is not a square": 28, + "A square the same size as the base": 2, + "A triangle with a height the same as the pyramid": 2 + }, + "distractor_frequencies": { + "A quadrilateral that is not a square": 0.1891891891891892, + "A square the same size as the base": 0.013513513513513514, + "A triangle with a height the same as the pyramid": 0.013513513513513514 + }, + "most_common_distractor": "A quadrilateral that is not a square", + "most_common_distractor_freq": 0.1891891891891892, + "least_common_distractor": "A triangle with a height the same as the pyramid", + "least_common_distractor_freq": 0.013513513513513514 + }, + { + "problem_id": 55885, + "n_choices": 4, + "total_responses": 2004, + "correct_count": 814, + "correct_rate": 0.406187624750499, + "distractors": { + "0.3 \u2022 80": 539, + "80 - 0.3": 509, + "(1 + 0.3) \u2022 80": 142 + }, + "distractor_frequencies": { + "0.3 \u2022 80": 0.2689620758483034, + "80 - 0.3": 0.25399201596806387, + "(1 + 0.3) \u2022 80": 0.07085828343313373 + }, + "most_common_distractor": "0.3 \u2022 80", + "most_common_distractor_freq": 0.2689620758483034, + "least_common_distractor": "(1 + 0.3) \u2022 80", + "least_common_distractor_freq": 0.07085828343313373 + }, + { + "problem_id": 248005, + "n_choices": 4, + "total_responses": 397, + "correct_count": 243, + "correct_rate": 0.6120906801007556, + "distractors": { + "135 inches": 74, + "240 inches": 52, + "255 inches": 28 + }, + "distractor_frequencies": { + "135 inches": 0.18639798488664988, + "240 inches": 0.1309823677581864, + "255 inches": 0.07052896725440806 + }, + "most_common_distractor": "135 inches", + "most_common_distractor_freq": 0.18639798488664988, + "least_common_distractor": "255 inches", + "least_common_distractor_freq": 0.07052896725440806 + }, + { + "problem_id": 51606, + "n_choices": 4, + "total_responses": 1564, + "correct_count": 950, + "correct_rate": 0.6074168797953964, + "distractors": { + "x < 50": 144, + "x > 50": 131, + "x \u2265 50": 339 + }, + "distractor_frequencies": { + "x < 50": 0.09207161125319693, + "x > 50": 0.08375959079283887, + "x \u2265 50": 0.21675191815856779 + }, + "most_common_distractor": "x \u2265 50", + "most_common_distractor_freq": 0.21675191815856779, + "least_common_distractor": "x > 50", + "least_common_distractor_freq": 0.08375959079283887 + }, + { + "problem_id": 67861, + "n_choices": 4, + "total_responses": 1558, + "correct_count": 255, + "correct_rate": 0.16367137355584083, + "distractors": { + "Elena read three times as many pages as Noah. She read 27 pages. How many pages did Noah read?": 277, + "Lin has 27 stickers. She gives 3 stickers to each of her friends. With how many friends did Lin share her stickers?": 1006, + "The coach splits a team of 27 students into 3 groups to practice skills. How many students are in each group?": 20 + }, + "distractor_frequencies": { + "Elena read three times as many pages as Noah. She read 27 pages. How many pages did Noah read?": 0.1777920410783055, + "Lin has 27 stickers. She gives 3 stickers to each of her friends. With how many friends did Lin share her stickers?": 0.6456996148908858, + "The coach splits a team of 27 students into 3 groups to practice skills. How many students are in each group?": 0.012836970474967908 + }, + "most_common_distractor": "Lin has 27 stickers. She gives 3 stickers to each of her friends. With how many friends did Lin share her stickers?", + "most_common_distractor_freq": 0.6456996148908858, + "least_common_distractor": "The coach splits a team of 27 students into 3 groups to practice skills. How many students are in each group?", + "least_common_distractor_freq": 0.012836970474967908 + }, + { + "problem_id": 172034, + "n_choices": 4, + "total_responses": 31, + "correct_count": 22, + "correct_rate": 0.7096774193548387, + "distractors": { + "Line A": 2, + "Line B": 1, + "Line C": 6 + }, + "distractor_frequencies": { + "Line A": 0.06451612903225806, + "Line B": 0.03225806451612903, + "Line C": 0.1935483870967742 + }, + "most_common_distractor": "Line C", + "most_common_distractor_freq": 0.1935483870967742, + "least_common_distractor": "Line B", + "least_common_distractor_freq": 0.03225806451612903 + }, + { + "problem_id": 355558, + "n_choices": 3, + "total_responses": 19, + "correct_count": 15, + "correct_rate": 0.7894736842105263, + "distractors": { + "no stickers": 2, + "2 stickers": 2 + }, + "distractor_frequencies": { + "no stickers": 0.10526315789473684, + "2 stickers": 0.10526315789473684 + }, + "most_common_distractor": "no stickers", + "most_common_distractor_freq": 0.10526315789473684, + "least_common_distractor": "2 stickers", + "least_common_distractor_freq": 0.10526315789473684 + }, + { + "problem_id": 310109, + "n_choices": 4, + "total_responses": 411, + "correct_count": 272, + "correct_rate": 0.6618004866180048, + "distractors": { + "All people in the United States.": 18, + "The 510 teens that were surveyed.": 68, + "The 29% of the teens surveyed who said they believe in ghosts.": 53 + }, + "distractor_frequencies": { + "All people in the United States.": 0.043795620437956206, + "The 510 teens that were surveyed.": 0.1654501216545012, + "The 29% of the teens surveyed who said they believe in ghosts.": 0.12895377128953772 + }, + "most_common_distractor": "The 510 teens that were surveyed.", + "most_common_distractor_freq": 0.1654501216545012, + "least_common_distractor": "All people in the United States.", + "least_common_distractor_freq": 0.043795620437956206 + }, + { + "problem_id": 520423, + "n_choices": 4, + "total_responses": 37, + "correct_count": 32, + "correct_rate": 0.8648648648648649, + "distractors": { + "Data Set A": 1, + "Data Set C": 2, + "Data Set D": 2 + }, + "distractor_frequencies": { + "Data Set A": 0.02702702702702703, + "Data Set C": 0.05405405405405406, + "Data Set D": 0.05405405405405406 + }, + "most_common_distractor": "Data Set C", + "most_common_distractor_freq": 0.05405405405405406, + "least_common_distractor": "Data Set A", + "least_common_distractor_freq": 0.02702702702702703 + }, + { + "problem_id": 578697, + "n_choices": 3, + "total_responses": 888, + "correct_count": 714, + "correct_rate": 0.8040540540540541, + "distractors": { + "Positive": 153, + "Zero": 21 + }, + "distractor_frequencies": { + "Positive": 0.17229729729729729, + "Zero": 0.02364864864864865 + }, + "most_common_distractor": "Positive", + "most_common_distractor_freq": 0.17229729729729729, + "least_common_distractor": "Zero", + "least_common_distractor_freq": 0.02364864864864865 + }, + { + "problem_id": 47390, + "n_choices": 4, + "total_responses": 867, + "correct_count": 545, + "correct_rate": 0.6286043829296425, + "distractors": { + "

41\u00b0

": 70, + "

123\u00b0

": 30, + "

164\u00b0

": 222 + }, + "distractor_frequencies": { + "

41\u00b0

": 0.08073817762399077, + "

123\u00b0

": 0.03460207612456748, + "

164\u00b0

": 0.2560553633217993 + }, + "most_common_distractor": "

164\u00b0

", + "most_common_distractor_freq": 0.2560553633217993, + "least_common_distractor": "

123\u00b0

", + "least_common_distractor_freq": 0.03460207612456748 + }, + { + "problem_id": 3980, + "n_choices": 4, + "total_responses": 23, + "correct_count": 0, + "correct_rate": 0.0, + "distractors": { + "

60 hours

": 7, + "

6 hours

": 9, + "

223 hours

": 7 + }, + "distractor_frequencies": { + "

60 hours

": 0.30434782608695654, + "

6 hours

": 0.391304347826087, + "

223 hours

": 0.30434782608695654 + }, + "most_common_distractor": "

6 hours

", + "most_common_distractor_freq": 0.391304347826087, + "least_common_distractor": "

223 hours

", + "least_common_distractor_freq": 0.30434782608695654 + }, + { + "problem_id": 255003, + "n_choices": 3, + "total_responses": 36, + "correct_count": 36, + "correct_rate": 1.0, + "distractors": { + "Seventh grade": 0, + "Eighth grade": 0 + }, + "distractor_frequencies": { + "Seventh grade": 0.0, + "Eighth grade": 0.0 + }, + "most_common_distractor": "Seventh grade", + "most_common_distractor_freq": 0.0, + "least_common_distractor": "Eighth grade", + "least_common_distractor_freq": 0.0 + }, + { + "problem_id": 341602, + "n_choices": 4, + "total_responses": 77, + "correct_count": 34, + "correct_rate": 0.44155844155844154, + "distractors": { + "3 + 0.5": 19, + "3 - 0.5": 20, + "1 + 0.5 \u00b7 3": 4 + }, + "distractor_frequencies": { + "3 + 0.5": 0.24675324675324675, + "3 - 0.5": 0.2597402597402597, + "1 + 0.5 \u00b7 3": 0.05194805194805195 + }, + "most_common_distractor": "3 - 0.5", + "most_common_distractor_freq": 0.2597402597402597, + "least_common_distractor": "1 + 0.5 \u00b7 3", + "least_common_distractor_freq": 0.05194805194805195 + }, + { + "problem_id": 227553, + "n_choices": 3, + "total_responses": 980, + "correct_count": 550, + "correct_rate": 0.5612244897959183, + "distractors": { + "Definitely Not True": 206, + "Possibly True": 224 + }, + "distractor_frequencies": { + "Definitely Not True": 0.21020408163265306, + "Possibly True": 0.22857142857142856 + }, + "most_common_distractor": "Possibly True", + "most_common_distractor_freq": 0.22857142857142856, + "least_common_distractor": "Definitely Not True", + "least_common_distractor_freq": 0.21020408163265306 + }, + { + "problem_id": 64548, + "n_choices": 4, + "total_responses": 567, + "correct_count": 346, + "correct_rate": 0.6102292768959435, + "distractors": { + "The mean would decrease and the median would not change.": 61, + "The mean would decrease and the median would increase.": 55, + "The mean would increase and the median would increase.": 105 + }, + "distractor_frequencies": { + "The mean would decrease and the median would not change.": 0.10758377425044091, + "The mean would decrease and the median would increase.": 0.09700176366843033, + "The mean would increase and the median would increase.": 0.18518518518518517 + }, + "most_common_distractor": "The mean would increase and the median would increase.", + "most_common_distractor_freq": 0.18518518518518517, + "least_common_distractor": "The mean would decrease and the median would increase.", + "least_common_distractor_freq": 0.09700176366843033 + }, + { + "problem_id": 526525, + "n_choices": 3, + "total_responses": 109, + "correct_count": 93, + "correct_rate": 0.8532110091743119, + "distractors": { + "Tyler is correct": 11, + "Neither": 5 + }, + "distractor_frequencies": { + "Tyler is correct": 0.10091743119266056, + "Neither": 0.045871559633027525 + }, + "most_common_distractor": "Tyler is correct", + "most_common_distractor_freq": 0.10091743119266056, + "least_common_distractor": "Neither", + "least_common_distractor_freq": 0.045871559633027525 + }, + { + "problem_id": 340440, + "n_choices": 4, + "total_responses": 68, + "correct_count": 27, + "correct_rate": 0.39705882352941174, + "distractors": { + "The water in the tank is increasing at a rate of 2 gallons per minute.": 30, + "The water in the tank is increasing at a rate of 10 gallons per minute.": 5, + "The water in the tank is decreasing at a rate of 10 gallons per minute.": 6 + }, + "distractor_frequencies": { + "The water in the tank is increasing at a rate of 2 gallons per minute.": 0.4411764705882353, + "The water in the tank is increasing at a rate of 10 gallons per minute.": 0.07352941176470588, + "The water in the tank is decreasing at a rate of 10 gallons per minute.": 0.08823529411764706 + }, + "most_common_distractor": "The water in the tank is increasing at a rate of 2 gallons per minute.", + "most_common_distractor_freq": 0.4411764705882353, + "least_common_distractor": "The water in the tank is increasing at a rate of 10 gallons per minute.", + "least_common_distractor_freq": 0.07352941176470588 + }, + { + "problem_id": 14554, + "n_choices": 4, + "total_responses": 799, + "correct_count": 535, + "correct_rate": 0.6695869837296621, + "distractors": { + "

4.5

": 77, + "

9.92

": 127, + "

4,500

": 60 + }, + "distractor_frequencies": { + "

4.5

": 0.09637046307884856, + "

9.92

": 0.15894868585732166, + "

4,500

": 0.07509386733416772 + }, + "most_common_distractor": "

9.92

", + "most_common_distractor_freq": 0.15894868585732166, + "least_common_distractor": "

4,500

", + "least_common_distractor_freq": 0.07509386733416772 + }, + { + "problem_id": 57030, + "n_choices": 3, + "total_responses": 599, + "correct_count": 491, + "correct_rate": 0.8196994991652755, + "distractors": { + "Movie A": 58, + "Movie C": 50 + }, + "distractor_frequencies": { + "Movie A": 0.09682804674457429, + "Movie C": 0.08347245409015025 + }, + "most_common_distractor": "Movie A", + "most_common_distractor_freq": 0.09682804674457429, + "least_common_distractor": "Movie C", + "least_common_distractor_freq": 0.08347245409015025 + }, + { + "problem_id": 668776, + "n_choices": 4, + "total_responses": 26, + "correct_count": 13, + "correct_rate": 0.5, + "distractors": { + "a length of 1 units and a width of 12 units": 5, + "a length of 6 units and a width of 1 unit": 3, + "a length of 6 units and a width of 2 units": 5 + }, + "distractor_frequencies": { + "a length of 1 units and a width of 12 units": 0.19230769230769232, + "a length of 6 units and a width of 1 unit": 0.11538461538461539, + "a length of 6 units and a width of 2 units": 0.19230769230769232 + }, + "most_common_distractor": "a length of 1 units and a width of 12 units", + "most_common_distractor_freq": 0.19230769230769232, + "least_common_distractor": "a length of 6 units and a width of 1 unit", + "least_common_distractor_freq": 0.11538461538461539 + }, + { + "problem_id": 417638, + "n_choices": 3, + "total_responses": 65, + "correct_count": 39, + "correct_rate": 0.6, + "distractors": { + "I do not agree with Lin.": 23, + "Not enough information.": 3 + }, + "distractor_frequencies": { + "I do not agree with Lin.": 0.35384615384615387, + "Not enough information.": 0.046153846153846156 + }, + "most_common_distractor": "I do not agree with Lin.", + "most_common_distractor_freq": 0.35384615384615387, + "least_common_distractor": "Not enough information.", + "least_common_distractor_freq": 0.046153846153846156 + }, + { + "problem_id": 195291, + "n_choices": 4, + "total_responses": 97, + "correct_count": 45, + "correct_rate": 0.4639175257731959, + "distractors": { + "3x - 4": 5, + "5x - 6": 7, + "6x - 4": 40 + }, + "distractor_frequencies": { + "3x - 4": 0.05154639175257732, + "5x - 6": 0.07216494845360824, + "6x - 4": 0.41237113402061853 + }, + "most_common_distractor": "6x - 4", + "most_common_distractor_freq": 0.41237113402061853, + "least_common_distractor": "3x - 4", + "least_common_distractor_freq": 0.05154639175257732 + }, + { + "problem_id": 173897, + "n_choices": 4, + "total_responses": 488, + "correct_count": 325, + "correct_rate": 0.6659836065573771, + "distractors": { + "For every 1 mm the wingspan increases, the length of the butterfly increases 4.642 mm.": 58, + "For every 1 mm the length of the butterfly increases, the wingspan increases 0.238 mm.": 77, + "For every 1 mm the length of the butterfly increases, the wingspan increases 4.642 mm.": 28 + }, + "distractor_frequencies": { + "For every 1 mm the wingspan increases, the length of the butterfly increases 4.642 mm.": 0.11885245901639344, + "For every 1 mm the length of the butterfly increases, the wingspan increases 0.238 mm.": 0.15778688524590165, + "For every 1 mm the length of the butterfly increases, the wingspan increases 4.642 mm.": 0.05737704918032787 + }, + "most_common_distractor": "For every 1 mm the length of the butterfly increases, the wingspan increases 0.238 mm.", + "most_common_distractor_freq": 0.15778688524590165, + "least_common_distractor": "For every 1 mm the length of the butterfly increases, the wingspan increases 4.642 mm.", + "least_common_distractor_freq": 0.05737704918032787 + }, + { + "problem_id": 518845, + "n_choices": 4, + "total_responses": 31, + "correct_count": 31, + "correct_rate": 1.0, + "distractors": { + "

412 batches

": 0, + "

338 batches

": 0, + "

16 of a batch

": 0 + }, + "distractor_frequencies": { + "

412 batches

": 0.0, + "

338 batches

": 0.0, + "

16 of a batch

": 0.0 + }, + "most_common_distractor": "

412 batches

", + "most_common_distractor_freq": 0.0, + "least_common_distractor": "

16 of a batch

", + "least_common_distractor_freq": 0.0 + }, + { + "problem_id": 116703, + "n_choices": 3, + "total_responses": 11, + "correct_count": 0, + "correct_rate": 0.0, + "distractors": { + "3": 1 + }, + "distractor_frequencies": { + "3": 0.09090909090909091 + }, + "most_common_distractor": "3", + "most_common_distractor_freq": 0.09090909090909091, + "least_common_distractor": "3", + "least_common_distractor_freq": 0.09090909090909091 + }, + { + "problem_id": 319507, + "n_choices": 4, + "total_responses": 25, + "correct_count": 0, + "correct_rate": 0.0, + "distractors": { + "

23 times as far

": 25, + "

94 times as far

": 0, + "

2438 times as far

": 0 + }, + "distractor_frequencies": { + "

23 times as far

": 1.0, + "

94 times as far

": 0.0, + "

2438 times as far

": 0.0 + }, + "most_common_distractor": "

23 times as far

", + "most_common_distractor_freq": 1.0, + "least_common_distractor": "

2438 times as far

", + "least_common_distractor_freq": 0.0 + }, + { + "problem_id": 42284, + "n_choices": 5, + "total_responses": 33, + "correct_count": 0, + "correct_rate": 0.0, + "distractors": { + "certain": 0 + }, + "distractor_frequencies": { + "certain": 0.0 + }, + "most_common_distractor": "certain", + "most_common_distractor_freq": 0.0, + "least_common_distractor": "certain", + "least_common_distractor_freq": 0.0 + }, + { + "problem_id": 148617, + "n_choices": 4, + "total_responses": 787, + "correct_count": 427, + "correct_rate": 0.542566709021601, + "distractors": { + "

(-3,-2)

": 66, + "

(-3,2)

": 196, + "

(3,2)

": 98 + }, + "distractor_frequencies": { + "

(-3,-2)

": 0.08386277001270648, + "

(-3,2)

": 0.24904701397712833, + "

(3,2)

": 0.12452350698856417 + }, + "most_common_distractor": "

(-3,2)

", + "most_common_distractor_freq": 0.24904701397712833, + "least_common_distractor": "

(-3,-2)

", + "least_common_distractor_freq": 0.08386277001270648 + }, + { + "problem_id": 170317, + "n_choices": 4, + "total_responses": 526, + "correct_count": 335, + "correct_rate": 0.6368821292775665, + "distractors": { + "P'Q' = PQ": 86, + "

PQ = 3P'Q'

": 105, + "

P'Q' = 13PQ

": 0 + }, + "distractor_frequencies": { + "P'Q' = PQ": 0.1634980988593156, + "

PQ = 3P'Q'

": 0.19961977186311788, + "

P'Q' = 13PQ

": 0.0 + }, + "most_common_distractor": "

PQ = 3P'Q'

", + "most_common_distractor_freq": 0.19961977186311788, + "least_common_distractor": "

P'Q' = 13PQ

", + "least_common_distractor_freq": 0.0 + }, + { + "problem_id": 455884, + "n_choices": 4, + "total_responses": 537, + "correct_count": 292, + "correct_rate": 0.5437616387337058, + "distractors": { + "

125 feet

": 74, + "

125 square feet

": 87, + "

1,250 feet

": 84 + }, + "distractor_frequencies": { + "

125 feet

": 0.1378026070763501, + "

125 square feet

": 0.16201117318435754, + "

1,250 feet

": 0.1564245810055866 + }, + "most_common_distractor": "

125 square feet

", + "most_common_distractor_freq": 0.16201117318435754, + "least_common_distractor": "

125 feet

", + "least_common_distractor_freq": 0.1378026070763501 + }, + { + "problem_id": 77471, + "n_choices": 3, + "total_responses": 26, + "correct_count": 19, + "correct_rate": 0.7307692307692307, + "distractors": { + "Runner #1": 4, + "Runner #3": 3 + }, + "distractor_frequencies": { + "Runner #1": 0.15384615384615385, + "Runner #3": 0.11538461538461539 + }, + "most_common_distractor": "Runner #1", + "most_common_distractor_freq": 0.15384615384615385, + "least_common_distractor": "Runner #3", + "least_common_distractor_freq": 0.11538461538461539 + }, + { + "problem_id": 371766, + "n_choices": 4, + "total_responses": 168, + "correct_count": 130, + "correct_rate": 0.7738095238095238, + "distractors": { + "Elena is correct": 32, + "Both are correct": 0, + "Neither are correct": 6 + }, + "distractor_frequencies": { + "Elena is correct": 0.19047619047619047, + "Both are correct": 0.0, + "Neither are correct": 0.03571428571428571 + }, + "most_common_distractor": "Elena is correct", + "most_common_distractor_freq": 0.19047619047619047, + "least_common_distractor": "Both are correct", + "least_common_distractor_freq": 0.0 + }, + { + "problem_id": 132787, + "n_choices": 4, + "total_responses": 550, + "correct_count": 0, + "correct_rate": 0.0, + "distractors": { + "

20

": 550, + "

200

": 0, + "

20,000

": 0 + }, + "distractor_frequencies": { + "

20

": 1.0, + "

200

": 0.0, + "

20,000

": 0.0 + }, + "most_common_distractor": "

20

", + "most_common_distractor_freq": 1.0, + "least_common_distractor": "

20,000

", + "least_common_distractor_freq": 0.0 + }, + { + "problem_id": 274073, + "n_choices": 4, + "total_responses": 1331, + "correct_count": 0, + "correct_rate": 0.0, + "distractors": { + "The answer cannot be determined.": 0 + }, + "distractor_frequencies": { + "The answer cannot be determined.": 0.0 + }, + "most_common_distractor": "The answer cannot be determined.", + "most_common_distractor_freq": 0.0, + "least_common_distractor": "The answer cannot be determined.", + "least_common_distractor_freq": 0.0 + }, + { + "problem_id": 347843, + "n_choices": 4, + "total_responses": 1632, + "correct_count": 0, + "correct_rate": 0.0, + "distractors": { + "-x \u2212 6 < -3.5": 375, + "-x \u2212 6 > 3.5": 257 + }, + "distractor_frequencies": { + "-x \u2212 6 < -3.5": 0.22977941176470587, + "-x \u2212 6 > 3.5": 0.15747549019607843 + }, + "most_common_distractor": "-x \u2212 6 < -3.5", + "most_common_distractor_freq": 0.22977941176470587, + "least_common_distractor": "-x \u2212 6 > 3.5", + "least_common_distractor_freq": 0.15747549019607843 + }, + { + "problem_id": 348910, + "n_choices": 4, + "total_responses": 31, + "correct_count": 20, + "correct_rate": 0.6451612903225806, + "distractors": { + "4.5": 4, + "11": 1, + "18": 6 + }, + "distractor_frequencies": { + "4.5": 0.12903225806451613, + "11": 0.03225806451612903, + "18": 0.1935483870967742 + }, + "most_common_distractor": "18", + "most_common_distractor_freq": 0.1935483870967742, + "least_common_distractor": "11", + "least_common_distractor_freq": 0.03225806451612903 + }, + { + "problem_id": 63719, + "n_choices": 4, + "total_responses": 447, + "correct_count": 300, + "correct_rate": 0.6711409395973155, + "distractors": { + "

5,000

": 81, + "

50,000

": 66, + "

5,000,000

": 0 + }, + "distractor_frequencies": { + "

5,000

": 0.18120805369127516, + "

50,000

": 0.1476510067114094, + "

5,000,000

": 0.0 + }, + "most_common_distractor": "

5,000

", + "most_common_distractor_freq": 0.18120805369127516, + "least_common_distractor": "

5,000,000

", + "least_common_distractor_freq": 0.0 + }, + { + "problem_id": 56614, + "n_choices": 4, + "total_responses": 58, + "correct_count": 40, + "correct_rate": 0.6896551724137931, + "distractors": { + "

x \u00b7 x \u00b7 x = 1 \u00b7 1 \u00b7 1 \u00b7 1

": 14, + "

x = 34

": 0, + "

x + 1 = 4

": 4 + }, + "distractor_frequencies": { + "

x \u00b7 x \u00b7 x = 1 \u00b7 1 \u00b7 1 \u00b7 1

": 0.2413793103448276, + "

x = 34

": 0.0, + "

x + 1 = 4

": 0.06896551724137931 + }, + "most_common_distractor": "

x \u00b7 x \u00b7 x = 1 \u00b7 1 \u00b7 1 \u00b7 1

", + "most_common_distractor_freq": 0.2413793103448276, + "least_common_distractor": "

x = 34

", + "least_common_distractor_freq": 0.0 + }, + { + "problem_id": 505947, + "n_choices": 4, + "total_responses": 49, + "correct_count": 0, + "correct_rate": 0.0, + "distractors": { + "10,000": 7, + "100,000": 21 + }, + "distractor_frequencies": { + "10,000": 0.14285714285714285, + "100,000": 0.42857142857142855 + }, + "most_common_distractor": "100,000", + "most_common_distractor_freq": 0.42857142857142855, + "least_common_distractor": "10,000", + "least_common_distractor_freq": 0.14285714285714285 + }, + { + "problem_id": 190961, + "n_choices": 3, + "total_responses": 366, + "correct_count": 242, + "correct_rate": 0.6612021857923497, + "distractors": { + "

Negative

": 115, + "

Zero

": 9 + }, + "distractor_frequencies": { + "

Negative

": 0.31420765027322406, + "

Zero

": 0.02459016393442623 + }, + "most_common_distractor": "

Negative

", + "most_common_distractor_freq": 0.31420765027322406, + "least_common_distractor": "

Zero

", + "least_common_distractor_freq": 0.02459016393442623 + }, + { + "problem_id": 184060, + "n_choices": 4, + "total_responses": 1134, + "correct_count": 614, + "correct_rate": 0.5414462081128748, + "distractors": { + "How many more kilometers does he have to walk to get to the festival?": 219, + "What fraction of the trip is left?": 238, + "How many kilometers is it from home to the festival and back home?": 63 + }, + "distractor_frequencies": { + "How many more kilometers does he have to walk to get to the festival?": 0.1931216931216931, + "What fraction of the trip is left?": 0.20987654320987653, + "How many kilometers is it from home to the festival and back home?": 0.05555555555555555 + }, + "most_common_distractor": "What fraction of the trip is left?", + "most_common_distractor_freq": 0.20987654320987653, + "least_common_distractor": "How many kilometers is it from home to the festival and back home?", + "least_common_distractor_freq": 0.05555555555555555 + }, + { + "problem_id": 628100, + "n_choices": 6, + "total_responses": 712, + "correct_count": 562, + "correct_rate": 0.7893258426966292, + "distractors": { + "

1 inch to 1 foot

": 150, + "

1  inch to 100 feet

": 0, + "

1  inch to 1 mile

": 0, + "

1  centimeter to 1 meter

": 0, + "

1  centimeter to 1 kilometer

": 0 + }, + "distractor_frequencies": { + "

1 inch to 1 foot

": 0.21067415730337077, + "

1  inch to 100 feet

": 0.0, + "

1  inch to 1 mile

": 0.0, + "

1  centimeter to 1 meter

": 0.0, + "

1  centimeter to 1 kilometer

": 0.0 + }, + "most_common_distractor": "

1 inch to 1 foot

", + "most_common_distractor_freq": 0.21067415730337077, + "least_common_distractor": "

1  centimeter to 1 kilometer

", + "least_common_distractor_freq": 0.0 + }, + { + "problem_id": 275383, + "n_choices": 4, + "total_responses": 57, + "correct_count": 46, + "correct_rate": 0.8070175438596491, + "distractors": { + "Pair 1": 6, + "Pair 2": 3, + "Pair 4": 2 + }, + "distractor_frequencies": { + "Pair 1": 0.10526315789473684, + "Pair 2": 0.05263157894736842, + "Pair 4": 0.03508771929824561 + }, + "most_common_distractor": "Pair 1", + "most_common_distractor_freq": 0.10526315789473684, + "least_common_distractor": "Pair 4", + "least_common_distractor_freq": 0.03508771929824561 + }, + { + "problem_id": 2433, + "n_choices": 4, + "total_responses": 57, + "correct_count": 29, + "correct_rate": 0.5087719298245614, + "distractors": { + "24 teaspoons": 9, + "22 teaspoons": 15, + "12 teaspoons": 4 + }, + "distractor_frequencies": { + "24 teaspoons": 0.15789473684210525, + "22 teaspoons": 0.2631578947368421, + "12 teaspoons": 0.07017543859649122 + }, + "most_common_distractor": "22 teaspoons", + "most_common_distractor_freq": 0.2631578947368421, + "least_common_distractor": "12 teaspoons", + "least_common_distractor_freq": 0.07017543859649122 + }, + { + "problem_id": 7396, + "n_choices": 5, + "total_responses": 50, + "correct_count": 7, + "correct_rate": 0.14, + "distractors": { + "About 5,000 m\u00b2": 41, + "About 50,000 m\u00b2": 2, + "About 5,000,000 m\u00b2": 0, + "About 50,000,000 m\u00b2": 0 + }, + "distractor_frequencies": { + "About 5,000 m\u00b2": 0.82, + "About 50,000 m\u00b2": 0.04, + "About 5,000,000 m\u00b2": 0.0, + "About 50,000,000 m\u00b2": 0.0 + }, + "most_common_distractor": "About 5,000 m\u00b2", + "most_common_distractor_freq": 0.82, + "least_common_distractor": "About 50,000,000 m\u00b2", + "least_common_distractor_freq": 0.0 + }, + { + "problem_id": 228072, + "n_choices": 3, + "total_responses": 968, + "correct_count": 853, + "correct_rate": 0.881198347107438, + "distractors": { + "Definitely True": 62, + "Possibly True": 53 + }, + "distractor_frequencies": { + "Definitely True": 0.0640495867768595, + "Possibly True": 0.05475206611570248 + }, + "most_common_distractor": "Definitely True", + "most_common_distractor_freq": 0.0640495867768595, + "least_common_distractor": "Possibly True", + "least_common_distractor_freq": 0.05475206611570248 + }, + { + "problem_id": 383708, + "n_choices": 4, + "total_responses": 27, + "correct_count": 24, + "correct_rate": 0.8888888888888888, + "distractors": { + "30 cm\u00b2": 3, + "22 cm\u00b2": 0, + "12 cm\u00b2": 0 + }, + "distractor_frequencies": { + "30 cm\u00b2": 0.1111111111111111, + "22 cm\u00b2": 0.0, + "12 cm\u00b2": 0.0 + }, + "most_common_distractor": "30 cm\u00b2", + "most_common_distractor_freq": 0.1111111111111111, + "least_common_distractor": "12 cm\u00b2", + "least_common_distractor_freq": 0.0 + }, + { + "problem_id": 346945, + "n_choices": 4, + "total_responses": 1209, + "correct_count": 997, + "correct_rate": 0.8246484698097601, + "distractors": { + "The area of the new figure is greater.": 73, + "The area of the original square is greater.": 72, + "We don't know because neither the side length nor the area of the original square is known.": 67 + }, + "distractor_frequencies": { + "The area of the new figure is greater.": 0.060380479735318446, + "The area of the original square is greater.": 0.05955334987593052, + "We don't know because neither the side length nor the area of the original square is known.": 0.055417700578990904 + }, + "most_common_distractor": "The area of the new figure is greater.", + "most_common_distractor_freq": 0.060380479735318446, + "least_common_distractor": "We don't know because neither the side length nor the area of the original square is known.", + "least_common_distractor_freq": 0.055417700578990904 + }, + { + "problem_id": 24916, + "n_choices": 4, + "total_responses": 699, + "correct_count": 578, + "correct_rate": 0.82689556509299, + "distractors": { + "40\u00b0, 50\u00b0, 60\u00b0": 47, + "60\u00b0, 70\u00b0, 80\u00b0": 34, + "70\u00b0, 80\u00b0, 90\u00b0": 40 + }, + "distractor_frequencies": { + "40\u00b0, 50\u00b0, 60\u00b0": 0.06723891273247497, + "60\u00b0, 70\u00b0, 80\u00b0": 0.04864091559370529, + "70\u00b0, 80\u00b0, 90\u00b0": 0.05722460658082976 + }, + "most_common_distractor": "40\u00b0, 50\u00b0, 60\u00b0", + "most_common_distractor_freq": 0.06723891273247497, + "least_common_distractor": "60\u00b0, 70\u00b0, 80\u00b0", + "least_common_distractor_freq": 0.04864091559370529 + }, + { + "problem_id": 42186, + "n_choices": 5, + "total_responses": 33, + "correct_count": 0, + "correct_rate": 0.0, + "distractors": { + "impossible": 1, + "unlikely": 3, + "certain": 0 + }, + "distractor_frequencies": { + "impossible": 0.030303030303030304, + "unlikely": 0.09090909090909091, + "certain": 0.0 + }, + "most_common_distractor": "unlikely", + "most_common_distractor_freq": 0.09090909090909091, + "least_common_distractor": "certain", + "least_common_distractor_freq": 0.0 + }, + { + "problem_id": 518599, + "n_choices": 7, + "total_responses": 537, + "correct_count": 474, + "correct_rate": 0.88268156424581, + "distractors": { + "

7

": 13, + "

12

": 0, + "

-0.8

": 32, + "

0.8

": 0, + "

-110

": 0, + "

-2

": 18 + }, + "distractor_frequencies": { + "

7

": 0.024208566108007448, + "

12

": 0.0, + "

-0.8

": 0.0595903165735568, + "

0.8

": 0.0, + "

-110

": 0.0, + "

-2

": 0.0335195530726257 + }, + "most_common_distractor": "

-0.8

", + "most_common_distractor_freq": 0.0595903165735568, + "least_common_distractor": "

-110

", + "least_common_distractor_freq": 0.0 + }, + { + "problem_id": 63205, + "n_choices": 4, + "total_responses": 733, + "correct_count": 0, + "correct_rate": 0.0, + "distractors": { + "Quadrant IV": 0 + }, + "distractor_frequencies": { + "Quadrant IV": 0.0 + }, + "most_common_distractor": "Quadrant IV", + "most_common_distractor_freq": 0.0, + "least_common_distractor": "Quadrant IV", + "least_common_distractor_freq": 0.0 + }, + { + "problem_id": 112678, + "n_choices": 5, + "total_responses": 1038, + "correct_count": 688, + "correct_rate": 0.6628131021194605, + "distractors": { + "2": 67, + "3": 25, + "7": 239, + "n": 19 + }, + "distractor_frequencies": { + "2": 0.06454720616570328, + "3": 0.024084778420038536, + "7": 0.2302504816955684, + "n": 0.018304431599229287 + }, + "most_common_distractor": "7", + "most_common_distractor_freq": 0.2302504816955684, + "least_common_distractor": "n", + "least_common_distractor_freq": 0.018304431599229287 + }, + { + "problem_id": 30522, + "n_choices": 3, + "total_responses": 806, + "correct_count": 0, + "correct_rate": 0.0, + "distractors": { + "Yes": 146 + }, + "distractor_frequencies": { + "Yes": 0.18114143920595532 + }, + "most_common_distractor": "Yes", + "most_common_distractor_freq": 0.18114143920595532, + "least_common_distractor": "Yes", + "least_common_distractor_freq": 0.18114143920595532 + }, + { + "problem_id": 228382, + "n_choices": 3, + "total_responses": 970, + "correct_count": 691, + "correct_rate": 0.7123711340206186, + "distractors": { + "Definitely True": 118, + "Definitely Not True": 161 + }, + "distractor_frequencies": { + "Definitely True": 0.12164948453608247, + "Definitely Not True": 0.16597938144329896 + }, + "most_common_distractor": "Definitely Not True", + "most_common_distractor_freq": 0.16597938144329896, + "least_common_distractor": "Definitely True", + "least_common_distractor_freq": 0.12164948453608247 + }, + { + "problem_id": 503038, + "n_choices": 4, + "total_responses": 10, + "correct_count": 6, + "correct_rate": 0.6, + "distractors": { + "The length of 3 cubes lined up, in inches": 2, + "The cube\u2019s surface area in square inches": 2, + "The total volume of 3 cubes, in cubic inches": 0 + }, + "distractor_frequencies": { + "The length of 3 cubes lined up, in inches": 0.2, + "The cube\u2019s surface area in square inches": 0.2, + "The total volume of 3 cubes, in cubic inches": 0.0 + }, + "most_common_distractor": "The length of 3 cubes lined up, in inches", + "most_common_distractor_freq": 0.2, + "least_common_distractor": "The total volume of 3 cubes, in cubic inches", + "least_common_distractor_freq": 0.0 + }, + { + "problem_id": 478570, + "n_choices": 4, + "total_responses": 96, + "correct_count": 69, + "correct_rate": 0.71875, + "distractors": { + "Agree with Clare": 12, + "Agree with Both": 5, + "Agree with Neither": 10 + }, + "distractor_frequencies": { + "Agree with Clare": 0.125, + "Agree with Both": 0.052083333333333336, + "Agree with Neither": 0.10416666666666667 + }, + "most_common_distractor": "Agree with Clare", + "most_common_distractor_freq": 0.125, + "least_common_distractor": "Agree with Both", + "least_common_distractor_freq": 0.052083333333333336 + }, + { + "problem_id": 90063, + "n_choices": 4, + "total_responses": 85, + "correct_count": 73, + "correct_rate": 0.8588235294117647, + "distractors": { + "

7

": 7, + "

5

": 5, + "

2012

": 0 + }, + "distractor_frequencies": { + "

7

": 0.08235294117647059, + "

5

": 0.058823529411764705, + "

2012

": 0.0 + }, + "most_common_distractor": "

7

", + "most_common_distractor_freq": 0.08235294117647059, + "least_common_distractor": "

2012

", + "least_common_distractor_freq": 0.0 + }, + { + "problem_id": 3852, + "n_choices": 4, + "total_responses": 159, + "correct_count": 120, + "correct_rate": 0.7547169811320755, + "distractors": { + "48 miles": 16, + "30 miles": 10, + "18 miles": 13 + }, + "distractor_frequencies": { + "48 miles": 0.10062893081761007, + "30 miles": 0.06289308176100629, + "18 miles": 0.08176100628930817 + }, + "most_common_distractor": "48 miles", + "most_common_distractor_freq": 0.10062893081761007, + "least_common_distractor": "30 miles", + "least_common_distractor_freq": 0.06289308176100629 + }, + { + "problem_id": 14654, + "n_choices": 3, + "total_responses": 27, + "correct_count": 19, + "correct_rate": 0.7037037037037037, + "distractors": { + "City A": 7, + "Neither": 1 + }, + "distractor_frequencies": { + "City A": 0.25925925925925924, + "Neither": 0.037037037037037035 + }, + "most_common_distractor": "City A", + "most_common_distractor_freq": 0.25925925925925924, + "least_common_distractor": "Neither", + "least_common_distractor_freq": 0.037037037037037035 + }, + { + "problem_id": 28051, + "n_choices": 3, + "total_responses": 1736, + "correct_count": 1287, + "correct_rate": 0.7413594470046083, + "distractors": { + "

Store X: 4 cans for $2.48

": 148, + "

Store Y: 5 cans for $3.00

": 301 + }, + "distractor_frequencies": { + "

Store X: 4 cans for $2.48

": 0.08525345622119816, + "

Store Y: 5 cans for $3.00

": 0.17338709677419356 + }, + "most_common_distractor": "

Store Y: 5 cans for $3.00

", + "most_common_distractor_freq": 0.17338709677419356, + "least_common_distractor": "

Store X: 4 cans for $2.48

", + "least_common_distractor_freq": 0.08525345622119816 + }, + { + "problem_id": 596207, + "n_choices": 4, + "total_responses": 34, + "correct_count": 26, + "correct_rate": 0.7647058823529411, + "distractors": { + "39 cm\u00b3": 5, + "156 cm\u00b3": 3, + "234 cm\u00b3": 0 + }, + "distractor_frequencies": { + "39 cm\u00b3": 0.14705882352941177, + "156 cm\u00b3": 0.08823529411764706, + "234 cm\u00b3": 0.0 + }, + "most_common_distractor": "39 cm\u00b3", + "most_common_distractor_freq": 0.14705882352941177, + "least_common_distractor": "234 cm\u00b3", + "least_common_distractor_freq": 0.0 + }, + { + "problem_id": 28093, + "n_choices": 4, + "total_responses": 61, + "correct_count": 24, + "correct_rate": 0.39344262295081966, + "distractors": { + "Use a protractor to measure all four angles in polygon A and all four angles in polygon C. Since each angle in polygon A has a matching angle measure in polygon C, the polygons are similar.": 11, + "Since each side in polygon C is three times as long as the corresponding side in polygon A, the figures are similar.": 16, + "Dilate polygon C with center at the upper-right corner and a scale factor of 3. Since polygon C can be taken to polygon A with a dilation, the polygons are similar.": 10 + }, + "distractor_frequencies": { + "Use a protractor to measure all four angles in polygon A and all four angles in polygon C. Since each angle in polygon A has a matching angle measure in polygon C, the polygons are similar.": 0.18032786885245902, + "Since each side in polygon C is three times as long as the corresponding side in polygon A, the figures are similar.": 0.26229508196721313, + "Dilate polygon C with center at the upper-right corner and a scale factor of 3. Since polygon C can be taken to polygon A with a dilation, the polygons are similar.": 0.16393442622950818 + }, + "most_common_distractor": "Since each side in polygon C is three times as long as the corresponding side in polygon A, the figures are similar.", + "most_common_distractor_freq": 0.26229508196721313, + "least_common_distractor": "Dilate polygon C with center at the upper-right corner and a scale factor of 3. Since polygon C can be taken to polygon A with a dilation, the polygons are similar.", + "least_common_distractor_freq": 0.16393442622950818 + }, + { + "problem_id": 103860, + "n_choices": 4, + "total_responses": 16, + "correct_count": 0, + "correct_rate": 0.0, + "distractors": { + "

5 12 \u00d7 4 14

": 16, + "

4 \u00d7 3

": 0, + "

5 \u00d7 4

": 0 + }, + "distractor_frequencies": { + "

5 12 \u00d7 4 14

": 1.0, + "

4 \u00d7 3

": 0.0, + "

5 \u00d7 4

": 0.0 + }, + "most_common_distractor": "

5 12 \u00d7 4 14

", + "most_common_distractor_freq": 1.0, + "least_common_distractor": "

5 \u00d7 4

", + "least_common_distractor_freq": 0.0 + }, + { + "problem_id": 40911, + "n_choices": 4, + "total_responses": 98, + "correct_count": 81, + "correct_rate": 0.826530612244898, + "distractors": { + "Pair 2": 4, + "Pair 3": 8, + "Pair 4": 5 + }, + "distractor_frequencies": { + "Pair 2": 0.04081632653061224, + "Pair 3": 0.08163265306122448, + "Pair 4": 0.05102040816326531 + }, + "most_common_distractor": "Pair 3", + "most_common_distractor_freq": 0.08163265306122448, + "least_common_distractor": "Pair 2", + "least_common_distractor_freq": 0.04081632653061224 + }, + { + "problem_id": 518807, + "n_choices": 7, + "total_responses": 551, + "correct_count": 486, + "correct_rate": 0.8820326678765881, + "distractors": { + "

-3

": 35, + "

12

": 0, + "

-0.8

": 23, + "

0.8

": 0, + "

-110

": 0, + "

-2

": 7 + }, + "distractor_frequencies": { + "

-3

": 0.06352087114337568, + "

12

": 0.0, + "

-0.8

": 0.041742286751361164, + "

0.8

": 0.0, + "

-110

": 0.0, + "

-2

": 0.012704174228675136 + }, + "most_common_distractor": "

-3

", + "most_common_distractor_freq": 0.06352087114337568, + "least_common_distractor": "

-110

", + "least_common_distractor_freq": 0.0 + }, + { + "problem_id": 119400, + "n_choices": 4, + "total_responses": 126, + "correct_count": 0, + "correct_rate": 0.0, + "distractors": { + "Agree with Elena": 30, + "Agree with Andre": 14 + }, + "distractor_frequencies": { + "Agree with Elena": 0.23809523809523808, + "Agree with Andre": 0.1111111111111111 + }, + "most_common_distractor": "Agree with Elena", + "most_common_distractor_freq": 0.23809523809523808, + "least_common_distractor": "Agree with Andre", + "least_common_distractor_freq": 0.1111111111111111 + }, + { + "problem_id": 314006, + "n_choices": 3, + "total_responses": 1201, + "correct_count": 887, + "correct_rate": 0.7385512073272273, + "distractors": { + "

medium

": 271, + "

large

": 43 + }, + "distractor_frequencies": { + "

medium

": 0.22564529558701082, + "

large

": 0.035803497085761866 + }, + "most_common_distractor": "

medium

", + "most_common_distractor_freq": 0.22564529558701082, + "least_common_distractor": "

large

", + "least_common_distractor_freq": 0.035803497085761866 + }, + { + "problem_id": 204459, + "n_choices": 4, + "total_responses": 175, + "correct_count": 108, + "correct_rate": 0.6171428571428571, + "distractors": { + "Hundreds": 38, + "Ones": 14, + "Tenths": 15 + }, + "distractor_frequencies": { + "Hundreds": 0.21714285714285714, + "Ones": 0.08, + "Tenths": 0.08571428571428572 + }, + "most_common_distractor": "Hundreds", + "most_common_distractor_freq": 0.21714285714285714, + "least_common_distractor": "Ones", + "least_common_distractor_freq": 0.08 + }, + { + "problem_id": 25445, + "n_choices": 4, + "total_responses": 1356, + "correct_count": 723, + "correct_rate": 0.5331858407079646, + "distractors": { + "300 m2": 231, + "3,000 m2": 245, + "300,000 m2": 157 + }, + "distractor_frequencies": { + "300 m2": 0.17035398230088494, + "3,000 m2": 0.18067846607669616, + "300,000 m2": 0.11578171091445427 + }, + "most_common_distractor": "3,000 m2", + "most_common_distractor_freq": 0.18067846607669616, + "least_common_distractor": "300,000 m2", + "least_common_distractor_freq": 0.11578171091445427 + }, + { + "problem_id": 36419, + "n_choices": 4, + "total_responses": 227, + "correct_count": 0, + "correct_rate": 0.0, + "distractors": { + "-1": 44, + "1": 0 + }, + "distractor_frequencies": { + "-1": 0.19383259911894274, + "1": 0.0 + }, + "most_common_distractor": "-1", + "most_common_distractor_freq": 0.19383259911894274, + "least_common_distractor": "1", + "least_common_distractor_freq": 0.0 + }, + { + "problem_id": 266182, + "n_choices": 4, + "total_responses": 18, + "correct_count": 0, + "correct_rate": 0.0, + "distractors": { + "

white, blue, white, white, red

": 7 + }, + "distractor_frequencies": { + "

white, blue, white, white, red

": 0.3888888888888889 + }, + "most_common_distractor": "

white, blue, white, white, red

", + "most_common_distractor_freq": 0.3888888888888889, + "least_common_distractor": "

white, blue, white, white, red

", + "least_common_distractor_freq": 0.3888888888888889 + }, + { + "problem_id": 173561, + "n_choices": 4, + "total_responses": 491, + "correct_count": 402, + "correct_rate": 0.8187372708757638, + "distractors": { + "As x increases, y tends to increase.": 68, + "As x increases, y tends to stay unchanged.": 7, + "x and y are unrelated.": 14 + }, + "distractor_frequencies": { + "As x increases, y tends to increase.": 0.1384928716904277, + "As x increases, y tends to stay unchanged.": 0.014256619144602852, + "x and y are unrelated.": 0.028513238289205704 + }, + "most_common_distractor": "As x increases, y tends to increase.", + "most_common_distractor_freq": 0.1384928716904277, + "least_common_distractor": "As x increases, y tends to stay unchanged.", + "least_common_distractor_freq": 0.014256619144602852 + }, + { + "problem_id": 503799, + "n_choices": 4, + "total_responses": 1070, + "correct_count": 719, + "correct_rate": 0.6719626168224299, + "distractors": { + "

b=4, h=3.5

": 111, + "

b=6, h=2.25

": 159, + "

b=10, h=1.4

": 81 + }, + "distractor_frequencies": { + "

b=4, h=3.5

": 0.10373831775700934, + "

b=6, h=2.25

": 0.1485981308411215, + "

b=10, h=1.4

": 0.07570093457943926 + }, + "most_common_distractor": "

b=6, h=2.25

", + "most_common_distractor_freq": 0.1485981308411215, + "least_common_distractor": "

b=10, h=1.4

", + "least_common_distractor_freq": 0.07570093457943926 + }, + { + "problem_id": 348992, + "n_choices": 4, + "total_responses": 37, + "correct_count": 19, + "correct_rate": 0.5135135135135135, + "distractors": { + "A rectangle smaller than the base": 11, + "A quadrilateral that is not a rectangle": 4, + "A rectangle the same size as the base": 3 + }, + "distractor_frequencies": { + "A rectangle smaller than the base": 0.2972972972972973, + "A quadrilateral that is not a rectangle": 0.10810810810810811, + "A rectangle the same size as the base": 0.08108108108108109 + }, + "most_common_distractor": "A rectangle smaller than the base", + "most_common_distractor_freq": 0.2972972972972973, + "least_common_distractor": "A rectangle the same size as the base", + "least_common_distractor_freq": 0.08108108108108109 + }, + { + "problem_id": 277396, + "n_choices": 4, + "total_responses": 575, + "correct_count": 0, + "correct_rate": 0.0, + "distractors": { + "

270

": 90, + "

338

": 0 + }, + "distractor_frequencies": { + "

270

": 0.1565217391304348, + "

338

": 0.0 + }, + "most_common_distractor": "

270

", + "most_common_distractor_freq": 0.1565217391304348, + "least_common_distractor": "

338

", + "least_common_distractor_freq": 0.0 + }, + { + "problem_id": 78262, + "n_choices": 4, + "total_responses": 1093, + "correct_count": 615, + "correct_rate": 0.5626715462031107, + "distractors": { + "I agree with Han": 239, + "I agree with Tyler": 226, + "I don't agree with either": 13 + }, + "distractor_frequencies": { + "I agree with Han": 0.21866422689844464, + "I agree with Tyler": 0.20677035681610248, + "I don't agree with either": 0.011893870082342177 + }, + "most_common_distractor": "I agree with Han", + "most_common_distractor_freq": 0.21866422689844464, + "least_common_distractor": "I don't agree with either", + "least_common_distractor_freq": 0.011893870082342177 + }, + { + "problem_id": 253594, + "n_choices": 3, + "total_responses": 395, + "correct_count": 329, + "correct_rate": 0.8329113924050633, + "distractors": { + "Lin's estimate": 11, + "Diego's estimate": 55 + }, + "distractor_frequencies": { + "Lin's estimate": 0.027848101265822784, + "Diego's estimate": 0.13924050632911392 + }, + "most_common_distractor": "Diego's estimate", + "most_common_distractor_freq": 0.13924050632911392, + "least_common_distractor": "Lin's estimate", + "least_common_distractor_freq": 0.027848101265822784 + }, + { + "problem_id": 42589, + "n_choices": 5, + "total_responses": 33, + "correct_count": 0, + "correct_rate": 0.0, + "distractors": { + "equally likely as not": 0, + "certain": 0 + }, + "distractor_frequencies": { + "equally likely as not": 0.0, + "certain": 0.0 + }, + "most_common_distractor": "equally likely as not", + "most_common_distractor_freq": 0.0, + "least_common_distractor": "certain", + "least_common_distractor_freq": 0.0 + }, + { + "problem_id": 306064, + "n_choices": 5, + "total_responses": 176, + "correct_count": 111, + "correct_rate": 0.6306818181818182, + "distractors": { + "y = -1.5x + 6": 21, + "y = -1.5x": 3, + "2y = -3x + 6": 28, + "2y + 3x = 6": 13 + }, + "distractor_frequencies": { + "y = -1.5x + 6": 0.11931818181818182, + "y = -1.5x": 0.017045454545454544, + "2y = -3x + 6": 0.1590909090909091, + "2y + 3x = 6": 0.07386363636363637 + }, + "most_common_distractor": "2y = -3x + 6", + "most_common_distractor_freq": 0.1590909090909091, + "least_common_distractor": "y = -1.5x", + "least_common_distractor_freq": 0.017045454545454544 + }, + { + "problem_id": 165102, + "n_choices": 3, + "total_responses": 30, + "correct_count": 27, + "correct_rate": 0.9, + "distractors": { + "Picture L": 0, + "Picture N": 3 + }, + "distractor_frequencies": { + "Picture L": 0.0, + "Picture N": 0.1 + }, + "most_common_distractor": "Picture N", + "most_common_distractor_freq": 0.1, + "least_common_distractor": "Picture L", + "least_common_distractor_freq": 0.0 + }, + { + "problem_id": 73922, + "n_choices": 4, + "total_responses": 476, + "correct_count": 363, + "correct_rate": 0.7626050420168067, + "distractors": { + "I agree with only Jada": 67, + "I agree with only Andre": 37, + "I agree with neither Jada or Andre": 9 + }, + "distractor_frequencies": { + "I agree with only Jada": 0.1407563025210084, + "I agree with only Andre": 0.07773109243697479, + "I agree with neither Jada or Andre": 0.018907563025210083 + }, + "most_common_distractor": "I agree with only Jada", + "most_common_distractor_freq": 0.1407563025210084, + "least_common_distractor": "I agree with neither Jada or Andre", + "least_common_distractor_freq": 0.018907563025210083 + }, + { + "problem_id": 498737, + "n_choices": 4, + "total_responses": 21, + "correct_count": 0, + "correct_rate": 0.0, + "distractors": { + "

0.04x - 25

": 10, + "

0.04x - 25.04

": 0 + }, + "distractor_frequencies": { + "

0.04x - 25

": 0.47619047619047616, + "

0.04x - 25.04

": 0.0 + }, + "most_common_distractor": "

0.04x - 25

", + "most_common_distractor_freq": 0.47619047619047616, + "least_common_distractor": "

0.04x - 25.04

", + "least_common_distractor_freq": 0.0 + }, + { + "problem_id": 44207, + "n_choices": 4, + "total_responses": 34, + "correct_count": 30, + "correct_rate": 0.8823529411764706, + "distractors": { + "I agree with Diego": 3, + "I agree with neither": 1, + "I agree with both": 0 + }, + "distractor_frequencies": { + "I agree with Diego": 0.08823529411764706, + "I agree with neither": 0.029411764705882353, + "I agree with both": 0.0 + }, + "most_common_distractor": "I agree with Diego", + "most_common_distractor_freq": 0.08823529411764706, + "least_common_distractor": "I agree with both", + "least_common_distractor_freq": 0.0 + }, + { + "problem_id": 42680, + "n_choices": 5, + "total_responses": 33, + "correct_count": 18, + "correct_rate": 0.5454545454545454, + "distractors": { + "impossible": 9, + "unlikely": 6, + "equally likely as not": 0, + "likely": 0 + }, + "distractor_frequencies": { + "impossible": 0.2727272727272727, + "unlikely": 0.18181818181818182, + "equally likely as not": 0.0, + "likely": 0.0 + }, + "most_common_distractor": "impossible", + "most_common_distractor_freq": 0.2727272727272727, + "least_common_distractor": "likely", + "least_common_distractor_freq": 0.0 + }, + { + "problem_id": 95407, + "n_choices": 4, + "total_responses": 700, + "correct_count": 386, + "correct_rate": 0.5514285714285714, + "distractors": { + "

(-1,-4)

": 43, + "

(-1,4)

": 111, + "

(4,1)

": 160 + }, + "distractor_frequencies": { + "

(-1,-4)

": 0.06142857142857143, + "

(-1,4)

": 0.15857142857142856, + "

(4,1)

": 0.22857142857142856 + }, + "most_common_distractor": "

(4,1)

", + "most_common_distractor_freq": 0.22857142857142856, + "least_common_distractor": "

(-1,-4)

", + "least_common_distractor_freq": 0.06142857142857143 + }, + { + "problem_id": 375373, + "n_choices": 4, + "total_responses": 1454, + "correct_count": 1233, + "correct_rate": 0.8480055020632737, + "distractors": { + "88 + b = 90": 46, + "88 + b = 180": 97, + "2b + 88 = 90": 78 + }, + "distractor_frequencies": { + "88 + b = 90": 0.03163686382393398, + "88 + b = 180": 0.06671251719394773, + "2b + 88 = 90": 0.05364511691884457 + }, + "most_common_distractor": "88 + b = 180", + "most_common_distractor_freq": 0.06671251719394773, + "least_common_distractor": "88 + b = 90", + "least_common_distractor_freq": 0.03163686382393398 + }, + { + "problem_id": 39475, + "n_choices": 4, + "total_responses": 1389, + "correct_count": 1035, + "correct_rate": 0.7451403887688985, + "distractors": { + "Noah is correct": 153, + "Neither are correct": 157, + "Both are correct": 44 + }, + "distractor_frequencies": { + "Noah is correct": 0.1101511879049676, + "Neither are correct": 0.11303095752339813, + "Both are correct": 0.03167746580273578 + }, + "most_common_distractor": "Neither are correct", + "most_common_distractor_freq": 0.11303095752339813, + "least_common_distractor": "Both are correct", + "least_common_distractor_freq": 0.03167746580273578 + }, + { + "problem_id": 69444, + "n_choices": 4, + "total_responses": 323, + "correct_count": 232, + "correct_rate": 0.718266253869969, + "distractors": { + "

x - y

": 60, + "

x \u2022 y

": 31, + "

xy

": 0 + }, + "distractor_frequencies": { + "

x - y

": 0.18575851393188855, + "

x \u2022 y

": 0.09597523219814241, + "

xy

": 0.0 + }, + "most_common_distractor": "

x - y

", + "most_common_distractor_freq": 0.18575851393188855, + "least_common_distractor": "

xy

", + "least_common_distractor_freq": 0.0 + }, + { + "problem_id": 61617, + "n_choices": 4, + "total_responses": 83, + "correct_count": 43, + "correct_rate": 0.5180722891566265, + "distractors": { + "14.2": 8, + "12.6": 18, + "8.3": 14 + }, + "distractor_frequencies": { + "14.2": 0.0963855421686747, + "12.6": 0.21686746987951808, + "8.3": 0.1686746987951807 + }, + "most_common_distractor": "12.6", + "most_common_distractor_freq": 0.21686746987951808, + "least_common_distractor": "14.2", + "least_common_distractor_freq": 0.0963855421686747 + }, + { + "problem_id": 10283, + "n_choices": 4, + "total_responses": 483, + "correct_count": 260, + "correct_rate": 0.5383022774327122, + "distractors": { + "

-10 is irrational because it is not rational.

": 223, + "

- 10 is irrational because it is less than zero.

": 0, + "

-10 is irrational because it is not a whole number.

": 0 + }, + "distractor_frequencies": { + "

-10 is irrational because it is not rational.

": 0.4616977225672878, + "

- 10 is irrational because it is less than zero.

": 0.0, + "

-10 is irrational because it is not a whole number.

": 0.0 + }, + "most_common_distractor": "

-10 is irrational because it is not rational.

", + "most_common_distractor_freq": 0.4616977225672878, + "least_common_distractor": "

-10 is irrational because it is not a whole number.

", + "least_common_distractor_freq": 0.0 + }, + { + "problem_id": 409242, + "n_choices": 4, + "total_responses": 20, + "correct_count": 20, + "correct_rate": 1.0, + "distractors": { + "\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
012
26
33
40
\n

 

": 0, + "\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
06
212
315
418
\n

 

": 0, + "

 

\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
00
24
39
416
\n

 

": 0 + }, + "distractor_frequencies": { + "\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
012
26
33
40
\n

 

": 0.0, + "\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
06
212
315
418
\n

 

": 0.0, + "

 

\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
00
24
39
416
\n

 

": 0.0 + }, + "most_common_distractor": "\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
012
26
33
40
\n

 

", + "most_common_distractor_freq": 0.0, + "least_common_distractor": "

 

\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
00
24
39
416
\n

 

", + "least_common_distractor_freq": 0.0 + }, + { + "problem_id": 227828, + "n_choices": 3, + "total_responses": 975, + "correct_count": 645, + "correct_rate": 0.6615384615384615, + "distractors": { + "Definitely True": 98, + "Definitely Not True": 232 + }, + "distractor_frequencies": { + "Definitely True": 0.10051282051282051, + "Definitely Not True": 0.23794871794871794 + }, + "most_common_distractor": "Definitely Not True", + "most_common_distractor_freq": 0.23794871794871794, + "least_common_distractor": "Definitely True", + "least_common_distractor_freq": 0.10051282051282051 + }, + { + "problem_id": 150654, + "n_choices": 4, + "total_responses": 51, + "correct_count": 45, + "correct_rate": 0.8823529411764706, + "distractors": { + "

18

": 5, + "

92

": 0, + "

-2

": 1 + }, + "distractor_frequencies": { + "

18

": 0.09803921568627451, + "

92

": 0.0, + "

-2

": 0.0196078431372549 + }, + "most_common_distractor": "

18

", + "most_common_distractor_freq": 0.09803921568627451, + "least_common_distractor": "

92

", + "least_common_distractor_freq": 0.0 + }, + { + "problem_id": 9624, + "n_choices": 7, + "total_responses": 164, + "correct_count": 132, + "correct_rate": 0.8048780487804879, + "distractors": { + "Harrisburg, PA": 3, + "Denver, CO": 18, + "Coachella, CA": 10, + "Death Valley, CA": 1, + "New York City, NY": 0, + "Miami, FL": 0 + }, + "distractor_frequencies": { + "Harrisburg, PA": 0.018292682926829267, + "Denver, CO": 0.10975609756097561, + "Coachella, CA": 0.06097560975609756, + "Death Valley, CA": 0.006097560975609756, + "New York City, NY": 0.0, + "Miami, FL": 0.0 + }, + "most_common_distractor": "Denver, CO", + "most_common_distractor_freq": 0.10975609756097561, + "least_common_distractor": "Miami, FL", + "least_common_distractor_freq": 0.0 + }, + { + "problem_id": 8347, + "n_choices": 4, + "total_responses": 30, + "correct_count": 27, + "correct_rate": 0.9, + "distractors": { + "12.05": 0, + "12.325": 3, + "14.8": 0 + }, + "distractor_frequencies": { + "12.05": 0.0, + "12.325": 0.1, + "14.8": 0.0 + }, + "most_common_distractor": "12.325", + "most_common_distractor_freq": 0.1, + "least_common_distractor": "14.8", + "least_common_distractor_freq": 0.0 + }, + { + "problem_id": 211231, + "n_choices": 4, + "total_responses": 62, + "correct_count": 42, + "correct_rate": 0.6774193548387096, + "distractors": { + "\u2113": 0, + "j": 19, + "d": 1 + }, + "distractor_frequencies": { + "\u2113": 0.0, + "j": 0.3064516129032258, + "d": 0.016129032258064516 + }, + "most_common_distractor": "j", + "most_common_distractor_freq": 0.3064516129032258, + "least_common_distractor": "\u2113", + "least_common_distractor_freq": 0.0 + }, + { + "problem_id": 560175, + "n_choices": 4, + "total_responses": 23, + "correct_count": 18, + "correct_rate": 0.782608695652174, + "distractors": { + "0.06%": 1, + "0.4%": 1, + "6%": 3 + }, + "distractor_frequencies": { + "0.06%": 0.043478260869565216, + "0.4%": 0.043478260869565216, + "6%": 0.13043478260869565 + }, + "most_common_distractor": "6%", + "most_common_distractor_freq": 0.13043478260869565, + "least_common_distractor": "0.4%", + "least_common_distractor_freq": 0.043478260869565216 + }, + { + "problem_id": 42327, + "n_choices": 4, + "total_responses": 671, + "correct_count": 312, + "correct_rate": 0.46497764530551416, + "distractors": { + "(-14) + 8": 135, + "14 \u2212 (-8)": 140, + "14 + (-8)": 84 + }, + "distractor_frequencies": { + "(-14) + 8": 0.20119225037257824, + "14 \u2212 (-8)": 0.20864381520119224, + "14 + (-8)": 0.12518628912071536 + }, + "most_common_distractor": "14 \u2212 (-8)", + "most_common_distractor_freq": 0.20864381520119224, + "least_common_distractor": "14 + (-8)", + "least_common_distractor_freq": 0.12518628912071536 + }, + { + "problem_id": 84657, + "n_choices": 4, + "total_responses": 58, + "correct_count": 0, + "correct_rate": 0.0, + "distractors": { + "3,000": 30, + "-3,000": 0 + }, + "distractor_frequencies": { + "3,000": 0.5172413793103449, + "-3,000": 0.0 + }, + "most_common_distractor": "3,000", + "most_common_distractor_freq": 0.5172413793103449, + "least_common_distractor": "-3,000", + "least_common_distractor_freq": 0.0 + }, + { + "problem_id": 604503, + "n_choices": 4, + "total_responses": 13, + "correct_count": 7, + "correct_rate": 0.5384615384615384, + "distractors": { + "248": 2, + "144": 3, + "69": 1 + }, + "distractor_frequencies": { + "248": 0.15384615384615385, + "144": 0.23076923076923078, + "69": 0.07692307692307693 + }, + "most_common_distractor": "144", + "most_common_distractor_freq": 0.23076923076923078, + "least_common_distractor": "69", + "least_common_distractor_freq": 0.07692307692307693 + }, + { + "problem_id": 9569, + "n_choices": 3, + "total_responses": 67, + "correct_count": 52, + "correct_rate": 0.7761194029850746, + "distractors": { + "Jada": 5, + "Lin": 10 + }, + "distractor_frequencies": { + "Jada": 0.07462686567164178, + "Lin": 0.14925373134328357 + }, + "most_common_distractor": "Lin", + "most_common_distractor_freq": 0.14925373134328357, + "least_common_distractor": "Jada", + "least_common_distractor_freq": 0.07462686567164178 + }, + { + "problem_id": 382378, + "n_choices": 4, + "total_responses": 80, + "correct_count": 53, + "correct_rate": 0.6625, + "distractors": { + "3x - y = 8": 8, + "y = x + 2": 8, + "y - x = 5": 11 + }, + "distractor_frequencies": { + "3x - y = 8": 0.1, + "y = x + 2": 0.1, + "y - x = 5": 0.1375 + }, + "most_common_distractor": "y - x = 5", + "most_common_distractor_freq": 0.1375, + "least_common_distractor": "y = x + 2", + "least_common_distractor_freq": 0.1 + }, + { + "problem_id": 264860, + "n_choices": 4, + "total_responses": 189, + "correct_count": 132, + "correct_rate": 0.6984126984126984, + "distractors": { + "

 

\n

\"Triangle

\n

 

": 57, + "

\"Triangle

\n

 

\n

 

\n

 

": 0, + "

\"Triangle

\n

 

\n

 

\n

 

": 0 + }, + "distractor_frequencies": { + "

 

\n

\"Triangle

\n

 

": 0.30158730158730157, + "

\"Triangle

\n

 

\n

 

\n

 

": 0.0, + "

\"Triangle

\n

 

\n

 

\n

 

": 0.0 + }, + "most_common_distractor": "

 

\n

\"Triangle

\n

 

", + "most_common_distractor_freq": 0.30158730158730157, + "least_common_distractor": "

\"Triangle

\n

 

\n

 

\n

 

", + "least_common_distractor_freq": 0.0 + }, + { + "problem_id": 117002, + "n_choices": 3, + "total_responses": 11, + "correct_count": 0, + "correct_rate": 0.0, + "distractors": { + "7": 0 + }, + "distractor_frequencies": { + "7": 0.0 + }, + "most_common_distractor": "7", + "most_common_distractor_freq": 0.0, + "least_common_distractor": "7", + "least_common_distractor_freq": 0.0 + }, + { + "problem_id": 308414, + "n_choices": 4, + "total_responses": 182, + "correct_count": 111, + "correct_rate": 0.6098901098901099, + "distractors": { + "The number of jumping jacks Diego does": 6, + "The number of push-ups Diego does": 54, + "The number of jumping jacks Noah does": 11 + }, + "distractor_frequencies": { + "The number of jumping jacks Diego does": 0.03296703296703297, + "The number of push-ups Diego does": 0.2967032967032967, + "The number of jumping jacks Noah does": 0.06043956043956044 + }, + "most_common_distractor": "The number of push-ups Diego does", + "most_common_distractor_freq": 0.2967032967032967, + "least_common_distractor": "The number of jumping jacks Diego does", + "least_common_distractor_freq": 0.03296703296703297 + }, + { + "problem_id": 6560, + "n_choices": 3, + "total_responses": 67, + "correct_count": 48, + "correct_rate": 0.7164179104477612, + "distractors": { + "Greater than": 10, + "Less than": 9 + }, + "distractor_frequencies": { + "Greater than": 0.14925373134328357, + "Less than": 0.13432835820895522 + }, + "most_common_distractor": "Greater than", + "most_common_distractor_freq": 0.14925373134328357, + "least_common_distractor": "Less than", + "least_common_distractor_freq": 0.13432835820895522 + }, + { + "problem_id": 30936, + "n_choices": 3, + "total_responses": 790, + "correct_count": 0, + "correct_rate": 0.0, + "distractors": { + "Yes": 80 + }, + "distractor_frequencies": { + "Yes": 0.10126582278481013 + }, + "most_common_distractor": "Yes", + "most_common_distractor_freq": 0.10126582278481013, + "least_common_distractor": "Yes", + "least_common_distractor_freq": 0.10126582278481013 + }, + { + "problem_id": 116142, + "n_choices": 4, + "total_responses": 36, + "correct_count": 12, + "correct_rate": 0.3333333333333333, + "distractors": { + "35": 6, + "200": 3, + "1,400": 15 + }, + "distractor_frequencies": { + "35": 0.16666666666666666, + "200": 0.08333333333333333, + "1,400": 0.4166666666666667 + }, + "most_common_distractor": "1,400", + "most_common_distractor_freq": 0.4166666666666667, + "least_common_distractor": "200", + "least_common_distractor_freq": 0.08333333333333333 + }, + { + "problem_id": 98864, + "n_choices": 3, + "total_responses": 206, + "correct_count": 140, + "correct_rate": 0.6796116504854369, + "distractors": { + "football team": 11, + "basketball team": 55 + }, + "distractor_frequencies": { + "football team": 0.05339805825242718, + "basketball team": 0.2669902912621359 + }, + "most_common_distractor": "basketball team", + "most_common_distractor_freq": 0.2669902912621359, + "least_common_distractor": "football team", + "least_common_distractor_freq": 0.05339805825242718 + }, + { + "problem_id": 398888, + "n_choices": 3, + "total_responses": 30, + "correct_count": 25, + "correct_rate": 0.8333333333333334, + "distractors": { + "Elena": 2, + "Jada": 3 + }, + "distractor_frequencies": { + "Elena": 0.06666666666666667, + "Jada": 0.1 + }, + "most_common_distractor": "Jada", + "most_common_distractor_freq": 0.1, + "least_common_distractor": "Elena", + "least_common_distractor_freq": 0.06666666666666667 + }, + { + "problem_id": 79597, + "n_choices": 4, + "total_responses": 949, + "correct_count": 565, + "correct_rate": 0.59536354056902, + "distractors": { + "

33.3

": 163, + "

91

": 137, + "

100

": 84 + }, + "distractor_frequencies": { + "

33.3

": 0.17175974710221287, + "

91

": 0.14436248682824027, + "

100

": 0.08851422550052687 + }, + "most_common_distractor": "

33.3

", + "most_common_distractor_freq": 0.17175974710221287, + "least_common_distractor": "

100

", + "least_common_distractor_freq": 0.08851422550052687 + }, + { + "problem_id": 31406, + "n_choices": 4, + "total_responses": 473, + "correct_count": 219, + "correct_rate": 0.4630021141649049, + "distractors": { + "6 + 3x = 30": 90, + "3x = 30 \u2212 6": 145, + "30 = 3x + 6": 19 + }, + "distractor_frequencies": { + "6 + 3x = 30": 0.19027484143763213, + "3x = 30 \u2212 6": 0.30655391120507397, + "30 = 3x + 6": 0.040169133192389 + }, + "most_common_distractor": "3x = 30 \u2212 6", + "most_common_distractor_freq": 0.30655391120507397, + "least_common_distractor": "30 = 3x + 6", + "least_common_distractor_freq": 0.040169133192389 + }, + { + "problem_id": 253922, + "n_choices": 4, + "total_responses": 594, + "correct_count": 351, + "correct_rate": 0.5909090909090909, + "distractors": { + "125": 116, + "147": 62, + "150": 65 + }, + "distractor_frequencies": { + "125": 0.19528619528619529, + "147": 0.10437710437710437, + "150": 0.10942760942760943 + }, + "most_common_distractor": "125", + "most_common_distractor_freq": 0.19528619528619529, + "least_common_distractor": "147", + "least_common_distractor_freq": 0.10437710437710437 + }, + { + "problem_id": 52890, + "n_choices": 4, + "total_responses": 213, + "correct_count": 122, + "correct_rate": 0.5727699530516432, + "distractors": { + "3x \u2212 2": 77, + "3x + 2": 10, + "3x + 6": 4 + }, + "distractor_frequencies": { + "3x \u2212 2": 0.3615023474178404, + "3x + 2": 0.046948356807511735, + "3x + 6": 0.018779342723004695 + }, + "most_common_distractor": "3x \u2212 2", + "most_common_distractor_freq": 0.3615023474178404, + "least_common_distractor": "3x + 6", + "least_common_distractor_freq": 0.018779342723004695 + }, + { + "problem_id": 262449, + "n_choices": 4, + "total_responses": 241, + "correct_count": 159, + "correct_rate": 0.6597510373443983, + "distractors": { + "I agree with Noah": 76, + "I agree with both": 5, + "I don't agree with either": 1 + }, + "distractor_frequencies": { + "I agree with Noah": 0.3153526970954357, + "I agree with both": 0.02074688796680498, + "I don't agree with either": 0.004149377593360996 + }, + "most_common_distractor": "I agree with Noah", + "most_common_distractor_freq": 0.3153526970954357, + "least_common_distractor": "I don't agree with either", + "least_common_distractor_freq": 0.004149377593360996 + }, + { + "problem_id": 146131, + "n_choices": 3, + "total_responses": 399, + "correct_count": 393, + "correct_rate": 0.9849624060150376, + "distractors": { + "GJ": 2, + "FH": 4 + }, + "distractor_frequencies": { + "GJ": 0.005012531328320802, + "FH": 0.010025062656641603 + }, + "most_common_distractor": "FH", + "most_common_distractor_freq": 0.010025062656641603, + "least_common_distractor": "GJ", + "least_common_distractor_freq": 0.005012531328320802 + }, + { + "problem_id": 409526, + "n_choices": 4, + "total_responses": 17, + "correct_count": 0, + "correct_rate": 0.0, + "distractors": { + "

d = t + 14

": 14, + "

d = t - 14

": 3, + "

d = 15t

": 0 + }, + "distractor_frequencies": { + "

d = t + 14

": 0.8235294117647058, + "

d = t - 14

": 0.17647058823529413, + "

d = 15t

": 0.0 + }, + "most_common_distractor": "

d = t + 14

", + "most_common_distractor_freq": 0.8235294117647058, + "least_common_distractor": "

d = 15t

", + "least_common_distractor_freq": 0.0 + }, + { + "problem_id": 171809, + "n_choices": 4, + "total_responses": 31, + "correct_count": 13, + "correct_rate": 0.41935483870967744, + "distractors": { + "48": 3, + "36": 6, + "16": 9 + }, + "distractor_frequencies": { + "48": 0.0967741935483871, + "36": 0.1935483870967742, + "16": 0.2903225806451613 + }, + "most_common_distractor": "16", + "most_common_distractor_freq": 0.2903225806451613, + "least_common_distractor": "48", + "least_common_distractor_freq": 0.0967741935483871 + }, + { + "problem_id": 33992, + "n_choices": 4, + "total_responses": 120, + "correct_count": 3, + "correct_rate": 0.025, + "distractors": { + "

0.05x - 40.05

": 66, + "

0.05x - 40

": 13 + }, + "distractor_frequencies": { + "

0.05x - 40.05

": 0.55, + "

0.05x - 40

": 0.10833333333333334 + }, + "most_common_distractor": "

0.05x - 40.05

", + "most_common_distractor_freq": 0.55, + "least_common_distractor": "

0.05x - 40

", + "least_common_distractor_freq": 0.10833333333333334 + }, + { + "problem_id": 14257, + "n_choices": 4, + "total_responses": 815, + "correct_count": 694, + "correct_rate": 0.8515337423312883, + "distractors": { + "

3,551

": 27, + "

22.4

": 81, + "

57

": 13 + }, + "distractor_frequencies": { + "

3,551

": 0.033128834355828224, + "

22.4

": 0.09938650306748466, + "

57

": 0.015950920245398775 + }, + "most_common_distractor": "

22.4

", + "most_common_distractor_freq": 0.09938650306748466, + "least_common_distractor": "

57

", + "least_common_distractor_freq": 0.015950920245398775 + }, + { + "problem_id": 83841, + "n_choices": 3, + "total_responses": 464, + "correct_count": 232, + "correct_rate": 0.5, + "distractors": { + "on a windowsill in the same room": 74, + "in her kitchen, which is down the hallway": 158 + }, + "distractor_frequencies": { + "on a windowsill in the same room": 0.15948275862068967, + "in her kitchen, which is down the hallway": 0.34051724137931033 + }, + "most_common_distractor": "in her kitchen, which is down the hallway", + "most_common_distractor_freq": 0.34051724137931033, + "least_common_distractor": "on a windowsill in the same room", + "least_common_distractor_freq": 0.15948275862068967 + }, + { + "problem_id": 35877, + "n_choices": 4, + "total_responses": 21, + "correct_count": 14, + "correct_rate": 0.6666666666666666, + "distractors": { + "-20 - 8x": 4, + "-20x + 8": 1, + "20x + 8": 2 + }, + "distractor_frequencies": { + "-20 - 8x": 0.19047619047619047, + "-20x + 8": 0.047619047619047616, + "20x + 8": 0.09523809523809523 + }, + "most_common_distractor": "-20 - 8x", + "most_common_distractor_freq": 0.19047619047619047, + "least_common_distractor": "-20x + 8", + "least_common_distractor_freq": 0.047619047619047616 + }, + { + "problem_id": 40142, + "n_choices": 4, + "total_responses": 1395, + "correct_count": 517, + "correct_rate": 0.37060931899641575, + "distractors": { + "Line 1": 186, + "Line 2": 287, + "Line 3": 405 + }, + "distractor_frequencies": { + "Line 1": 0.13333333333333333, + "Line 2": 0.2057347670250896, + "Line 3": 0.2903225806451613 + }, + "most_common_distractor": "Line 3", + "most_common_distractor_freq": 0.2903225806451613, + "least_common_distractor": "Line 1", + "least_common_distractor_freq": 0.13333333333333333 + }, + { + "problem_id": 483667, + "n_choices": 4, + "total_responses": 148, + "correct_count": 6, + "correct_rate": 0.04054054054054054, + "distractors": { + "A triangle with angles 30\u00b0, 50\u00b0, and 100\u00b0": 77, + "A quadrilateral with each side length 5 cm": 65, + "A triangle with side lengths 4 cm and 5 cm and a 50\u00b0 angle": 0 + }, + "distractor_frequencies": { + "A triangle with angles 30\u00b0, 50\u00b0, and 100\u00b0": 0.5202702702702703, + "A quadrilateral with each side length 5 cm": 0.4391891891891892, + "A triangle with side lengths 4 cm and 5 cm and a 50\u00b0 angle": 0.0 + }, + "most_common_distractor": "A triangle with angles 30\u00b0, 50\u00b0, and 100\u00b0", + "most_common_distractor_freq": 0.5202702702702703, + "least_common_distractor": "A triangle with side lengths 4 cm and 5 cm and a 50\u00b0 angle", + "least_common_distractor_freq": 0.0 + }, + { + "problem_id": 419376, + "n_choices": 5, + "total_responses": 1228, + "correct_count": 907, + "correct_rate": 0.738599348534202, + "distractors": { + "B": 59, + "C": 154, + "E": 23, + "F": 85 + }, + "distractor_frequencies": { + "B": 0.04804560260586319, + "C": 0.1254071661237785, + "E": 0.018729641693811076, + "F": 0.06921824104234528 + }, + "most_common_distractor": "C", + "most_common_distractor_freq": 0.1254071661237785, + "least_common_distractor": "E", + "least_common_distractor_freq": 0.018729641693811076 + } +] \ No newline at end of file diff --git a/Results/pedagogical_grounding/output/irt_parameters.json b/Results/pedagogical_grounding/output/irt_parameters.json new file mode 100644 index 0000000000000000000000000000000000000000..fa41213d3186e85447834bb001e39eaf3d9882f2 --- /dev/null +++ b/Results/pedagogical_grounding/output/irt_parameters.json @@ -0,0 +1,22913 @@ +[ + { + "problem_id": 405080, + "difficulty_1pl": -3.0279762744903564, + "difficulty_2pl": -0.23389199376106262, + "discrimination_2pl": 0.3072877526283264, + "difficulty_simple": -0.9525196701706135, + "percent_correct": 0.7216216216216216, + "n_responses": 740 + }, + { + "problem_id": 448452, + "difficulty_1pl": -12.244994163513184, + "difficulty_2pl": -0.5332596898078918, + "discrimination_2pl": 0.715126633644104, + "difficulty_simple": -1.8222186767127637, + "percent_correct": 0.860832137733142, + "n_responses": 697 + }, + { + "problem_id": 448806, + "difficulty_1pl": -12.374640464782715, + "difficulty_2pl": -0.6139656901359558, + "discrimination_2pl": 0.7224534153938293, + "difficulty_simple": -2.2068400360356613, + "percent_correct": 0.9008620689655172, + "n_responses": 696 + }, + { + "problem_id": 449139, + "difficulty_1pl": -12.813472747802734, + "difficulty_2pl": -0.7532650828361511, + "discrimination_2pl": 0.711048424243927, + "difficulty_simple": -2.221438835456814, + "percent_correct": 0.902158273381295, + "n_responses": 695 + }, + { + "problem_id": 449555, + "difficulty_1pl": -4.220925807952881, + "difficulty_2pl": -0.4094406068325043, + "discrimination_2pl": 0.5296373963356018, + "difficulty_simple": -1.0662593242163438, + "percent_correct": 0.7438848920863309, + "n_responses": 695 + }, + { + "problem_id": 298893, + "difficulty_1pl": -4.288516044616699, + "difficulty_2pl": -0.35327473282814026, + "discrimination_2pl": 0.5448365211486816, + "difficulty_simple": -1.0657058069555794, + "percent_correct": 0.7437794216543376, + "n_responses": 1487 + }, + { + "problem_id": 297072, + "difficulty_1pl": -13.61264705657959, + "difficulty_2pl": -1.1652835607528687, + "discrimination_2pl": 0.7537909746170044, + "difficulty_simple": -2.6175511243942955, + "percent_correct": 0.9319826338639653, + "n_responses": 1382 + }, + { + "problem_id": 302140, + "difficulty_1pl": -0.7862424254417419, + "difficulty_2pl": 0.01878681778907776, + "discrimination_2pl": 0.08898228406906128, + "difficulty_simple": -0.31280627762545976, + "percent_correct": 0.577570093457944, + "n_responses": 1070 + }, + { + "problem_id": 302326, + "difficulty_1pl": -10.90682601928711, + "difficulty_2pl": -0.9544993042945862, + "discrimination_2pl": 0.42735081911087036, + "difficulty_simple": -1.765783982824794, + "percent_correct": 0.8539325842696629, + "n_responses": 1068 + }, + { + "problem_id": 302522, + "difficulty_1pl": -2.6711630821228027, + "difficulty_2pl": -0.1314019411802292, + "discrimination_2pl": 0.2972680330276489, + "difficulty_simple": -0.8810620399904109, + "percent_correct": 0.7070422535211267, + "n_responses": 1065 + }, + { + "problem_id": 302809, + "difficulty_1pl": -0.38962575793266296, + "difficulty_2pl": 0.3008694350719452, + "discrimination_2pl": 0.39758792519569397, + "difficulty_simple": -0.21339643306831224, + "percent_correct": 0.5531475748194015, + "n_responses": 969 + }, + { + "problem_id": 303033, + "difficulty_1pl": -2.2462332248687744, + "difficulty_2pl": -0.03781677410006523, + "discrimination_2pl": 0.4811706244945526, + "difficulty_simple": -0.5025268209512954, + "percent_correct": 0.6230529595015576, + "n_responses": 963 + }, + { + "problem_id": 303522, + "difficulty_1pl": 1.8663007020950317, + "difficulty_2pl": 0.2914572060108185, + "discrimination_2pl": 0.2601276934146881, + "difficulty_simple": 0.1898184682081331, + "percent_correct": 0.45268735806207416, + "n_responses": 1321 + }, + { + "problem_id": 128818, + "difficulty_1pl": -4.483870506286621, + "difficulty_2pl": -0.40804266929626465, + "discrimination_2pl": 0.39322587847709656, + "difficulty_simple": -1.1191408688092388, + "percent_correct": 0.7538293216630197, + "n_responses": 914 + }, + { + "problem_id": 129121, + "difficulty_1pl": -4.636175155639648, + "difficulty_2pl": -0.2766250669956207, + "discrimination_2pl": 0.348480761051178, + "difficulty_simple": -1.2372368979664488, + "percent_correct": 0.7750826901874311, + "n_responses": 907 + }, + { + "problem_id": 130937, + "difficulty_1pl": 2.3295931816101074, + "difficulty_2pl": 0.020679594948887825, + "discrimination_2pl": 0.1461227536201477, + "difficulty_simple": 0.32187343720006023, + "percent_correct": 0.42021924482338613, + "n_responses": 821 + }, + { + "problem_id": 131274, + "difficulty_1pl": 0.4637854993343353, + "difficulty_2pl": 0.14789994060993195, + "discrimination_2pl": 0.3361097574234009, + "difficulty_simple": -0.21115140226894605, + "percent_correct": 0.5525925925925926, + "n_responses": 675 + }, + { + "problem_id": 598936, + "difficulty_1pl": -2.1378324031829834, + "difficulty_2pl": 0.05025454983115196, + "discrimination_2pl": 0.4796929359436035, + "difficulty_simple": -0.5737728599114322, + "percent_correct": 0.6396332863187588, + "n_responses": 1418 + }, + { + "problem_id": 599220, + "difficulty_1pl": -0.8425716161727905, + "difficulty_2pl": 0.04166048765182495, + "discrimination_2pl": 0.477245956659317, + "difficulty_simple": -0.49865888500611144, + "percent_correct": 0.6221441124780316, + "n_responses": 1138 + }, + { + "problem_id": 209639, + "difficulty_1pl": 7.062056541442871, + "difficulty_2pl": 0.13150466978549957, + "discrimination_2pl": 0.03307874873280525, + "difficulty_simple": 1.0209871266375736, + "percent_correct": 0.26483516483516484, + "n_responses": 1820 + }, + { + "problem_id": 207210, + "difficulty_1pl": 0.39163655042648315, + "difficulty_2pl": 0.275542676448822, + "discrimination_2pl": 0.2971254289150238, + "difficulty_simple": -0.2766965015523232, + "percent_correct": 0.5687361419068736, + "n_responses": 1804 + }, + { + "problem_id": 122934, + "difficulty_1pl": -2.0518884658813477, + "difficulty_2pl": 0.00018198881298303604, + "discrimination_2pl": 0.43225112557411194, + "difficulty_simple": -0.7207188364960282, + "percent_correct": 0.67276529012023, + "n_responses": 1913 + }, + { + "problem_id": 123580, + "difficulty_1pl": 1.1724411249160767, + "difficulty_2pl": 0.4716816544532776, + "discrimination_2pl": 0.37390172481536865, + "difficulty_simple": -0.15642082836179758, + "percent_correct": 0.5390256678889471, + "n_responses": 1909 + }, + { + "problem_id": 124164, + "difficulty_1pl": 0.9021170735359192, + "difficulty_2pl": 0.4597208797931671, + "discrimination_2pl": 0.3678753674030304, + "difficulty_simple": -0.2714967480307635, + "percent_correct": 0.5674603174603174, + "n_responses": 2016 + }, + { + "problem_id": 124698, + "difficulty_1pl": -1.2951788902282715, + "difficulty_2pl": -0.099777951836586, + "discrimination_2pl": 0.48246923089027405, + "difficulty_simple": -0.8701233877294275, + "percent_correct": 0.7047713717693836, + "n_responses": 2012 + }, + { + "problem_id": 160506, + "difficulty_1pl": 1.7856080532073975, + "difficulty_2pl": 0.22406552731990814, + "discrimination_2pl": 0.18513381481170654, + "difficulty_simple": 0.10746526831696149, + "percent_correct": 0.473159509202454, + "n_responses": 1304 + }, + { + "problem_id": 508521, + "difficulty_1pl": 10.71855640411377, + "difficulty_2pl": 0.1390194445848465, + "discrimination_2pl": 0.03015957958996296, + "difficulty_simple": 1.3618502971841977, + "percent_correct": 0.20393974507531865, + "n_responses": 863 + }, + { + "problem_id": 509085, + "difficulty_1pl": 1.4576038122177124, + "difficulty_2pl": 0.06523601710796356, + "discrimination_2pl": 0.14630591869354248, + "difficulty_simple": 0.13441909796466325, + "percent_correct": 0.4664457332228666, + "n_responses": 1207 + }, + { + "problem_id": 509539, + "difficulty_1pl": -1.2480050325393677, + "difficulty_2pl": 0.20583198964595795, + "discrimination_2pl": 0.4099765419960022, + "difficulty_simple": -0.49469624183610705, + "percent_correct": 0.6212121212121212, + "n_responses": 1188 + }, + { + "problem_id": 208077, + "difficulty_1pl": -1.4493772983551025, + "difficulty_2pl": -0.05931275710463524, + "discrimination_2pl": 0.36970198154449463, + "difficulty_simple": -0.7386336043715555, + "percent_correct": 0.6766969909027292, + "n_responses": 1429 + }, + { + "problem_id": 509883, + "difficulty_1pl": 1.028375267982483, + "difficulty_2pl": 0.2584761381149292, + "discrimination_2pl": 0.3161376118659973, + "difficulty_simple": -0.07384091379988483, + "percent_correct": 0.5184518451845185, + "n_responses": 1111 + }, + { + "problem_id": 510249, + "difficulty_1pl": -5.4323015213012695, + "difficulty_2pl": -0.11142004281282425, + "discrimination_2pl": 0.5424333810806274, + "difficulty_simple": -0.8789460713379854, + "percent_correct": 0.7066037735849057, + "n_responses": 1060 + }, + { + "problem_id": 208594, + "difficulty_1pl": -5.434715270996094, + "difficulty_2pl": -0.4302038848400116, + "discrimination_2pl": 0.5213801264762878, + "difficulty_simple": -1.2230444374375185, + "percent_correct": 0.7725988700564972, + "n_responses": 1416 + }, + { + "problem_id": 208921, + "difficulty_1pl": -2.8984196186065674, + "difficulty_2pl": -0.22806009650230408, + "discrimination_2pl": 0.42175254225730896, + "difficulty_simple": -0.8198713921446767, + "percent_correct": 0.6942090395480226, + "n_responses": 1416 + }, + { + "problem_id": 510935, + "difficulty_1pl": -9.0150146484375, + "difficulty_2pl": -0.7205449938774109, + "discrimination_2pl": 0.711321234703064, + "difficulty_simple": -2.034501378610893, + "percent_correct": 0.8843721770551038, + "n_responses": 1107 + }, + { + "problem_id": 209207, + "difficulty_1pl": -4.110847473144531, + "difficulty_2pl": -0.15288393199443817, + "discrimination_2pl": 0.44700703024864197, + "difficulty_simple": -0.8035293913175025, + "percent_correct": 0.6907289455060156, + "n_responses": 1413 + }, + { + "problem_id": 511103, + "difficulty_1pl": -3.1517956256866455, + "difficulty_2pl": -0.29533883929252625, + "discrimination_2pl": 0.41206151247024536, + "difficulty_simple": -1.2075378704904318, + "percent_correct": 0.7698630136986301, + "n_responses": 1095 + }, + { + "problem_id": 189053, + "difficulty_1pl": -1.2333579063415527, + "difficulty_2pl": 0.1617625504732132, + "discrimination_2pl": 0.4531797766685486, + "difficulty_simple": -0.599445723955369, + "percent_correct": 0.6455294863665187, + "n_responses": 1577 + }, + { + "problem_id": 375655, + "difficulty_1pl": 7.538713455200195, + "difficulty_2pl": 0.1344069391489029, + "discrimination_2pl": 0.0412420853972435, + "difficulty_simple": 1.013619075834717, + "percent_correct": 0.26627218934911245, + "n_responses": 1183 + }, + { + "problem_id": 375373, + "difficulty_1pl": -10.775960922241211, + "difficulty_2pl": -0.7540568709373474, + "discrimination_2pl": 0.7773867845535278, + "difficulty_simple": -1.6926071094348019, + "percent_correct": 0.844566712517194, + "n_responses": 1454 + }, + { + "problem_id": 188665, + "difficulty_1pl": -6.56375789642334, + "difficulty_2pl": -0.46014440059661865, + "discrimination_2pl": 0.6501607894897461, + "difficulty_simple": -1.356928466315526, + "percent_correct": 0.7952600394996708, + "n_responses": 1519 + }, + { + "problem_id": 168559, + "difficulty_1pl": 3.097912311553955, + "difficulty_2pl": 0.05625160038471222, + "discrimination_2pl": 0.1034165769815445, + "difficulty_simple": 0.35197642315717836, + "percent_correct": 0.4129032258064516, + "n_responses": 465 + }, + { + "problem_id": 230204, + "difficulty_1pl": -0.23979295790195465, + "difficulty_2pl": -0.04786984995007515, + "discrimination_2pl": 0.277222216129303, + "difficulty_simple": -0.5260930958967791, + "percent_correct": 0.6285714285714286, + "n_responses": 700 + }, + { + "problem_id": 375982, + "difficulty_1pl": -1.3231302499771118, + "difficulty_2pl": -0.10797321051359177, + "discrimination_2pl": 0.385991632938385, + "difficulty_simple": -0.5779585759658563, + "percent_correct": 0.640597539543058, + "n_responses": 1138 + }, + { + "problem_id": 230683, + "difficulty_1pl": -0.8372077941894531, + "difficulty_2pl": -0.059395816177129745, + "discrimination_2pl": 0.2555575668811798, + "difficulty_simple": -0.5277814299125467, + "percent_correct": 0.6289655172413793, + "n_responses": 725 + }, + { + "problem_id": 264186, + "difficulty_1pl": 0.6939308047294617, + "difficulty_2pl": 0.1122610792517662, + "discrimination_2pl": 0.2369108498096466, + "difficulty_simple": 0.08223809823697222, + "percent_correct": 0.4794520547945205, + "n_responses": 803 + }, + { + "problem_id": 231026, + "difficulty_1pl": -0.5643792748451233, + "difficulty_2pl": 0.23734135925769806, + "discrimination_2pl": 0.3411354124546051, + "difficulty_simple": -0.45198512374305744, + "percent_correct": 0.6111111111111112, + "n_responses": 720 + }, + { + "problem_id": 260281, + "difficulty_1pl": -4.745226860046387, + "difficulty_2pl": -0.3679800033569336, + "discrimination_2pl": 0.44793906807899475, + "difficulty_simple": -1.0893615288959584, + "percent_correct": 0.7482614742698191, + "n_responses": 719 + }, + { + "problem_id": 260726, + "difficulty_1pl": -1.8593558073043823, + "difficulty_2pl": -0.027828391641378403, + "discrimination_2pl": 0.3676604628562927, + "difficulty_simple": -0.6025502852077187, + "percent_correct": 0.6462395543175488, + "n_responses": 718 + }, + { + "problem_id": 42964, + "difficulty_1pl": -0.21088473498821259, + "difficulty_2pl": 0.259224534034729, + "discrimination_2pl": 0.4259737730026245, + "difficulty_simple": -0.4325937754964169, + "percent_correct": 0.6064928676832267, + "n_responses": 2033 + }, + { + "problem_id": 263438, + "difficulty_1pl": 2.6106247901916504, + "difficulty_2pl": 0.0457320474088192, + "discrimination_2pl": 0.10865502804517746, + "difficulty_simple": 0.638374690905827, + "percent_correct": 0.3456140350877193, + "n_responses": 570 + }, + { + "problem_id": 263683, + "difficulty_1pl": 5.245162487030029, + "difficulty_2pl": 0.038307275623083115, + "discrimination_2pl": 0.051399026066064835, + "difficulty_simple": 0.850653568234176, + "percent_correct": 0.2992957746478873, + "n_responses": 568 + }, + { + "problem_id": 168990, + "difficulty_1pl": -3.7536516189575195, + "difficulty_2pl": -0.33530882000923157, + "discrimination_2pl": 0.5666312575340271, + "difficulty_simple": -1.0962454236578436, + "percent_correct": 0.7495559502664298, + "n_responses": 1126 + }, + { + "problem_id": 150868, + "difficulty_1pl": -9.159341812133789, + "difficulty_2pl": -0.6016849279403687, + "discrimination_2pl": 0.6519325375556946, + "difficulty_simple": -2.1480555535297494, + "percent_correct": 0.8954869358669834, + "n_responses": 1263 + }, + { + "problem_id": 177311, + "difficulty_1pl": 3.27998685836792, + "difficulty_2pl": 0.22765249013900757, + "discrimination_2pl": 0.10856232792139053, + "difficulty_simple": 0.32158362412746233, + "percent_correct": 0.42028985507246375, + "n_responses": 1035 + }, + { + "problem_id": 177761, + "difficulty_1pl": -3.3588154315948486, + "difficulty_2pl": -0.25415050983428955, + "discrimination_2pl": 0.3244294226169586, + "difficulty_simple": -0.9092235646510627, + "percent_correct": 0.7128412537917088, + "n_responses": 989 + }, + { + "problem_id": 178225, + "difficulty_1pl": -2.539625644683838, + "difficulty_2pl": -0.20862619578838348, + "discrimination_2pl": 0.3415883481502533, + "difficulty_simple": -0.7926767759069782, + "percent_correct": 0.6884057971014492, + "n_responses": 966 + }, + { + "problem_id": 179693, + "difficulty_1pl": -0.1634199023246765, + "difficulty_2pl": 0.07093949615955353, + "discrimination_2pl": 0.3558271527290344, + "difficulty_simple": -0.10122827837291581, + "percent_correct": 0.5252854812398042, + "n_responses": 613 + }, + { + "problem_id": 178727, + "difficulty_1pl": 1.0982517004013062, + "difficulty_2pl": 0.1311420053243637, + "discrimination_2pl": 0.23746150732040405, + "difficulty_simple": 0.12553774494377687, + "percent_correct": 0.46865671641791046, + "n_responses": 670 + }, + { + "problem_id": 178978, + "difficulty_1pl": -2.7583937644958496, + "difficulty_2pl": -0.21570497751235962, + "discrimination_2pl": 0.5224637985229492, + "difficulty_simple": -0.8809807292614156, + "percent_correct": 0.7070254110612855, + "n_responses": 669 + }, + { + "problem_id": 179199, + "difficulty_1pl": -0.28427568078041077, + "difficulty_2pl": 0.036279432475566864, + "discrimination_2pl": 0.4520402252674103, + "difficulty_simple": -0.3323675617970807, + "percent_correct": 0.5823353293413174, + "n_responses": 668 + }, + { + "problem_id": 179995, + "difficulty_1pl": 5.898220539093018, + "difficulty_2pl": -0.047122541815042496, + "discrimination_2pl": 0.04287856072187424, + "difficulty_simple": 0.9902029901609247, + "percent_correct": 0.27087198515769945, + "n_responses": 539 + }, + { + "problem_id": 503653, + "difficulty_1pl": 1.532236099243164, + "difficulty_2pl": 0.15398012101650238, + "discrimination_2pl": 0.1810295134782791, + "difficulty_simple": 0.08042918110829847, + "percent_correct": 0.47990353697749194, + "n_responses": 1244 + }, + { + "problem_id": 503799, + "difficulty_1pl": -2.5797340869903564, + "difficulty_2pl": -0.08883926272392273, + "discrimination_2pl": 0.3616134822368622, + "difficulty_simple": -0.6833500413149618, + "percent_correct": 0.6644859813084112, + "n_responses": 1070 + }, + { + "problem_id": 504115, + "difficulty_1pl": 4.754384517669678, + "difficulty_2pl": 0.045420270413160324, + "discrimination_2pl": 0.0757175013422966, + "difficulty_simple": 0.3355954281476785, + "percent_correct": 0.41687979539641945, + "n_responses": 1173 + }, + { + "problem_id": 503982, + "difficulty_1pl": -3.235412836074829, + "difficulty_2pl": -0.15374755859375, + "discrimination_2pl": 0.4429556727409363, + "difficulty_simple": -1.0384821044390036, + "percent_correct": 0.7385570209464701, + "n_responses": 1289 + }, + { + "problem_id": 347199, + "difficulty_1pl": 2.415045976638794, + "difficulty_2pl": 0.1883341372013092, + "discrimination_2pl": 0.16386353969573975, + "difficulty_simple": 0.024774181985579756, + "percent_correct": 0.49380677126341865, + "n_responses": 1211 + }, + { + "problem_id": 346945, + "difficulty_1pl": -4.783283710479736, + "difficulty_2pl": -0.40088406205177307, + "discrimination_2pl": 0.46771955490112305, + "difficulty_simple": -1.5254522563610076, + "percent_correct": 0.8213399503722084, + "n_responses": 1209 + }, + { + "problem_id": 347425, + "difficulty_1pl": -1.8945144414901733, + "difficulty_2pl": 0.008498730137944221, + "discrimination_2pl": 0.4335798919200897, + "difficulty_simple": -0.9437421843493903, + "percent_correct": 0.7198549410698096, + "n_responses": 1103 + }, + { + "problem_id": 107252, + "difficulty_1pl": -0.23511868715286255, + "difficulty_2pl": -0.05380495637655258, + "discrimination_2pl": 0.208334818482399, + "difficulty_simple": -0.4009559797466647, + "percent_correct": 0.5989173228346457, + "n_responses": 2032 + }, + { + "problem_id": 108073, + "difficulty_1pl": 1.9489227533340454, + "difficulty_2pl": 0.007198760751634836, + "discrimination_2pl": 0.11873957514762878, + "difficulty_simple": -0.19779683532962894, + "percent_correct": 0.5492886178861789, + "n_responses": 1968 + }, + { + "problem_id": 108663, + "difficulty_1pl": -10.001473426818848, + "difficulty_2pl": -0.8595313429832458, + "discrimination_2pl": 0.5194315314292908, + "difficulty_simple": -1.5996339123374794, + "percent_correct": 0.8319672131147541, + "n_responses": 1952 + }, + { + "problem_id": 123304, + "difficulty_1pl": 3.7987523078918457, + "difficulty_2pl": 0.3188301622867584, + "discrimination_2pl": 0.1057366207242012, + "difficulty_simple": 0.39405271605641945, + "percent_correct": 0.4027420736932305, + "n_responses": 1167 + }, + { + "problem_id": 123600, + "difficulty_1pl": 3.733900547027588, + "difficulty_2pl": 0.005194731056690216, + "discrimination_2pl": 0.07497711479663849, + "difficulty_simple": 0.47505839990735965, + "percent_correct": 0.38341968911917096, + "n_responses": 1158 + }, + { + "problem_id": 123896, + "difficulty_1pl": 1.722050428390503, + "difficulty_2pl": 0.2989087700843811, + "discrimination_2pl": 0.25779908895492554, + "difficulty_simple": 0.012163486193197402, + "percent_correct": 0.49695916594265854, + "n_responses": 1151 + }, + { + "problem_id": 60631, + "difficulty_1pl": -2.7149899005889893, + "difficulty_2pl": -0.4291588366031647, + "discrimination_2pl": 0.33328068256378174, + "difficulty_simple": -1.059097611135849, + "percent_correct": 0.7425180598555211, + "n_responses": 1938 + }, + { + "problem_id": 61151, + "difficulty_1pl": -10.33837604522705, + "difficulty_2pl": -0.8468024134635925, + "discrimination_2pl": 0.5854724645614624, + "difficulty_simple": -1.6175049744884211, + "percent_correct": 0.8344507478081485, + "n_responses": 1939 + }, + { + "problem_id": 26892, + "difficulty_1pl": 6.488107681274414, + "difficulty_2pl": 0.12830936908721924, + "discrimination_2pl": 0.04128045216202736, + "difficulty_simple": 0.9820910828321485, + "percent_correct": 0.2724770642201835, + "n_responses": 1090 + }, + { + "problem_id": 27332, + "difficulty_1pl": 6.163037300109863, + "difficulty_2pl": 0.26175832748413086, + "discrimination_2pl": 0.0610741563141346, + "difficulty_simple": 1.0150791760548046, + "percent_correct": 0.2659870250231696, + "n_responses": 1079 + }, + { + "problem_id": 27571, + "difficulty_1pl": 4.373473167419434, + "difficulty_2pl": 0.14916861057281494, + "discrimination_2pl": 0.12282474339008331, + "difficulty_simple": 0.5895349170956485, + "percent_correct": 0.35674157303370785, + "n_responses": 1068 + }, + { + "problem_id": 27844, + "difficulty_1pl": 6.378208637237549, + "difficulty_2pl": 0.10122436285018921, + "discrimination_2pl": 0.05796721205115318, + "difficulty_simple": 0.9974162766865234, + "percent_correct": 0.269449715370019, + "n_responses": 1054 + }, + { + "problem_id": 28087, + "difficulty_1pl": 6.808224678039551, + "difficulty_2pl": 0.24030740559101105, + "discrimination_2pl": 0.05629611387848854, + "difficulty_simple": 0.8908031013540066, + "percent_correct": 0.2909441233140655, + "n_responses": 1038 + }, + { + "problem_id": 28347, + "difficulty_1pl": 5.50877571105957, + "difficulty_2pl": 0.13250789046287537, + "discrimination_2pl": 0.06200829893350601, + "difficulty_simple": 0.8926009607517504, + "percent_correct": 0.29057337220602525, + "n_responses": 1029 + }, + { + "problem_id": 28656, + "difficulty_1pl": 5.387993812561035, + "difficulty_2pl": 0.13628815114498138, + "discrimination_2pl": 0.04777202382683754, + "difficulty_simple": 0.7503055943998942, + "percent_correct": 0.32075471698113206, + "n_responses": 1219 + }, + { + "problem_id": 269923, + "difficulty_1pl": -1.8776657581329346, + "difficulty_2pl": 0.12167225033044815, + "discrimination_2pl": 0.4854739010334015, + "difficulty_simple": -0.7489385401883608, + "percent_correct": 0.6789473684210526, + "n_responses": 2090 + }, + { + "problem_id": 270281, + "difficulty_1pl": 2.3974521160125732, + "difficulty_2pl": 0.4416588544845581, + "discrimination_2pl": 0.20952926576137543, + "difficulty_simple": 0.21233263520999412, + "percent_correct": 0.44711538461538464, + "n_responses": 2080 + }, + { + "problem_id": 273669, + "difficulty_1pl": -0.6302728056907654, + "difficulty_2pl": 0.04476507753133774, + "discrimination_2pl": 0.2182575762271881, + "difficulty_simple": -0.3896976498554633, + "percent_correct": 0.5962099125364432, + "n_responses": 1372 + }, + { + "problem_id": 270760, + "difficulty_1pl": -4.7056169509887695, + "difficulty_2pl": -0.32680922746658325, + "discrimination_2pl": 0.5365646481513977, + "difficulty_simple": -1.2717990763177227, + "percent_correct": 0.7810505645557192, + "n_responses": 2037 + }, + { + "problem_id": 271051, + "difficulty_1pl": -2.6484463214874268, + "difficulty_2pl": -0.24480023980140686, + "discrimination_2pl": 0.39773523807525635, + "difficulty_simple": -0.9377374203709016, + "percent_correct": 0.7186424003935071, + "n_responses": 2033 + }, + { + "problem_id": 271395, + "difficulty_1pl": -4.058628559112549, + "difficulty_2pl": -0.5512961745262146, + "discrimination_2pl": 0.6089345812797546, + "difficulty_simple": -1.3832183820719963, + "percent_correct": 0.7995073891625616, + "n_responses": 2030 + }, + { + "problem_id": 273879, + "difficulty_1pl": -5.735949516296387, + "difficulty_2pl": -0.10367681086063385, + "discrimination_2pl": 0.4721471965312958, + "difficulty_simple": -1.1200953919981824, + "percent_correct": 0.7540064102564102, + "n_responses": 1248 + }, + { + "problem_id": 274073, + "difficulty_1pl": 0.1288599818944931, + "difficulty_2pl": 0.15043263137340546, + "discrimination_2pl": 0.14662614464759827, + "difficulty_simple": -0.3817288282093336, + "percent_correct": 0.594290007513148, + "n_responses": 1331 + }, + { + "problem_id": 272246, + "difficulty_1pl": 5.886839866638184, + "difficulty_2pl": 0.12838530540466309, + "discrimination_2pl": 0.04972579702734947, + "difficulty_simple": 0.745887789802285, + "percent_correct": 0.3217179902755267, + "n_responses": 1234 + }, + { + "problem_id": 272768, + "difficulty_1pl": 5.054225444793701, + "difficulty_2pl": 0.13369691371917725, + "discrimination_2pl": 0.0625285878777504, + "difficulty_simple": 0.4966553461727608, + "percent_correct": 0.37832699619771865, + "n_responses": 1052 + }, + { + "problem_id": 273241, + "difficulty_1pl": 3.095795154571533, + "difficulty_2pl": 0.2397891730070114, + "discrimination_2pl": 0.09902391582727432, + "difficulty_simple": 0.3046185819826793, + "percent_correct": 0.4244288224956063, + "n_responses": 1138 + }, + { + "problem_id": 121497, + "difficulty_1pl": 4.955390453338623, + "difficulty_2pl": 0.15641574561595917, + "discrimination_2pl": 0.04871143400669098, + "difficulty_simple": 0.8045345799799236, + "percent_correct": 0.30905636478784043, + "n_responses": 1579 + }, + { + "problem_id": 123653, + "difficulty_1pl": 3.146704912185669, + "difficulty_2pl": 0.5602335929870605, + "discrimination_2pl": 0.15132629871368408, + "difficulty_simple": 0.40930178039465176, + "percent_correct": 0.3990795529257068, + "n_responses": 1521 + }, + { + "problem_id": 124091, + "difficulty_1pl": 5.167564392089844, + "difficulty_2pl": 0.11672559380531311, + "discrimination_2pl": 0.05337167903780937, + "difficulty_simple": 0.7116092433996807, + "percent_correct": 0.3292433537832311, + "n_responses": 1467 + }, + { + "problem_id": 122126, + "difficulty_1pl": -3.466475486755371, + "difficulty_2pl": -0.2649478018283844, + "discrimination_2pl": 0.44660258293151855, + "difficulty_simple": -0.9348671174470906, + "percent_correct": 0.7180616740088106, + "n_responses": 1362 + }, + { + "problem_id": 124672, + "difficulty_1pl": 6.611477851867676, + "difficulty_2pl": 0.16009685397148132, + "discrimination_2pl": 0.05105653032660484, + "difficulty_simple": 1.0005301043167742, + "percent_correct": 0.2688372093023256, + "n_responses": 1075 + }, + { + "problem_id": 122745, + "difficulty_1pl": 3.975100517272949, + "difficulty_2pl": 0.3353414535522461, + "discrimination_2pl": 0.13373596966266632, + "difficulty_simple": 0.4136189098350973, + "percent_correct": 0.39804469273743015, + "n_responses": 1432 + }, + { + "problem_id": 123193, + "difficulty_1pl": -1.6844205856323242, + "difficulty_2pl": 0.1407349854707718, + "discrimination_2pl": 0.43728604912757874, + "difficulty_simple": -0.5615407163450071, + "percent_correct": 0.6368089573128062, + "n_responses": 1429 + }, + { + "problem_id": 123335, + "difficulty_1pl": 4.280152797698975, + "difficulty_2pl": 0.07079671323299408, + "discrimination_2pl": 0.12986832857131958, + "difficulty_simple": 0.4565775543172674, + "percent_correct": 0.38779803646563815, + "n_responses": 1426 + }, + { + "problem_id": 123444, + "difficulty_1pl": -2.1406400203704834, + "difficulty_2pl": -0.15033626556396484, + "discrimination_2pl": 0.6039860844612122, + "difficulty_simple": -0.8462913177758024, + "percent_correct": 0.6997885835095138, + "n_responses": 1419 + }, + { + "problem_id": 23769, + "difficulty_1pl": 0.960489809513092, + "difficulty_2pl": 0.09112432599067688, + "discrimination_2pl": 0.18911492824554443, + "difficulty_simple": -0.21671266098391945, + "percent_correct": 0.5539671193709793, + "n_responses": 1399 + }, + { + "problem_id": 24293, + "difficulty_1pl": -1.0187983512878418, + "difficulty_2pl": 0.05530470609664917, + "discrimination_2pl": 0.31902843713760376, + "difficulty_simple": -0.5645752955386237, + "percent_correct": 0.6375105130361648, + "n_responses": 1189 + }, + { + "problem_id": 25226, + "difficulty_1pl": -7.479246616363525, + "difficulty_2pl": -0.41562849283218384, + "discrimination_2pl": 0.48731786012649536, + "difficulty_simple": -1.2767131578578341, + "percent_correct": 0.7818897637795276, + "n_responses": 1270 + }, + { + "problem_id": 264860, + "difficulty_1pl": -4.4425740242004395, + "difficulty_2pl": -0.21315854787826538, + "discrimination_2pl": 0.4990326464176178, + "difficulty_simple": -1.3042655554747251, + "percent_correct": 0.7865519937451134, + "n_responses": 1279 + }, + { + "problem_id": 375305, + "difficulty_1pl": 5.032313823699951, + "difficulty_2pl": 0.04963386058807373, + "discrimination_2pl": 0.07709605991840363, + "difficulty_simple": 0.3818791091022853, + "percent_correct": 0.4056737588652482, + "n_responses": 705 + }, + { + "problem_id": 375493, + "difficulty_1pl": 3.691803455352783, + "difficulty_2pl": 0.04975184053182602, + "discrimination_2pl": 0.11376287043094635, + "difficulty_simple": 0.19490033900081477, + "percent_correct": 0.4514285714285714, + "n_responses": 700 + }, + { + "problem_id": 23899, + "difficulty_1pl": 1.011309266090393, + "difficulty_2pl": 0.25911104679107666, + "discrimination_2pl": 0.251630038022995, + "difficulty_simple": -0.15724791924183854, + "percent_correct": 0.5392311743022643, + "n_responses": 1899 + }, + { + "problem_id": 24350, + "difficulty_1pl": 1.7333873510360718, + "difficulty_2pl": 0.6442512273788452, + "discrimination_2pl": 0.2624008059501648, + "difficulty_simple": 0.06913970358471182, + "percent_correct": 0.48272195640616694, + "n_responses": 1881 + }, + { + "problem_id": 25209, + "difficulty_1pl": -1.7015424966812134, + "difficulty_2pl": 0.021864548325538635, + "discrimination_2pl": 0.534000039100647, + "difficulty_simple": -0.7295845767623763, + "percent_correct": 0.6747141041931385, + "n_responses": 1574 + }, + { + "problem_id": 25520, + "difficulty_1pl": -3.247992992401123, + "difficulty_2pl": -0.16634073853492737, + "discrimination_2pl": 0.5392025709152222, + "difficulty_simple": -1.0647107369924285, + "percent_correct": 0.7435897435897436, + "n_responses": 1755 + }, + { + "problem_id": 4480, + "difficulty_1pl": 1.6870037317276, + "difficulty_2pl": 0.2392047643661499, + "discrimination_2pl": 0.2542584538459778, + "difficulty_simple": -0.0440725197877032, + "percent_correct": 0.5110163468372424, + "n_responses": 1407 + }, + { + "problem_id": 2532, + "difficulty_1pl": 2.007237672805786, + "difficulty_2pl": 0.23176003992557526, + "discrimination_2pl": 0.18355120718479156, + "difficulty_simple": 0.10125373370517289, + "percent_correct": 0.47470817120622566, + "n_responses": 1028 + }, + { + "problem_id": 116350, + "difficulty_1pl": 4.514110565185547, + "difficulty_2pl": 0.12103157490491867, + "discrimination_2pl": 0.053366322070360184, + "difficulty_simple": 0.7517720239074687, + "percent_correct": 0.32043530834340994, + "n_responses": 1654 + }, + { + "problem_id": 117237, + "difficulty_1pl": 4.638017177581787, + "difficulty_2pl": 0.15536366403102875, + "discrimination_2pl": 0.08863115310668945, + "difficulty_simple": 0.5793714679768346, + "percent_correct": 0.35907723169508526, + "n_responses": 1994 + }, + { + "problem_id": 360938, + "difficulty_1pl": -18.934436798095703, + "difficulty_2pl": -1.3521876335144043, + "discrimination_2pl": 0.8018267154693604, + "difficulty_simple": -2.7446108768343436, + "percent_correct": 0.9396082698585418, + "n_responses": 1838 + }, + { + "problem_id": 361147, + "difficulty_1pl": -12.45649528503418, + "difficulty_2pl": -1.2093850374221802, + "discrimination_2pl": 0.7806140780448914, + "difficulty_simple": -2.5673503189990754, + "percent_correct": 0.9287305122494433, + "n_responses": 1796 + }, + { + "problem_id": 361341, + "difficulty_1pl": -13.486377716064453, + "difficulty_2pl": -1.1765475273132324, + "discrimination_2pl": 0.7553350329399109, + "difficulty_simple": -2.3885275227947704, + "percent_correct": 0.915948275862069, + "n_responses": 1856 + }, + { + "problem_id": 361546, + "difficulty_1pl": -11.832330703735352, + "difficulty_2pl": -0.790006160736084, + "discrimination_2pl": 0.6045970320701599, + "difficulty_simple": -1.78194584777973, + "percent_correct": 0.8559369724254361, + "n_responses": 1777 + }, + { + "problem_id": 361805, + "difficulty_1pl": -2.2325189113616943, + "difficulty_2pl": -0.06486352533102036, + "discrimination_2pl": 0.39341527223587036, + "difficulty_simple": -0.5977592372344491, + "percent_correct": 0.6451434878587197, + "n_responses": 1812 + }, + { + "problem_id": 226302, + "difficulty_1pl": -2.541548490524292, + "difficulty_2pl": -0.02587551437318325, + "discrimination_2pl": 0.279701828956604, + "difficulty_simple": -0.6915535547246675, + "percent_correct": 0.6663124335812965, + "n_responses": 941 + }, + { + "problem_id": 144713, + "difficulty_1pl": -0.3845387399196625, + "difficulty_2pl": 0.043548211455345154, + "discrimination_2pl": 0.31676456332206726, + "difficulty_simple": -0.450124311892384, + "percent_correct": 0.6106687898089171, + "n_responses": 1256 + }, + { + "problem_id": 187804, + "difficulty_1pl": -0.23991581797599792, + "difficulty_2pl": -0.0277724526822567, + "discrimination_2pl": 0.2907308340072632, + "difficulty_simple": -0.3666642543081696, + "percent_correct": 0.5906526994359388, + "n_responses": 1241 + }, + { + "problem_id": 226695, + "difficulty_1pl": -3.481672763824463, + "difficulty_2pl": -0.11162786930799484, + "discrimination_2pl": 0.3589685559272766, + "difficulty_simple": -0.932468181318305, + "percent_correct": 0.7175757575757575, + "n_responses": 825 + }, + { + "problem_id": 227577, + "difficulty_1pl": 3.8350675106048584, + "difficulty_2pl": 0.10094960033893585, + "discrimination_2pl": 0.028391525149345398, + "difficulty_simple": 0.7081207223501077, + "percent_correct": 0.33001422475106684, + "n_responses": 703 + }, + { + "problem_id": 628100, + "difficulty_1pl": 3.1412088871002197, + "difficulty_2pl": 0.27934038639068604, + "discrimination_2pl": 0.11483480781316757, + "difficulty_simple": 0.2961737435899352, + "percent_correct": 0.42649310872894336, + "n_responses": 1306 + }, + { + "problem_id": 365643, + "difficulty_1pl": -0.2395128607749939, + "difficulty_2pl": -0.0626397430896759, + "discrimination_2pl": 0.250124454498291, + "difficulty_simple": -0.33647223662121306, + "percent_correct": 0.5833333333333334, + "n_responses": 684 + }, + { + "problem_id": 257011, + "difficulty_1pl": 3.6745097637176514, + "difficulty_2pl": 0.2656102478504181, + "discrimination_2pl": 0.10869013518095016, + "difficulty_simple": 0.6264922565159966, + "percent_correct": 0.3483063328424153, + "n_responses": 1358 + }, + { + "problem_id": 256312, + "difficulty_1pl": 2.1526405811309814, + "difficulty_2pl": 0.16721446812152863, + "discrimination_2pl": 0.22414109110832214, + "difficulty_simple": 0.16267252753202183, + "percent_correct": 0.45942131263232183, + "n_responses": 1417 + }, + { + "problem_id": 367406, + "difficulty_1pl": 0.7287420034408569, + "difficulty_2pl": 0.023660145699977875, + "discrimination_2pl": 0.35327205061912537, + "difficulty_simple": -0.34862120913163547, + "percent_correct": 0.5862831858407079, + "n_responses": 452 + }, + { + "problem_id": 643786, + "difficulty_1pl": -10.71984577178955, + "difficulty_2pl": -0.577032208442688, + "discrimination_2pl": 0.7127189636230469, + "difficulty_simple": -1.8990049995816525, + "percent_correct": 0.8697788697788698, + "n_responses": 1221 + }, + { + "problem_id": 644011, + "difficulty_1pl": -10.489334106445312, + "difficulty_2pl": -0.9018951654434204, + "discrimination_2pl": 0.77024245262146, + "difficulty_simple": -2.10745457790751, + "percent_correct": 0.8916256157635468, + "n_responses": 1218 + }, + { + "problem_id": 644155, + "difficulty_1pl": -10.418354034423828, + "difficulty_2pl": -0.6332777142524719, + "discrimination_2pl": 0.6985177397727966, + "difficulty_simple": -1.7586281852584724, + "percent_correct": 0.8530377668308703, + "n_responses": 1218 + }, + { + "problem_id": 367651, + "difficulty_1pl": 2.638108015060425, + "difficulty_2pl": 0.03333956375718117, + "discrimination_2pl": 0.10086271911859512, + "difficulty_simple": 0.49669111283108597, + "percent_correct": 0.37831858407079644, + "n_responses": 452 + }, + { + "problem_id": 475491, + "difficulty_1pl": 5.020644187927246, + "difficulty_2pl": -0.009799130260944366, + "discrimination_2pl": 0.03931383043527603, + "difficulty_simple": 0.5826901849956349, + "percent_correct": 0.3583138173302108, + "n_responses": 427 + }, + { + "problem_id": 475896, + "difficulty_1pl": -2.2245609760284424, + "difficulty_2pl": -0.020767997950315475, + "discrimination_2pl": 0.2852482199668884, + "difficulty_simple": -0.6931471805599451, + "percent_correct": 0.6666666666666666, + "n_responses": 420 + }, + { + "problem_id": 250066, + "difficulty_1pl": -0.13687288761138916, + "difficulty_2pl": 0.08906900882720947, + "discrimination_2pl": 0.26544445753097534, + "difficulty_simple": -0.3730473585347418, + "percent_correct": 0.5921951219512195, + "n_responses": 1025 + }, + { + "problem_id": 249682, + "difficulty_1pl": -0.986947774887085, + "difficulty_2pl": -0.136533722281456, + "discrimination_2pl": 0.1504981368780136, + "difficulty_simple": -0.5086132334830501, + "percent_correct": 0.6244813278008299, + "n_responses": 964 + }, + { + "problem_id": 145962, + "difficulty_1pl": 8.268240928649902, + "difficulty_2pl": -0.049444496631622314, + "discrimination_2pl": 0.0498260073363781, + "difficulty_simple": 0.6252069911167083, + "percent_correct": 0.3485981308411215, + "n_responses": 1070 + }, + { + "problem_id": 460374, + "difficulty_1pl": 7.1587419509887695, + "difficulty_2pl": 0.22208309173583984, + "discrimination_2pl": 0.05139010399580002, + "difficulty_simple": 0.8226812327518476, + "percent_correct": 0.3051948051948052, + "n_responses": 1540 + }, + { + "problem_id": 460209, + "difficulty_1pl": 0.5246585011482239, + "difficulty_2pl": 0.3419051468372345, + "discrimination_2pl": 0.37890246510505676, + "difficulty_simple": -0.3741957141267696, + "percent_correct": 0.5924724205061648, + "n_responses": 1541 + }, + { + "problem_id": 460042, + "difficulty_1pl": -2.12101674079895, + "difficulty_2pl": -0.1111426055431366, + "discrimination_2pl": 0.4802776873111725, + "difficulty_simple": -0.9308629387332459, + "percent_correct": 0.7172503242542153, + "n_responses": 1542 + }, + { + "problem_id": 411000, + "difficulty_1pl": -1.4194684028625488, + "difficulty_2pl": -0.13566969335079193, + "discrimination_2pl": 0.21371978521347046, + "difficulty_simple": -0.42138056341406366, + "percent_correct": 0.6038135593220338, + "n_responses": 1416 + }, + { + "problem_id": 411481, + "difficulty_1pl": -6.792150974273682, + "difficulty_2pl": -0.4349350333213806, + "discrimination_2pl": 0.4364488124847412, + "difficulty_simple": -1.0469109142912196, + "percent_correct": 0.7401812688821753, + "n_responses": 1655 + }, + { + "problem_id": 413713, + "difficulty_1pl": 1.503887414932251, + "difficulty_2pl": 0.24468699097633362, + "discrimination_2pl": 0.30681657791137695, + "difficulty_simple": -0.23417851728064074, + "percent_correct": 0.5582785415421399, + "n_responses": 1673 + }, + { + "problem_id": 412048, + "difficulty_1pl": 1.7445194721221924, + "difficulty_2pl": -0.015589102171361446, + "discrimination_2pl": 0.08489319682121277, + "difficulty_simple": -0.13990084091000243, + "percent_correct": 0.5349182763744428, + "n_responses": 1346 + }, + { + "problem_id": 244435, + "difficulty_1pl": 2.751924753189087, + "difficulty_2pl": 0.32422345876693726, + "discrimination_2pl": 0.14712625741958618, + "difficulty_simple": 0.4361640949969711, + "percent_correct": 0.3926553672316384, + "n_responses": 1416 + }, + { + "problem_id": 244890, + "difficulty_1pl": 0.08925838023424149, + "difficulty_2pl": 0.33749768137931824, + "discrimination_2pl": 0.44833672046661377, + "difficulty_simple": -0.2459929840865537, + "percent_correct": 0.5611899932386748, + "n_responses": 1479 + }, + { + "problem_id": 245152, + "difficulty_1pl": -3.403397798538208, + "difficulty_2pl": -0.029430147260427475, + "discrimination_2pl": 0.6006599068641663, + "difficulty_simple": -0.8704523270658847, + "percent_correct": 0.7048398091342877, + "n_responses": 1467 + }, + { + "problem_id": 114275, + "difficulty_1pl": 3.918766975402832, + "difficulty_2pl": 0.25476711988449097, + "discrimination_2pl": 0.13839253783226013, + "difficulty_simple": 0.34552471485075376, + "percent_correct": 0.414468085106383, + "n_responses": 1175 + }, + { + "problem_id": 246416, + "difficulty_1pl": 3.6161530017852783, + "difficulty_2pl": 0.19950096309185028, + "discrimination_2pl": 0.20916466414928436, + "difficulty_simple": 0.20104550806024216, + "percent_correct": 0.44990723562152135, + "n_responses": 1078 + }, + { + "problem_id": 244645, + "difficulty_1pl": 3.672698736190796, + "difficulty_2pl": 0.09459192305803299, + "discrimination_2pl": 0.07621126621961594, + "difficulty_simple": 0.5257397598116003, + "percent_correct": 0.37151106833493747, + "n_responses": 1039 + }, + { + "problem_id": 244865, + "difficulty_1pl": 1.6756644248962402, + "difficulty_2pl": 0.07153020799160004, + "discrimination_2pl": 0.19398078322410583, + "difficulty_simple": 0.105566679971514, + "percent_correct": 0.4736328125, + "n_responses": 1024 + }, + { + "problem_id": 246605, + "difficulty_1pl": -0.4192333221435547, + "difficulty_2pl": 0.2369808703660965, + "discrimination_2pl": 0.3633252680301666, + "difficulty_simple": -0.32869272841962904, + "percent_correct": 0.581441263573544, + "n_responses": 1013 + }, + { + "problem_id": 267619, + "difficulty_1pl": 3.764833927154541, + "difficulty_2pl": 0.31720465421676636, + "discrimination_2pl": 0.11907083541154861, + "difficulty_simple": 0.4096157218344776, + "percent_correct": 0.3990042674253201, + "n_responses": 1406 + }, + { + "problem_id": 141384, + "difficulty_1pl": -3.1662051677703857, + "difficulty_2pl": -0.04380354657769203, + "discrimination_2pl": 0.32255396246910095, + "difficulty_simple": -1.035433387046578, + "percent_correct": 0.7379679144385026, + "n_responses": 374 + }, + { + "problem_id": 274856, + "difficulty_1pl": -2.0331759452819824, + "difficulty_2pl": -0.3185252249240875, + "discrimination_2pl": 0.35666483640670776, + "difficulty_simple": -0.914822662121864, + "percent_correct": 0.713986013986014, + "n_responses": 1430 + }, + { + "problem_id": 275547, + "difficulty_1pl": 9.217979431152344, + "difficulty_2pl": -0.04088988155126572, + "discrimination_2pl": 0.017520852386951447, + "difficulty_simple": 1.3915437170060343, + "percent_correct": 0.19916142557651992, + "n_responses": 1431 + }, + { + "problem_id": 267963, + "difficulty_1pl": -6.0307512283325195, + "difficulty_2pl": -0.6771351099014282, + "discrimination_2pl": 0.5328069925308228, + "difficulty_simple": -1.4751736505939252, + "percent_correct": 0.8138424821002387, + "n_responses": 1676 + }, + { + "problem_id": 274572, + "difficulty_1pl": -0.7810487747192383, + "difficulty_2pl": -0.03540217876434326, + "discrimination_2pl": 0.3209918439388275, + "difficulty_simple": -0.4369913617549381, + "percent_correct": 0.6075418994413407, + "n_responses": 1432 + }, + { + "problem_id": 274359, + "difficulty_1pl": -4.4576568603515625, + "difficulty_2pl": -0.34069475531578064, + "discrimination_2pl": 0.6507322192192078, + "difficulty_simple": -1.130480027516132, + "percent_correct": 0.7559274755927475, + "n_responses": 1434 + }, + { + "problem_id": 274114, + "difficulty_1pl": -7.638177871704102, + "difficulty_2pl": -0.5412678122520447, + "discrimination_2pl": 0.5732632875442505, + "difficulty_simple": -1.501529624697475, + "percent_correct": 0.8178025034770514, + "n_responses": 1438 + }, + { + "problem_id": 268157, + "difficulty_1pl": -4.713057994842529, + "difficulty_2pl": -0.4591697156429291, + "discrimination_2pl": 0.5949156880378723, + "difficulty_simple": -1.0512100497735255, + "percent_correct": 0.7410071942446043, + "n_responses": 1668 + }, + { + "problem_id": 273737, + "difficulty_1pl": -1.4859572649002075, + "difficulty_2pl": 0.017646685242652893, + "discrimination_2pl": 0.5154247283935547, + "difficulty_simple": -0.7104719642172511, + "percent_correct": 0.6705054382597568, + "n_responses": 1563 + }, + { + "problem_id": 268435, + "difficulty_1pl": -0.24572640657424927, + "difficulty_2pl": 0.17105557024478912, + "discrimination_2pl": 0.3802269399166107, + "difficulty_simple": -0.3819110249579076, + "percent_correct": 0.594333936106088, + "n_responses": 1659 + }, + { + "problem_id": 273496, + "difficulty_1pl": 1.4894030094146729, + "difficulty_2pl": 0.2002868354320526, + "discrimination_2pl": 0.261730819940567, + "difficulty_simple": -0.12412076624093243, + "percent_correct": 0.5309904153354632, + "n_responses": 1565 + }, + { + "problem_id": 318098, + "difficulty_1pl": 4.587014198303223, + "difficulty_2pl": 0.08549707382917404, + "discrimination_2pl": 0.0850125402212143, + "difficulty_simple": 0.6187766378388755, + "percent_correct": 0.35005973715651134, + "n_responses": 837 + }, + { + "problem_id": 268814, + "difficulty_1pl": -7.35230827331543, + "difficulty_2pl": -0.6545294523239136, + "discrimination_2pl": 0.6434759497642517, + "difficulty_simple": -1.7008188140985356, + "percent_correct": 0.8456416464891041, + "n_responses": 1652 + }, + { + "problem_id": 318409, + "difficulty_1pl": 4.360370635986328, + "difficulty_2pl": 0.1307516098022461, + "discrimination_2pl": 0.07483676075935364, + "difficulty_simple": 0.7301523765534996, + "percent_correct": 0.3251612903225806, + "n_responses": 775 + }, + { + "problem_id": 273221, + "difficulty_1pl": -13.105106353759766, + "difficulty_2pl": -1.2185096740722656, + "discrimination_2pl": 0.7674118876457214, + "difficulty_simple": -2.2100452657652814, + "percent_correct": 0.9011479591836735, + "n_responses": 1568 + }, + { + "problem_id": 269095, + "difficulty_1pl": 1.1804485321044922, + "difficulty_2pl": 0.18412485718727112, + "discrimination_2pl": 0.35970935225486755, + "difficulty_simple": -0.22287066278747883, + "percent_correct": 0.5554881746513038, + "n_responses": 1649 + }, + { + "problem_id": 272853, + "difficulty_1pl": 1.7939668893814087, + "difficulty_2pl": 0.18563209474086761, + "discrimination_2pl": 0.1447990983724594, + "difficulty_simple": 0.1476613643875088, + "percent_correct": 0.463151587777112, + "n_responses": 1669 + }, + { + "problem_id": 269382, + "difficulty_1pl": 1.3389760255813599, + "difficulty_2pl": 0.39740368723869324, + "discrimination_2pl": 0.21950960159301758, + "difficulty_simple": 0.041469356542713595, + "percent_correct": 0.4896341463414634, + "n_responses": 1640 + }, + { + "problem_id": 272544, + "difficulty_1pl": -5.654047966003418, + "difficulty_2pl": -0.3457701504230499, + "discrimination_2pl": 0.6703195571899414, + "difficulty_simple": -1.3521917235798677, + "percent_correct": 0.7944877171959257, + "n_responses": 1669 + }, + { + "problem_id": 272370, + "difficulty_1pl": -10.084202766418457, + "difficulty_2pl": -0.42666372656822205, + "discrimination_2pl": 0.494382381439209, + "difficulty_simple": -1.3209979771192173, + "percent_correct": 0.7893476959904249, + "n_responses": 1671 + }, + { + "problem_id": 270634, + "difficulty_1pl": -8.464975357055664, + "difficulty_2pl": -0.7650264501571655, + "discrimination_2pl": 0.6272387504577637, + "difficulty_simple": -1.626804484932399, + "percent_correct": 0.8357314148681055, + "n_responses": 1668 + }, + { + "problem_id": 272056, + "difficulty_1pl": -3.5847063064575195, + "difficulty_2pl": -0.08571050316095352, + "discrimination_2pl": 0.540253221988678, + "difficulty_simple": -0.8607967311928139, + "percent_correct": 0.702827087442472, + "n_responses": 1521 + }, + { + "problem_id": 271772, + "difficulty_1pl": -3.696206569671631, + "difficulty_2pl": -0.38176506757736206, + "discrimination_2pl": 0.7379831671714783, + "difficulty_simple": -1.2485524359590245, + "percent_correct": 0.7770491803278688, + "n_responses": 1525 + }, + { + "problem_id": 271552, + "difficulty_1pl": -2.616882562637329, + "difficulty_2pl": -0.09748837351799011, + "discrimination_2pl": 0.3200478255748749, + "difficulty_simple": -0.768579753687385, + "percent_correct": 0.6832135858915741, + "n_responses": 1531 + }, + { + "problem_id": 271219, + "difficulty_1pl": -5.682570934295654, + "difficulty_2pl": -0.24247384071350098, + "discrimination_2pl": 0.6859961152076721, + "difficulty_simple": -1.0745147370890493, + "percent_correct": 0.7454545454545455, + "n_responses": 1650 + }, + { + "problem_id": 270921, + "difficulty_1pl": -1.930938482284546, + "difficulty_2pl": 0.05631324276328087, + "discrimination_2pl": 0.524702250957489, + "difficulty_simple": -0.5461100738214894, + "percent_correct": 0.6332326283987916, + "n_responses": 1655 + }, + { + "problem_id": 318855, + "difficulty_1pl": 3.6130530834198, + "difficulty_2pl": 0.03387660160660744, + "discrimination_2pl": 0.15629051625728607, + "difficulty_simple": 0.34617827913338933, + "percent_correct": 0.41430948419301167, + "n_responses": 601 + }, + { + "problem_id": 317396, + "difficulty_1pl": -9.829155921936035, + "difficulty_2pl": -0.497732937335968, + "discrimination_2pl": 0.7121205925941467, + "difficulty_simple": -1.6094379124341005, + "percent_correct": 0.8333333333333334, + "n_responses": 780 + }, + { + "problem_id": 317673, + "difficulty_1pl": -12.831014633178711, + "difficulty_2pl": -0.7750278115272522, + "discrimination_2pl": 0.7942726612091064, + "difficulty_simple": -2.046604901281519, + "percent_correct": 0.8856041131105399, + "n_responses": 778 + }, + { + "problem_id": 317851, + "difficulty_1pl": -6.692234516143799, + "difficulty_2pl": -0.3579185903072357, + "discrimination_2pl": 0.6536916494369507, + "difficulty_simple": -1.3911214018682063, + "percent_correct": 0.800771208226221, + "n_responses": 778 + }, + { + "problem_id": 42371, + "difficulty_1pl": 6.345216274261475, + "difficulty_2pl": 0.07735913246870041, + "discrimination_2pl": 0.02074943482875824, + "difficulty_simple": 0.8048064983657996, + "percent_correct": 0.3089983022071307, + "n_responses": 1178 + }, + { + "problem_id": 42515, + "difficulty_1pl": -1.3877167701721191, + "difficulty_2pl": 0.027061617001891136, + "discrimination_2pl": 0.4889366626739502, + "difficulty_simple": -0.9812001041192588, + "percent_correct": 0.7273462783171522, + "n_responses": 1236 + }, + { + "problem_id": 42671, + "difficulty_1pl": 5.066749572753906, + "difficulty_2pl": 0.030371155589818954, + "discrimination_2pl": 0.057197634130716324, + "difficulty_simple": 0.6097655716208944, + "percent_correct": 0.352112676056338, + "n_responses": 1207 + }, + { + "problem_id": 42913, + "difficulty_1pl": 2.847116470336914, + "difficulty_2pl": 0.2921880781650543, + "discrimination_2pl": 0.1696937382221222, + "difficulty_simple": 0.048336546561290744, + "percent_correct": 0.4879182156133829, + "n_responses": 1076 + }, + { + "problem_id": 43170, + "difficulty_1pl": 2.7299187183380127, + "difficulty_2pl": 0.1624954342842102, + "discrimination_2pl": 0.13266311585903168, + "difficulty_simple": 0.10653432312051268, + "percent_correct": 0.47339158061953934, + "n_responses": 1259 + }, + { + "problem_id": 327867, + "difficulty_1pl": 3.516228675842285, + "difficulty_2pl": 0.22171485424041748, + "discrimination_2pl": 0.0858113244175911, + "difficulty_simple": 0.40736805825425054, + "percent_correct": 0.3995433789954338, + "n_responses": 876 + }, + { + "problem_id": 247085, + "difficulty_1pl": -5.5502424240112305, + "difficulty_2pl": -0.4149376153945923, + "discrimination_2pl": 0.5249940752983093, + "difficulty_simple": -1.195540404801338, + "percent_correct": 0.7677304964539007, + "n_responses": 1128 + }, + { + "problem_id": 247357, + "difficulty_1pl": -2.952669858932495, + "difficulty_2pl": -0.1326330006122589, + "discrimination_2pl": 0.4972854256629944, + "difficulty_simple": -0.839675146011648, + "percent_correct": 0.6983967935871743, + "n_responses": 998 + }, + { + "problem_id": 247608, + "difficulty_1pl": -3.500321388244629, + "difficulty_2pl": 0.11833398789167404, + "discrimination_2pl": 0.40765970945358276, + "difficulty_simple": -0.6916169583791776, + "percent_correct": 0.6663265306122449, + "n_responses": 980 + }, + { + "problem_id": 247781, + "difficulty_1pl": -1.3364393711090088, + "difficulty_2pl": 0.11506984382867813, + "discrimination_2pl": 0.4380473792552948, + "difficulty_simple": -0.5263469996686141, + "percent_correct": 0.6286307053941909, + "n_responses": 964 + }, + { + "problem_id": 248037, + "difficulty_1pl": 3.7326161861419678, + "difficulty_2pl": 0.16549846529960632, + "discrimination_2pl": 0.05321837589144707, + "difficulty_simple": 0.6655738536558458, + "percent_correct": 0.33948863636363635, + "n_responses": 704 + }, + { + "problem_id": 248279, + "difficulty_1pl": 9.835734367370605, + "difficulty_2pl": 0.1054677665233612, + "discrimination_2pl": 0.018074991181492805, + "difficulty_simple": 1.146114622653113, + "percent_correct": 0.24119947848761408, + "n_responses": 767 + }, + { + "problem_id": 155972, + "difficulty_1pl": 1.0806620121002197, + "difficulty_2pl": 0.3030356764793396, + "discrimination_2pl": 0.36948126554489136, + "difficulty_simple": -0.2522685357857815, + "percent_correct": 0.5627347858752817, + "n_responses": 1331 + }, + { + "problem_id": 156219, + "difficulty_1pl": 1.4965295791625977, + "difficulty_2pl": 0.1963774412870407, + "discrimination_2pl": 0.2726103961467743, + "difficulty_simple": 0.0046332129214881985, + "percent_correct": 0.4988416988416988, + "n_responses": 1295 + }, + { + "problem_id": 156411, + "difficulty_1pl": -2.3521502017974854, + "difficulty_2pl": -0.0002834317274391651, + "discrimination_2pl": 0.39665380120277405, + "difficulty_simple": -0.4906671848032452, + "percent_correct": 0.6202635914332785, + "n_responses": 1214 + }, + { + "problem_id": 156599, + "difficulty_1pl": 0.9710254669189453, + "difficulty_2pl": 0.26218947768211365, + "discrimination_2pl": 0.17045657336711884, + "difficulty_simple": 0.11228348009034489, + "percent_correct": 0.4719585849870578, + "n_responses": 1159 + }, + { + "problem_id": 151997, + "difficulty_1pl": 0.5619208216667175, + "difficulty_2pl": 0.44727808237075806, + "discrimination_2pl": 0.30256232619285583, + "difficulty_simple": -0.2403531043661393, + "percent_correct": 0.5598006644518272, + "n_responses": 1204 + }, + { + "problem_id": 153940, + "difficulty_1pl": -5.832813262939453, + "difficulty_2pl": -0.10064014792442322, + "discrimination_2pl": 0.5755780339241028, + "difficulty_simple": -1.107478717873751, + "percent_correct": 0.7516587677725118, + "n_responses": 1055 + }, + { + "problem_id": 154202, + "difficulty_1pl": -2.4524385929107666, + "difficulty_2pl": 0.30129534006118774, + "discrimination_2pl": 0.42351269721984863, + "difficulty_simple": -0.5098098796461551, + "percent_correct": 0.6247619047619047, + "n_responses": 1050 + }, + { + "problem_id": 154426, + "difficulty_1pl": -0.1552962064743042, + "difficulty_2pl": 0.08351559937000275, + "discrimination_2pl": 0.4273723065853119, + "difficulty_simple": -0.5461324375981353, + "percent_correct": 0.6332378223495702, + "n_responses": 1047 + }, + { + "problem_id": 154657, + "difficulty_1pl": -5.2180657386779785, + "difficulty_2pl": -0.27049440145492554, + "discrimination_2pl": 0.6798600554466248, + "difficulty_simple": -1.2496926559821098, + "percent_correct": 0.777246653919694, + "n_responses": 1046 + }, + { + "problem_id": 154915, + "difficulty_1pl": -3.900625228881836, + "difficulty_2pl": -0.21362270414829254, + "discrimination_2pl": 0.6056811809539795, + "difficulty_simple": -0.9589656798955241, + "percent_correct": 0.7229146692233941, + "n_responses": 1043 + }, + { + "problem_id": 231330, + "difficulty_1pl": -0.1716552972793579, + "difficulty_2pl": 0.10999486595392227, + "discrimination_2pl": 0.26755157113075256, + "difficulty_simple": -0.5691691058860486, + "percent_correct": 0.6385714285714286, + "n_responses": 700 + }, + { + "problem_id": 231535, + "difficulty_1pl": -4.273725986480713, + "difficulty_2pl": -0.26009008288383484, + "discrimination_2pl": 0.4320904612541199, + "difficulty_simple": -1.0534068519000628, + "percent_correct": 0.7414285714285714, + "n_responses": 700 + }, + { + "problem_id": 231744, + "difficulty_1pl": -8.523624420166016, + "difficulty_2pl": -0.34525492787361145, + "discrimination_2pl": 0.5904986262321472, + "difficulty_simple": -1.491850170206714, + "percent_correct": 0.8163558106169297, + "n_responses": 697 + }, + { + "problem_id": 79262, + "difficulty_1pl": 4.792887210845947, + "difficulty_2pl": 0.2097102403640747, + "discrimination_2pl": 0.07270588725805283, + "difficulty_simple": 0.49941323171424595, + "percent_correct": 0.3776785714285714, + "n_responses": 1120 + }, + { + "problem_id": 79708, + "difficulty_1pl": 4.366215229034424, + "difficulty_2pl": -0.0013295955723151565, + "discrimination_2pl": 0.08520632237195969, + "difficulty_simple": 0.18938872401704704, + "percent_correct": 0.4527938342967245, + "n_responses": 1038 + }, + { + "problem_id": 243115, + "difficulty_1pl": 0.02061532810330391, + "difficulty_2pl": 0.18024373054504395, + "discrimination_2pl": 0.3761513829231262, + "difficulty_simple": -0.5560031676384636, + "percent_correct": 0.6355272469922152, + "n_responses": 1413 + }, + { + "problem_id": 155089, + "difficulty_1pl": 0.1729951798915863, + "difficulty_2pl": 0.15905745327472687, + "discrimination_2pl": 0.2756419777870178, + "difficulty_simple": -0.2310898871406109, + "percent_correct": 0.5575167376749848, + "n_responses": 1643 + }, + { + "problem_id": 155429, + "difficulty_1pl": -6.2836174964904785, + "difficulty_2pl": -0.5279549360275269, + "discrimination_2pl": 0.6604523062705994, + "difficulty_simple": -1.2829719428987647, + "percent_correct": 0.78295524218271, + "n_responses": 1631 + }, + { + "problem_id": 242072, + "difficulty_1pl": -0.7605270743370056, + "difficulty_2pl": 0.29881903529167175, + "discrimination_2pl": 0.35995644330978394, + "difficulty_simple": -0.44092981768044676, + "percent_correct": 0.6084805653710247, + "n_responses": 1415 + }, + { + "problem_id": 155680, + "difficulty_1pl": 0.6958116292953491, + "difficulty_2pl": 0.1866566687822342, + "discrimination_2pl": 0.2696278393268585, + "difficulty_simple": -0.16426237525555729, + "percent_correct": 0.540973505853358, + "n_responses": 1623 + }, + { + "problem_id": 242640, + "difficulty_1pl": 3.284929037094116, + "difficulty_2pl": 0.16236020624637604, + "discrimination_2pl": 0.14599500596523285, + "difficulty_simple": -0.07651914983419639, + "percent_correct": 0.5191204588910134, + "n_responses": 1046 + }, + { + "problem_id": 449437, + "difficulty_1pl": 0.2494775652885437, + "difficulty_2pl": 0.45025473833084106, + "discrimination_2pl": 0.3018300533294678, + "difficulty_simple": -0.1664030853562743, + "percent_correct": 0.5415050426687354, + "n_responses": 1289 + }, + { + "problem_id": 226249, + "difficulty_1pl": 1.9200507402420044, + "difficulty_2pl": 0.1342507153749466, + "discrimination_2pl": 0.18000780045986176, + "difficulty_simple": 0.039130423775765234, + "percent_correct": 0.4902186421173763, + "n_responses": 869 + }, + { + "problem_id": 226452, + "difficulty_1pl": 2.158595323562622, + "difficulty_2pl": 0.056187115609645844, + "discrimination_2pl": 0.15203996002674103, + "difficulty_simple": 0.15269930076261123, + "percent_correct": 0.4618991793669402, + "n_responses": 853 + }, + { + "problem_id": 226658, + "difficulty_1pl": 4.517636299133301, + "difficulty_2pl": 0.010070433840155602, + "discrimination_2pl": 0.052723076194524765, + "difficulty_simple": 0.5184157930326665, + "percent_correct": 0.3732227488151659, + "n_responses": 844 + }, + { + "problem_id": 152711, + "difficulty_1pl": 1.715700626373291, + "difficulty_2pl": 0.3820413649082184, + "discrimination_2pl": 0.21836107969284058, + "difficulty_simple": 0.13490156867811734, + "percent_correct": 0.4663256606990622, + "n_responses": 1173 + }, + { + "problem_id": 406876, + "difficulty_1pl": -1.0531436204910278, + "difficulty_2pl": -0.005609860643744469, + "discrimination_2pl": 0.355063259601593, + "difficulty_simple": -0.762458980450174, + "percent_correct": 0.6818873668188736, + "n_responses": 657 + }, + { + "problem_id": 152894, + "difficulty_1pl": 0.6383631229400635, + "difficulty_2pl": 0.22596856951713562, + "discrimination_2pl": 0.3360725939273834, + "difficulty_simple": -0.26144444223492375, + "percent_correct": 0.5649913344887348, + "n_responses": 1154 + }, + { + "problem_id": 153106, + "difficulty_1pl": 2.3420982360839844, + "difficulty_2pl": 0.41600051522254944, + "discrimination_2pl": 0.22160516679286957, + "difficulty_simple": 0.1394325073532368, + "percent_correct": 0.46519823788546255, + "n_responses": 1135 + }, + { + "problem_id": 153291, + "difficulty_1pl": -0.1066487580537796, + "difficulty_2pl": 0.2356732338666916, + "discrimination_2pl": 0.5081770420074463, + "difficulty_simple": -0.6036137341376057, + "percent_correct": 0.6464826357969724, + "n_responses": 1123 + }, + { + "problem_id": 153479, + "difficulty_1pl": 4.999189376831055, + "difficulty_2pl": 0.1022319346666336, + "discrimination_2pl": 0.05821150541305542, + "difficulty_simple": 0.8477242087202446, + "percent_correct": 0.2999104744852283, + "n_responses": 1117 + }, + { + "problem_id": 153688, + "difficulty_1pl": 1.064658522605896, + "difficulty_2pl": 0.1124987006187439, + "discrimination_2pl": 0.3762427270412445, + "difficulty_simple": -0.3009766048723161, + "percent_correct": 0.5746812386156649, + "n_responses": 1098 + }, + { + "problem_id": 156797, + "difficulty_1pl": 1.0055540800094604, + "difficulty_2pl": 0.082598477602005, + "discrimination_2pl": 0.314587265253067, + "difficulty_simple": -0.12516314295400605, + "percent_correct": 0.53125, + "n_responses": 960 + }, + { + "problem_id": 420787, + "difficulty_1pl": 2.497915029525757, + "difficulty_2pl": 0.3021300137042999, + "discrimination_2pl": 0.1876528561115265, + "difficulty_simple": 0.17360057128851006, + "percent_correct": 0.456708526107072, + "n_responses": 1513 + }, + { + "problem_id": 417861, + "difficulty_1pl": -1.9124244451522827, + "difficulty_2pl": -0.051570381969213486, + "discrimination_2pl": 0.4409727454185486, + "difficulty_simple": -0.8495375029807082, + "percent_correct": 0.7004701141705842, + "n_responses": 1489 + }, + { + "problem_id": 418012, + "difficulty_1pl": -0.23826982080936432, + "difficulty_2pl": 0.05507580563426018, + "discrimination_2pl": 0.35177192091941833, + "difficulty_simple": -0.5856880282451976, + "percent_correct": 0.6423751686909581, + "n_responses": 1482 + }, + { + "problem_id": 418178, + "difficulty_1pl": 2.562945604324341, + "difficulty_2pl": 0.1384219527244568, + "discrimination_2pl": 0.07710627466440201, + "difficulty_simple": 0.20300249817840468, + "percent_correct": 0.44942294636795654, + "n_responses": 1473 + }, + { + "problem_id": 419590, + "difficulty_1pl": -0.7415481209754944, + "difficulty_2pl": 0.11123383045196533, + "discrimination_2pl": 0.39119306206703186, + "difficulty_simple": -0.7331741571504237, + "percent_correct": 0.6755014326647565, + "n_responses": 1396 + }, + { + "problem_id": 421017, + "difficulty_1pl": 1.123631477355957, + "difficulty_2pl": 0.13091780245304108, + "discrimination_2pl": 0.2520151138305664, + "difficulty_simple": -0.2961125711808004, + "percent_correct": 0.5734919286321155, + "n_responses": 1177 + }, + { + "problem_id": 175501, + "difficulty_1pl": 4.474791526794434, + "difficulty_2pl": 0.3301629424095154, + "discrimination_2pl": 0.08181267976760864, + "difficulty_simple": 0.5425537626587013, + "percent_correct": 0.3675937122128174, + "n_responses": 1654 + }, + { + "problem_id": 175875, + "difficulty_1pl": 5.612879753112793, + "difficulty_2pl": 0.07564964890480042, + "discrimination_2pl": 0.019412696361541748, + "difficulty_simple": 1.121879973987435, + "percent_correct": 0.24566273421235255, + "n_responses": 1441 + }, + { + "problem_id": 176149, + "difficulty_1pl": 1.2967181205749512, + "difficulty_2pl": 0.3079216480255127, + "discrimination_2pl": 0.3571609854698181, + "difficulty_simple": -0.24389002011509578, + "percent_correct": 0.5606720597386434, + "n_responses": 1607 + }, + { + "problem_id": 172163, + "difficulty_1pl": 3.482968330383301, + "difficulty_2pl": 0.3579978346824646, + "discrimination_2pl": 0.12606818974018097, + "difficulty_simple": 0.4448760890639509, + "percent_correct": 0.39057971014492754, + "n_responses": 1380 + }, + { + "problem_id": 172418, + "difficulty_1pl": -0.5165972709655762, + "difficulty_2pl": -0.0876682847738266, + "discrimination_2pl": 0.4894029200077057, + "difficulty_simple": -0.6734744149612402, + "percent_correct": 0.6622807017543859, + "n_responses": 1368 + }, + { + "problem_id": 172629, + "difficulty_1pl": 0.42918720841407776, + "difficulty_2pl": 0.3480360805988312, + "discrimination_2pl": 0.2816467881202698, + "difficulty_simple": -0.21091805623994261, + "percent_correct": 0.5525349008082292, + "n_responses": 1361 + }, + { + "problem_id": 172894, + "difficulty_1pl": -0.6572417616844177, + "difficulty_2pl": 0.17437884211540222, + "discrimination_2pl": 0.39209896326065063, + "difficulty_simple": -0.38522522676041804, + "percent_correct": 0.5951327433628318, + "n_responses": 1356 + }, + { + "problem_id": 173259, + "difficulty_1pl": 0.2917974889278412, + "difficulty_2pl": 0.1787886619567871, + "discrimination_2pl": 0.393176794052124, + "difficulty_simple": -0.3396937945399606, + "percent_correct": 0.5841161400512382, + "n_responses": 1171 + }, + { + "problem_id": 101024, + "difficulty_1pl": -1.0074231624603271, + "difficulty_2pl": -0.07429156452417374, + "discrimination_2pl": 0.4940522015094757, + "difficulty_simple": -0.9070170950888259, + "percent_correct": 0.7123893805309734, + "n_responses": 2034 + }, + { + "problem_id": 177081, + "difficulty_1pl": -4.6849493980407715, + "difficulty_2pl": -0.5583850145339966, + "discrimination_2pl": 0.34549468755722046, + "difficulty_simple": -1.2461066315157867, + "percent_correct": 0.7766251728907331, + "n_responses": 1446 + }, + { + "problem_id": 102385, + "difficulty_1pl": 0.6831895709037781, + "difficulty_2pl": 0.42266061902046204, + "discrimination_2pl": 0.43072110414505005, + "difficulty_simple": -0.3704682660710683, + "percent_correct": 0.5915721231766613, + "n_responses": 1851 + }, + { + "problem_id": 101733, + "difficulty_1pl": -2.025719404220581, + "difficulty_2pl": 0.01721980795264244, + "discrimination_2pl": 0.5085018873214722, + "difficulty_simple": -0.8760452723943724, + "percent_correct": 0.7060020345879959, + "n_responses": 1966 + }, + { + "problem_id": 103020, + "difficulty_1pl": 5.540652751922607, + "difficulty_2pl": 0.2930767834186554, + "discrimination_2pl": 0.0943150520324707, + "difficulty_simple": 0.49126307678874326, + "percent_correct": 0.3795960642154324, + "n_responses": 1931 + }, + { + "problem_id": 286192, + "difficulty_1pl": 4.68904972076416, + "difficulty_2pl": 0.20386865735054016, + "discrimination_2pl": 0.05204164981842041, + "difficulty_simple": 0.6670647136805196, + "percent_correct": 0.3391544117647059, + "n_responses": 1088 + }, + { + "problem_id": 286560, + "difficulty_1pl": -5.679226875305176, + "difficulty_2pl": -0.16275766491889954, + "discrimination_2pl": 0.5053804516792297, + "difficulty_simple": -0.9308508832054847, + "percent_correct": 0.7172478793590952, + "n_responses": 1061 + }, + { + "problem_id": 286898, + "difficulty_1pl": -11.180477142333984, + "difficulty_2pl": -0.7610481381416321, + "discrimination_2pl": 0.6672793030738831, + "difficulty_simple": -2.280562180906608, + "percent_correct": 0.9072543617998163, + "n_responses": 1089 + }, + { + "problem_id": 146478, + "difficulty_1pl": 1.7594119310379028, + "difficulty_2pl": 0.07221004366874695, + "discrimination_2pl": 0.09458750486373901, + "difficulty_simple": 0.28490484392599297, + "percent_correct": 0.42925170068027213, + "n_responses": 1470 + }, + { + "problem_id": 143888, + "difficulty_1pl": -0.3527112305164337, + "difficulty_2pl": -0.01398129016160965, + "discrimination_2pl": 0.19401311874389648, + "difficulty_simple": -0.40345505718014013, + "percent_correct": 0.5995174909529554, + "n_responses": 1658 + }, + { + "problem_id": 165767, + "difficulty_1pl": 7.774284362792969, + "difficulty_2pl": 0.10352616012096405, + "discrimination_2pl": 0.03485150635242462, + "difficulty_simple": 0.9901048672520905, + "percent_correct": 0.270891364902507, + "n_responses": 1436 + }, + { + "problem_id": 165102, + "difficulty_1pl": -3.869096279144287, + "difficulty_2pl": -0.2589246332645416, + "discrimination_2pl": 0.3240181803703308, + "difficulty_simple": -0.9792886580374758, + "percent_correct": 0.7269670477471419, + "n_responses": 1487 + }, + { + "problem_id": 36768, + "difficulty_1pl": 2.8137407302856445, + "difficulty_2pl": 0.10263461619615555, + "discrimination_2pl": 0.10279609262943268, + "difficulty_simple": 0.36670405940793194, + "percent_correct": 0.40933767643865365, + "n_responses": 921 + }, + { + "problem_id": 128141, + "difficulty_1pl": 0.11637519299983978, + "difficulty_2pl": 0.04206882417201996, + "discrimination_2pl": 0.2800454795360565, + "difficulty_simple": -0.4730232591194555, + "percent_correct": 0.6160990712074303, + "n_responses": 323 + }, + { + "problem_id": 128322, + "difficulty_1pl": 9.235297203063965, + "difficulty_2pl": 0.025824517011642456, + "discrimination_2pl": 0.04233505204319954, + "difficulty_simple": 0.9520088144762344, + "percent_correct": 0.27848101265822783, + "n_responses": 316 + }, + { + "problem_id": 128547, + "difficulty_1pl": 5.728199481964111, + "difficulty_2pl": -0.060879696160554886, + "discrimination_2pl": 0.02883870154619217, + "difficulty_simple": 0.6980371658541373, + "percent_correct": 0.3322475570032573, + "n_responses": 307 + }, + { + "problem_id": 44235, + "difficulty_1pl": 4.220853805541992, + "difficulty_2pl": 0.09903235733509064, + "discrimination_2pl": 0.07107578217983246, + "difficulty_simple": 0.6854251344660351, + "percent_correct": 0.33505154639175255, + "n_responses": 388 + }, + { + "problem_id": 44380, + "difficulty_1pl": 3.595709800720215, + "difficulty_2pl": -0.023853003978729248, + "discrimination_2pl": 0.05334683507680893, + "difficulty_simple": 0.4948716958237492, + "percent_correct": 0.3787465940054496, + "n_responses": 367 + }, + { + "problem_id": 88681, + "difficulty_1pl": -1.2695165872573853, + "difficulty_2pl": 0.24523389339447021, + "discrimination_2pl": 0.4320366680622101, + "difficulty_simple": -0.4226150070015921, + "percent_correct": 0.6041088284286508, + "n_responses": 1801 + }, + { + "problem_id": 88850, + "difficulty_1pl": -13.92823314666748, + "difficulty_2pl": -0.670566737651825, + "discrimination_2pl": 0.74747234582901, + "difficulty_simple": -2.02830487662928, + "percent_correct": 0.8837370242214533, + "n_responses": 1445 + }, + { + "problem_id": 89104, + "difficulty_1pl": -7.456247329711914, + "difficulty_2pl": -0.26461753249168396, + "discrimination_2pl": 0.6223896145820618, + "difficulty_simple": -1.4012528450502266, + "percent_correct": 0.8023826208829713, + "n_responses": 1427 + }, + { + "problem_id": 89321, + "difficulty_1pl": -1.2809690237045288, + "difficulty_2pl": 0.01610764116048813, + "discrimination_2pl": 0.4077150523662567, + "difficulty_simple": -0.8111809999167026, + "percent_correct": 0.6923611111111111, + "n_responses": 1440 + }, + { + "problem_id": 88316, + "difficulty_1pl": 1.3996260166168213, + "difficulty_2pl": 0.28427255153656006, + "discrimination_2pl": 0.3519909381866455, + "difficulty_simple": -0.3521017652367672, + "percent_correct": 0.5871271585557299, + "n_responses": 1274 + }, + { + "problem_id": 1074, + "difficulty_1pl": 0.924405574798584, + "difficulty_2pl": 0.1442040205001831, + "discrimination_2pl": 0.12152384221553802, + "difficulty_simple": 0.13136922962002726, + "percent_correct": 0.467204843592331, + "n_responses": 991 + }, + { + "problem_id": 47557, + "difficulty_1pl": 4.260103225708008, + "difficulty_2pl": 0.14884495735168457, + "discrimination_2pl": 0.05947884917259216, + "difficulty_simple": 0.2612568446422438, + "percent_correct": 0.4350547730829421, + "n_responses": 1278 + }, + { + "problem_id": 47078, + "difficulty_1pl": 2.3426599502563477, + "difficulty_2pl": -0.0714731216430664, + "discrimination_2pl": 0.09952640533447266, + "difficulty_simple": -0.13042542907155993, + "percent_correct": 0.5325602140945584, + "n_responses": 1121 + }, + { + "problem_id": 585630, + "difficulty_1pl": -9.420857429504395, + "difficulty_2pl": -1.127170205116272, + "discrimination_2pl": 0.6522592306137085, + "difficulty_simple": -1.9744986497491068, + "percent_correct": 0.8780934922089826, + "n_responses": 2182 + }, + { + "problem_id": 296114, + "difficulty_1pl": 4.801250457763672, + "difficulty_2pl": 0.2646477520465851, + "discrimination_2pl": 0.07858453691005707, + "difficulty_simple": 0.5460101358796443, + "percent_correct": 0.3667905824039653, + "n_responses": 1614 + }, + { + "problem_id": 294155, + "difficulty_1pl": -0.3470706641674042, + "difficulty_2pl": 0.26118412613868713, + "discrimination_2pl": 0.385928750038147, + "difficulty_simple": -0.3487040715832003, + "percent_correct": 0.5863032844164919, + "n_responses": 1431 + }, + { + "problem_id": 294659, + "difficulty_1pl": 1.7632856369018555, + "difficulty_2pl": 0.4865967333316803, + "discrimination_2pl": 0.3042099177837372, + "difficulty_simple": -0.06508661651988619, + "percent_correct": 0.5162659123055162, + "n_responses": 1414 + }, + { + "problem_id": 585877, + "difficulty_1pl": -2.5551271438598633, + "difficulty_2pl": -0.422125905752182, + "discrimination_2pl": 0.31011146306991577, + "difficulty_simple": -0.8167611365271222, + "percent_correct": 0.6935483870967742, + "n_responses": 2170 + }, + { + "problem_id": 586044, + "difficulty_1pl": -1.9579813480377197, + "difficulty_2pl": -0.26869189739227295, + "discrimination_2pl": 0.29907238483428955, + "difficulty_simple": -0.7107223253814531, + "percent_correct": 0.6705607476635514, + "n_responses": 2140 + }, + { + "problem_id": 586212, + "difficulty_1pl": -8.270357131958008, + "difficulty_2pl": -0.9634442925453186, + "discrimination_2pl": 0.6451963782310486, + "difficulty_simple": -1.8033202916291309, + "percent_correct": 0.8585526315789473, + "n_responses": 2128 + }, + { + "problem_id": 197626, + "difficulty_1pl": -7.67919921875, + "difficulty_2pl": -0.5360826253890991, + "discrimination_2pl": 0.5437161326408386, + "difficulty_simple": -1.4300593890866495, + "percent_correct": 0.806910569105691, + "n_responses": 984 + }, + { + "problem_id": 197878, + "difficulty_1pl": -11.760883331298828, + "difficulty_2pl": -0.5957174897193909, + "discrimination_2pl": 0.640611469745636, + "difficulty_simple": -2.0364970898500943, + "percent_correct": 0.8845760980592441, + "n_responses": 979 + }, + { + "problem_id": 198077, + "difficulty_1pl": -8.553450584411621, + "difficulty_2pl": -0.49159348011016846, + "discrimination_2pl": 0.6277427077293396, + "difficulty_simple": -1.2574033480518703, + "percent_correct": 0.7785787847579815, + "n_responses": 971 + }, + { + "problem_id": 198319, + "difficulty_1pl": 1.6748348474502563, + "difficulty_2pl": 0.13533902168273926, + "discrimination_2pl": 0.10312458872795105, + "difficulty_simple": 0.24789382239336813, + "percent_correct": 0.4383419689119171, + "n_responses": 965 + }, + { + "problem_id": 195392, + "difficulty_1pl": -8.466787338256836, + "difficulty_2pl": -0.3643485903739929, + "discrimination_2pl": 0.7830839157104492, + "difficulty_simple": -1.6058386284044535, + "percent_correct": 0.8328328328328328, + "n_responses": 999 + }, + { + "problem_id": 412825, + "difficulty_1pl": 4.934319972991943, + "difficulty_2pl": 0.03987006098031998, + "discrimination_2pl": 0.06356063485145569, + "difficulty_simple": 1.0163741904311376, + "percent_correct": 0.26573426573426573, + "n_responses": 143 + }, + { + "problem_id": 153519, + "difficulty_1pl": -9.820425033569336, + "difficulty_2pl": -0.3603995442390442, + "discrimination_2pl": 0.6097249984741211, + "difficulty_simple": -2.016527716269267, + "percent_correct": 0.8825214899713467, + "n_responses": 349 + }, + { + "problem_id": 154138, + "difficulty_1pl": -7.852246284484863, + "difficulty_2pl": -0.30240169167518616, + "discrimination_2pl": 0.42926841974258423, + "difficulty_simple": -1.6486586255873819, + "percent_correct": 0.8387096774193549, + "n_responses": 341 + }, + { + "problem_id": 373794, + "difficulty_1pl": 5.588587760925293, + "difficulty_2pl": 0.20822712779045105, + "discrimination_2pl": 0.06363166123628616, + "difficulty_simple": 1.031101997141381, + "percent_correct": 0.2628705148205928, + "n_responses": 1282 + }, + { + "problem_id": 201855, + "difficulty_1pl": 0.7969472408294678, + "difficulty_2pl": 0.22100552916526794, + "discrimination_2pl": 0.23580044507980347, + "difficulty_simple": -0.24802819463008752, + "percent_correct": 0.5616911130284729, + "n_responses": 1159 + }, + { + "problem_id": 119645, + "difficulty_1pl": -14.758392333984375, + "difficulty_2pl": -0.8431386947631836, + "discrimination_2pl": 0.7033175826072693, + "difficulty_simple": -1.80166828563419, + "percent_correct": 0.8583518930957684, + "n_responses": 2245 + }, + { + "problem_id": 120094, + "difficulty_1pl": -1.0600481033325195, + "difficulty_2pl": 0.07546107470989227, + "discrimination_2pl": 0.4342880845069885, + "difficulty_simple": -0.5650615633614237, + "percent_correct": 0.6376228775692583, + "n_responses": 2238 + }, + { + "problem_id": 123995, + "difficulty_1pl": 1.955942988395691, + "difficulty_2pl": 0.513496458530426, + "discrimination_2pl": 0.3292657732963562, + "difficulty_simple": 0.10328582611696607, + "percent_correct": 0.4742014742014742, + "n_responses": 1628 + }, + { + "problem_id": 199800, + "difficulty_1pl": -7.039811611175537, + "difficulty_2pl": -0.4194315969944, + "discrimination_2pl": 0.70748370885849, + "difficulty_simple": -1.4942696983932544, + "percent_correct": 0.81671826625387, + "n_responses": 1615 + }, + { + "problem_id": 601993, + "difficulty_1pl": 5.491855621337891, + "difficulty_2pl": 0.07505399733781815, + "discrimination_2pl": 0.03921296447515488, + "difficulty_simple": 1.123304901258481, + "percent_correct": 0.24539877300613497, + "n_responses": 652 + }, + { + "problem_id": 76811, + "difficulty_1pl": 0.6891067624092102, + "difficulty_2pl": 0.17782087624073029, + "discrimination_2pl": 0.17530855536460876, + "difficulty_simple": 0.07765093423006607, + "percent_correct": 0.48059701492537316, + "n_responses": 670 + }, + { + "problem_id": 46209, + "difficulty_1pl": -8.342842102050781, + "difficulty_2pl": -0.44735491275787354, + "discrimination_2pl": 0.3710804283618927, + "difficulty_simple": -1.4492691602812793, + "percent_correct": 0.8098859315589354, + "n_responses": 1315 + }, + { + "problem_id": 77198, + "difficulty_1pl": 0.08797654509544373, + "difficulty_2pl": 0.12202951312065125, + "discrimination_2pl": 0.32840976119041443, + "difficulty_simple": -0.26209620388419447, + "percent_correct": 0.5651515151515152, + "n_responses": 660 + }, + { + "problem_id": 274984, + "difficulty_1pl": -5.854940891265869, + "difficulty_2pl": -0.2406165599822998, + "discrimination_2pl": 0.5528937578201294, + "difficulty_simple": -1.4221309762889314, + "percent_correct": 0.805672268907563, + "n_responses": 952 + }, + { + "problem_id": 275405, + "difficulty_1pl": 1.2464598417282104, + "difficulty_2pl": 0.20038095116615295, + "discrimination_2pl": 0.25788426399230957, + "difficulty_simple": -0.08724876571478014, + "percent_correct": 0.5217983651226158, + "n_responses": 734 + }, + { + "problem_id": 275212, + "difficulty_1pl": -0.3208494186401367, + "difficulty_2pl": -0.0026911883614957333, + "discrimination_2pl": 0.39607399702072144, + "difficulty_simple": -0.6250937173149296, + "percent_correct": 0.6513761467889908, + "n_responses": 763 + }, + { + "problem_id": 274077, + "difficulty_1pl": -7.192680835723877, + "difficulty_2pl": -0.28104180097579956, + "discrimination_2pl": 0.5756474733352661, + "difficulty_simple": -1.4298523354590205, + "percent_correct": 0.8068783068783069, + "n_responses": 756 + }, + { + "problem_id": 273819, + "difficulty_1pl": -7.436532497406006, + "difficulty_2pl": -0.24959570169448853, + "discrimination_2pl": 0.5246517062187195, + "difficulty_simple": -1.5613293341140697, + "percent_correct": 0.8265440210249672, + "n_responses": 761 + }, + { + "problem_id": 273482, + "difficulty_1pl": -13.440394401550293, + "difficulty_2pl": -0.34838923811912537, + "discrimination_2pl": 0.6826046109199524, + "difficulty_simple": -2.0462254916713056, + "percent_correct": 0.8855656697009102, + "n_responses": 769 + }, + { + "problem_id": 273269, + "difficulty_1pl": -4.707245826721191, + "difficulty_2pl": -0.041497234255075455, + "discrimination_2pl": 0.5204012989997864, + "difficulty_simple": -0.9741745061593629, + "percent_correct": 0.7259507829977628, + "n_responses": 894 + }, + { + "problem_id": 273109, + "difficulty_1pl": -3.492666482925415, + "difficulty_2pl": -0.12244030833244324, + "discrimination_2pl": 0.437926709651947, + "difficulty_simple": -0.9209672797580566, + "percent_correct": 0.7152391546162402, + "n_responses": 899 + }, + { + "problem_id": 272660, + "difficulty_1pl": -4.025828838348389, + "difficulty_2pl": 0.09584790468215942, + "discrimination_2pl": 0.4374566078186035, + "difficulty_simple": -0.8161366244069026, + "percent_correct": 0.6934156378600823, + "n_responses": 972 + }, + { + "problem_id": 137170, + "difficulty_1pl": -1.4980014562606812, + "difficulty_2pl": 0.27878066897392273, + "discrimination_2pl": 0.3871054947376251, + "difficulty_simple": -0.7489385401883608, + "percent_correct": 0.6789473684210526, + "n_responses": 1520 + }, + { + "problem_id": 274206, + "difficulty_1pl": 1.2909529209136963, + "difficulty_2pl": 0.09830795228481293, + "discrimination_2pl": 0.15010966360569, + "difficulty_simple": -0.13310757401254175, + "percent_correct": 0.5332278481012658, + "n_responses": 632 + }, + { + "problem_id": 30522, + "difficulty_1pl": -2.457392454147339, + "difficulty_2pl": -0.17207352817058563, + "discrimination_2pl": 0.3926876485347748, + "difficulty_simple": -0.9548243958763982, + "percent_correct": 0.7220843672456576, + "n_responses": 806 + }, + { + "problem_id": 30936, + "difficulty_1pl": -15.077668190002441, + "difficulty_2pl": -0.5251392722129822, + "discrimination_2pl": 0.5671221017837524, + "difficulty_simple": -1.94301997363308, + "percent_correct": 0.8746835443037975, + "n_responses": 790 + }, + { + "problem_id": 319310, + "difficulty_1pl": -8.30955696105957, + "difficulty_2pl": -0.17115196585655212, + "discrimination_2pl": 0.42469391226768494, + "difficulty_simple": -1.4105086192404854, + "percent_correct": 0.8038461538461539, + "n_responses": 260 + }, + { + "problem_id": 24640, + "difficulty_1pl": 12.171711921691895, + "difficulty_2pl": 0.0963892787694931, + "discrimination_2pl": 0.05102153494954109, + "difficulty_simple": 1.7327611284660993, + "percent_correct": 0.15023474178403756, + "n_responses": 213 + }, + { + "problem_id": 161738, + "difficulty_1pl": -0.07885337620973587, + "difficulty_2pl": 0.23298561573028564, + "discrimination_2pl": 0.3536490201950073, + "difficulty_simple": -0.3729125050704161, + "percent_correct": 0.5921625544267054, + "n_responses": 689 + }, + { + "problem_id": 24484, + "difficulty_1pl": -0.3071764409542084, + "difficulty_2pl": 0.04506080597639084, + "discrimination_2pl": 0.32212400436401367, + "difficulty_simple": -0.3051789399994893, + "percent_correct": 0.5757080610021786, + "n_responses": 1836 + }, + { + "problem_id": 24737, + "difficulty_1pl": -6.60377311706543, + "difficulty_2pl": -0.5570620894432068, + "discrimination_2pl": 0.4934975504875183, + "difficulty_simple": -1.281771015875128, + "percent_correct": 0.7827510917030568, + "n_responses": 1832 + }, + { + "problem_id": 24963, + "difficulty_1pl": 3.144529342651367, + "difficulty_2pl": 0.44153907895088196, + "discrimination_2pl": 0.1834520399570465, + "difficulty_simple": 0.3958956570920136, + "percent_correct": 0.40229885057471265, + "n_responses": 1827 + }, + { + "problem_id": 586483, + "difficulty_1pl": 5.065916061401367, + "difficulty_2pl": 0.2916490137577057, + "discrimination_2pl": 0.10051070153713226, + "difficulty_simple": 0.7014875124761645, + "percent_correct": 0.33148250971682397, + "n_responses": 1801 + }, + { + "problem_id": 470213, + "difficulty_1pl": -5.322956085205078, + "difficulty_2pl": -0.13765375316143036, + "discrimination_2pl": 0.3819981813430786, + "difficulty_simple": -1.3561845596485198, + "percent_correct": 0.7951388888888888, + "n_responses": 288 + }, + { + "problem_id": 470590, + "difficulty_1pl": -5.02382755279541, + "difficulty_2pl": 0.02028571255505085, + "discrimination_2pl": 0.3602864444255829, + "difficulty_simple": -0.861138911799075, + "percent_correct": 0.7028985507246377, + "n_responses": 276 + }, + { + "problem_id": 83745, + "difficulty_1pl": 5.692698955535889, + "difficulty_2pl": 0.22247058153152466, + "discrimination_2pl": 0.06028413772583008, + "difficulty_simple": 0.5692363859224052, + "percent_correct": 0.36141304347826086, + "n_responses": 1472 + }, + { + "problem_id": 123317, + "difficulty_1pl": -10.65363883972168, + "difficulty_2pl": -0.9920369386672974, + "discrimination_2pl": 0.655005931854248, + "difficulty_simple": -1.9155848193404008, + "percent_correct": 0.8716452742123687, + "n_responses": 1714 + }, + { + "problem_id": 123500, + "difficulty_1pl": -10.19963264465332, + "difficulty_2pl": -0.6859210133552551, + "discrimination_2pl": 0.7302502393722534, + "difficulty_simple": -1.683492578263014, + "percent_correct": 0.8433664523670368, + "n_responses": 1711 + }, + { + "problem_id": 123722, + "difficulty_1pl": -14.688948631286621, + "difficulty_2pl": -1.2460459470748901, + "discrimination_2pl": 0.8000995516777039, + "difficulty_simple": -2.584626285555741, + "percent_correct": 0.9298655756867329, + "n_responses": 1711 + }, + { + "problem_id": 181762, + "difficulty_1pl": 5.190113067626953, + "difficulty_2pl": 0.44580212235450745, + "discrimination_2pl": 0.14142286777496338, + "difficulty_simple": 0.5006264894597187, + "percent_correct": 0.37739345274861025, + "n_responses": 1619 + }, + { + "problem_id": 417638, + "difficulty_1pl": -0.977455198764801, + "difficulty_2pl": -0.12788009643554688, + "discrimination_2pl": 0.13710962235927582, + "difficulty_simple": -0.5246077632805872, + "percent_correct": 0.6282245827010622, + "n_responses": 659 + }, + { + "problem_id": 428161, + "difficulty_1pl": -0.8526734709739685, + "difficulty_2pl": 0.26957184076309204, + "discrimination_2pl": 0.4355464279651642, + "difficulty_simple": -0.5248118657407306, + "percent_correct": 0.6282722513089005, + "n_responses": 1146 + }, + { + "problem_id": 5669, + "difficulty_1pl": -3.041097402572632, + "difficulty_2pl": -0.04655518755316734, + "discrimination_2pl": 0.4579065144062042, + "difficulty_simple": -0.7580500667953717, + "percent_correct": 0.6809302325581396, + "n_responses": 1075 + }, + { + "problem_id": 275825, + "difficulty_1pl": -5.949531078338623, + "difficulty_2pl": -0.1433740258216858, + "discrimination_2pl": 0.4607110321521759, + "difficulty_simple": -0.9934735270859235, + "percent_correct": 0.7297734627831716, + "n_responses": 618 + }, + { + "problem_id": 277053, + "difficulty_1pl": -2.2474005222320557, + "difficulty_2pl": -0.1775028258562088, + "discrimination_2pl": 0.4533383250236511, + "difficulty_simple": -0.9214058325409255, + "percent_correct": 0.7153284671532847, + "n_responses": 822 + }, + { + "problem_id": 276696, + "difficulty_1pl": -7.623038291931152, + "difficulty_2pl": -0.3392185568809509, + "discrimination_2pl": 0.5766955018043518, + "difficulty_simple": -1.5771770502158786, + "percent_correct": 0.8288043478260869, + "n_responses": 736 + }, + { + "problem_id": 279063, + "difficulty_1pl": 0.25846901535987854, + "difficulty_2pl": 0.09143216162919998, + "discrimination_2pl": 0.2266303300857544, + "difficulty_simple": -0.07507602644035712, + "percent_correct": 0.5187601957585645, + "n_responses": 613 + }, + { + "problem_id": 278648, + "difficulty_1pl": 5.962931156158447, + "difficulty_2pl": 0.13879546523094177, + "discrimination_2pl": 0.0715586245059967, + "difficulty_simple": 0.7672551527136672, + "percent_correct": 0.3170731707317073, + "n_responses": 492 + }, + { + "problem_id": 278504, + "difficulty_1pl": 10.136475563049316, + "difficulty_2pl": -0.0012598156463354826, + "discrimination_2pl": 0.02413533255457878, + "difficulty_simple": 1.3009807774073552, + "percent_correct": 0.214, + "n_responses": 500 + }, + { + "problem_id": 277881, + "difficulty_1pl": -1.7891486883163452, + "difficulty_2pl": -0.030167799443006516, + "discrimination_2pl": 0.3330138921737671, + "difficulty_simple": -0.7540673543217854, + "percent_correct": 0.680064308681672, + "n_responses": 622 + }, + { + "problem_id": 79361, + "difficulty_1pl": 5.468142509460449, + "difficulty_2pl": 0.01182731706649065, + "discrimination_2pl": 0.08841428905725479, + "difficulty_simple": 0.46747518289237694, + "percent_correct": 0.3852140077821012, + "n_responses": 771 + }, + { + "problem_id": 304746, + "difficulty_1pl": -5.7581634521484375, + "difficulty_2pl": -0.13078680634498596, + "discrimination_2pl": 0.5027773976325989, + "difficulty_simple": -1.1273617019540951, + "percent_correct": 0.7553516819571865, + "n_responses": 327 + }, + { + "problem_id": 305101, + "difficulty_1pl": -4.08064603805542, + "difficulty_2pl": 0.015184887684881687, + "discrimination_2pl": 0.4065920412540436, + "difficulty_simple": -0.8428235799922825, + "percent_correct": 0.6990595611285266, + "n_responses": 319 + }, + { + "problem_id": 135233, + "difficulty_1pl": -5.648637771606445, + "difficulty_2pl": -0.11891166120767593, + "discrimination_2pl": 0.4317343831062317, + "difficulty_simple": -0.982540117415356, + "percent_correct": 0.7276119402985075, + "n_responses": 268 + }, + { + "problem_id": 135345, + "difficulty_1pl": -3.3432416915893555, + "difficulty_2pl": -0.005566221196204424, + "discrimination_2pl": 0.32702016830444336, + "difficulty_simple": -0.5187937934151677, + "percent_correct": 0.6268656716417911, + "n_responses": 268 + }, + { + "problem_id": 135491, + "difficulty_1pl": -5.548448085784912, + "difficulty_2pl": -0.03403782099485397, + "discrimination_2pl": 0.4725928008556366, + "difficulty_simple": -1.1592369104845444, + "percent_correct": 0.7611940298507462, + "n_responses": 268 + }, + { + "problem_id": 135638, + "difficulty_1pl": -5.226797103881836, + "difficulty_2pl": -0.14474210143089294, + "discrimination_2pl": 0.43189680576324463, + "difficulty_simple": -1.1700712526502548, + "percent_correct": 0.7631578947368421, + "n_responses": 266 + }, + { + "problem_id": 135753, + "difficulty_1pl": -4.635127544403076, + "difficulty_2pl": -0.14470109343528748, + "discrimination_2pl": 0.4106062948703766, + "difficulty_simple": -1.0103196815224316, + "percent_correct": 0.7330827067669173, + "n_responses": 266 + }, + { + "problem_id": 135875, + "difficulty_1pl": -4.636837005615234, + "difficulty_2pl": 0.058187078684568405, + "discrimination_2pl": 0.40942493081092834, + "difficulty_simple": -0.9618139868982388, + "percent_correct": 0.7234848484848485, + "n_responses": 264 + }, + { + "problem_id": 136020, + "difficulty_1pl": -6.198541164398193, + "difficulty_2pl": -0.38965755701065063, + "discrimination_2pl": 0.5041075944900513, + "difficulty_simple": -1.262566968591989, + "percent_correct": 0.779467680608365, + "n_responses": 263 + }, + { + "problem_id": 136146, + "difficulty_1pl": -4.655200958251953, + "difficulty_2pl": -0.10829465091228485, + "discrimination_2pl": 0.4108301103115082, + "difficulty_simple": -0.9376819218554728, + "percent_correct": 0.7186311787072244, + "n_responses": 263 + }, + { + "problem_id": 136282, + "difficulty_1pl": 2.9097530841827393, + "difficulty_2pl": -0.006270390935242176, + "discrimination_2pl": 0.05601021274924278, + "difficulty_simple": 0.6646552247656389, + "percent_correct": 0.33969465648854963, + "n_responses": 262 + }, + { + "problem_id": 136496, + "difficulty_1pl": 2.538055896759033, + "difficulty_2pl": 0.069586381316185, + "discrimination_2pl": 0.15765544772148132, + "difficulty_simple": 0.1508228897345837, + "percent_correct": 0.46236559139784944, + "n_responses": 186 + }, + { + "problem_id": 136814, + "difficulty_1pl": 0.24014438688755035, + "difficulty_2pl": -0.0738738477230072, + "discrimination_2pl": 0.21617580950260162, + "difficulty_simple": -0.04396312342111594, + "percent_correct": 0.510989010989011, + "n_responses": 182 + }, + { + "problem_id": 95407, + "difficulty_1pl": 0.48313483595848083, + "difficulty_2pl": 0.09368328750133514, + "discrimination_2pl": 0.16569232940673828, + "difficulty_simple": -0.171850256926659, + "percent_correct": 0.5428571428571428, + "n_responses": 700 + }, + { + "problem_id": 93881, + "difficulty_1pl": -2.8653745651245117, + "difficulty_2pl": -0.13051903247833252, + "discrimination_2pl": 0.3702700138092041, + "difficulty_simple": -0.8114774118524172, + "percent_correct": 0.6924242424242424, + "n_responses": 660 + }, + { + "problem_id": 93262, + "difficulty_1pl": -8.787063598632812, + "difficulty_2pl": -0.5617850422859192, + "discrimination_2pl": 0.5678992867469788, + "difficulty_simple": -1.7328694532238282, + "percent_correct": 0.8497790868924889, + "n_responses": 679 + }, + { + "problem_id": 92939, + "difficulty_1pl": -11.883648872375488, + "difficulty_2pl": -0.44688308238983154, + "discrimination_2pl": 0.49705183506011963, + "difficulty_simple": -1.7265734893433597, + "percent_correct": 0.8489736070381232, + "n_responses": 682 + }, + { + "problem_id": 92551, + "difficulty_1pl": -2.1943395137786865, + "difficulty_2pl": 0.058971840888261795, + "discrimination_2pl": 0.3299540877342224, + "difficulty_simple": -0.6454157777387555, + "percent_correct": 0.6559766763848397, + "n_responses": 686 + }, + { + "problem_id": 230682, + "difficulty_1pl": -3.055039882659912, + "difficulty_2pl": -0.10248517245054245, + "discrimination_2pl": 0.3761446177959442, + "difficulty_simple": -0.6639480258676832, + "percent_correct": 0.6601466992665037, + "n_responses": 409 + }, + { + "problem_id": 290885, + "difficulty_1pl": 0.0005123717710375786, + "difficulty_2pl": 0.017781347036361694, + "discrimination_2pl": 0.26625126600265503, + "difficulty_simple": -0.18934617173091908, + "percent_correct": 0.5471956224350205, + "n_responses": 731 + }, + { + "problem_id": 236501, + "difficulty_1pl": 1.4508252143859863, + "difficulty_2pl": 0.2739155888557434, + "discrimination_2pl": 0.14526213705539703, + "difficulty_simple": 0.2807236118529112, + "percent_correct": 0.43027638190954776, + "n_responses": 1592 + }, + { + "problem_id": 249213, + "difficulty_1pl": -2.078322649002075, + "difficulty_2pl": -0.1875634789466858, + "discrimination_2pl": 0.41486433148384094, + "difficulty_simple": -0.5932067323714585, + "percent_correct": 0.6441005802707931, + "n_responses": 517 + }, + { + "problem_id": 37441, + "difficulty_1pl": -6.417460918426514, + "difficulty_2pl": -0.6231445670127869, + "discrimination_2pl": 0.6245918869972229, + "difficulty_simple": -1.6132583564314864, + "percent_correct": 0.8338632750397457, + "n_responses": 1258 + }, + { + "problem_id": 39085, + "difficulty_1pl": -0.5831242799758911, + "difficulty_2pl": 0.08077634125947952, + "discrimination_2pl": 0.3504982590675354, + "difficulty_simple": -0.5734642936060986, + "percent_correct": 0.6395621579358874, + "n_responses": 1279 + }, + { + "problem_id": 350622, + "difficulty_1pl": -2.5593228340148926, + "difficulty_2pl": -0.03747129067778587, + "discrimination_2pl": 0.2898991107940674, + "difficulty_simple": -0.8855190732074013, + "percent_correct": 0.7079646017699115, + "n_responses": 565 + }, + { + "problem_id": 637195, + "difficulty_1pl": 2.027878522872925, + "difficulty_2pl": 0.22674459218978882, + "discrimination_2pl": 0.15770868957042694, + "difficulty_simple": 0.21911940101448443, + "percent_correct": 0.44543828264758495, + "n_responses": 559 + }, + { + "problem_id": 351892, + "difficulty_1pl": 4.626510143280029, + "difficulty_2pl": -0.05749719217419624, + "discrimination_2pl": 0.04236828163266182, + "difficulty_simple": 0.7323678937132266, + "percent_correct": 0.3246753246753247, + "n_responses": 616 + }, + { + "problem_id": 356660, + "difficulty_1pl": -4.131328105926514, + "difficulty_2pl": -0.08553498983383179, + "discrimination_2pl": 0.5203118920326233, + "difficulty_simple": -1.0022811797296776, + "percent_correct": 0.7315068493150685, + "n_responses": 1095 + }, + { + "problem_id": 406337, + "difficulty_1pl": -0.6501248478889465, + "difficulty_2pl": 0.23074157536029816, + "discrimination_2pl": 0.3654155433177948, + "difficulty_simple": -0.2893473517708423, + "percent_correct": 0.5718363463368221, + "n_responses": 1051 + }, + { + "problem_id": 356879, + "difficulty_1pl": -2.808084011077881, + "difficulty_2pl": -0.2834221124649048, + "discrimination_2pl": 0.40032047033309937, + "difficulty_simple": -0.6987182256094007, + "percent_correct": 0.6679035250463822, + "n_responses": 1078 + }, + { + "problem_id": 61559, + "difficulty_1pl": 0.13552406430244446, + "difficulty_2pl": 0.12258899211883545, + "discrimination_2pl": 0.3077119290828705, + "difficulty_simple": -0.24816131428949736, + "percent_correct": 0.5617238860482103, + "n_responses": 1369 + }, + { + "problem_id": 62350, + "difficulty_1pl": 2.354951858520508, + "difficulty_2pl": 0.30446532368659973, + "discrimination_2pl": 0.1736253947019577, + "difficulty_simple": 0.3544547391716454, + "percent_correct": 0.41230257689110555, + "n_responses": 1203 + }, + { + "problem_id": 353939, + "difficulty_1pl": -14.499879837036133, + "difficulty_2pl": -0.7413605451583862, + "discrimination_2pl": 0.7399502992630005, + "difficulty_simple": -2.906901059847376, + "percent_correct": 0.9481865284974094, + "n_responses": 965 + }, + { + "problem_id": 354353, + "difficulty_1pl": -17.525087356567383, + "difficulty_2pl": -0.8162203431129456, + "discrimination_2pl": 0.8118499517440796, + "difficulty_simple": -2.8745235656561405, + "percent_correct": 0.9465725806451613, + "n_responses": 992 + }, + { + "problem_id": 354803, + "difficulty_1pl": -18.2188720703125, + "difficulty_2pl": -0.8741463422775269, + "discrimination_2pl": 0.8545350432395935, + "difficulty_simple": -3.328850678076773, + "percent_correct": 0.9654054054054054, + "n_responses": 925 + }, + { + "problem_id": 355221, + "difficulty_1pl": -8.141814231872559, + "difficulty_2pl": -0.7799085974693298, + "discrimination_2pl": 0.610234260559082, + "difficulty_simple": -2.094040341100989, + "percent_correct": 0.8903225806451613, + "n_responses": 930 + }, + { + "problem_id": 355654, + "difficulty_1pl": -8.740129470825195, + "difficulty_2pl": -0.553987979888916, + "discrimination_2pl": 0.6348494291305542, + "difficulty_simple": -1.8737395362418174, + "percent_correct": 0.8668903803131991, + "n_responses": 894 + }, + { + "problem_id": 158226, + "difficulty_1pl": -1.6027053594589233, + "difficulty_2pl": -0.13566197454929352, + "discrimination_2pl": 0.3168177306652069, + "difficulty_simple": -0.7153031724571538, + "percent_correct": 0.671571906354515, + "n_responses": 1495 + }, + { + "problem_id": 158629, + "difficulty_1pl": -6.397184371948242, + "difficulty_2pl": -0.3511544167995453, + "discrimination_2pl": 0.45939725637435913, + "difficulty_simple": -1.382187579167237, + "percent_correct": 0.7993421052631579, + "n_responses": 1520 + }, + { + "problem_id": 159000, + "difficulty_1pl": -4.647416114807129, + "difficulty_2pl": -0.23069345951080322, + "discrimination_2pl": 0.6072957515716553, + "difficulty_simple": -1.2645612263921455, + "percent_correct": 0.7798102981029811, + "n_responses": 1476 + }, + { + "problem_id": 159196, + "difficulty_1pl": -3.688755512237549, + "difficulty_2pl": -0.11109177768230438, + "discrimination_2pl": 0.5160340070724487, + "difficulty_simple": -0.8992448646011663, + "percent_correct": 0.7107942973523421, + "n_responses": 1473 + }, + { + "problem_id": 447809, + "difficulty_1pl": -5.4878716468811035, + "difficulty_2pl": -0.2990405559539795, + "discrimination_2pl": 0.34258270263671875, + "difficulty_simple": -1.32580559963924, + "percent_correct": 0.7901459854014599, + "n_responses": 548 + }, + { + "problem_id": 67685, + "difficulty_1pl": -4.417076587677002, + "difficulty_2pl": -0.04578050598502159, + "discrimination_2pl": 0.5659631490707397, + "difficulty_simple": -0.9888357009054677, + "percent_correct": 0.7288578901482128, + "n_responses": 1147 + }, + { + "problem_id": 177403, + "difficulty_1pl": -4.059628963470459, + "difficulty_2pl": -0.42387428879737854, + "discrimination_2pl": 0.5155546069145203, + "difficulty_simple": -1.0647107369924285, + "percent_correct": 0.7435897435897436, + "n_responses": 1365 + }, + { + "problem_id": 177679, + "difficulty_1pl": -13.446843147277832, + "difficulty_2pl": -0.8534600734710693, + "discrimination_2pl": 0.7729259729385376, + "difficulty_simple": -2.0452083700375936, + "percent_correct": 0.8854625550660793, + "n_responses": 1362 + }, + { + "problem_id": 177979, + "difficulty_1pl": -3.023674726486206, + "difficulty_2pl": -0.1682654172182083, + "discrimination_2pl": 0.40120890736579895, + "difficulty_simple": -0.7899606356393133, + "percent_correct": 0.6878228782287823, + "n_responses": 1355 + }, + { + "problem_id": 178227, + "difficulty_1pl": -15.094536781311035, + "difficulty_2pl": -1.2532778978347778, + "discrimination_2pl": 0.8436012864112854, + "difficulty_simple": -2.6414354520202257, + "percent_correct": 0.9334811529933481, + "n_responses": 1353 + }, + { + "problem_id": 22023, + "difficulty_1pl": -6.703123092651367, + "difficulty_2pl": -0.6625722050666809, + "discrimination_2pl": 0.6590173244476318, + "difficulty_simple": -1.7034547098636852, + "percent_correct": 0.845985401459854, + "n_responses": 1370 + }, + { + "problem_id": 22322, + "difficulty_1pl": -11.423393249511719, + "difficulty_2pl": -1.020760178565979, + "discrimination_2pl": 0.7137029767036438, + "difficulty_simple": -2.173127025757159, + "percent_correct": 0.8978102189781022, + "n_responses": 1370 + }, + { + "problem_id": 22552, + "difficulty_1pl": -4.544576168060303, + "difficulty_2pl": -0.40714576840400696, + "discrimination_2pl": 0.5323843955993652, + "difficulty_simple": -1.3537417580821425, + "percent_correct": 0.7947406866325786, + "n_responses": 1369 + }, + { + "problem_id": 179142, + "difficulty_1pl": -0.6160098314285278, + "difficulty_2pl": -0.16726580262184143, + "discrimination_2pl": 0.3298715353012085, + "difficulty_simple": -0.4223755802564811, + "percent_correct": 0.6040515653775322, + "n_responses": 1086 + }, + { + "problem_id": 179464, + "difficulty_1pl": 0.6882018446922302, + "difficulty_2pl": 0.13953304290771484, + "discrimination_2pl": 0.18971043825149536, + "difficulty_simple": 0.07767303831821819, + "percent_correct": 0.4805914972273567, + "n_responses": 1082 + }, + { + "problem_id": 179837, + "difficulty_1pl": 0.7529188990592957, + "difficulty_2pl": 0.12032342702150345, + "discrimination_2pl": 0.3076007664203644, + "difficulty_simple": -0.1973271974118247, + "percent_correct": 0.549172346640701, + "n_responses": 1027 + }, + { + "problem_id": 180087, + "difficulty_1pl": 2.081286907196045, + "difficulty_2pl": 0.2787177264690399, + "discrimination_2pl": 0.2764812707901001, + "difficulty_simple": -0.03323864147573383, + "percent_correct": 0.5083088954056696, + "n_responses": 1023 + }, + { + "problem_id": 180403, + "difficulty_1pl": -0.7031047344207764, + "difficulty_2pl": 0.06544508039951324, + "discrimination_2pl": 0.47633659839630127, + "difficulty_simple": -0.5423242908253616, + "percent_correct": 0.6323529411764706, + "n_responses": 1020 + }, + { + "problem_id": 122792, + "difficulty_1pl": -6.144259452819824, + "difficulty_2pl": -0.30641892552375793, + "discrimination_2pl": 0.43448296189308167, + "difficulty_simple": -1.2487868201157284, + "percent_correct": 0.7770897832817337, + "n_responses": 323 + }, + { + "problem_id": 123053, + "difficulty_1pl": -1.3067753314971924, + "difficulty_2pl": -0.04244411364197731, + "discrimination_2pl": 0.15880483388900757, + "difficulty_simple": -0.5583727796958254, + "percent_correct": 0.6360759493670886, + "n_responses": 316 + }, + { + "problem_id": 352275, + "difficulty_1pl": -0.1619034856557846, + "difficulty_2pl": -0.020721985027194023, + "discrimination_2pl": 0.3288838863372803, + "difficulty_simple": -0.4693349565360999, + "percent_correct": 0.6152263374485597, + "n_responses": 486 + }, + { + "problem_id": 352500, + "difficulty_1pl": -1.1467562913894653, + "difficulty_2pl": 0.08687254786491394, + "discrimination_2pl": 0.27820757031440735, + "difficulty_simple": -0.3967920268547355, + "percent_correct": 0.5979166666666667, + "n_responses": 480 + }, + { + "problem_id": 352677, + "difficulty_1pl": -1.6128803491592407, + "difficulty_2pl": -0.048557914793491364, + "discrimination_2pl": 0.2379811853170395, + "difficulty_simple": -0.6338474382786534, + "percent_correct": 0.6533613445378151, + "n_responses": 476 + }, + { + "problem_id": 146791, + "difficulty_1pl": -6.519678115844727, + "difficulty_2pl": -0.17484019696712494, + "discrimination_2pl": 0.434611976146698, + "difficulty_simple": -1.1821990047763753, + "percent_correct": 0.7653429602888087, + "n_responses": 831 + }, + { + "problem_id": 148617, + "difficulty_1pl": 0.10606785118579865, + "difficulty_2pl": 0.08128581196069717, + "discrimination_2pl": 0.14985038340091705, + "difficulty_simple": -0.16044495709864573, + "percent_correct": 0.5400254129606099, + "n_responses": 787 + }, + { + "problem_id": 196523, + "difficulty_1pl": -0.02836018241941929, + "difficulty_2pl": 0.14248007535934448, + "discrimination_2pl": 0.25813037157058716, + "difficulty_simple": -0.17292379433518346, + "percent_correct": 0.5431235431235432, + "n_responses": 858 + }, + { + "problem_id": 197156, + "difficulty_1pl": -0.3164418339729309, + "difficulty_2pl": 0.13684386014938354, + "discrimination_2pl": 0.3325278162956238, + "difficulty_simple": -0.17830279719903694, + "percent_correct": 0.5444579780755177, + "n_responses": 821 + }, + { + "problem_id": 196819, + "difficulty_1pl": 2.438769817352295, + "difficulty_2pl": 0.13341142237186432, + "discrimination_2pl": 0.1974060833454132, + "difficulty_simple": 0.17006220886070192, + "percent_correct": 0.45758661887694146, + "n_responses": 837 + }, + { + "problem_id": 282992, + "difficulty_1pl": -3.747159242630005, + "difficulty_2pl": -0.18875417113304138, + "discrimination_2pl": 0.5191242098808289, + "difficulty_simple": -1.0677656871452488, + "percent_correct": 0.7441717791411043, + "n_responses": 1630 + }, + { + "problem_id": 284919, + "difficulty_1pl": 4.683927059173584, + "difficulty_2pl": 0.15475793182849884, + "discrimination_2pl": 0.07611831277608871, + "difficulty_simple": 0.3521475769050072, + "percent_correct": 0.41286173633440515, + "n_responses": 1555 + }, + { + "problem_id": 283575, + "difficulty_1pl": -7.366598606109619, + "difficulty_2pl": -0.2935793995857239, + "discrimination_2pl": 0.7318505048751831, + "difficulty_simple": -1.6815236392070545, + "percent_correct": 0.8431061806656102, + "n_responses": 1262 + }, + { + "problem_id": 283915, + "difficulty_1pl": -1.7660633325576782, + "difficulty_2pl": -0.21383002400398254, + "discrimination_2pl": 0.3325740098953247, + "difficulty_simple": -0.9235811651368341, + "percent_correct": 0.7157712305025996, + "n_responses": 1154 + }, + { + "problem_id": 6346, + "difficulty_1pl": -5.6143951416015625, + "difficulty_2pl": -0.38821497559547424, + "discrimination_2pl": 0.665389358997345, + "difficulty_simple": -1.3517366721942552, + "percent_correct": 0.794413407821229, + "n_responses": 895 + }, + { + "problem_id": 20763, + "difficulty_1pl": 2.062030553817749, + "difficulty_2pl": 0.09954126924276352, + "discrimination_2pl": 0.14113149046897888, + "difficulty_simple": 0.16299728396755192, + "percent_correct": 0.4593406593406593, + "n_responses": 910 + }, + { + "problem_id": 465121, + "difficulty_1pl": 0.38752737641334534, + "difficulty_2pl": 0.001697937841527164, + "discrimination_2pl": 0.22563384473323822, + "difficulty_simple": 0.017699577099400857, + "percent_correct": 0.49557522123893805, + "n_responses": 226 + }, + { + "problem_id": 8563, + "difficulty_1pl": 6.473433017730713, + "difficulty_2pl": 0.043754011392593384, + "discrimination_2pl": 0.020583420991897583, + "difficulty_simple": 1.2604323712348315, + "percent_correct": 0.2208994708994709, + "n_responses": 756 + }, + { + "problem_id": 8869, + "difficulty_1pl": -7.7402238845825195, + "difficulty_2pl": -0.30369389057159424, + "discrimination_2pl": 0.43736007809638977, + "difficulty_simple": -1.2552089542236282, + "percent_correct": 0.7782002534854245, + "n_responses": 789 + }, + { + "problem_id": 9017, + "difficulty_1pl": -11.560396194458008, + "difficulty_2pl": -0.4922655522823334, + "discrimination_2pl": 0.6467422842979431, + "difficulty_simple": -1.8936486201304221, + "percent_correct": 0.8691709844559585, + "n_responses": 772 + }, + { + "problem_id": 9184, + "difficulty_1pl": -9.67990493774414, + "difficulty_2pl": -0.3953133821487427, + "discrimination_2pl": 0.560190737247467, + "difficulty_simple": -1.7411819944845273, + "percent_correct": 0.8508371385083714, + "n_responses": 657 + }, + { + "problem_id": 7369, + "difficulty_1pl": -7.612228870391846, + "difficulty_2pl": -0.11825530976057053, + "discrimination_2pl": 0.44134625792503357, + "difficulty_simple": -1.1926182622230104, + "percent_correct": 0.7672090112640801, + "n_responses": 799 + }, + { + "problem_id": 7710, + "difficulty_1pl": -7.406345844268799, + "difficulty_2pl": -0.38007569313049316, + "discrimination_2pl": 0.511532723903656, + "difficulty_simple": -1.3489826526825335, + "percent_correct": 0.7939632545931758, + "n_responses": 762 + }, + { + "problem_id": 8064, + "difficulty_1pl": -7.419165134429932, + "difficulty_2pl": -0.3568503260612488, + "discrimination_2pl": 0.4886673390865326, + "difficulty_simple": -1.358123484153194, + "percent_correct": 0.7954545454545454, + "n_responses": 792 + }, + { + "problem_id": 37332, + "difficulty_1pl": -8.770752906799316, + "difficulty_2pl": -0.671835720539093, + "discrimination_2pl": 0.7595058083534241, + "difficulty_simple": -1.5633939739326934, + "percent_correct": 0.8268398268398268, + "n_responses": 1617 + }, + { + "problem_id": 37662, + "difficulty_1pl": -6.677012920379639, + "difficulty_2pl": -0.5291393399238586, + "discrimination_2pl": 0.6935002207756042, + "difficulty_simple": -1.327114590525425, + "percent_correct": 0.7903629536921152, + "n_responses": 1598 + }, + { + "problem_id": 37975, + "difficulty_1pl": -9.096586227416992, + "difficulty_2pl": -0.8670403361320496, + "discrimination_2pl": 0.7219717502593994, + "difficulty_simple": -1.7378380524342354, + "percent_correct": 0.850412249705536, + "n_responses": 1698 + }, + { + "problem_id": 38268, + "difficulty_1pl": -3.138537645339966, + "difficulty_2pl": -0.1935451626777649, + "discrimination_2pl": 0.5480020046234131, + "difficulty_simple": -1.0361642565701832, + "percent_correct": 0.7381092190252495, + "n_responses": 1703 + }, + { + "problem_id": 38524, + "difficulty_1pl": 2.348989248275757, + "difficulty_2pl": 0.6113385558128357, + "discrimination_2pl": 0.2578449547290802, + "difficulty_simple": 0.5042311580407098, + "percent_correct": 0.3765468473777254, + "n_responses": 1697 + }, + { + "problem_id": 38766, + "difficulty_1pl": 2.470979928970337, + "difficulty_2pl": 0.3337462842464447, + "discrimination_2pl": 0.1437368094921112, + "difficulty_simple": 0.2957254800409785, + "percent_correct": 0.42660275614140203, + "n_responses": 1669 + }, + { + "problem_id": 34746, + "difficulty_1pl": 0.7616505026817322, + "difficulty_2pl": 0.2630159258842468, + "discrimination_2pl": 0.2921334505081177, + "difficulty_simple": -0.024876904755404557, + "percent_correct": 0.5062189054726368, + "n_responses": 1608 + }, + { + "problem_id": 35010, + "difficulty_1pl": 1.7567479610443115, + "difficulty_2pl": 0.29460304975509644, + "discrimination_2pl": 0.18878354132175446, + "difficulty_simple": 0.42585797167130485, + "percent_correct": 0.39511584220413276, + "n_responses": 1597 + }, + { + "problem_id": 36149, + "difficulty_1pl": -0.5377504229545593, + "difficulty_2pl": -0.15059979259967804, + "discrimination_2pl": 0.42935070395469666, + "difficulty_simple": -0.44481444689671207, + "percent_correct": 0.6094056172436316, + "n_responses": 1531 + }, + { + "problem_id": 36440, + "difficulty_1pl": -2.9220614433288574, + "difficulty_2pl": -0.3757055103778839, + "discrimination_2pl": 0.61670982837677, + "difficulty_simple": -1.0864170155742912, + "percent_correct": 0.7477064220183486, + "n_responses": 1526 + }, + { + "problem_id": 36700, + "difficulty_1pl": -2.96209979057312, + "difficulty_2pl": -0.16049419343471527, + "discrimination_2pl": 0.5164327025413513, + "difficulty_simple": -0.7639290843825957, + "percent_correct": 0.6822061720288903, + "n_responses": 1523 + }, + { + "problem_id": 36971, + "difficulty_1pl": 0.2803724706172943, + "difficulty_2pl": 0.3112337291240692, + "discrimination_2pl": 0.3141045570373535, + "difficulty_simple": -0.2246239364846442, + "percent_correct": 0.555921052631579, + "n_responses": 1520 + }, + { + "problem_id": 146848, + "difficulty_1pl": 10.625019073486328, + "difficulty_2pl": 0.13777536153793335, + "discrimination_2pl": 0.025127748027443886, + "difficulty_simple": 1.1644637613213096, + "percent_correct": 0.23785714285714285, + "n_responses": 1400 + }, + { + "problem_id": 147031, + "difficulty_1pl": -2.432194471359253, + "difficulty_2pl": -0.0298394113779068, + "discrimination_2pl": 0.5341672897338867, + "difficulty_simple": -0.8716893135113626, + "percent_correct": 0.7050970873786407, + "n_responses": 1648 + }, + { + "problem_id": 147205, + "difficulty_1pl": 5.961598873138428, + "difficulty_2pl": 0.21902060508728027, + "discrimination_2pl": 0.06725575774908066, + "difficulty_simple": 0.6322966296089877, + "percent_correct": 0.34698996655518394, + "n_responses": 1196 + }, + { + "problem_id": 457584, + "difficulty_1pl": -13.442359924316406, + "difficulty_2pl": -0.2843949794769287, + "discrimination_2pl": 0.5805063247680664, + "difficulty_simple": -2.4267990189807196, + "percent_correct": 0.918848167539267, + "n_responses": 382 + }, + { + "problem_id": 457920, + "difficulty_1pl": -17.567419052124023, + "difficulty_2pl": -0.5144098997116089, + "discrimination_2pl": 0.6471014022827148, + "difficulty_simple": -3.5101876653705615, + "percent_correct": 0.9709762532981531, + "n_responses": 379 + }, + { + "problem_id": 458234, + "difficulty_1pl": -0.7607929110527039, + "difficulty_2pl": 0.09335406869649887, + "discrimination_2pl": 0.3132213354110718, + "difficulty_simple": -0.9518417161384738, + "percent_correct": 0.7214854111405835, + "n_responses": 377 + }, + { + "problem_id": 458552, + "difficulty_1pl": -14.033819198608398, + "difficulty_2pl": -0.3178485035896301, + "discrimination_2pl": 0.5836972594261169, + "difficulty_simple": -2.296685370866857, + "percent_correct": 0.9086021505376344, + "n_responses": 372 + }, + { + "problem_id": 263961, + "difficulty_1pl": -2.0020639896392822, + "difficulty_2pl": -0.04604668915271759, + "discrimination_2pl": 0.16170457005500793, + "difficulty_simple": -0.6405034470745234, + "percent_correct": 0.6548672566371682, + "n_responses": 452 + }, + { + "problem_id": 182778, + "difficulty_1pl": -3.8705251216888428, + "difficulty_2pl": -0.16003364324569702, + "discrimination_2pl": 0.3733789622783661, + "difficulty_simple": -0.626274936076154, + "percent_correct": 0.6516443361753959, + "n_responses": 821 + }, + { + "problem_id": 182948, + "difficulty_1pl": 1.208784580230713, + "difficulty_2pl": 0.016747962683439255, + "discrimination_2pl": 0.1975138783454895, + "difficulty_simple": 0.04686430897621778, + "percent_correct": 0.4882860665844636, + "n_responses": 811 + }, + { + "problem_id": 183159, + "difficulty_1pl": -5.152783393859863, + "difficulty_2pl": -0.29183655977249146, + "discrimination_2pl": 0.4932573735713959, + "difficulty_simple": -1.0675386520434522, + "percent_correct": 0.7441285537700866, + "n_responses": 809 + }, + { + "problem_id": 241939, + "difficulty_1pl": 1.7849406003952026, + "difficulty_2pl": 0.11101581901311874, + "discrimination_2pl": 0.06867880374193192, + "difficulty_simple": 0.12411217070803099, + "percent_correct": 0.46901172529313234, + "n_responses": 597 + }, + { + "problem_id": 287214, + "difficulty_1pl": 3.127289056777954, + "difficulty_2pl": -0.03470214456319809, + "discrimination_2pl": 0.10809268057346344, + "difficulty_simple": 0.3595946540420672, + "percent_correct": 0.4110576923076923, + "n_responses": 832 + }, + { + "problem_id": 306784, + "difficulty_1pl": 0.05068489909172058, + "difficulty_2pl": 0.14405511319637299, + "discrimination_2pl": 0.283805787563324, + "difficulty_simple": -0.28131667858470516, + "percent_correct": 0.5698689956331878, + "n_responses": 458 + }, + { + "problem_id": 59099, + "difficulty_1pl": -11.925856590270996, + "difficulty_2pl": -0.5185824036598206, + "discrimination_2pl": 0.5632210373878479, + "difficulty_simple": -1.936941479072553, + "percent_correct": 0.8740157480314961, + "n_responses": 1016 + }, + { + "problem_id": 59398, + "difficulty_1pl": -10.557668685913086, + "difficulty_2pl": -0.7446969747543335, + "discrimination_2pl": 0.6370595693588257, + "difficulty_simple": -2.0368819272610397, + "percent_correct": 0.8846153846153846, + "n_responses": 1014 + }, + { + "problem_id": 59778, + "difficulty_1pl": -0.7364828586578369, + "difficulty_2pl": 0.14564970135688782, + "discrimination_2pl": 0.45699530839920044, + "difficulty_simple": -0.5310151731022074, + "percent_correct": 0.6297198538367844, + "n_responses": 821 + }, + { + "problem_id": 60186, + "difficulty_1pl": 0.7378942966461182, + "difficulty_2pl": 0.21187235414981842, + "discrimination_2pl": 0.3919089138507843, + "difficulty_simple": -0.3679744991926658, + "percent_correct": 0.5909694555112882, + "n_responses": 753 + }, + { + "problem_id": 60349, + "difficulty_1pl": -1.0431287288665771, + "difficulty_2pl": 0.20400314033031464, + "discrimination_2pl": 0.4714561700820923, + "difficulty_simple": -0.4065719150833555, + "percent_correct": 0.600265604249668, + "n_responses": 753 + }, + { + "problem_id": 138228, + "difficulty_1pl": -4.420827388763428, + "difficulty_2pl": -0.13773129880428314, + "discrimination_2pl": 0.32369473576545715, + "difficulty_simple": -0.9249487946172694, + "percent_correct": 0.7160493827160493, + "n_responses": 243 + }, + { + "problem_id": 19877, + "difficulty_1pl": 1.986017107963562, + "difficulty_2pl": 0.09552689641714096, + "discrimination_2pl": 0.12916502356529236, + "difficulty_simple": 0.39086630868701194, + "percent_correct": 0.40350877192982454, + "n_responses": 171 + }, + { + "problem_id": 20510, + "difficulty_1pl": -3.6141860485076904, + "difficulty_2pl": -0.09645724296569824, + "discrimination_2pl": 0.17451567947864532, + "difficulty_simple": -0.6286086594223742, + "percent_correct": 0.6521739130434783, + "n_responses": 161 + }, + { + "problem_id": 134784, + "difficulty_1pl": 3.469252347946167, + "difficulty_2pl": -0.11270704120397568, + "discrimination_2pl": 0.06482695043087006, + "difficulty_simple": 0.7608058290337602, + "percent_correct": 0.3184713375796178, + "n_responses": 157 + }, + { + "problem_id": 134923, + "difficulty_1pl": -3.972011089324951, + "difficulty_2pl": 0.02174214832484722, + "discrimination_2pl": 0.24528218805789948, + "difficulty_simple": -0.8226812327518473, + "percent_correct": 0.6948051948051948, + "n_responses": 154 + }, + { + "problem_id": 135051, + "difficulty_1pl": 1.03895902633667, + "difficulty_2pl": 0.0757235437631607, + "discrimination_2pl": 0.11778991669416428, + "difficulty_simple": 0.07796154146971171, + "percent_correct": 0.4805194805194805, + "n_responses": 154 + }, + { + "problem_id": 123610, + "difficulty_1pl": 7.035697937011719, + "difficulty_2pl": 0.24418450891971588, + "discrimination_2pl": 0.05709529668092728, + "difficulty_simple": 0.9143215812542742, + "percent_correct": 0.2861163227016886, + "n_responses": 1066 + }, + { + "problem_id": 123973, + "difficulty_1pl": 0.5395002365112305, + "difficulty_2pl": 0.23113392293453217, + "discrimination_2pl": 0.19438037276268005, + "difficulty_simple": 0.03319081959174743, + "percent_correct": 0.49170305676855897, + "n_responses": 1145 + }, + { + "problem_id": 32656, + "difficulty_1pl": -5.611627101898193, + "difficulty_2pl": -0.4179786145687103, + "discrimination_2pl": 0.5097101926803589, + "difficulty_simple": -1.4669109569010002, + "percent_correct": 0.8125874125874126, + "n_responses": 715 + }, + { + "problem_id": 42567, + "difficulty_1pl": 1.3953545093536377, + "difficulty_2pl": 0.06349524110555649, + "discrimination_2pl": 0.14879311621189117, + "difficulty_simple": 0.11495897277976404, + "percent_correct": 0.47129186602870815, + "n_responses": 418 + }, + { + "problem_id": 42395, + "difficulty_1pl": -1.3692219257354736, + "difficulty_2pl": 0.05444745719432831, + "discrimination_2pl": 0.5018234848976135, + "difficulty_simple": -0.48165424646571064, + "percent_correct": 0.6181384248210023, + "n_responses": 419 + }, + { + "problem_id": 130191, + "difficulty_1pl": -3.2489383220672607, + "difficulty_2pl": -0.02701309509575367, + "discrimination_2pl": 0.2946925163269043, + "difficulty_simple": -0.7506710246981321, + "percent_correct": 0.679324894514768, + "n_responses": 237 + }, + { + "problem_id": 403777, + "difficulty_1pl": -3.0014703273773193, + "difficulty_2pl": -0.06566457450389862, + "discrimination_2pl": 0.33183905482292175, + "difficulty_simple": -0.769868729418555, + "percent_correct": 0.6834924965893588, + "n_responses": 733 + }, + { + "problem_id": 403421, + "difficulty_1pl": -4.435062408447266, + "difficulty_2pl": -0.2478942722082138, + "discrimination_2pl": 0.5246165990829468, + "difficulty_simple": -1.284400053438551, + "percent_correct": 0.7831978319783198, + "n_responses": 738 + }, + { + "problem_id": 73890, + "difficulty_1pl": -1.9401612281799316, + "difficulty_2pl": -0.16703662276268005, + "discrimination_2pl": 0.37942102551460266, + "difficulty_simple": -0.5862493855832325, + "percent_correct": 0.642504118616145, + "n_responses": 607 + }, + { + "problem_id": 74049, + "difficulty_1pl": -0.1636350005865097, + "difficulty_2pl": 0.23708316683769226, + "discrimination_2pl": 0.3874131143093109, + "difficulty_simple": -0.30910450803918765, + "percent_correct": 0.5766666666666667, + "n_responses": 600 + }, + { + "problem_id": 74204, + "difficulty_1pl": 0.8456804156303406, + "difficulty_2pl": 0.12483278661966324, + "discrimination_2pl": 0.29066434502601624, + "difficulty_simple": 0.044300258896579806, + "percent_correct": 0.4889267461669506, + "n_responses": 587 + }, + { + "problem_id": 408499, + "difficulty_1pl": -6.022340774536133, + "difficulty_2pl": -0.5037252902984619, + "discrimination_2pl": 0.5565472841262817, + "difficulty_simple": -1.22170324991016, + "percent_correct": 0.7723631508678238, + "n_responses": 1498 + }, + { + "problem_id": 25486, + "difficulty_1pl": -5.119576930999756, + "difficulty_2pl": -0.30428650975227356, + "discrimination_2pl": 0.497352659702301, + "difficulty_simple": -1.0795640936974154, + "percent_correct": 0.7464114832535885, + "n_responses": 1463 + }, + { + "problem_id": 25718, + "difficulty_1pl": -3.979292869567871, + "difficulty_2pl": -0.26710155606269836, + "discrimination_2pl": 0.5855836272239685, + "difficulty_simple": -1.2218304217259426, + "percent_correct": 0.7723855092276145, + "n_responses": 1463 + }, + { + "problem_id": 26005, + "difficulty_1pl": -3.762376070022583, + "difficulty_2pl": -0.5407094359397888, + "discrimination_2pl": 0.5206552147865295, + "difficulty_simple": -1.1677961638802143, + "percent_correct": 0.7627464309993202, + "n_responses": 1471 + }, + { + "problem_id": 26296, + "difficulty_1pl": -3.2313270568847656, + "difficulty_2pl": -0.16480769217014313, + "discrimination_2pl": 0.4294452965259552, + "difficulty_simple": -0.8189063302863379, + "percent_correct": 0.6940041350792557, + "n_responses": 1451 + }, + { + "problem_id": 316168, + "difficulty_1pl": 1.9619554281234741, + "difficulty_2pl": 0.48098742961883545, + "discrimination_2pl": 0.22977885603904724, + "difficulty_simple": 0.4522362223005598, + "percent_correct": 0.38882921589688507, + "n_responses": 931 + }, + { + "problem_id": 316462, + "difficulty_1pl": 1.0608363151550293, + "difficulty_2pl": 0.33271998167037964, + "discrimination_2pl": 0.3534257113933563, + "difficulty_simple": 0.08382993891741905, + "percent_correct": 0.4790547798066595, + "n_responses": 931 + }, + { + "problem_id": 407631, + "difficulty_1pl": 5.279690265655518, + "difficulty_2pl": 0.15664884448051453, + "discrimination_2pl": 0.08833664655685425, + "difficulty_simple": 1.083819119490279, + "percent_correct": 0.25278396436525613, + "n_responses": 898 + }, + { + "problem_id": 407999, + "difficulty_1pl": 2.0655815601348877, + "difficulty_2pl": 0.5650085806846619, + "discrimination_2pl": 0.41960832476615906, + "difficulty_simple": 0.30524349938172807, + "percent_correct": 0.4242761692650334, + "n_responses": 898 + }, + { + "problem_id": 88, + "difficulty_1pl": -0.12748850882053375, + "difficulty_2pl": -0.020534895360469818, + "discrimination_2pl": 0.19846752285957336, + "difficulty_simple": -0.43800865584063564, + "percent_correct": 0.6077844311377245, + "n_responses": 334 + }, + { + "problem_id": 61531, + "difficulty_1pl": 0.6867906451225281, + "difficulty_2pl": 0.11350397020578384, + "discrimination_2pl": 0.2772955000400543, + "difficulty_simple": 0.06360524995457266, + "percent_correct": 0.4841040462427746, + "n_responses": 1384 + }, + { + "problem_id": 60187, + "difficulty_1pl": -7.435809135437012, + "difficulty_2pl": -0.6428191661834717, + "discrimination_2pl": 0.5332943201065063, + "difficulty_simple": -1.3688520584565484, + "percent_correct": 0.7971946230274694, + "n_responses": 1711 + }, + { + "problem_id": 60534, + "difficulty_1pl": -4.308709144592285, + "difficulty_2pl": -0.3042994439601898, + "discrimination_2pl": 0.4445611238479614, + "difficulty_simple": -0.8206739916750321, + "percent_correct": 0.6943793911007026, + "n_responses": 1708 + }, + { + "problem_id": 60862, + "difficulty_1pl": -2.084045648574829, + "difficulty_2pl": -0.34563881158828735, + "discrimination_2pl": 0.4727207124233246, + "difficulty_simple": -0.81262513187632, + "percent_correct": 0.6926686217008797, + "n_responses": 1705 + }, + { + "problem_id": 61160, + "difficulty_1pl": -4.5312581062316895, + "difficulty_2pl": -0.4834270775318146, + "discrimination_2pl": 0.45291343331336975, + "difficulty_simple": -1.1925441085023132, + "percent_correct": 0.7671957671957672, + "n_responses": 1701 + }, + { + "problem_id": 62186, + "difficulty_1pl": 3.9632973670959473, + "difficulty_2pl": 0.16683799028396606, + "discrimination_2pl": 0.05524183437228203, + "difficulty_simple": 0.9714706941423582, + "percent_correct": 0.2745874587458746, + "n_responses": 1515 + }, + { + "problem_id": 405351, + "difficulty_1pl": -2.1162796020507812, + "difficulty_2pl": -0.0037232553586363792, + "discrimination_2pl": 0.3647955060005188, + "difficulty_simple": -0.9615773215124047, + "percent_correct": 0.7234375, + "n_responses": 640 + }, + { + "problem_id": 86471, + "difficulty_1pl": 1.315700650215149, + "difficulty_2pl": 0.26663967967033386, + "discrimination_2pl": 0.17801006138324738, + "difficulty_simple": 0.17834540841431518, + "percent_correct": 0.455531453362256, + "n_responses": 1383 + }, + { + "problem_id": 86791, + "difficulty_1pl": 1.2509108781814575, + "difficulty_2pl": 0.4279273450374603, + "discrimination_2pl": 0.2820550203323364, + "difficulty_simple": 0.25075871834718305, + "percent_correct": 0.437636761487965, + "n_responses": 1371 + }, + { + "problem_id": 87369, + "difficulty_1pl": 5.907926559448242, + "difficulty_2pl": 0.16101716458797455, + "discrimination_2pl": 0.057763248682022095, + "difficulty_simple": 0.7896322185373944, + "percent_correct": 0.3122476446837147, + "n_responses": 1486 + }, + { + "problem_id": 87154, + "difficulty_1pl": -2.6042823791503906, + "difficulty_2pl": 0.03218521550297737, + "discrimination_2pl": 0.5229513049125671, + "difficulty_simple": -0.6293805622009561, + "percent_correct": 0.6523489932885906, + "n_responses": 1490 + }, + { + "problem_id": 86074, + "difficulty_1pl": 0.6903024315834045, + "difficulty_2pl": 0.4220173954963684, + "discrimination_2pl": 0.431140273809433, + "difficulty_simple": -0.1936322256904402, + "percent_correct": 0.5482573726541555, + "n_responses": 1492 + }, + { + "problem_id": 85726, + "difficulty_1pl": 0.17301486432552338, + "difficulty_2pl": 0.31118807196617126, + "discrimination_2pl": 0.41696467995643616, + "difficulty_simple": -0.24809599575771615, + "percent_correct": 0.561707805203469, + "n_responses": 1499 + }, + { + "problem_id": 87614, + "difficulty_1pl": 1.140794038772583, + "difficulty_2pl": 0.19405466318130493, + "discrimination_2pl": 0.36451464891433716, + "difficulty_simple": -0.16849355518666265, + "percent_correct": 0.5420240137221269, + "n_responses": 1749 + }, + { + "problem_id": 156040, + "difficulty_1pl": 1.1286879777908325, + "difficulty_2pl": 0.5684760212898254, + "discrimination_2pl": 0.31434687972068787, + "difficulty_simple": -0.06559728248581335, + "percent_correct": 0.5163934426229508, + "n_responses": 1220 + }, + { + "problem_id": 156315, + "difficulty_1pl": 0.9653279781341553, + "difficulty_2pl": 0.36893418431282043, + "discrimination_2pl": 0.42580077052116394, + "difficulty_simple": -0.16153454532951148, + "percent_correct": 0.540296052631579, + "n_responses": 1216 + }, + { + "problem_id": 156598, + "difficulty_1pl": 8.286815643310547, + "difficulty_2pl": -0.043507859110832214, + "discrimination_2pl": 0.017341403290629387, + "difficulty_simple": 1.4860588912735957, + "percent_correct": 0.18451400329489293, + "n_responses": 1214 + }, + { + "problem_id": 215152, + "difficulty_1pl": 3.6458027362823486, + "difficulty_2pl": -0.004529344849288464, + "discrimination_2pl": 0.037790168076753616, + "difficulty_simple": 0.4583875095625069, + "percent_correct": 0.3873684210526316, + "n_responses": 475 + }, + { + "problem_id": 146018, + "difficulty_1pl": 1.750388503074646, + "difficulty_2pl": 0.054249707609415054, + "discrimination_2pl": 0.08933988213539124, + "difficulty_simple": 0.1823215567939546, + "percent_correct": 0.45454545454545453, + "n_responses": 154 + }, + { + "problem_id": 146150, + "difficulty_1pl": 0.6450211405754089, + "difficulty_2pl": -0.034328311681747437, + "discrimination_2pl": 0.16134139895439148, + "difficulty_simple": -0.07898841131863044, + "percent_correct": 0.5197368421052632, + "n_responses": 152 + }, + { + "problem_id": 156721, + "difficulty_1pl": -15.486289024353027, + "difficulty_2pl": -0.20028884708881378, + "discrimination_2pl": 0.38077592849731445, + "difficulty_simple": -2.452330479353388, + "percent_correct": 0.9207317073170732, + "n_responses": 164 + }, + { + "problem_id": 24106, + "difficulty_1pl": 3.3364503383636475, + "difficulty_2pl": 0.07419876754283905, + "discrimination_2pl": 0.1433366984128952, + "difficulty_simple": 0.26469255422708216, + "percent_correct": 0.4342105263157895, + "n_responses": 836 + }, + { + "problem_id": 24916, + "difficulty_1pl": -7.230986595153809, + "difficulty_2pl": -0.3595322072505951, + "discrimination_2pl": 0.5229604244232178, + "difficulty_simple": -1.5637833230756366, + "percent_correct": 0.82689556509299, + "n_responses": 699 + }, + { + "problem_id": 343945, + "difficulty_1pl": -4.9099249839782715, + "difficulty_2pl": -0.08373939245939255, + "discrimination_2pl": 0.39792147278785706, + "difficulty_simple": -1.0986122886681098, + "percent_correct": 0.75, + "n_responses": 172 + }, + { + "problem_id": 343609, + "difficulty_1pl": -4.626399040222168, + "difficulty_2pl": -0.1585637778043747, + "discrimination_2pl": 0.35934823751449585, + "difficulty_simple": -1.0155456899694963, + "percent_correct": 0.7341040462427746, + "n_responses": 173 + }, + { + "problem_id": 343125, + "difficulty_1pl": -2.1746737957000732, + "difficulty_2pl": -0.045050784945487976, + "discrimination_2pl": 0.41842538118362427, + "difficulty_simple": -0.4809726606163094, + "percent_correct": 0.6179775280898876, + "n_responses": 178 + }, + { + "problem_id": 437233, + "difficulty_1pl": -3.5346434116363525, + "difficulty_2pl": -0.2713140845298767, + "discrimination_2pl": 0.395140677690506, + "difficulty_simple": -1.1175573749105587, + "percent_correct": 0.7535353535353535, + "n_responses": 495 + }, + { + "problem_id": 64079, + "difficulty_1pl": -10.539765357971191, + "difficulty_2pl": -0.48131564259529114, + "discrimination_2pl": 0.4870315492153168, + "difficulty_simple": -2.199280076518315, + "percent_correct": 0.9001848428835489, + "n_responses": 541 + }, + { + "problem_id": 17631, + "difficulty_1pl": -2.3699772357940674, + "difficulty_2pl": 0.04774974286556244, + "discrimination_2pl": 0.439683735370636, + "difficulty_simple": -0.7644719613818753, + "percent_correct": 0.6823238566131026, + "n_responses": 809 + }, + { + "problem_id": 17786, + "difficulty_1pl": -6.075138568878174, + "difficulty_2pl": -0.11091717332601547, + "discrimination_2pl": 0.5777630805969238, + "difficulty_simple": -1.1657515915057381, + "percent_correct": 0.7623762376237624, + "n_responses": 808 + }, + { + "problem_id": 17938, + "difficulty_1pl": -0.5255398750305176, + "difficulty_2pl": 0.12492283433675766, + "discrimination_2pl": 0.36883649230003357, + "difficulty_simple": -0.4168229999525738, + "percent_correct": 0.6027227722772277, + "n_responses": 808 + }, + { + "problem_id": 473981, + "difficulty_1pl": -7.9945855140686035, + "difficulty_2pl": -0.10626067221164703, + "discrimination_2pl": 0.2697601914405823, + "difficulty_simple": -1.3451362886263831, + "percent_correct": 0.7933333333333333, + "n_responses": 150 + }, + { + "problem_id": 37379, + "difficulty_1pl": -1.0214852094650269, + "difficulty_2pl": 0.010265965014696121, + "discrimination_2pl": 0.46031615138053894, + "difficulty_simple": -0.4244005851103684, + "percent_correct": 0.6045357902197024, + "n_responses": 1411 + }, + { + "problem_id": 101757, + "difficulty_1pl": 3.519080638885498, + "difficulty_2pl": 0.28175705671310425, + "discrimination_2pl": 0.09991613030433655, + "difficulty_simple": 0.4872951263557967, + "percent_correct": 0.3805309734513274, + "n_responses": 1243 + }, + { + "problem_id": 102054, + "difficulty_1pl": 1.5755187273025513, + "difficulty_2pl": 0.13192476332187653, + "discrimination_2pl": 0.19516980648040771, + "difficulty_simple": 0.16297502984775683, + "percent_correct": 0.45934618608549876, + "n_responses": 1193 + }, + { + "problem_id": 100386, + "difficulty_1pl": 3.355503559112549, + "difficulty_2pl": 0.2090652585029602, + "discrimination_2pl": 0.10780949145555496, + "difficulty_simple": 0.4530565906836659, + "percent_correct": 0.38863428047662696, + "n_responses": 1091 + }, + { + "problem_id": 61003, + "difficulty_1pl": -3.309657573699951, + "difficulty_2pl": -0.18470914661884308, + "discrimination_2pl": 0.49726608395576477, + "difficulty_simple": -0.9970160745451879, + "percent_correct": 0.7304714989444053, + "n_responses": 1421 + }, + { + "problem_id": 100712, + "difficulty_1pl": 1.2962400913238525, + "difficulty_2pl": 0.1570371836423874, + "discrimination_2pl": 0.26173290610313416, + "difficulty_simple": -0.15014265842971947, + "percent_correct": 0.5374653098982424, + "n_responses": 1081 + }, + { + "problem_id": 100983, + "difficulty_1pl": 1.7087855339050293, + "difficulty_2pl": 0.2586574852466583, + "discrimination_2pl": 0.3697715401649475, + "difficulty_simple": -0.22314355131420985, + "percent_correct": 0.5555555555555556, + "n_responses": 1071 + }, + { + "problem_id": 101254, + "difficulty_1pl": 0.9301972985267639, + "difficulty_2pl": 0.41071784496307373, + "discrimination_2pl": 0.3394456207752228, + "difficulty_simple": -0.007504725654067916, + "percent_correct": 0.50187617260788, + "n_responses": 1066 + }, + { + "problem_id": 61363, + "difficulty_1pl": -5.954810619354248, + "difficulty_2pl": -0.2318115532398224, + "discrimination_2pl": 0.48564496636390686, + "difficulty_simple": -1.0609784966678912, + "percent_correct": 0.7428774928774928, + "n_responses": 1404 + }, + { + "problem_id": 61761, + "difficulty_1pl": -4.598831653594971, + "difficulty_2pl": -0.04146305471658707, + "discrimination_2pl": 0.48082202672958374, + "difficulty_simple": -0.8849967436055548, + "percent_correct": 0.7078565980167811, + "n_responses": 1311 + }, + { + "problem_id": 62166, + "difficulty_1pl": -0.9878338575363159, + "difficulty_2pl": -0.040166713297367096, + "discrimination_2pl": 0.3974115252494812, + "difficulty_simple": -0.6264558060612732, + "percent_correct": 0.651685393258427, + "n_responses": 1246 + }, + { + "problem_id": 62539, + "difficulty_1pl": 1.0230809450149536, + "difficulty_2pl": 0.20489546656608582, + "discrimination_2pl": 0.27105513215065, + "difficulty_simple": -0.22434043954805583, + "percent_correct": 0.5558510638297872, + "n_responses": 1128 + }, + { + "problem_id": 62707, + "difficulty_1pl": -2.788382053375244, + "difficulty_2pl": 0.0750928595662117, + "discrimination_2pl": 0.5816763043403625, + "difficulty_simple": -0.9767625536291727, + "percent_correct": 0.7264653641207816, + "n_responses": 1126 + }, + { + "problem_id": 62872, + "difficulty_1pl": 0.7776175737380981, + "difficulty_2pl": 0.2926279604434967, + "discrimination_2pl": 0.3566993176937103, + "difficulty_simple": -0.3257769475044649, + "percent_correct": 0.5807314897413024, + "n_responses": 1121 + }, + { + "problem_id": 63037, + "difficulty_1pl": -3.752254009246826, + "difficulty_2pl": -0.08247379958629608, + "discrimination_2pl": 0.6741032004356384, + "difficulty_simple": -1.2666040199072393, + "percent_correct": 0.7801608579088471, + "n_responses": 1119 + }, + { + "problem_id": 69590, + "difficulty_1pl": -2.193021059036255, + "difficulty_2pl": -0.03357270359992981, + "discrimination_2pl": 0.4195310175418854, + "difficulty_simple": -0.5619549702885949, + "percent_correct": 0.6369047619047619, + "n_responses": 504 + }, + { + "problem_id": 301201, + "difficulty_1pl": 0.5501905679702759, + "difficulty_2pl": 0.010137973353266716, + "discrimination_2pl": 0.2386673241853714, + "difficulty_simple": -0.2396728532654202, + "percent_correct": 0.5596330275229358, + "n_responses": 436 + }, + { + "problem_id": 301410, + "difficulty_1pl": 3.1143956184387207, + "difficulty_2pl": 0.07611194998025894, + "discrimination_2pl": 0.19720174372196198, + "difficulty_simple": 0.2957142441490451, + "percent_correct": 0.42660550458715596, + "n_responses": 436 + }, + { + "problem_id": 11608, + "difficulty_1pl": -0.17473293840885162, + "difficulty_2pl": 0.04354192316532135, + "discrimination_2pl": 0.30072107911109924, + "difficulty_simple": -0.6679145550792206, + "percent_correct": 0.661036036036036, + "n_responses": 888 + }, + { + "problem_id": 14371, + "difficulty_1pl": -0.09517239034175873, + "difficulty_2pl": 0.12126681208610535, + "discrimination_2pl": 0.27333056926727295, + "difficulty_simple": -0.4528478125097169, + "percent_correct": 0.6113161131611317, + "n_responses": 813 + }, + { + "problem_id": 175643, + "difficulty_1pl": -0.6416788697242737, + "difficulty_2pl": -0.011531083844602108, + "discrimination_2pl": 0.14641523361206055, + "difficulty_simple": -0.14413390158378706, + "percent_correct": 0.5359712230215827, + "n_responses": 834 + }, + { + "problem_id": 14554, + "difficulty_1pl": -1.886866807937622, + "difficulty_2pl": 0.062281329184770584, + "discrimination_2pl": 0.31611213088035583, + "difficulty_simple": -0.6729444732424258, + "percent_correct": 0.6621621621621622, + "n_responses": 814 + }, + { + "problem_id": 11914, + "difficulty_1pl": -4.9218220710754395, + "difficulty_2pl": -0.17469258606433868, + "discrimination_2pl": 0.5326059460639954, + "difficulty_simple": -1.4133445386529166, + "percent_correct": 0.8042929292929293, + "n_responses": 792 + }, + { + "problem_id": 12177, + "difficulty_1pl": 0.26819881796836853, + "difficulty_2pl": 0.16663870215415955, + "discrimination_2pl": 0.3559163808822632, + "difficulty_simple": -0.47783710570772003, + "percent_correct": 0.6172370088719898, + "n_responses": 789 + }, + { + "problem_id": 414444, + "difficulty_1pl": 5.309703350067139, + "difficulty_2pl": 0.12182720750570297, + "discrimination_2pl": 0.041773244738578796, + "difficulty_simple": 0.7325395822706062, + "percent_correct": 0.32463768115942027, + "n_responses": 690 + }, + { + "problem_id": 414639, + "difficulty_1pl": -6.515253067016602, + "difficulty_2pl": -0.2116120308637619, + "discrimination_2pl": 0.6000624895095825, + "difficulty_simple": -1.3752850756115216, + "percent_correct": 0.7982326951399117, + "n_responses": 679 + }, + { + "problem_id": 414817, + "difficulty_1pl": -5.038963794708252, + "difficulty_2pl": -0.11366315186023712, + "discrimination_2pl": 0.4923207759857178, + "difficulty_simple": -1.1205911953868846, + "percent_correct": 0.7540983606557377, + "n_responses": 671 + }, + { + "problem_id": 63725, + "difficulty_1pl": -1.1324923038482666, + "difficulty_2pl": -0.08219970762729645, + "discrimination_2pl": 0.2984594702720642, + "difficulty_simple": -0.2586945355785286, + "percent_correct": 0.5643153526970954, + "n_responses": 482 + }, + { + "problem_id": 591850, + "difficulty_1pl": -1.234475016593933, + "difficulty_2pl": -0.057773422449827194, + "discrimination_2pl": 0.3056049942970276, + "difficulty_simple": -0.5238977053333433, + "percent_correct": 0.6280587275693311, + "n_responses": 613 + }, + { + "problem_id": 592027, + "difficulty_1pl": -1.142356038093567, + "difficulty_2pl": 0.02654172107577324, + "discrimination_2pl": 0.32522013783454895, + "difficulty_simple": -0.4013751228566393, + "percent_correct": 0.5990180032733224, + "n_responses": 611 + }, + { + "problem_id": 592258, + "difficulty_1pl": -5.150420188903809, + "difficulty_2pl": -0.28156742453575134, + "discrimination_2pl": 0.5077039003372192, + "difficulty_simple": -1.240077808968052, + "percent_correct": 0.7755775577557755, + "n_responses": 606 + }, + { + "problem_id": 22967, + "difficulty_1pl": 1.2308303117752075, + "difficulty_2pl": 0.08364783227443695, + "discrimination_2pl": 0.14220064878463745, + "difficulty_simple": -0.06669137449867239, + "percent_correct": 0.5166666666666667, + "n_responses": 60 + }, + { + "problem_id": 23819, + "difficulty_1pl": -1.5346447229385376, + "difficulty_2pl": -0.0735708549618721, + "discrimination_2pl": 0.1180167943239212, + "difficulty_simple": -0.42381424677636076, + "percent_correct": 0.6043956043956044, + "n_responses": 91 + }, + { + "problem_id": 24277, + "difficulty_1pl": 0.657436728477478, + "difficulty_2pl": 0.19895602762699127, + "discrimination_2pl": 0.10066886246204376, + "difficulty_simple": -0.023530497410194046, + "percent_correct": 0.5058823529411764, + "n_responses": 85 + }, + { + "problem_id": 172779, + "difficulty_1pl": 3.851820707321167, + "difficulty_2pl": 0.018153756856918335, + "discrimination_2pl": 0.07506798207759857, + "difficulty_simple": 0.39287192508333757, + "percent_correct": 0.4030261348005502, + "n_responses": 727 + }, + { + "problem_id": 173140, + "difficulty_1pl": 4.802802085876465, + "difficulty_2pl": -0.036181479692459106, + "discrimination_2pl": 0.04352443292737007, + "difficulty_simple": 0.7130373390391649, + "percent_correct": 0.328928046989721, + "n_responses": 681 + }, + { + "problem_id": 173266, + "difficulty_1pl": 4.032911777496338, + "difficulty_2pl": 0.025915127247571945, + "discrimination_2pl": 0.03550402447581291, + "difficulty_simple": 0.816415693493, + "percent_correct": 0.30652503793626706, + "n_responses": 659 + }, + { + "problem_id": 173797, + "difficulty_1pl": 4.584435939788818, + "difficulty_2pl": 0.17874830961227417, + "discrimination_2pl": 0.04426812008023262, + "difficulty_simple": 0.6505875661411494, + "percent_correct": 0.34285714285714286, + "n_responses": 595 + }, + { + "problem_id": 173917, + "difficulty_1pl": 3.6654858589172363, + "difficulty_2pl": 0.1073630154132843, + "discrimination_2pl": 0.09345889836549759, + "difficulty_simple": 0.4040456614539382, + "percent_correct": 0.40034071550255534, + "n_responses": 587 + }, + { + "problem_id": 174042, + "difficulty_1pl": 2.0598995685577393, + "difficulty_2pl": 0.11122008413076401, + "discrimination_2pl": 0.14262478053569794, + "difficulty_simple": 0.10956220251152643, + "percent_correct": 0.472636815920398, + "n_responses": 603 + }, + { + "problem_id": 174455, + "difficulty_1pl": -0.6876771450042725, + "difficulty_2pl": 0.03180892765522003, + "discrimination_2pl": 0.3346581757068634, + "difficulty_simple": -0.4581535893282396, + "percent_correct": 0.6125760649087221, + "n_responses": 493 + }, + { + "problem_id": 12985, + "difficulty_1pl": 2.1476879119873047, + "difficulty_2pl": 0.17408950626850128, + "discrimination_2pl": 0.22345872223377228, + "difficulty_simple": 0.11951378154521142, + "percent_correct": 0.4701570680628272, + "n_responses": 955 + }, + { + "problem_id": 13384, + "difficulty_1pl": -8.537379264831543, + "difficulty_2pl": -0.3862255811691284, + "discrimination_2pl": 0.5373116731643677, + "difficulty_simple": -1.4309798504651905, + "percent_correct": 0.8070539419087137, + "n_responses": 964 + }, + { + "problem_id": 14173, + "difficulty_1pl": 4.685490131378174, + "difficulty_2pl": -0.016499480232596397, + "discrimination_2pl": 0.0596173033118248, + "difficulty_simple": 0.5637480252203332, + "percent_correct": 0.36268068331143233, + "n_responses": 761 + }, + { + "problem_id": 8680, + "difficulty_1pl": 3.1426844596862793, + "difficulty_2pl": 0.1689484864473343, + "discrimination_2pl": 0.07963667064905167, + "difficulty_simple": 0.5713753083423291, + "percent_correct": 0.36091954022988504, + "n_responses": 435 + }, + { + "problem_id": 262674, + "difficulty_1pl": -9.02006721496582, + "difficulty_2pl": -0.1755485236644745, + "discrimination_2pl": 0.49947649240493774, + "difficulty_simple": -1.8538912503350615, + "percent_correct": 0.8645833333333334, + "n_responses": 192 + }, + { + "problem_id": 448752, + "difficulty_1pl": 5.491929531097412, + "difficulty_2pl": 0.25930628180503845, + "discrimination_2pl": 0.06018533557653427, + "difficulty_simple": 0.6672836699700259, + "percent_correct": 0.33910533910533913, + "n_responses": 1386 + }, + { + "problem_id": 449067, + "difficulty_1pl": 2.759723663330078, + "difficulty_2pl": 0.26044875383377075, + "discrimination_2pl": 0.1989009827375412, + "difficulty_simple": 0.4075859996773021, + "percent_correct": 0.3994910941475827, + "n_responses": 1179 + }, + { + "problem_id": 203679, + "difficulty_1pl": 0.2630433142185211, + "difficulty_2pl": 0.0706368014216423, + "discrimination_2pl": 0.20246848464012146, + "difficulty_simple": -0.5531599875925511, + "percent_correct": 0.6348684210526315, + "n_responses": 912 + }, + { + "problem_id": 204143, + "difficulty_1pl": -1.720350742340088, + "difficulty_2pl": 0.011265337467193604, + "discrimination_2pl": 0.40254849195480347, + "difficulty_simple": -0.8608115795539264, + "percent_correct": 0.7028301886792453, + "n_responses": 636 + }, + { + "problem_id": 204910, + "difficulty_1pl": -5.898579120635986, + "difficulty_2pl": -0.1381269097328186, + "discrimination_2pl": 0.514535665512085, + "difficulty_simple": -1.1570230508245245, + "percent_correct": 0.7607913669064749, + "n_responses": 556 + }, + { + "problem_id": 91787, + "difficulty_1pl": -3.1532630920410156, + "difficulty_2pl": -0.08142555505037308, + "discrimination_2pl": 0.4627908170223236, + "difficulty_simple": -0.8926808662350212, + "percent_correct": 0.7094430992736077, + "n_responses": 826 + }, + { + "problem_id": 94419, + "difficulty_1pl": -4.276141166687012, + "difficulty_2pl": 0.1455487757921219, + "discrimination_2pl": 0.5181543827056885, + "difficulty_simple": -1.1247575687724323, + "percent_correct": 0.7548701298701299, + "n_responses": 616 + }, + { + "problem_id": 94291, + "difficulty_1pl": -1.735234022140503, + "difficulty_2pl": -0.02145952545106411, + "discrimination_2pl": 0.4795631766319275, + "difficulty_simple": -0.9174329364529321, + "percent_correct": 0.7145187601957586, + "n_responses": 613 + }, + { + "problem_id": 94160, + "difficulty_1pl": -0.15061363577842712, + "difficulty_2pl": 0.23157767951488495, + "discrimination_2pl": 0.4510597884654999, + "difficulty_simple": -0.7751207635196178, + "percent_correct": 0.6846275752773375, + "n_responses": 631 + }, + { + "problem_id": 93346, + "difficulty_1pl": -8.542353630065918, + "difficulty_2pl": -0.1398739218711853, + "discrimination_2pl": 0.40069708228111267, + "difficulty_simple": -1.4441139320087168, + "percent_correct": 0.8090909090909091, + "n_responses": 330 + }, + { + "problem_id": 307360, + "difficulty_1pl": -6.874253273010254, + "difficulty_2pl": 0.034181199967861176, + "discrimination_2pl": 0.16800948977470398, + "difficulty_simple": -1.5621850275835547, + "percent_correct": 0.8266666666666667, + "n_responses": 150 + }, + { + "problem_id": 307493, + "difficulty_1pl": -8.27616024017334, + "difficulty_2pl": -0.06390886008739471, + "discrimination_2pl": 0.16053293645381927, + "difficulty_simple": -1.7531446331002754, + "percent_correct": 0.8523489932885906, + "n_responses": 149 + }, + { + "problem_id": 284643, + "difficulty_1pl": 1.955788016319275, + "difficulty_2pl": 0.10327928513288498, + "discrimination_2pl": 0.181619331240654, + "difficulty_simple": 0.2066142493629992, + "percent_correct": 0.4485294117647059, + "n_responses": 544 + }, + { + "problem_id": 55274, + "difficulty_1pl": 2.2801284790039062, + "difficulty_2pl": 0.7766196131706238, + "discrimination_2pl": 0.3608734905719757, + "difficulty_simple": 0.1383752200173846, + "percent_correct": 0.46546128882707466, + "n_responses": 2157 + }, + { + "problem_id": 54241, + "difficulty_1pl": -2.386920213699341, + "difficulty_2pl": 0.09649480879306793, + "discrimination_2pl": 0.4321269989013672, + "difficulty_simple": -0.5876342374953761, + "percent_correct": 0.6428221460068594, + "n_responses": 2041 + }, + { + "problem_id": 54627, + "difficulty_1pl": -0.39072713255882263, + "difficulty_2pl": 0.2959402799606323, + "discrimination_2pl": 0.43947795033454895, + "difficulty_simple": -0.28229847936830826, + "percent_correct": 0.5701096364685516, + "n_responses": 1733 + }, + { + "problem_id": 55569, + "difficulty_1pl": -4.939315319061279, + "difficulty_2pl": -0.4221702218055725, + "discrimination_2pl": 0.4688448905944824, + "difficulty_simple": -1.1366056851073245, + "percent_correct": 0.7570558937465413, + "n_responses": 1807 + }, + { + "problem_id": 55829, + "difficulty_1pl": -3.884108543395996, + "difficulty_2pl": -0.3664456903934479, + "discrimination_2pl": 0.5710341334342957, + "difficulty_simple": -1.0884155506475948, + "percent_correct": 0.7480832420591457, + "n_responses": 1826 + }, + { + "problem_id": 56136, + "difficulty_1pl": -2.088456153869629, + "difficulty_2pl": 0.05650275573134422, + "discrimination_2pl": 0.4219226539134979, + "difficulty_simple": -0.6264015010298987, + "percent_correct": 0.6516730663741086, + "n_responses": 1823 + }, + { + "problem_id": 56457, + "difficulty_1pl": -7.482598781585693, + "difficulty_2pl": -0.41973355412483215, + "discrimination_2pl": 0.6609199047088623, + "difficulty_simple": -1.1795553295257195, + "percent_correct": 0.7648678414096917, + "n_responses": 1816 + }, + { + "problem_id": 117735, + "difficulty_1pl": -5.138064861297607, + "difficulty_2pl": -0.2787792980670929, + "discrimination_2pl": 0.42501896619796753, + "difficulty_simple": -1.3229527282161653, + "percent_correct": 0.7896725440806045, + "n_responses": 794 + }, + { + "problem_id": 117994, + "difficulty_1pl": -6.229931831359863, + "difficulty_2pl": -0.3980504274368286, + "discrimination_2pl": 0.44952309131622314, + "difficulty_simple": -1.359201070464365, + "percent_correct": 0.7956298200514139, + "n_responses": 778 + }, + { + "problem_id": 27697, + "difficulty_1pl": -2.973839521408081, + "difficulty_2pl": -0.34510716795921326, + "discrimination_2pl": 0.31029319763183594, + "difficulty_simple": -0.8805862177010553, + "percent_correct": 0.7069436850738108, + "n_responses": 1829 + }, + { + "problem_id": 28051, + "difficulty_1pl": -3.2908542156219482, + "difficulty_2pl": -0.44696393609046936, + "discrimination_2pl": 0.394337922334671, + "difficulty_simple": -1.0380794394392674, + "percent_correct": 0.738479262672811, + "n_responses": 1736 + }, + { + "problem_id": 28432, + "difficulty_1pl": -3.3209927082061768, + "difficulty_2pl": 0.03239890933036804, + "discrimination_2pl": 0.53813636302948, + "difficulty_simple": -0.8545508386922189, + "percent_correct": 0.7015209125475285, + "n_responses": 1578 + }, + { + "problem_id": 29501, + "difficulty_1pl": -9.297950744628906, + "difficulty_2pl": -0.6142616271972656, + "discrimination_2pl": 0.54660964012146, + "difficulty_simple": -1.513580708039102, + "percent_correct": 0.8195912614517266, + "n_responses": 1419 + }, + { + "problem_id": 286756, + "difficulty_1pl": 0.556225061416626, + "difficulty_2pl": 0.3694820702075958, + "discrimination_2pl": 0.34694939851760864, + "difficulty_simple": -0.2752595524532236, + "percent_correct": 0.5683836589698046, + "n_responses": 1126 + }, + { + "problem_id": 287230, + "difficulty_1pl": 0.0891590565443039, + "difficulty_2pl": 0.28146088123321533, + "discrimination_2pl": 0.3852834105491638, + "difficulty_simple": -0.5414510372768546, + "percent_correct": 0.6321499013806706, + "n_responses": 1014 + }, + { + "problem_id": 287601, + "difficulty_1pl": -4.074947834014893, + "difficulty_2pl": -0.13972479104995728, + "discrimination_2pl": 0.6444262266159058, + "difficulty_simple": -1.0999830908018884, + "percent_correct": 0.750256937307297, + "n_responses": 973 + }, + { + "problem_id": 287949, + "difficulty_1pl": -5.4569597244262695, + "difficulty_2pl": -0.05881926044821739, + "discrimination_2pl": 0.5908811092376709, + "difficulty_simple": -1.1715759173939624, + "percent_correct": 0.7634297520661157, + "n_responses": 968 + }, + { + "problem_id": 288360, + "difficulty_1pl": -1.534581184387207, + "difficulty_2pl": 0.06018582358956337, + "discrimination_2pl": 0.2597026228904724, + "difficulty_simple": -0.5703110770521704, + "percent_correct": 0.6388349514563106, + "n_responses": 1030 + }, + { + "problem_id": 78269, + "difficulty_1pl": -5.778772830963135, + "difficulty_2pl": 0.0032923538237810135, + "discrimination_2pl": 0.43867170810699463, + "difficulty_simple": -1.3758230612525957, + "percent_correct": 0.7983193277310925, + "n_responses": 238 + }, + { + "problem_id": 117528, + "difficulty_1pl": -0.29174211621284485, + "difficulty_2pl": 0.08097904175519943, + "discrimination_2pl": 0.30024388432502747, + "difficulty_simple": -0.43220466915006384, + "percent_correct": 0.6064, + "n_responses": 625 + }, + { + "problem_id": 301355, + "difficulty_1pl": 0.9558805227279663, + "difficulty_2pl": 0.05240729823708534, + "discrimination_2pl": 0.14613239467144012, + "difficulty_simple": 0.11607217125275403, + "percent_correct": 0.47101449275362317, + "n_responses": 138 + }, + { + "problem_id": 301541, + "difficulty_1pl": 1.7640630006790161, + "difficulty_2pl": 0.10899768769741058, + "discrimination_2pl": 0.16235868632793427, + "difficulty_simple": 0.13976194237515882, + "percent_correct": 0.46511627906976744, + "n_responses": 86 + }, + { + "problem_id": 301764, + "difficulty_1pl": 4.770955562591553, + "difficulty_2pl": 0.06931813806295395, + "discrimination_2pl": 0.03791412338614464, + "difficulty_simple": 1.1151415906193203, + "percent_correct": 0.24691358024691357, + "n_responses": 81 + }, + { + "problem_id": 105953, + "difficulty_1pl": 2.237699270248413, + "difficulty_2pl": 0.06514793634414673, + "discrimination_2pl": 0.024501794949173927, + "difficulty_simple": 0.26495382137422485, + "percent_correct": 0.43414634146341463, + "n_responses": 410 + }, + { + "problem_id": 106336, + "difficulty_1pl": -11.145088195800781, + "difficulty_2pl": -0.3459495007991791, + "discrimination_2pl": 0.4003186523914337, + "difficulty_simple": -1.9348603128687278, + "percent_correct": 0.8737864077669902, + "n_responses": 412 + }, + { + "problem_id": 77528, + "difficulty_1pl": -7.44053316116333, + "difficulty_2pl": -0.7197844386100769, + "discrimination_2pl": 0.8285529017448425, + "difficulty_simple": -2.011454200694903, + "percent_correct": 0.881994459833795, + "n_responses": 1805 + }, + { + "problem_id": 77688, + "difficulty_1pl": -0.9092143177986145, + "difficulty_2pl": 0.06823860108852386, + "discrimination_2pl": 0.5028073787689209, + "difficulty_simple": -0.6898026958370982, + "percent_correct": 0.6659230340211936, + "n_responses": 1793 + }, + { + "problem_id": 77847, + "difficulty_1pl": -5.984907150268555, + "difficulty_2pl": -0.30440494418144226, + "discrimination_2pl": 0.5683201551437378, + "difficulty_simple": -1.259268231768816, + "percent_correct": 0.7789001122334456, + "n_responses": 1782 + }, + { + "problem_id": 78012, + "difficulty_1pl": -0.9838799238204956, + "difficulty_2pl": 0.14963014423847198, + "discrimination_2pl": 0.45772993564605713, + "difficulty_simple": -0.7460154162127562, + "percent_correct": 0.6783098591549296, + "n_responses": 1775 + }, + { + "problem_id": 78262, + "difficulty_1pl": 2.3314788341522217, + "difficulty_2pl": 0.08713133633136749, + "discrimination_2pl": 0.10083566606044769, + "difficulty_simple": 0.13085511722373602, + "percent_correct": 0.46733282090699463, + "n_responses": 1301 + }, + { + "problem_id": 78634, + "difficulty_1pl": -3.055295944213867, + "difficulty_2pl": -0.1310025006532669, + "discrimination_2pl": 0.4647875130176544, + "difficulty_simple": -1.1270012919307961, + "percent_correct": 0.755285073670724, + "n_responses": 1561 + }, + { + "problem_id": 78992, + "difficulty_1pl": -4.001003742218018, + "difficulty_2pl": -0.2584809362888336, + "discrimination_2pl": 0.4250226318836212, + "difficulty_simple": -1.069796735628801, + "percent_correct": 0.7445582586427657, + "n_responses": 1562 + }, + { + "problem_id": 79597, + "difficulty_1pl": -0.3648591935634613, + "difficulty_2pl": -2.1982647012919188e-05, + "discrimination_2pl": 0.2473328709602356, + "difficulty_simple": -0.3684536431313454, + "percent_correct": 0.5910852713178295, + "n_responses": 1032 + }, + { + "problem_id": 42715, + "difficulty_1pl": -0.16896136105060577, + "difficulty_2pl": 0.30966663360595703, + "discrimination_2pl": 0.41387489438056946, + "difficulty_simple": -0.38444962438677543, + "percent_correct": 0.5949458483754513, + "n_responses": 1385 + }, + { + "problem_id": 393425, + "difficulty_1pl": 0.39940398931503296, + "difficulty_2pl": 0.03090418316423893, + "discrimination_2pl": 0.0735372006893158, + "difficulty_simple": -0.20872952077850257, + "percent_correct": 0.5519937451133698, + "n_responses": 1279 + }, + { + "problem_id": 393738, + "difficulty_1pl": 0.27636420726776123, + "difficulty_2pl": 0.17412053048610687, + "discrimination_2pl": 0.350056916475296, + "difficulty_simple": -0.267723182947298, + "percent_correct": 0.5665338645418326, + "n_responses": 1255 + }, + { + "problem_id": 394487, + "difficulty_1pl": 2.4996321201324463, + "difficulty_2pl": 0.15417376160621643, + "discrimination_2pl": 0.19833198189735413, + "difficulty_simple": 0.09325749348658272, + "percent_correct": 0.4767025089605735, + "n_responses": 1116 + }, + { + "problem_id": 394746, + "difficulty_1pl": 3.8328588008880615, + "difficulty_2pl": 0.1591750979423523, + "discrimination_2pl": 0.12258441746234894, + "difficulty_simple": 0.326260172011364, + "percent_correct": 0.41915085817524844, + "n_responses": 1107 + }, + { + "problem_id": 395051, + "difficulty_1pl": 9.515771865844727, + "difficulty_2pl": 0.09389133006334305, + "discrimination_2pl": 0.023913482204079628, + "difficulty_simple": 1.172482137234565, + "percent_correct": 0.2364066193853428, + "n_responses": 846 + }, + { + "problem_id": 395419, + "difficulty_1pl": -9.436939239501953, + "difficulty_2pl": -0.337848037481308, + "discrimination_2pl": 0.6473049521446228, + "difficulty_simple": -1.538899445585368, + "percent_correct": 0.8233046800382043, + "n_responses": 1047 + }, + { + "problem_id": 395593, + "difficulty_1pl": -6.272998332977295, + "difficulty_2pl": -0.31229665875434875, + "discrimination_2pl": 0.6583653688430786, + "difficulty_simple": -1.428699260600651, + "percent_correct": 0.8066985645933015, + "n_responses": 1045 + }, + { + "problem_id": 97062, + "difficulty_1pl": -5.531108379364014, + "difficulty_2pl": -0.25023794174194336, + "discrimination_2pl": 0.35358530282974243, + "difficulty_simple": -1.0666183849928121, + "percent_correct": 0.74395329441201, + "n_responses": 1199 + }, + { + "problem_id": 97491, + "difficulty_1pl": -0.71956866979599, + "difficulty_2pl": 0.11536382883787155, + "discrimination_2pl": 0.4571782350540161, + "difficulty_simple": -0.709241163633208, + "percent_correct": 0.6702334630350194, + "n_responses": 1028 + }, + { + "problem_id": 97813, + "difficulty_1pl": 5.818638801574707, + "difficulty_2pl": 0.08107862621545792, + "discrimination_2pl": 0.055764615535736084, + "difficulty_simple": 0.6437902835898529, + "percent_correct": 0.344390243902439, + "n_responses": 1025 + }, + { + "problem_id": 98240, + "difficulty_1pl": 3.7329585552215576, + "difficulty_2pl": 0.3227967321872711, + "discrimination_2pl": 0.11616780608892441, + "difficulty_simple": 0.2979447643969081, + "percent_correct": 0.42605997931747674, + "n_responses": 967 + }, + { + "problem_id": 57665, + "difficulty_1pl": -0.057650431990623474, + "difficulty_2pl": 0.05761701241135597, + "discrimination_2pl": 0.24926576018333435, + "difficulty_simple": -0.19325982319352217, + "percent_correct": 0.5481651376146789, + "n_responses": 436 + }, + { + "problem_id": 47390, + "difficulty_1pl": -1.1638866662979126, + "difficulty_2pl": 0.004649707116186619, + "discrimination_2pl": 0.3313714265823364, + "difficulty_simple": -0.5212969236332861, + "percent_correct": 0.6274509803921569, + "n_responses": 867 + }, + { + "problem_id": 274694, + "difficulty_1pl": 1.1306259632110596, + "difficulty_2pl": 0.6086336374282837, + "discrimination_2pl": 0.35089394450187683, + "difficulty_simple": 0.0178492291586432, + "percent_correct": 0.49553781117895723, + "n_responses": 2129 + }, + { + "problem_id": 558351, + "difficulty_1pl": -9.846518516540527, + "difficulty_2pl": -0.7228055000305176, + "discrimination_2pl": 0.7936403155326843, + "difficulty_simple": -1.8982505672561671, + "percent_correct": 0.8696933962264151, + "n_responses": 1696 + }, + { + "problem_id": 558648, + "difficulty_1pl": -8.710084915161133, + "difficulty_2pl": -0.6108515858650208, + "discrimination_2pl": 0.6536391973495483, + "difficulty_simple": -1.4358168578009978, + "percent_correct": 0.807806031933767, + "n_responses": 1691 + }, + { + "problem_id": 558904, + "difficulty_1pl": -9.029616355895996, + "difficulty_2pl": -0.6090031862258911, + "discrimination_2pl": 0.7506250143051147, + "difficulty_simple": -1.5701897074939888, + "percent_correct": 0.827810650887574, + "n_responses": 1690 + }, + { + "problem_id": 559181, + "difficulty_1pl": -0.1411397010087967, + "difficulty_2pl": 0.02005019783973694, + "discrimination_2pl": 0.33732643723487854, + "difficulty_simple": -0.4118832984936995, + "percent_correct": 0.6015393724097099, + "n_responses": 1689 + }, + { + "problem_id": 559523, + "difficulty_1pl": -0.09220625460147858, + "difficulty_2pl": 0.12105163186788559, + "discrimination_2pl": 0.38663676381111145, + "difficulty_simple": -0.4005365619070154, + "percent_correct": 0.5988165680473373, + "n_responses": 1690 + }, + { + "problem_id": 81261, + "difficulty_1pl": 1.6044847965240479, + "difficulty_2pl": -0.060939230024814606, + "discrimination_2pl": 0.2052905261516571, + "difficulty_simple": 0.20067069546215124, + "percent_correct": 0.45, + "n_responses": 500 + }, + { + "problem_id": 81898, + "difficulty_1pl": -2.419832468032837, + "difficulty_2pl": 0.028866324573755264, + "discrimination_2pl": 0.3365654945373535, + "difficulty_simple": -0.5941416567844962, + "percent_correct": 0.6443148688046647, + "n_responses": 343 + }, + { + "problem_id": 81543, + "difficulty_1pl": 0.4710819721221924, + "difficulty_2pl": 0.1468140035867691, + "discrimination_2pl": 0.3570210933685303, + "difficulty_simple": -0.1898687624293373, + "percent_correct": 0.5473251028806584, + "n_responses": 486 + }, + { + "problem_id": 118786, + "difficulty_1pl": -4.207043170928955, + "difficulty_2pl": -0.3087499141693115, + "discrimination_2pl": 0.4535108506679535, + "difficulty_simple": -1.2614360497487966, + "percent_correct": 0.7792732166890982, + "n_responses": 743 + }, + { + "problem_id": 132787, + "difficulty_1pl": 1.5849875211715698, + "difficulty_2pl": 0.03399162366986275, + "discrimination_2pl": 0.15682370960712433, + "difficulty_simple": -0.029092960941664893, + "percent_correct": 0.5072727272727273, + "n_responses": 550 + }, + { + "problem_id": 119704, + "difficulty_1pl": -0.6359151601791382, + "difficulty_2pl": 0.07190466672182083, + "discrimination_2pl": 0.4119788706302643, + "difficulty_simple": -0.5019253742957268, + "percent_correct": 0.6229116945107399, + "n_responses": 419 + }, + { + "problem_id": 119836, + "difficulty_1pl": -1.3396494388580322, + "difficulty_2pl": 0.030990399420261383, + "discrimination_2pl": 0.3849393427371979, + "difficulty_simple": -0.5082746019743852, + "percent_correct": 0.6244019138755981, + "n_responses": 418 + }, + { + "problem_id": 119945, + "difficulty_1pl": -1.6042429208755493, + "difficulty_2pl": -0.005729189142584801, + "discrimination_2pl": 0.43051886558532715, + "difficulty_simple": -0.6248980800258386, + "percent_correct": 0.6513317191283293, + "n_responses": 413 + }, + { + "problem_id": 118504, + "difficulty_1pl": 0.830561101436615, + "difficulty_2pl": 0.1840517520904541, + "discrimination_2pl": 0.2928667664527893, + "difficulty_simple": -0.27516056565373975, + "percent_correct": 0.568359375, + "n_responses": 2048 + }, + { + "problem_id": 7396, + "difficulty_1pl": -3.6200854778289795, + "difficulty_2pl": 0.1118425726890564, + "discrimination_2pl": 0.2517107427120209, + "difficulty_simple": -0.7949298748698876, + "percent_correct": 0.6888888888888889, + "n_responses": 180 + }, + { + "problem_id": 156264, + "difficulty_1pl": 5.936730861663818, + "difficulty_2pl": 0.1998598426580429, + "discrimination_2pl": 0.05663161352276802, + "difficulty_simple": 1.0132326770663853, + "percent_correct": 0.266347687400319, + "n_responses": 1254 + }, + { + "problem_id": 149544, + "difficulty_1pl": 1.8873506784439087, + "difficulty_2pl": 0.33180877566337585, + "discrimination_2pl": 0.20290011167526245, + "difficulty_simple": -0.012920076365104508, + "percent_correct": 0.5032299741602068, + "n_responses": 1548 + }, + { + "problem_id": 155994, + "difficulty_1pl": 9.002820014953613, + "difficulty_2pl": 0.07388274371623993, + "discrimination_2pl": 0.028925521299242973, + "difficulty_simple": 1.092322959760546, + "percent_correct": 0.2511811023622047, + "n_responses": 1270 + }, + { + "problem_id": 167382, + "difficulty_1pl": -15.523775100708008, + "difficulty_2pl": -0.7742297053337097, + "discrimination_2pl": 0.614891767501831, + "difficulty_simple": -2.800325477211381, + "percent_correct": 0.9426934097421203, + "n_responses": 698 + }, + { + "problem_id": 167875, + "difficulty_1pl": 1.8482840061187744, + "difficulty_2pl": 0.07240989804267883, + "discrimination_2pl": 0.1010184958577156, + "difficulty_simple": 0.21926507198563908, + "percent_correct": 0.4454022988505747, + "n_responses": 696 + }, + { + "problem_id": 168353, + "difficulty_1pl": -15.8565092086792, + "difficulty_2pl": -0.7256163358688354, + "discrimination_2pl": 0.6877881288528442, + "difficulty_simple": -3.2219480239051714, + "percent_correct": 0.9616519174041298, + "n_responses": 678 + }, + { + "problem_id": 168820, + "difficulty_1pl": -8.243463516235352, + "difficulty_2pl": -0.49867793917655945, + "discrimination_2pl": 0.458994060754776, + "difficulty_simple": -1.6200013909436695, + "percent_correct": 0.8347953216374269, + "n_responses": 684 + }, + { + "problem_id": 170317, + "difficulty_1pl": 1.3627212047576904, + "difficulty_2pl": 0.052337925881147385, + "discrimination_2pl": 0.15585197508335114, + "difficulty_simple": -0.04893942904022168, + "percent_correct": 0.5122324159021406, + "n_responses": 654 + }, + { + "problem_id": 337756, + "difficulty_1pl": -2.5758728981018066, + "difficulty_2pl": 0.03580491617321968, + "discrimination_2pl": 0.48969003558158875, + "difficulty_simple": -0.7436310859919371, + "percent_correct": 0.6777893639207507, + "n_responses": 1918 + }, + { + "problem_id": 442685, + "difficulty_1pl": -0.42755335569381714, + "difficulty_2pl": -0.0734901875257492, + "discrimination_2pl": 0.4144921898841858, + "difficulty_simple": -0.6416506547927703, + "percent_correct": 0.6551264980026631, + "n_responses": 1502 + }, + { + "problem_id": 443136, + "difficulty_1pl": 0.1830761730670929, + "difficulty_2pl": 0.1369628757238388, + "discrimination_2pl": 0.4201156497001648, + "difficulty_simple": -0.3134144864182592, + "percent_correct": 0.5777184789859907, + "n_responses": 1499 + }, + { + "problem_id": 35102, + "difficulty_1pl": -4.630975723266602, + "difficulty_2pl": -0.3089379370212555, + "discrimination_2pl": 0.6253509521484375, + "difficulty_simple": -1.0528786729812267, + "percent_correct": 0.7413273001508296, + "n_responses": 1326 + }, + { + "problem_id": 77648, + "difficulty_1pl": 7.386162757873535, + "difficulty_2pl": 0.15735368430614471, + "discrimination_2pl": 0.019408956170082092, + "difficulty_simple": 0.9418862790631188, + "percent_correct": 0.2805194805194805, + "n_responses": 770 + }, + { + "problem_id": 78121, + "difficulty_1pl": -4.5936126708984375, + "difficulty_2pl": -0.1351030468940735, + "discrimination_2pl": 0.3734179735183716, + "difficulty_simple": -1.0659753593550871, + "percent_correct": 0.7438307873090482, + "n_responses": 851 + }, + { + "problem_id": 77267, + "difficulty_1pl": 1.0323033332824707, + "difficulty_2pl": 0.21208828687667847, + "discrimination_2pl": 0.3095736801624298, + "difficulty_simple": -0.29026138778426896, + "percent_correct": 0.5720601237842617, + "n_responses": 1131 + }, + { + "problem_id": 76912, + "difficulty_1pl": 1.4902193546295166, + "difficulty_2pl": 0.23078492283821106, + "discrimination_2pl": 0.2702016830444336, + "difficulty_simple": -0.157741347957987, + "percent_correct": 0.5393537696768849, + "n_responses": 1207 + }, + { + "problem_id": 242585, + "difficulty_1pl": -2.2878963947296143, + "difficulty_2pl": 0.00762667041271925, + "discrimination_2pl": 0.35477957129478455, + "difficulty_simple": -0.4543957315797448, + "percent_correct": 0.6116838487972509, + "n_responses": 291 + }, + { + "problem_id": 242782, + "difficulty_1pl": -0.1864539086818695, + "difficulty_2pl": 0.11829518526792526, + "discrimination_2pl": 0.22942312061786652, + "difficulty_simple": 0.013889112160667093, + "percent_correct": 0.4965277777777778, + "n_responses": 288 + }, + { + "problem_id": 232166, + "difficulty_1pl": 2.657040596008301, + "difficulty_2pl": -0.005704098381102085, + "discrimination_2pl": 0.07223860174417496, + "difficulty_simple": 0.36665285377120416, + "percent_correct": 0.40935005701254273, + "n_responses": 877 + }, + { + "problem_id": 199123, + "difficulty_1pl": 3.9259440898895264, + "difficulty_2pl": -0.004193974658846855, + "discrimination_2pl": 0.01979464292526245, + "difficulty_simple": 1.1160040313799788, + "percent_correct": 0.24675324675324675, + "n_responses": 77 + }, + { + "problem_id": 367113, + "difficulty_1pl": -2.865591049194336, + "difficulty_2pl": -0.13095299899578094, + "discrimination_2pl": 0.4617525041103363, + "difficulty_simple": -0.6865959170727236, + "percent_correct": 0.665209244222361, + "n_responses": 1601 + }, + { + "problem_id": 367429, + "difficulty_1pl": 0.19713151454925537, + "difficulty_2pl": 0.3646184802055359, + "discrimination_2pl": 0.3299233913421631, + "difficulty_simple": -0.3199608904091058, + "percent_correct": 0.5793147208121827, + "n_responses": 1576 + }, + { + "problem_id": 367805, + "difficulty_1pl": -4.326383113861084, + "difficulty_2pl": -0.5102503299713135, + "discrimination_2pl": 0.5628915429115295, + "difficulty_simple": -1.2503179795023018, + "percent_correct": 0.7773549000951475, + "n_responses": 2102 + }, + { + "problem_id": 368183, + "difficulty_1pl": -0.5362018346786499, + "difficulty_2pl": -0.030736062675714493, + "discrimination_2pl": 0.35682177543640137, + "difficulty_simple": -0.4440241017118473, + "percent_correct": 0.6092174747959673, + "n_responses": 2083 + }, + { + "problem_id": 368501, + "difficulty_1pl": -3.566894769668579, + "difficulty_2pl": -0.3398078382015228, + "discrimination_2pl": 0.5503086447715759, + "difficulty_simple": -1.0737306222913732, + "percent_correct": 0.745305729417429, + "n_responses": 2077 + }, + { + "problem_id": 368816, + "difficulty_1pl": -2.581676959991455, + "difficulty_2pl": -0.17802761495113373, + "discrimination_2pl": 0.5981225967407227, + "difficulty_simple": -0.8636916701628803, + "percent_correct": 0.7034313725490197, + "n_responses": 2040 + }, + { + "problem_id": 369146, + "difficulty_1pl": -1.5993236303329468, + "difficulty_2pl": -0.03913617506623268, + "discrimination_2pl": 0.44244804978370667, + "difficulty_simple": -0.629750864001151, + "percent_correct": 0.6524329692154915, + "n_responses": 2014 + }, + { + "problem_id": 369393, + "difficulty_1pl": 3.029273271560669, + "difficulty_2pl": 0.6702015399932861, + "discrimination_2pl": 0.3236313760280609, + "difficulty_simple": 0.17329893919431721, + "percent_correct": 0.45678336980306344, + "n_responses": 1828 + }, + { + "problem_id": 154770, + "difficulty_1pl": -4.0833821296691895, + "difficulty_2pl": -0.7741531729698181, + "discrimination_2pl": 0.5638056993484497, + "difficulty_simple": -1.3142611582200592, + "percent_correct": 0.7882253282507412, + "n_responses": 2361 + }, + { + "problem_id": 155183, + "difficulty_1pl": -1.4008853435516357, + "difficulty_2pl": 0.02036679908633232, + "discrimination_2pl": 0.4465220868587494, + "difficulty_simple": -0.5905088131901036, + "percent_correct": 0.6434818825489379, + "n_responses": 2401 + }, + { + "problem_id": 155484, + "difficulty_1pl": 3.0836539268493652, + "difficulty_2pl": 0.218631312251091, + "discrimination_2pl": 0.09564834088087082, + "difficulty_simple": 0.3416941806023648, + "percent_correct": 0.41539799913005654, + "n_responses": 2299 + }, + { + "problem_id": 155769, + "difficulty_1pl": -3.092628240585327, + "difficulty_2pl": -0.06323327124118805, + "discrimination_2pl": 0.5225523710250854, + "difficulty_simple": -0.8187784185883507, + "percent_correct": 0.6939769707705934, + "n_responses": 2258 + }, + { + "problem_id": 156087, + "difficulty_1pl": -3.1843655109405518, + "difficulty_2pl": -0.09674470871686935, + "discrimination_2pl": 0.44994959235191345, + "difficulty_simple": -0.6663718193118329, + "percent_correct": 0.660690273419991, + "n_responses": 2231 + }, + { + "problem_id": 156494, + "difficulty_1pl": 1.5171096324920654, + "difficulty_2pl": 0.6632624268531799, + "discrimination_2pl": 0.40572699904441833, + "difficulty_simple": 0.08384797247787569, + "percent_correct": 0.4790502793296089, + "n_responses": 2148 + }, + { + "problem_id": 181638, + "difficulty_1pl": -13.445993423461914, + "difficulty_2pl": -0.8262129426002502, + "discrimination_2pl": 0.7153477668762207, + "difficulty_simple": -1.9533451275428309, + "percent_correct": 0.8758109360518999, + "n_responses": 1079 + }, + { + "problem_id": 182080, + "difficulty_1pl": 2.193251371383667, + "difficulty_2pl": 0.21006079018115997, + "discrimination_2pl": 0.10810801386833191, + "difficulty_simple": 0.29330533000614306, + "percent_correct": 0.4271948608137045, + "n_responses": 934 + }, + { + "problem_id": 430257, + "difficulty_1pl": 2.042449951171875, + "difficulty_2pl": 0.07518726587295532, + "discrimination_2pl": 0.1493965983390808, + "difficulty_simple": 0.13733127053429728, + "percent_correct": 0.4657210401891253, + "n_responses": 423 + }, + { + "problem_id": 430376, + "difficulty_1pl": -0.2915459871292114, + "difficulty_2pl": 0.12428460270166397, + "discrimination_2pl": 0.3220517337322235, + "difficulty_simple": -0.25808160267549024, + "percent_correct": 0.5641646489104116, + "n_responses": 413 + }, + { + "problem_id": 382565, + "difficulty_1pl": -0.9000245332717896, + "difficulty_2pl": -0.004445897880941629, + "discrimination_2pl": 0.3823890686035156, + "difficulty_simple": -0.4698340083480342, + "percent_correct": 0.6153444676409185, + "n_responses": 1916 + }, + { + "problem_id": 382916, + "difficulty_1pl": 4.949766635894775, + "difficulty_2pl": 0.365047425031662, + "discrimination_2pl": 0.09456845372915268, + "difficulty_simple": 0.5733459807473248, + "percent_correct": 0.36046511627906974, + "n_responses": 1892 + }, + { + "problem_id": 386124, + "difficulty_1pl": 8.50938892364502, + "difficulty_2pl": 0.10332994908094406, + "discrimination_2pl": 0.06007397174835205, + "difficulty_simple": 1.0190018265167557, + "percent_correct": 0.26522187822497423, + "n_responses": 969 + }, + { + "problem_id": 236549, + "difficulty_1pl": 2.2530131340026855, + "difficulty_2pl": 0.15989620983600616, + "discrimination_2pl": 0.22707892954349518, + "difficulty_simple": 0.1299121342402095, + "percent_correct": 0.46756756756756757, + "n_responses": 740 + }, + { + "problem_id": 236767, + "difficulty_1pl": -2.7864530086517334, + "difficulty_2pl": -0.0211725365370512, + "discrimination_2pl": 0.30520862340927124, + "difficulty_simple": -0.4591536132216696, + "percent_correct": 0.6128133704735376, + "n_responses": 718 + }, + { + "problem_id": 236954, + "difficulty_1pl": -1.4069318771362305, + "difficulty_2pl": 0.11520484834909439, + "discrimination_2pl": 0.32818809151649475, + "difficulty_simple": -0.3781960799926129, + "percent_correct": 0.5934379457917262, + "n_responses": 701 + }, + { + "problem_id": 237129, + "difficulty_1pl": -1.2623294591903687, + "difficulty_2pl": 0.08206353336572647, + "discrimination_2pl": 0.36732956767082214, + "difficulty_simple": -0.6294313661738375, + "percent_correct": 0.6523605150214592, + "n_responses": 699 + }, + { + "problem_id": 237321, + "difficulty_1pl": 7.245367050170898, + "difficulty_2pl": 0.04945637285709381, + "discrimination_2pl": 0.046098578721284866, + "difficulty_simple": 1.2195981222290169, + "percent_correct": 0.22800718132854578, + "n_responses": 557 + }, + { + "problem_id": 387984, + "difficulty_1pl": 1.2287534475326538, + "difficulty_2pl": 0.2913063168525696, + "discrimination_2pl": 0.32009387016296387, + "difficulty_simple": -0.1526918903635984, + "percent_correct": 0.5380989787902593, + "n_responses": 1273 + }, + { + "problem_id": 388358, + "difficulty_1pl": -3.671990394592285, + "difficulty_2pl": -0.29361552000045776, + "discrimination_2pl": 0.6059022545814514, + "difficulty_simple": -1.297604286405172, + "percent_correct": 0.7854315122723674, + "n_responses": 1263 + }, + { + "problem_id": 388660, + "difficulty_1pl": -4.118108749389648, + "difficulty_2pl": -0.23827725648880005, + "discrimination_2pl": 0.6107038855552673, + "difficulty_simple": -0.9793619013177765, + "percent_correct": 0.7269815852682145, + "n_responses": 1249 + }, + { + "problem_id": 389028, + "difficulty_1pl": 4.822631359100342, + "difficulty_2pl": 0.08861381560564041, + "discrimination_2pl": 0.07477770745754242, + "difficulty_simple": 0.4455024811680018, + "percent_correct": 0.39043062200956935, + "n_responses": 1045 + }, + { + "problem_id": 390139, + "difficulty_1pl": 5.036810398101807, + "difficulty_2pl": 0.11954254657030106, + "discrimination_2pl": 0.041668929159641266, + "difficulty_simple": 0.5408632177205273, + "percent_correct": 0.367986798679868, + "n_responses": 606 + }, + { + "problem_id": 23593, + "difficulty_1pl": -2.4679150581359863, + "difficulty_2pl": -0.03308409824967384, + "discrimination_2pl": 0.2938198447227478, + "difficulty_simple": -0.7686547330680903, + "percent_correct": 0.6832298136645962, + "n_responses": 483 + }, + { + "problem_id": 347954, + "difficulty_1pl": 0.08228931576013565, + "difficulty_2pl": 0.10311715304851532, + "discrimination_2pl": 0.42986413836479187, + "difficulty_simple": -0.5031503689595512, + "percent_correct": 0.623199393479909, + "n_responses": 1319 + }, + { + "problem_id": 348162, + "difficulty_1pl": 11.074795722961426, + "difficulty_2pl": 0.12868039309978485, + "discrimination_2pl": 0.02210536040365696, + "difficulty_simple": 1.4123199263973887, + "percent_correct": 0.19586840091813312, + "n_responses": 1307 + }, + { + "problem_id": 348393, + "difficulty_1pl": 2.567065715789795, + "difficulty_2pl": 0.2141081988811493, + "discrimination_2pl": 0.1354789286851883, + "difficulty_simple": 0.262743124104529, + "percent_correct": 0.4346895074946467, + "n_responses": 934 + }, + { + "problem_id": 349252, + "difficulty_1pl": 4.280453205108643, + "difficulty_2pl": 0.2331593781709671, + "discrimination_2pl": 0.08835217356681824, + "difficulty_simple": 0.5215784155422523, + "percent_correct": 0.3724832214765101, + "n_responses": 894 + }, + { + "problem_id": 350310, + "difficulty_1pl": -1.3629992008209229, + "difficulty_2pl": 0.05263318493962288, + "discrimination_2pl": 0.4211934208869934, + "difficulty_simple": -0.6148463301461877, + "percent_correct": 0.6490455212922174, + "n_responses": 681 + }, + { + "problem_id": 349598, + "difficulty_1pl": -0.4620574414730072, + "difficulty_2pl": 0.013678831048309803, + "discrimination_2pl": 0.2760913372039795, + "difficulty_simple": -0.5784015626743971, + "percent_correct": 0.6406995230524642, + "n_responses": 629 + }, + { + "problem_id": 349875, + "difficulty_1pl": -2.8308446407318115, + "difficulty_2pl": -0.31451085209846497, + "discrimination_2pl": 0.4027103781700134, + "difficulty_simple": -0.9888849538439427, + "percent_correct": 0.7288676236044657, + "n_responses": 627 + }, + { + "problem_id": 515648, + "difficulty_1pl": -7.097169876098633, + "difficulty_2pl": -0.20337209105491638, + "discrimination_2pl": 0.3674246370792389, + "difficulty_simple": -1.2768605200744283, + "percent_correct": 0.7819148936170213, + "n_responses": 376 + }, + { + "problem_id": 121533, + "difficulty_1pl": -3.1346051692962646, + "difficulty_2pl": -0.19610874354839325, + "discrimination_2pl": 0.5033424496650696, + "difficulty_simple": -0.9180974170991039, + "percent_correct": 0.7146542827657378, + "n_responses": 1938 + }, + { + "problem_id": 122274, + "difficulty_1pl": 0.4559135437011719, + "difficulty_2pl": 0.14914268255233765, + "discrimination_2pl": 0.39341169595718384, + "difficulty_simple": -0.26410890473371407, + "percent_correct": 0.5656460819927348, + "n_responses": 1927 + }, + { + "problem_id": 120578, + "difficulty_1pl": 1.0530474185943604, + "difficulty_2pl": 0.19081053137779236, + "discrimination_2pl": 0.35334938764572144, + "difficulty_simple": -0.06869025384203332, + "percent_correct": 0.5171658144631117, + "n_responses": 1369 + }, + { + "problem_id": 120984, + "difficulty_1pl": -2.985142707824707, + "difficulty_2pl": -0.5131483674049377, + "discrimination_2pl": 0.3907642364501953, + "difficulty_simple": -1.1137969622064268, + "percent_correct": 0.752836304700162, + "n_responses": 1234 + }, + { + "problem_id": 122706, + "difficulty_1pl": 1.2530180215835571, + "difficulty_2pl": 0.33651402592658997, + "discrimination_2pl": 0.4337524175643921, + "difficulty_simple": -0.0516243654053073, + "percent_correct": 0.5129032258064516, + "n_responses": 1240 + }, + { + "problem_id": 120203, + "difficulty_1pl": 2.924473762512207, + "difficulty_2pl": 0.27180731296539307, + "discrimination_2pl": 0.1284707635641098, + "difficulty_simple": 0.2537229519093268, + "percent_correct": 0.43690736688548504, + "n_responses": 1371 + }, + { + "problem_id": 119756, + "difficulty_1pl": -5.919469833374023, + "difficulty_2pl": -0.4115884304046631, + "discrimination_2pl": 0.6703912019729614, + "difficulty_simple": -1.1764661585361027, + "percent_correct": 0.7643118148599269, + "n_responses": 1642 + }, + { + "problem_id": 119432, + "difficulty_1pl": -6.082101345062256, + "difficulty_2pl": -0.19951772689819336, + "discrimination_2pl": 0.5731378793716431, + "difficulty_simple": -0.9389267613577171, + "percent_correct": 0.718882817243473, + "n_responses": 1647 + }, + { + "problem_id": 118986, + "difficulty_1pl": -0.2746866047382355, + "difficulty_2pl": 0.19783595204353333, + "discrimination_2pl": 0.5260184407234192, + "difficulty_simple": -0.426114101075306, + "percent_correct": 0.6049453709028177, + "n_responses": 1739 + }, + { + "problem_id": 118610, + "difficulty_1pl": -1.862695574760437, + "difficulty_2pl": 0.11379697918891907, + "discrimination_2pl": 0.5053839087486267, + "difficulty_simple": -0.6734968259336533, + "percent_correct": 0.6622857142857143, + "n_responses": 1750 + }, + { + "problem_id": 118275, + "difficulty_1pl": -0.44771260023117065, + "difficulty_2pl": 0.4190765917301178, + "discrimination_2pl": 0.4378613531589508, + "difficulty_simple": -0.3302416868705767, + "percent_correct": 0.5818181818181818, + "n_responses": 1760 + }, + { + "problem_id": 389890, + "difficulty_1pl": -5.773878574371338, + "difficulty_2pl": -0.3774243891239166, + "discrimination_2pl": 0.6829069256782532, + "difficulty_simple": -1.2976726778241567, + "percent_correct": 0.7854430379746835, + "n_responses": 1580 + }, + { + "problem_id": 389120, + "difficulty_1pl": -5.0065202713012695, + "difficulty_2pl": -0.17645125091075897, + "discrimination_2pl": 0.6529203057289124, + "difficulty_simple": -0.9676587898219814, + "percent_correct": 0.7246525990735976, + "n_responses": 1943 + }, + { + "problem_id": 388622, + "difficulty_1pl": 1.3992305994033813, + "difficulty_2pl": 0.6901564598083496, + "discrimination_2pl": 0.31824854016304016, + "difficulty_simple": -0.011013327177983052, + "percent_correct": 0.5027533039647577, + "n_responses": 1816 + }, + { + "problem_id": 389538, + "difficulty_1pl": 2.52297043800354, + "difficulty_2pl": 0.38892731070518494, + "discrimination_2pl": 0.24513019621372223, + "difficulty_simple": 0.16187974762877766, + "percent_correct": 0.45961820851688695, + "n_responses": 1362 + }, + { + "problem_id": 30604, + "difficulty_1pl": -0.10328739136457443, + "difficulty_2pl": 0.17853009700775146, + "discrimination_2pl": 0.3920745253562927, + "difficulty_simple": -0.31800580277957846, + "percent_correct": 0.578838174273859, + "n_responses": 964 + }, + { + "problem_id": 30779, + "difficulty_1pl": 0.02348158322274685, + "difficulty_2pl": 0.199323371052742, + "discrimination_2pl": 0.4065869450569153, + "difficulty_simple": -0.2962658161431722, + "percent_correct": 0.5735294117647058, + "n_responses": 952 + }, + { + "problem_id": 31058, + "difficulty_1pl": 2.930544376373291, + "difficulty_2pl": 0.13711710274219513, + "discrimination_2pl": 0.08871322125196457, + "difficulty_simple": 0.5044469416570153, + "percent_correct": 0.3764961915125136, + "n_responses": 919 + }, + { + "problem_id": 31250, + "difficulty_1pl": 0.7438173294067383, + "difficulty_2pl": 0.39888015389442444, + "discrimination_2pl": 0.302139550447464, + "difficulty_simple": -0.09405835406188098, + "percent_correct": 0.5234972677595628, + "n_responses": 915 + }, + { + "problem_id": 146496, + "difficulty_1pl": 4.509425163269043, + "difficulty_2pl": 0.1673392802476883, + "discrimination_2pl": 0.11024906486272812, + "difficulty_simple": 0.5507453932217699, + "percent_correct": 0.36569148936170215, + "n_responses": 752 + }, + { + "problem_id": 145792, + "difficulty_1pl": -2.78670597076416, + "difficulty_2pl": 0.013670461252331734, + "discrimination_2pl": 0.3511376976966858, + "difficulty_simple": -0.546256060745491, + "percent_correct": 0.6332665330661322, + "n_responses": 499 + }, + { + "problem_id": 145971, + "difficulty_1pl": -6.934268474578857, + "difficulty_2pl": -0.48650288581848145, + "discrimination_2pl": 0.4845011830329895, + "difficulty_simple": -1.3173014896329387, + "percent_correct": 0.7887323943661971, + "n_responses": 497 + }, + { + "problem_id": 146131, + "difficulty_1pl": -10.308456420898438, + "difficulty_2pl": -0.3422803580760956, + "discrimination_2pl": 0.5248574614524841, + "difficulty_simple": -1.6660335800577344, + "percent_correct": 0.8410462776659959, + "n_responses": 497 + }, + { + "problem_id": 178083, + "difficulty_1pl": 1.6088792085647583, + "difficulty_2pl": 0.10743071138858795, + "discrimination_2pl": 0.07904499024152756, + "difficulty_simple": 0.1589239585799158, + "percent_correct": 0.460352422907489, + "n_responses": 454 + }, + { + "problem_id": 362542, + "difficulty_1pl": 6.006296157836914, + "difficulty_2pl": 0.5536020398139954, + "discrimination_2pl": 0.07041320949792862, + "difficulty_simple": 0.8639782425623003, + "percent_correct": 0.2965088474414156, + "n_responses": 2091 + }, + { + "problem_id": 363127, + "difficulty_1pl": 1.6739577054977417, + "difficulty_2pl": 0.6625058650970459, + "discrimination_2pl": 0.23375509679317474, + "difficulty_simple": 0.22406056192409116, + "percent_correct": 0.4442180336220071, + "n_responses": 1963 + }, + { + "problem_id": 363499, + "difficulty_1pl": 1.7891790866851807, + "difficulty_2pl": 0.5269129872322083, + "discrimination_2pl": 0.3321099877357483, + "difficulty_simple": 0.0781429473659008, + "percent_correct": 0.4804741980474198, + "n_responses": 1434 + }, + { + "problem_id": 324952, + "difficulty_1pl": -2.5585598945617676, + "difficulty_2pl": -0.07147075235843658, + "discrimination_2pl": 0.4212656319141388, + "difficulty_simple": -0.927495330887018, + "percent_correct": 0.716566866267465, + "n_responses": 1002 + }, + { + "problem_id": 325149, + "difficulty_1pl": 2.3302743434906006, + "difficulty_2pl": 0.3966158628463745, + "discrimination_2pl": 0.271354079246521, + "difficulty_simple": 0.05270981641952854, + "percent_correct": 0.4868255959849435, + "n_responses": 1594 + }, + { + "problem_id": 323049, + "difficulty_1pl": 0.19141191244125366, + "difficulty_2pl": 0.4000152349472046, + "discrimination_2pl": 0.4781374931335449, + "difficulty_simple": -0.4830233424540391, + "percent_correct": 0.6184615384615385, + "n_responses": 1625 + }, + { + "problem_id": 324260, + "difficulty_1pl": 1.7536965608596802, + "difficulty_2pl": 0.24950209259986877, + "discrimination_2pl": 0.31640785932540894, + "difficulty_simple": -0.22495678843839056, + "percent_correct": 0.5560032232070911, + "n_responses": 1241 + }, + { + "problem_id": 324446, + "difficulty_1pl": 5.652801513671875, + "difficulty_2pl": 0.019856523722410202, + "discrimination_2pl": 0.04262637719511986, + "difficulty_simple": 0.9248014215420639, + "percent_correct": 0.28398058252427183, + "n_responses": 1236 + }, + { + "problem_id": 69785, + "difficulty_1pl": 1.183044195175171, + "difficulty_2pl": 0.0906689465045929, + "discrimination_2pl": 0.1617499738931656, + "difficulty_simple": 0.07784248676393393, + "percent_correct": 0.4805491990846682, + "n_responses": 874 + }, + { + "problem_id": 171639, + "difficulty_1pl": 0.22014029324054718, + "difficulty_2pl": 0.3145958483219147, + "discrimination_2pl": 0.42044878005981445, + "difficulty_simple": -0.46349168521732564, + "percent_correct": 0.6138421733505821, + "n_responses": 1546 + }, + { + "problem_id": 171838, + "difficulty_1pl": 3.8905696868896484, + "difficulty_2pl": 0.11227170377969742, + "discrimination_2pl": 0.08895165473222733, + "difficulty_simple": 0.46112595521371813, + "percent_correct": 0.38671875, + "n_responses": 1536 + }, + { + "problem_id": 172131, + "difficulty_1pl": 0.2889038324356079, + "difficulty_2pl": 0.4423764646053314, + "discrimination_2pl": 0.4354093670845032, + "difficulty_simple": -0.35667494393873245, + "percent_correct": 0.5882352941176471, + "n_responses": 1428 + }, + { + "problem_id": 172318, + "difficulty_1pl": -6.937323570251465, + "difficulty_2pl": -0.2190868854522705, + "discrimination_2pl": 0.6429206728935242, + "difficulty_simple": -1.1655588872868468, + "percent_correct": 0.7623413258110014, + "n_responses": 1418 + }, + { + "problem_id": 172534, + "difficulty_1pl": 3.3264520168304443, + "difficulty_2pl": 0.07892199605703354, + "discrimination_2pl": 0.04483385756611824, + "difficulty_simple": 0.44933699243717656, + "percent_correct": 0.3895184135977337, + "n_responses": 1412 + }, + { + "problem_id": 172957, + "difficulty_1pl": 2.1664793491363525, + "difficulty_2pl": 0.28424301743507385, + "discrimination_2pl": 0.21977461874485016, + "difficulty_simple": 0.0404095383378767, + "percent_correct": 0.4898989898989899, + "n_responses": 1188 + }, + { + "problem_id": 173472, + "difficulty_1pl": -7.339633941650391, + "difficulty_2pl": -0.38279667496681213, + "discrimination_2pl": 0.5461404323577881, + "difficulty_simple": -1.4556920089734293, + "percent_correct": 0.8108728943338438, + "n_responses": 1306 + }, + { + "problem_id": 173863, + "difficulty_1pl": -0.3309129774570465, + "difficulty_2pl": 0.08777306973934174, + "discrimination_2pl": 0.4571724832057953, + "difficulty_simple": -0.5968439520146284, + "percent_correct": 0.6449339207048458, + "n_responses": 1135 + }, + { + "problem_id": 174088, + "difficulty_1pl": 4.044229507446289, + "difficulty_2pl": 0.35816076397895813, + "discrimination_2pl": 0.200205996632576, + "difficulty_simple": 0.1716470255470348, + "percent_correct": 0.45719329214474846, + "n_responses": 1133 + }, + { + "problem_id": 78711, + "difficulty_1pl": -0.06840237975120544, + "difficulty_2pl": 0.018377123400568962, + "discrimination_2pl": 0.2777445912361145, + "difficulty_simple": -0.33647223662121306, + "percent_correct": 0.5833333333333334, + "n_responses": 432 + }, + { + "problem_id": 455884, + "difficulty_1pl": 0.1606464833021164, + "difficulty_2pl": -0.006402993109077215, + "discrimination_2pl": 0.22707071900367737, + "difficulty_simple": -0.18770514987742742, + "percent_correct": 0.5467889908256881, + "n_responses": 545 + }, + { + "problem_id": 456048, + "difficulty_1pl": 0.1359253078699112, + "difficulty_2pl": 0.01847611553966999, + "discrimination_2pl": 0.25870227813720703, + "difficulty_simple": -0.3028502939249524, + "percent_correct": 0.575139146567718, + "n_responses": 539 + }, + { + "problem_id": 294072, + "difficulty_1pl": 3.8374290466308594, + "difficulty_2pl": -0.013663073070347309, + "discrimination_2pl": 0.019864186644554138, + "difficulty_simple": 0.6931471805599455, + "percent_correct": 0.3333333333333333, + "n_responses": 54 + }, + { + "problem_id": 88950, + "difficulty_1pl": 0.214295893907547, + "difficulty_2pl": 0.06232023611664772, + "discrimination_2pl": 0.21834315359592438, + "difficulty_simple": -0.5014797613477532, + "percent_correct": 0.6228070175438597, + "n_responses": 228 + }, + { + "problem_id": 89233, + "difficulty_1pl": 2.5925559997558594, + "difficulty_2pl": -0.061651069670915604, + "discrimination_2pl": 0.07915297895669937, + "difficulty_simple": 0.13353139262452257, + "percent_correct": 0.4666666666666667, + "n_responses": 195 + }, + { + "problem_id": 89569, + "difficulty_1pl": -4.287581920623779, + "difficulty_2pl": -0.04075896367430687, + "discrimination_2pl": 0.2552993595600128, + "difficulty_simple": -0.7156200364120041, + "percent_correct": 0.6716417910447762, + "n_responses": 201 + }, + { + "problem_id": 7411, + "difficulty_1pl": 10.681920051574707, + "difficulty_2pl": 0.20502544939517975, + "discrimination_2pl": 0.03383829817175865, + "difficulty_simple": 1.1408720979579923, + "percent_correct": 0.2421602787456446, + "n_responses": 574 + }, + { + "problem_id": 55885, + "difficulty_1pl": 2.3607852458953857, + "difficulty_2pl": 0.4712015390396118, + "discrimination_2pl": 0.13712552189826965, + "difficulty_simple": 0.38181745980748943, + "percent_correct": 0.405688622754491, + "n_responses": 2004 + }, + { + "problem_id": 56172, + "difficulty_1pl": -8.049698829650879, + "difficulty_2pl": -0.6025320291519165, + "discrimination_2pl": 0.7379712462425232, + "difficulty_simple": -1.3889087416939616, + "percent_correct": 0.800417972831766, + "n_responses": 1914 + }, + { + "problem_id": 56590, + "difficulty_1pl": -0.13425828516483307, + "difficulty_2pl": 0.2816512882709503, + "discrimination_2pl": 0.40826380252838135, + "difficulty_simple": -0.2962658161431722, + "percent_correct": 0.5735294117647058, + "n_responses": 1836 + }, + { + "problem_id": 56910, + "difficulty_1pl": -1.4518792629241943, + "difficulty_2pl": 0.26162421703338623, + "discrimination_2pl": 0.40752294659614563, + "difficulty_simple": -0.3764485651291248, + "percent_correct": 0.5930162552679109, + "n_responses": 1661 + }, + { + "problem_id": 240555, + "difficulty_1pl": -6.064620018005371, + "difficulty_2pl": -0.29419076442718506, + "discrimination_2pl": 0.628126323223114, + "difficulty_simple": -1.3630984090393063, + "percent_correct": 0.7962628089210367, + "n_responses": 1659 + }, + { + "problem_id": 239466, + "difficulty_1pl": -3.26957106590271, + "difficulty_2pl": -0.24931618571281433, + "discrimination_2pl": 0.24632905423641205, + "difficulty_simple": -0.9157764608419928, + "percent_correct": 0.7141807494489346, + "n_responses": 1361 + }, + { + "problem_id": 239810, + "difficulty_1pl": -5.278391361236572, + "difficulty_2pl": -0.3716663122177124, + "discrimination_2pl": 0.47328728437423706, + "difficulty_simple": -1.4016862448874747, + "percent_correct": 0.802451333813987, + "n_responses": 1387 + }, + { + "problem_id": 240818, + "difficulty_1pl": 2.139467239379883, + "difficulty_2pl": 0.29021450877189636, + "discrimination_2pl": 0.19842959940433502, + "difficulty_simple": -0.04563529470661923, + "percent_correct": 0.5114068441064639, + "n_responses": 1052 + }, + { + "problem_id": 370230, + "difficulty_1pl": -7.124818325042725, + "difficulty_2pl": -0.29857155680656433, + "discrimination_2pl": 0.5757392048835754, + "difficulty_simple": -1.730871099553043, + "percent_correct": 0.8495238095238096, + "n_responses": 525 + }, + { + "problem_id": 370522, + "difficulty_1pl": -5.771231651306152, + "difficulty_2pl": -0.14509689807891846, + "discrimination_2pl": 0.5763291716575623, + "difficulty_simple": -1.2668207079855998, + "percent_correct": 0.7801980198019802, + "n_responses": 505 + }, + { + "problem_id": 370835, + "difficulty_1pl": -6.704867839813232, + "difficulty_2pl": -0.27611878514289856, + "discrimination_2pl": 0.4823371469974518, + "difficulty_simple": -1.3677015280432752, + "percent_correct": 0.7970085470085471, + "n_responses": 468 + }, + { + "problem_id": 12898, + "difficulty_1pl": 3.5485076904296875, + "difficulty_2pl": 0.008991600014269352, + "discrimination_2pl": 0.04400651529431343, + "difficulty_simple": 0.8969263646923638, + "percent_correct": 0.2896825396825397, + "n_responses": 252 + }, + { + "problem_id": 383539, + "difficulty_1pl": 2.3451650142669678, + "difficulty_2pl": 0.7330655455589294, + "discrimination_2pl": 0.36827391386032104, + "difficulty_simple": 0.25940129933683403, + "percent_correct": 0.4355108877721943, + "n_responses": 1791 + }, + { + "problem_id": 142055, + "difficulty_1pl": -1.304940104484558, + "difficulty_2pl": 0.07745791226625443, + "discrimination_2pl": 0.34699514508247375, + "difficulty_simple": -0.6152411345257481, + "percent_correct": 0.649135446685879, + "n_responses": 1388 + }, + { + "problem_id": 142483, + "difficulty_1pl": 0.47205081582069397, + "difficulty_2pl": 0.06774772703647614, + "discrimination_2pl": 0.2974833846092224, + "difficulty_simple": -0.4318586582136986, + "percent_correct": 0.6063174114021571, + "n_responses": 1298 + }, + { + "problem_id": 321235, + "difficulty_1pl": 2.9374587535858154, + "difficulty_2pl": 0.09546197205781937, + "discrimination_2pl": 0.1073518842458725, + "difficulty_simple": 0.26153679234745875, + "percent_correct": 0.43498596819457436, + "n_responses": 1069 + }, + { + "problem_id": 144285, + "difficulty_1pl": 7.110286712646484, + "difficulty_2pl": 0.04600207507610321, + "discrimination_2pl": 0.026939569041132927, + "difficulty_simple": 0.9552524112220766, + "percent_correct": 0.2778297474275023, + "n_responses": 1069 + }, + { + "problem_id": 144489, + "difficulty_1pl": -3.9904534816741943, + "difficulty_2pl": -0.222035214304924, + "discrimination_2pl": 0.5764230489730835, + "difficulty_simple": -1.2080461297135718, + "percent_correct": 0.7699530516431925, + "n_responses": 1065 + }, + { + "problem_id": 319813, + "difficulty_1pl": -6.123019695281982, + "difficulty_2pl": -0.15941749513149261, + "discrimination_2pl": 0.41494277119636536, + "difficulty_simple": -1.1522444435839045, + "percent_correct": 0.7599206349206349, + "n_responses": 504 + }, + { + "problem_id": 418297, + "difficulty_1pl": -2.4789459705352783, + "difficulty_2pl": -0.008404314517974854, + "discrimination_2pl": 0.2907050549983978, + "difficulty_simple": -0.6600863182990573, + "percent_correct": 0.6592797783933518, + "n_responses": 361 + }, + { + "problem_id": 166613, + "difficulty_1pl": 1.5225518941879272, + "difficulty_2pl": 0.08682827651500702, + "discrimination_2pl": 0.15071846544742584, + "difficulty_simple": 0.005420067469339113, + "percent_correct": 0.4986449864498645, + "n_responses": 369 + }, + { + "problem_id": 24461, + "difficulty_1pl": -4.201540946960449, + "difficulty_2pl": -0.16626691818237305, + "discrimination_2pl": 0.5954840183258057, + "difficulty_simple": -0.9089271641054163, + "percent_correct": 0.7127805771873569, + "n_responses": 2183 + }, + { + "problem_id": 24777, + "difficulty_1pl": -2.4046051502227783, + "difficulty_2pl": -0.0210754182189703, + "discrimination_2pl": 0.540382981300354, + "difficulty_simple": -0.6924456722884552, + "percent_correct": 0.666510757717493, + "n_responses": 2138 + }, + { + "problem_id": 23144, + "difficulty_1pl": -4.766306400299072, + "difficulty_2pl": -0.3472939729690552, + "discrimination_2pl": 0.40548568964004517, + "difficulty_simple": -1.1624321608347588, + "percent_correct": 0.7617743702081051, + "n_responses": 1826 + }, + { + "problem_id": 25178, + "difficulty_1pl": 9.172773361206055, + "difficulty_2pl": 0.14500553905963898, + "discrimination_2pl": 0.014583406038582325, + "difficulty_simple": 1.353170313694858, + "percent_correct": 0.2053525476067936, + "n_responses": 1943 + }, + { + "problem_id": 25445, + "difficulty_1pl": 0.3522966206073761, + "difficulty_2pl": 0.044846463948488235, + "discrimination_2pl": 0.25397104024887085, + "difficulty_simple": -0.124052648669979, + "percent_correct": 0.5309734513274337, + "n_responses": 1356 + }, + { + "problem_id": 23822, + "difficulty_1pl": -0.5188754200935364, + "difficulty_2pl": 0.138438418507576, + "discrimination_2pl": 0.33495068550109863, + "difficulty_simple": -0.30461636291399996, + "percent_correct": 0.5755706354102406, + "n_responses": 1621 + }, + { + "problem_id": 24068, + "difficulty_1pl": -2.6136984825134277, + "difficulty_2pl": -0.27701500058174133, + "discrimination_2pl": 0.6658335328102112, + "difficulty_simple": -0.8934301288284057, + "percent_correct": 0.7095975232198143, + "n_responses": 1615 + }, + { + "problem_id": 142840, + "difficulty_1pl": -2.986551284790039, + "difficulty_2pl": -0.34147822856903076, + "discrimination_2pl": 0.35547158122062683, + "difficulty_simple": -1.1274544132973947, + "percent_correct": 0.7553688141923436, + "n_responses": 1071 + }, + { + "problem_id": 143123, + "difficulty_1pl": -1.9665470123291016, + "difficulty_2pl": -0.16915349662303925, + "discrimination_2pl": 0.4518262445926666, + "difficulty_simple": -0.8998700016618274, + "percent_correct": 0.7109227871939736, + "n_responses": 1062 + }, + { + "problem_id": 143514, + "difficulty_1pl": -0.6046066880226135, + "difficulty_2pl": -0.058516860008239746, + "discrimination_2pl": 0.3367718458175659, + "difficulty_simple": -0.47276394383383624, + "percent_correct": 0.6160377358490566, + "n_responses": 1060 + }, + { + "problem_id": 143860, + "difficulty_1pl": -2.376948595046997, + "difficulty_2pl": 0.03916942700743675, + "discrimination_2pl": 0.5212451219558716, + "difficulty_simple": -0.7047415133408644, + "percent_correct": 0.6692381870781099, + "n_responses": 1037 + }, + { + "problem_id": 228118, + "difficulty_1pl": -0.42397889494895935, + "difficulty_2pl": 0.14949184656143188, + "discrimination_2pl": 0.4331814646720886, + "difficulty_simple": -0.46444634418086916, + "percent_correct": 0.6140684410646388, + "n_responses": 1052 + }, + { + "problem_id": 228285, + "difficulty_1pl": -3.4180476665496826, + "difficulty_2pl": -0.02501528337597847, + "discrimination_2pl": 0.57820725440979, + "difficulty_simple": -0.9659101522483348, + "percent_correct": 0.7243035542747358, + "n_responses": 1041 + }, + { + "problem_id": 228454, + "difficulty_1pl": -5.012099266052246, + "difficulty_2pl": -0.17002001404762268, + "discrimination_2pl": 0.6210681796073914, + "difficulty_simple": -1.1717519253147726, + "percent_correct": 0.7634615384615384, + "n_responses": 1040 + }, + { + "problem_id": 229674, + "difficulty_1pl": 2.2883994579315186, + "difficulty_2pl": 0.024376489222049713, + "discrimination_2pl": 0.14106225967407227, + "difficulty_simple": 0.11267316250411281, + "percent_correct": 0.47186147186147187, + "n_responses": 924 + }, + { + "problem_id": 228746, + "difficulty_1pl": -0.13664376735687256, + "difficulty_2pl": 0.09701287001371384, + "discrimination_2pl": 0.0796121284365654, + "difficulty_simple": -0.06999941409835303, + "percent_correct": 0.5174927113702624, + "n_responses": 686 + }, + { + "problem_id": 229131, + "difficulty_1pl": 1.750808596611023, + "difficulty_2pl": 0.09505816549062729, + "discrimination_2pl": 0.20510904490947723, + "difficulty_simple": -0.006116227017435871, + "percent_correct": 0.5015290519877675, + "n_responses": 654 + }, + { + "problem_id": 229328, + "difficulty_1pl": -4.621749401092529, + "difficulty_2pl": -0.22319546341896057, + "discrimination_2pl": 0.5889165997505188, + "difficulty_simple": -1.1273617019540951, + "percent_correct": 0.7553516819571865, + "n_responses": 654 + }, + { + "problem_id": 403617, + "difficulty_1pl": 5.350931167602539, + "difficulty_2pl": -0.0695197731256485, + "discrimination_2pl": 0.030699465423822403, + "difficulty_simple": 0.5356575994671723, + "percent_correct": 0.3691983122362869, + "n_responses": 474 + }, + { + "problem_id": 221573, + "difficulty_1pl": -5.678037643432617, + "difficulty_2pl": -0.11046463251113892, + "discrimination_2pl": 0.4122233986854553, + "difficulty_simple": -1.379514674134512, + "percent_correct": 0.7989130434782609, + "n_responses": 184 + }, + { + "problem_id": 221711, + "difficulty_1pl": -8.519566535949707, + "difficulty_2pl": -0.05615237355232239, + "discrimination_2pl": 0.33033695816993713, + "difficulty_simple": -0.9509762898620453, + "percent_correct": 0.7213114754098361, + "n_responses": 183 + }, + { + "problem_id": 20361, + "difficulty_1pl": 6.345682144165039, + "difficulty_2pl": 0.048972684890031815, + "discrimination_2pl": 0.10041654855012894, + "difficulty_simple": 0.6715247165467797, + "percent_correct": 0.33815551537070526, + "n_responses": 553 + }, + { + "problem_id": 203426, + "difficulty_1pl": -2.3737800121307373, + "difficulty_2pl": 0.0101605374366045, + "discrimination_2pl": 0.48368850350379944, + "difficulty_simple": -0.7277048694855809, + "percent_correct": 0.674301420064132, + "n_responses": 2183 + }, + { + "problem_id": 203873, + "difficulty_1pl": 0.9868522882461548, + "difficulty_2pl": 0.13210876286029816, + "discrimination_2pl": 0.24439074099063873, + "difficulty_simple": -0.09061313030445553, + "percent_correct": 0.5226377952755905, + "n_responses": 2032 + }, + { + "problem_id": 204231, + "difficulty_1pl": 1.1310951709747314, + "difficulty_2pl": 0.655279278755188, + "discrimination_2pl": 0.33667415380477905, + "difficulty_simple": 0.12576938728903317, + "percent_correct": 0.46859903381642515, + "n_responses": 2070 + }, + { + "problem_id": 204565, + "difficulty_1pl": -5.102550506591797, + "difficulty_2pl": -0.7236049175262451, + "discrimination_2pl": 0.5286936163902283, + "difficulty_simple": -1.325747861251857, + "percent_correct": 0.7901364113326338, + "n_responses": 1906 + }, + { + "problem_id": 202903, + "difficulty_1pl": -7.993926048278809, + "difficulty_2pl": -0.4213418662548065, + "discrimination_2pl": 0.5973989963531494, + "difficulty_simple": -1.330815208799662, + "percent_correct": 0.7909754479097545, + "n_responses": 1507 + }, + { + "problem_id": 565046, + "difficulty_1pl": -7.078034400939941, + "difficulty_2pl": 0.09270302951335907, + "discrimination_2pl": 0.30519354343414307, + "difficulty_simple": -1.0593915755148284, + "percent_correct": 0.7425742574257426, + "n_responses": 101 + }, + { + "problem_id": 565173, + "difficulty_1pl": 5.818906307220459, + "difficulty_2pl": 0.046596430242061615, + "discrimination_2pl": 0.05628230422735214, + "difficulty_simple": 0.8953840470548415, + "percent_correct": 0.29, + "n_responses": 100 + }, + { + "problem_id": 114159, + "difficulty_1pl": 0.2672215700149536, + "difficulty_2pl": 0.2281426042318344, + "discrimination_2pl": 0.2147693783044815, + "difficulty_simple": -0.015686596167699508, + "percent_correct": 0.503921568627451, + "n_responses": 510 + }, + { + "problem_id": 42365, + "difficulty_1pl": -0.03010714054107666, + "difficulty_2pl": 0.0874822810292244, + "discrimination_2pl": 0.16586856544017792, + "difficulty_simple": -0.25408835516363143, + "percent_correct": 0.5631825273010921, + "n_responses": 641 + }, + { + "problem_id": 584015, + "difficulty_1pl": -5.781786918640137, + "difficulty_2pl": -0.03738400340080261, + "discrimination_2pl": 0.42056381702423096, + "difficulty_simple": -1.195604554655419, + "percent_correct": 0.7677419354838709, + "n_responses": 155 + }, + { + "problem_id": 184732, + "difficulty_1pl": 4.094606876373291, + "difficulty_2pl": 0.42936864495277405, + "discrimination_2pl": 0.12436794489622116, + "difficulty_simple": 0.5038058119145282, + "percent_correct": 0.37664670658682636, + "n_responses": 1670 + }, + { + "problem_id": 182437, + "difficulty_1pl": -1.1259722709655762, + "difficulty_2pl": 0.04389909654855728, + "discrimination_2pl": 0.3929499089717865, + "difficulty_simple": -0.5163748464278576, + "percent_correct": 0.6262996941896024, + "n_responses": 1635 + }, + { + "problem_id": 185005, + "difficulty_1pl": -0.7791534066200256, + "difficulty_2pl": 0.12802447378635406, + "discrimination_2pl": 0.5448766946792603, + "difficulty_simple": -0.6691829001212165, + "percent_correct": 0.6613201727328809, + "n_responses": 1621 + }, + { + "problem_id": 584326, + "difficulty_1pl": -0.8346011638641357, + "difficulty_2pl": 0.03983216732740402, + "discrimination_2pl": 0.30744731426239014, + "difficulty_simple": -0.5621189181535411, + "percent_correct": 0.6369426751592356, + "n_responses": 157 + }, + { + "problem_id": 584429, + "difficulty_1pl": -5.769893646240234, + "difficulty_2pl": 0.029136795550584793, + "discrimination_2pl": 0.36132723093032837, + "difficulty_simple": -0.8412002805190849, + "percent_correct": 0.6987179487179487, + "n_responses": 156 + }, + { + "problem_id": 584537, + "difficulty_1pl": 2.2862255573272705, + "difficulty_2pl": -0.0021043438464403152, + "discrimination_2pl": 0.12148192524909973, + "difficulty_simple": 0.38946476676172315, + "percent_correct": 0.40384615384615385, + "n_responses": 156 + }, + { + "problem_id": 43417, + "difficulty_1pl": 1.5897151231765747, + "difficulty_2pl": 0.2726195752620697, + "discrimination_2pl": 0.22959165275096893, + "difficulty_simple": -0.07263918363997184, + "percent_correct": 0.5181518151815182, + "n_responses": 909 + }, + { + "problem_id": 347843, + "difficulty_1pl": 1.4837619066238403, + "difficulty_2pl": 0.164306178689003, + "discrimination_2pl": 0.1842373013496399, + "difficulty_simple": -0.07968318942411311, + "percent_correct": 0.519910263600673, + "n_responses": 1783 + }, + { + "problem_id": 314711, + "difficulty_1pl": 0.9270676374435425, + "difficulty_2pl": 0.2465941160917282, + "discrimination_2pl": 0.3607194125652313, + "difficulty_simple": -0.1857929215494135, + "percent_correct": 0.54631507775524, + "n_responses": 1479 + }, + { + "problem_id": 502720, + "difficulty_1pl": 1.0902681350708008, + "difficulty_2pl": 0.4171174466609955, + "discrimination_2pl": 0.4108813405036926, + "difficulty_simple": -0.060246669056030294, + "percent_correct": 0.5150571131879543, + "n_responses": 1926 + }, + { + "problem_id": 499326, + "difficulty_1pl": 0.5128259658813477, + "difficulty_2pl": 0.2959626019001007, + "discrimination_2pl": 0.3645707964897156, + "difficulty_simple": -0.14045183546909631, + "percent_correct": 0.5350553505535055, + "n_responses": 1897 + }, + { + "problem_id": 499714, + "difficulty_1pl": 2.9006242752075195, + "difficulty_2pl": 0.9058318138122559, + "discrimination_2pl": 0.3511023223400116, + "difficulty_simple": 0.4379484980266191, + "percent_correct": 0.3922299095263438, + "n_responses": 1879 + }, + { + "problem_id": 503044, + "difficulty_1pl": 0.19185543060302734, + "difficulty_2pl": 0.04623487964272499, + "discrimination_2pl": 0.24953709542751312, + "difficulty_simple": -0.23776768107006807, + "percent_correct": 0.5591634562465603, + "n_responses": 1817 + }, + { + "problem_id": 346366, + "difficulty_1pl": 1.5268151760101318, + "difficulty_2pl": 0.2957334816455841, + "discrimination_2pl": 0.088850237429142, + "difficulty_simple": 0.05184746453196308, + "percent_correct": 0.4870410367170626, + "n_responses": 1852 + }, + { + "problem_id": 347162, + "difficulty_1pl": 2.804128885269165, + "difficulty_2pl": 0.5375502705574036, + "discrimination_2pl": 0.3186227083206177, + "difficulty_simple": 0.12578307832345964, + "percent_correct": 0.46859562455892734, + "n_responses": 1417 + }, + { + "problem_id": 509509, + "difficulty_1pl": 0.35430485010147095, + "difficulty_2pl": 0.3226780593395233, + "discrimination_2pl": 0.3170486390590668, + "difficulty_simple": -0.1150921887563633, + "percent_correct": 0.5287413280475719, + "n_responses": 2018 + }, + { + "problem_id": 509942, + "difficulty_1pl": 1.4172484874725342, + "difficulty_2pl": 0.19776931405067444, + "discrimination_2pl": 0.16638290882110596, + "difficulty_simple": 0.10397657973672278, + "percent_correct": 0.47402924861321233, + "n_responses": 1983 + }, + { + "problem_id": 504254, + "difficulty_1pl": 0.9920229315757751, + "difficulty_2pl": 0.4345591962337494, + "discrimination_2pl": 0.31105294823646545, + "difficulty_simple": 0.009939341902557925, + "percent_correct": 0.49751518498067365, + "n_responses": 1811 + }, + { + "problem_id": 504695, + "difficulty_1pl": -1.177847981452942, + "difficulty_2pl": 0.35086336731910706, + "discrimination_2pl": 0.4672482907772064, + "difficulty_simple": -0.4539368516412488, + "percent_correct": 0.6115748469671675, + "n_responses": 1797 + }, + { + "problem_id": 505118, + "difficulty_1pl": 0.1189664974808693, + "difficulty_2pl": 0.24236679077148438, + "discrimination_2pl": 0.34265172481536865, + "difficulty_simple": -0.2211711640870055, + "percent_correct": 0.555068493150685, + "n_responses": 1825 + }, + { + "problem_id": 505561, + "difficulty_1pl": -2.613406181335449, + "difficulty_2pl": 0.0481240451335907, + "discrimination_2pl": 0.5097413063049316, + "difficulty_simple": -0.6358952432221496, + "percent_correct": 0.6538249862410567, + "n_responses": 1817 + }, + { + "problem_id": 109764, + "difficulty_1pl": 6.979152679443359, + "difficulty_2pl": 0.14547574520111084, + "discrimination_2pl": 0.05362715572118759, + "difficulty_simple": 1.0969014242644803, + "percent_correct": 0.2503209242618742, + "n_responses": 779 + }, + { + "problem_id": 110017, + "difficulty_1pl": 1.3978989124298096, + "difficulty_2pl": 0.17990919947624207, + "discrimination_2pl": 0.2733308970928192, + "difficulty_simple": -0.010389703849135798, + "percent_correct": 0.5025974025974026, + "n_responses": 770 + }, + { + "problem_id": 409731, + "difficulty_1pl": 0.9040436744689941, + "difficulty_2pl": 0.13449706137180328, + "discrimination_2pl": 0.28363192081451416, + "difficulty_simple": -0.06193929944029047, + "percent_correct": 0.5154798761609907, + "n_responses": 646 + }, + { + "problem_id": 51606, + "difficulty_1pl": -0.3793077766895294, + "difficulty_2pl": 0.022235475480556488, + "discrimination_2pl": 0.26139405369758606, + "difficulty_simple": -0.41765714887352645, + "percent_correct": 0.6029224904701398, + "n_responses": 1574 + }, + { + "problem_id": 51952, + "difficulty_1pl": 2.6071128845214844, + "difficulty_2pl": 0.6981857419013977, + "discrimination_2pl": 0.38590991497039795, + "difficulty_simple": 0.027327660228376502, + "percent_correct": 0.49316851008458035, + "n_responses": 1537 + }, + { + "problem_id": 51164, + "difficulty_1pl": -0.9180833697319031, + "difficulty_2pl": 0.067900151014328, + "discrimination_2pl": 0.4344353675842285, + "difficulty_simple": -0.5607225949106139, + "percent_correct": 0.6366197183098592, + "n_responses": 1065 + }, + { + "problem_id": 50795, + "difficulty_1pl": 0.106409452855587, + "difficulty_2pl": 0.24983848631381989, + "discrimination_2pl": 0.32493099570274353, + "difficulty_simple": -0.31562144114102264, + "percent_correct": 0.5782567947516402, + "n_responses": 1067 + }, + { + "problem_id": 120069, + "difficulty_1pl": -2.436293363571167, + "difficulty_2pl": -0.20720212161540985, + "discrimination_2pl": 0.5013161301612854, + "difficulty_simple": -1.0034346381860912, + "percent_correct": 0.7317333333333333, + "n_responses": 1875 + }, + { + "problem_id": 120403, + "difficulty_1pl": -0.23993568122386932, + "difficulty_2pl": 0.3144526481628418, + "discrimination_2pl": 0.3785076141357422, + "difficulty_simple": -0.2702252700476213, + "percent_correct": 0.5671482075976458, + "n_responses": 1869 + }, + { + "problem_id": 121257, + "difficulty_1pl": 4.948880672454834, + "difficulty_2pl": 0.25690174102783203, + "discrimination_2pl": 0.09262798726558685, + "difficulty_simple": 0.5885674574461776, + "percent_correct": 0.3569636135508156, + "n_responses": 1594 + }, + { + "problem_id": 66914, + "difficulty_1pl": -0.6663299202919006, + "difficulty_2pl": -0.14897236227989197, + "discrimination_2pl": 0.37151744961738586, + "difficulty_simple": -0.6787879594820566, + "percent_correct": 0.6634681288553804, + "n_responses": 1459 + }, + { + "problem_id": 17046, + "difficulty_1pl": 0.8094295859336853, + "difficulty_2pl": 0.2082090973854065, + "discrimination_2pl": 0.31519895792007446, + "difficulty_simple": -0.14864102401628868, + "percent_correct": 0.5370919881305638, + "n_responses": 1011 + }, + { + "problem_id": 99193, + "difficulty_1pl": -4.871648788452148, + "difficulty_2pl": -0.1307792365550995, + "discrimination_2pl": 0.570759117603302, + "difficulty_simple": -1.1603691668438039, + "percent_correct": 0.7613997879109226, + "n_responses": 943 + }, + { + "problem_id": 99441, + "difficulty_1pl": -1.5626907348632812, + "difficulty_2pl": 0.011813255026936531, + "discrimination_2pl": 0.4810597002506256, + "difficulty_simple": -0.7872197364439205, + "percent_correct": 0.6872340425531915, + "n_responses": 940 + }, + { + "problem_id": 85212, + "difficulty_1pl": 0.4315260052680969, + "difficulty_2pl": -0.1280374825000763, + "discrimination_2pl": 0.050155140459537506, + "difficulty_simple": -0.1943265028907781, + "percent_correct": 0.5484293193717278, + "n_responses": 1528 + }, + { + "problem_id": 233047, + "difficulty_1pl": 4.9842448234558105, + "difficulty_2pl": 0.2807692289352417, + "discrimination_2pl": 0.06648856401443481, + "difficulty_simple": 0.8139468097557543, + "percent_correct": 0.3070500927643785, + "n_responses": 1078 + }, + { + "problem_id": 232655, + "difficulty_1pl": -2.6325936317443848, + "difficulty_2pl": -0.13890795409679413, + "discrimination_2pl": 0.4288441836833954, + "difficulty_simple": -0.6216882165778003, + "percent_correct": 0.6506024096385542, + "n_responses": 1079 + }, + { + "problem_id": 262087, + "difficulty_1pl": -8.716371536254883, + "difficulty_2pl": -0.427918404340744, + "discrimination_2pl": 0.612787127494812, + "difficulty_simple": -1.4039939382192919, + "percent_correct": 0.8028169014084507, + "n_responses": 1349 + }, + { + "problem_id": 262990, + "difficulty_1pl": -1.0229986906051636, + "difficulty_2pl": -0.042304471135139465, + "discrimination_2pl": 0.40042644739151, + "difficulty_simple": -0.5108256237659907, + "percent_correct": 0.625, + "n_responses": 792 + }, + { + "problem_id": 263152, + "difficulty_1pl": -4.76046895980835, + "difficulty_2pl": -0.022344492375850677, + "discrimination_2pl": 0.5248039364814758, + "difficulty_simple": -0.8533328817216737, + "percent_correct": 0.7012658227848101, + "n_responses": 790 + }, + { + "problem_id": 263336, + "difficulty_1pl": -2.5969536304473877, + "difficulty_2pl": -0.026561442762613297, + "discrimination_2pl": 0.5524465441703796, + "difficulty_simple": -0.8214783534573605, + "percent_correct": 0.6945500633713562, + "n_responses": 789 + }, + { + "problem_id": 263496, + "difficulty_1pl": -3.0733137130737305, + "difficulty_2pl": -0.08585871756076813, + "discrimination_2pl": 0.5752210021018982, + "difficulty_simple": -0.9467317573753907, + "percent_correct": 0.7204574332909784, + "n_responses": 787 + }, + { + "problem_id": 263662, + "difficulty_1pl": -1.9838991165161133, + "difficulty_2pl": 0.18594087660312653, + "discrimination_2pl": 0.4318144917488098, + "difficulty_simple": -0.43951094951788167, + "percent_correct": 0.6081424936386769, + "n_responses": 786 + }, + { + "problem_id": 323501, + "difficulty_1pl": -8.670668601989746, + "difficulty_2pl": -0.538351833820343, + "discrimination_2pl": 0.7179648876190186, + "difficulty_simple": -1.5175132994731018, + "percent_correct": 0.8201720093823299, + "n_responses": 1279 + }, + { + "problem_id": 323812, + "difficulty_1pl": -7.558773040771484, + "difficulty_2pl": -0.45008528232574463, + "discrimination_2pl": 0.623339831829071, + "difficulty_simple": -1.2407025208028593, + "percent_correct": 0.7756862745098039, + "n_responses": 1275 + }, + { + "problem_id": 324089, + "difficulty_1pl": 2.4710865020751953, + "difficulty_2pl": 0.31533050537109375, + "discrimination_2pl": 0.12906494736671448, + "difficulty_simple": 0.5531152233323293, + "percent_correct": 0.36514195583596215, + "n_responses": 1268 + }, + { + "problem_id": 326880, + "difficulty_1pl": 0.01454712450504303, + "difficulty_2pl": -0.08262308686971664, + "discrimination_2pl": 0.3835368752479553, + "difficulty_simple": -0.3125189955987201, + "percent_correct": 0.5775, + "n_responses": 1200 + }, + { + "problem_id": 324443, + "difficulty_1pl": 0.574522078037262, + "difficulty_2pl": 0.12070636451244354, + "discrimination_2pl": 0.45885759592056274, + "difficulty_simple": -0.4156916398919954, + "percent_correct": 0.6024518388791593, + "n_responses": 1142 + }, + { + "problem_id": 324897, + "difficulty_1pl": 2.2274329662323, + "difficulty_2pl": 0.15264387428760529, + "discrimination_2pl": 0.17279426753520966, + "difficulty_simple": 0.38636092679812206, + "percent_correct": 0.4045936395759717, + "n_responses": 1132 + }, + { + "problem_id": 327306, + "difficulty_1pl": -0.047406770288944244, + "difficulty_2pl": 0.03325522691011429, + "discrimination_2pl": 0.33978191018104553, + "difficulty_simple": -0.33228071025237127, + "percent_correct": 0.5823142050799623, + "n_responses": 1063 + }, + { + "problem_id": 190411, + "difficulty_1pl": 0.5767083764076233, + "difficulty_2pl": 0.20783564448356628, + "discrimination_2pl": 0.3212921917438507, + "difficulty_simple": -0.19534499668024133, + "percent_correct": 0.5486815415821501, + "n_responses": 986 + }, + { + "problem_id": 190835, + "difficulty_1pl": 2.953882932662964, + "difficulty_2pl": 0.16900578141212463, + "discrimination_2pl": 0.21406212449073792, + "difficulty_simple": 0.25654183171605766, + "percent_correct": 0.43621399176954734, + "n_responses": 972 + }, + { + "problem_id": 190990, + "difficulty_1pl": -5.098103046417236, + "difficulty_2pl": -0.14895625412464142, + "discrimination_2pl": 0.4988473653793335, + "difficulty_simple": -0.9940995899326227, + "percent_correct": 0.7298969072164948, + "n_responses": 970 + }, + { + "problem_id": 192118, + "difficulty_1pl": 3.291747570037842, + "difficulty_2pl": 0.21147729456424713, + "discrimination_2pl": 0.1871652752161026, + "difficulty_simple": 0.3861457477055268, + "percent_correct": 0.40464547677261614, + "n_responses": 818 + }, + { + "problem_id": 359196, + "difficulty_1pl": 3.3739726543426514, + "difficulty_2pl": 0.15192212164402008, + "discrimination_2pl": 0.1672748476266861, + "difficulty_simple": 0.22118724159344874, + "percent_correct": 0.4449275362318841, + "n_responses": 1380 + }, + { + "problem_id": 359617, + "difficulty_1pl": 2.3291494846343994, + "difficulty_2pl": 0.37440264225006104, + "discrimination_2pl": 0.27584153413772583, + "difficulty_simple": 0.17657677283706286, + "percent_correct": 0.45597014925373136, + "n_responses": 1340 + }, + { + "problem_id": 359989, + "difficulty_1pl": 0.7382658123970032, + "difficulty_2pl": 0.14364780485630035, + "discrimination_2pl": 0.1724274754524231, + "difficulty_simple": 0.01284126794832444, + "percent_correct": 0.4967897271268058, + "n_responses": 1246 + }, + { + "problem_id": 360293, + "difficulty_1pl": 4.692921161651611, + "difficulty_2pl": -0.021440118551254272, + "discrimination_2pl": 0.027051076292991638, + "difficulty_simple": 0.9680615241817249, + "percent_correct": 0.2752670501232539, + "n_responses": 1217 + }, + { + "problem_id": 360704, + "difficulty_1pl": 6.04716157913208, + "difficulty_2pl": 0.030707888305187225, + "discrimination_2pl": 0.02017325907945633, + "difficulty_simple": 1.0434034646393826, + "percent_correct": 0.26049382716049385, + "n_responses": 810 + }, + { + "problem_id": 338281, + "difficulty_1pl": 6.076136589050293, + "difficulty_2pl": -0.007192627526819706, + "discrimination_2pl": 0.10171845555305481, + "difficulty_simple": 0.8187244879431476, + "percent_correct": 0.30603448275862066, + "n_responses": 232 + }, + { + "problem_id": 338629, + "difficulty_1pl": 0.33535322546958923, + "difficulty_2pl": -0.08908792585134506, + "discrimination_2pl": 0.25526002049446106, + "difficulty_simple": -0.044059989794030426, + "percent_correct": 0.5110132158590308, + "n_responses": 227 + }, + { + "problem_id": 338934, + "difficulty_1pl": 1.9962043762207031, + "difficulty_2pl": -0.08358302712440491, + "discrimination_2pl": 0.10106374323368073, + "difficulty_simple": 0.5349231753450512, + "percent_correct": 0.36936936936936937, + "n_responses": 222 + }, + { + "problem_id": 341602, + "difficulty_1pl": -6.779141426086426, + "difficulty_2pl": -0.1036844477057457, + "discrimination_2pl": 0.4287776052951813, + "difficulty_simple": -1.160170181667543, + "percent_correct": 0.7613636363636364, + "n_responses": 264 + }, + { + "problem_id": 339221, + "difficulty_1pl": -6.254949569702148, + "difficulty_2pl": -0.10843972116708755, + "discrimination_2pl": 0.30276045203208923, + "difficulty_simple": -1.3242219324775126, + "percent_correct": 0.7898832684824902, + "n_responses": 257 + }, + { + "problem_id": 339477, + "difficulty_1pl": -2.559208393096924, + "difficulty_2pl": -0.036340974271297455, + "discrimination_2pl": 0.18046115338802338, + "difficulty_simple": -0.5841568968515405, + "percent_correct": 0.642023346303502, + "n_responses": 257 + }, + { + "problem_id": 426376, + "difficulty_1pl": -2.406050682067871, + "difficulty_2pl": 0.06346762180328369, + "discrimination_2pl": 0.30506324768066406, + "difficulty_simple": -0.7649729151312009, + "percent_correct": 0.6824324324324325, + "n_responses": 148 + }, + { + "problem_id": 426537, + "difficulty_1pl": -2.795454740524292, + "difficulty_2pl": 0.13093110918998718, + "discrimination_2pl": 0.29554542899131775, + "difficulty_simple": -0.7339691750802003, + "percent_correct": 0.6756756756756757, + "n_responses": 148 + }, + { + "problem_id": 426703, + "difficulty_1pl": -12.503753662109375, + "difficulty_2pl": -0.03549892082810402, + "discrimination_2pl": 0.34504643082618713, + "difficulty_simple": -1.9153734251952315, + "percent_correct": 0.8716216216216216, + "n_responses": 148 + }, + { + "problem_id": 427041, + "difficulty_1pl": -2.774282693862915, + "difficulty_2pl": -0.04696497693657875, + "discrimination_2pl": 0.15394125878810883, + "difficulty_simple": -0.5835849780484189, + "percent_correct": 0.6418918918918919, + "n_responses": 148 + }, + { + "problem_id": 202480, + "difficulty_1pl": 7.051514625549316, + "difficulty_2pl": 0.16444744169712067, + "discrimination_2pl": 0.06113958731293678, + "difficulty_simple": 1.1230851451868353, + "percent_correct": 0.24543946932006633, + "n_responses": 603 + }, + { + "problem_id": 562131, + "difficulty_1pl": -3.527754545211792, + "difficulty_2pl": -0.16857877373695374, + "discrimination_2pl": 0.4255204498767853, + "difficulty_simple": -0.9177711170445892, + "percent_correct": 0.7145877378435518, + "n_responses": 946 + }, + { + "problem_id": 563384, + "difficulty_1pl": 3.395779848098755, + "difficulty_2pl": 0.10458561778068542, + "discrimination_2pl": 0.17926430702209473, + "difficulty_simple": 0.2576435633325538, + "percent_correct": 0.4359430604982206, + "n_responses": 1124 + }, + { + "problem_id": 564514, + "difficulty_1pl": 0.8831117153167725, + "difficulty_2pl": 0.23006904125213623, + "discrimination_2pl": 0.374072402715683, + "difficulty_simple": -0.05989814158106872, + "percent_correct": 0.5149700598802395, + "n_responses": 668 + }, + { + "problem_id": 564678, + "difficulty_1pl": -2.9816958904266357, + "difficulty_2pl": -0.11248087882995605, + "discrimination_2pl": 0.6204466819763184, + "difficulty_simple": -0.7684392854748838, + "percent_correct": 0.6831831831831832, + "n_responses": 666 + }, + { + "problem_id": 564837, + "difficulty_1pl": -0.5985624194145203, + "difficulty_2pl": 0.06706651300191879, + "discrimination_2pl": 0.44174137711524963, + "difficulty_simple": -0.3369878334359349, + "percent_correct": 0.5834586466165413, + "n_responses": 665 + }, + { + "problem_id": 564997, + "difficulty_1pl": 1.46506929397583, + "difficulty_2pl": 0.15726767480373383, + "discrimination_2pl": 0.3026469647884369, + "difficulty_simple": -0.048057294953779146, + "percent_correct": 0.512012012012012, + "n_responses": 666 + }, + { + "problem_id": 514446, + "difficulty_1pl": -1.0874215364456177, + "difficulty_2pl": 0.21026678383350372, + "discrimination_2pl": 0.41523367166519165, + "difficulty_simple": -0.44311070772453126, + "percent_correct": 0.609, + "n_responses": 1000 + }, + { + "problem_id": 515041, + "difficulty_1pl": -2.214662790298462, + "difficulty_2pl": -0.14275802671909332, + "discrimination_2pl": 0.5384999513626099, + "difficulty_simple": -0.939511103680995, + "percent_correct": 0.7190008920606601, + "n_responses": 1121 + }, + { + "problem_id": 517428, + "difficulty_1pl": -5.053105354309082, + "difficulty_2pl": -0.366538405418396, + "discrimination_2pl": 0.4441947638988495, + "difficulty_simple": -0.8828255755796083, + "percent_correct": 0.7074074074074074, + "n_responses": 1080 + }, + { + "problem_id": 515874, + "difficulty_1pl": -7.0584211349487305, + "difficulty_2pl": -0.42915990948677063, + "discrimination_2pl": 0.5102884769439697, + "difficulty_simple": -1.5225394596160096, + "percent_correct": 0.8209121245828699, + "n_responses": 899 + }, + { + "problem_id": 98864, + "difficulty_1pl": -1.4780895709991455, + "difficulty_2pl": -0.10414164513349533, + "discrimination_2pl": 0.34480640292167664, + "difficulty_simple": -0.7519876805828789, + "percent_correct": 0.6796116504854369, + "n_responses": 206 + }, + { + "problem_id": 100544, + "difficulty_1pl": -2.8224215507507324, + "difficulty_2pl": -0.06694052368402481, + "discrimination_2pl": 0.3196411728858948, + "difficulty_simple": -0.8216255053330769, + "percent_correct": 0.6945812807881774, + "n_responses": 203 + }, + { + "problem_id": 100670, + "difficulty_1pl": -5.464722156524658, + "difficulty_2pl": -0.09222389757633209, + "discrimination_2pl": 0.3899044096469879, + "difficulty_simple": -0.8985911547747543, + "percent_correct": 0.7106598984771574, + "n_responses": 197 + }, + { + "problem_id": 218498, + "difficulty_1pl": -13.062119483947754, + "difficulty_2pl": -1.1303950548171997, + "discrimination_2pl": 0.7889914512634277, + "difficulty_simple": -2.0821552475514324, + "percent_correct": 0.8891566265060241, + "n_responses": 2075 + }, + { + "problem_id": 214107, + "difficulty_1pl": -8.829320907592773, + "difficulty_2pl": -0.6537936925888062, + "discrimination_2pl": 0.58295738697052, + "difficulty_simple": -1.4705025017724902, + "percent_correct": 0.8131337518107195, + "n_responses": 2071 + }, + { + "problem_id": 214460, + "difficulty_1pl": -9.485089302062988, + "difficulty_2pl": -1.046644926071167, + "discrimination_2pl": 0.7656422853469849, + "difficulty_simple": -1.9267157017991658, + "percent_correct": 0.8728854519091348, + "n_responses": 2069 + }, + { + "problem_id": 214762, + "difficulty_1pl": 0.28981077671051025, + "difficulty_2pl": 0.297980397939682, + "discrimination_2pl": 0.29530084133148193, + "difficulty_simple": -0.13288284211213416, + "percent_correct": 0.5331719128329298, + "n_responses": 2065 + }, + { + "problem_id": 218838, + "difficulty_1pl": 1.1022974252700806, + "difficulty_2pl": 0.27134227752685547, + "discrimination_2pl": 0.2591596245765686, + "difficulty_simple": -0.03313912712880695, + "percent_correct": 0.508284023668639, + "n_responses": 1690 + }, + { + "problem_id": 579648, + "difficulty_1pl": 0.711140513420105, + "difficulty_2pl": 0.18841996788978577, + "discrimination_2pl": 0.4179125130176544, + "difficulty_simple": -0.22314355131420985, + "percent_correct": 0.5555555555555556, + "n_responses": 1044 + }, + { + "problem_id": 578697, + "difficulty_1pl": -8.413348197937012, + "difficulty_2pl": -0.40861591696739197, + "discrimination_2pl": 0.45698586106300354, + "difficulty_simple": -1.3905226972294116, + "percent_correct": 0.8006756756756757, + "n_responses": 888 + }, + { + "problem_id": 579179, + "difficulty_1pl": 2.4954922199249268, + "difficulty_2pl": 0.20275327563285828, + "discrimination_2pl": 0.17779645323753357, + "difficulty_simple": 0.23161817830518186, + "percent_correct": 0.4423529411764706, + "n_responses": 850 + }, + { + "problem_id": 477606, + "difficulty_1pl": -2.1619248390197754, + "difficulty_2pl": 0.09370448440313339, + "discrimination_2pl": 0.2976492941379547, + "difficulty_simple": -0.5225216635291821, + "percent_correct": 0.6277372262773723, + "n_responses": 137 + }, + { + "problem_id": 477986, + "difficulty_1pl": -0.5583822131156921, + "difficulty_2pl": -0.05923891067504883, + "discrimination_2pl": 0.1814609169960022, + "difficulty_simple": -0.10697211955216783, + "percent_correct": 0.5267175572519084, + "n_responses": 131 + }, + { + "problem_id": 478342, + "difficulty_1pl": -0.575038492679596, + "difficulty_2pl": 0.08113260567188263, + "discrimination_2pl": 0.26055222749710083, + "difficulty_simple": -0.42050298547270504, + "percent_correct": 0.6036036036036037, + "n_responses": 111 + }, + { + "problem_id": 478570, + "difficulty_1pl": -3.435157537460327, + "difficulty_2pl": 0.07352381944656372, + "discrimination_2pl": 0.2806309759616852, + "difficulty_simple": -0.9382696385929302, + "percent_correct": 0.71875, + "n_responses": 96 + }, + { + "problem_id": 479016, + "difficulty_1pl": -3.2732982635498047, + "difficulty_2pl": -0.013336123898625374, + "discrimination_2pl": 0.2567881643772125, + "difficulty_simple": -0.6505875661411494, + "percent_correct": 0.6571428571428571, + "n_responses": 105 + }, + { + "problem_id": 479240, + "difficulty_1pl": 2.16617488861084, + "difficulty_2pl": -0.03023182787001133, + "discrimination_2pl": 0.10130096971988678, + "difficulty_simple": 0.4542552722775964, + "percent_correct": 0.3883495145631068, + "n_responses": 103 + }, + { + "problem_id": 490267, + "difficulty_1pl": -8.896583557128906, + "difficulty_2pl": -0.3982492983341217, + "discrimination_2pl": 0.4533621072769165, + "difficulty_simple": -1.5267461965889866, + "percent_correct": 0.8215297450424929, + "n_responses": 353 + }, + { + "problem_id": 490707, + "difficulty_1pl": 2.3663694858551025, + "difficulty_2pl": 0.20170718431472778, + "discrimination_2pl": 0.15183313190937042, + "difficulty_simple": 0.4513447138588581, + "percent_correct": 0.38904109589041097, + "n_responses": 365 + }, + { + "problem_id": 110803, + "difficulty_1pl": 5.735635280609131, + "difficulty_2pl": 0.20707601308822632, + "discrimination_2pl": 0.057071249932050705, + "difficulty_simple": 0.6865464965285933, + "percent_correct": 0.33480176211453744, + "n_responses": 1135 + }, + { + "problem_id": 182148, + "difficulty_1pl": -7.539549350738525, + "difficulty_2pl": -0.45438191294670105, + "discrimination_2pl": 0.6950950026512146, + "difficulty_simple": -1.5260563034950492, + "percent_correct": 0.8214285714285714, + "n_responses": 1288 + }, + { + "problem_id": 182258, + "difficulty_1pl": -0.64443439245224, + "difficulty_2pl": 0.10943318903446198, + "discrimination_2pl": 0.3661949038505554, + "difficulty_simple": -0.4784038313710023, + "percent_correct": 0.6173708920187794, + "n_responses": 1278 + }, + { + "problem_id": 182395, + "difficulty_1pl": -5.126473903656006, + "difficulty_2pl": 0.006564134731888771, + "discrimination_2pl": 0.6039913296699524, + "difficulty_simple": -1.0435906277778961, + "percent_correct": 0.739542225730071, + "n_responses": 1267 + }, + { + "problem_id": 184060, + "difficulty_1pl": 1.763694405555725, + "difficulty_2pl": 0.015522470697760582, + "discrimination_2pl": 0.17361010611057281, + "difficulty_simple": -0.13424002617254233, + "percent_correct": 0.5335097001763669, + "n_responses": 1134 + }, + { + "problem_id": 184230, + "difficulty_1pl": -2.740509271621704, + "difficulty_2pl": -0.1590479165315628, + "discrimination_2pl": 0.4665420949459076, + "difficulty_simple": -0.9376229126205102, + "percent_correct": 0.7186192468619247, + "n_responses": 956 + }, + { + "problem_id": 270541, + "difficulty_1pl": -0.17630071938037872, + "difficulty_2pl": 0.0027331369929015636, + "discrimination_2pl": 0.42108315229415894, + "difficulty_simple": -0.6335455069692427, + "percent_correct": 0.6532929598788796, + "n_responses": 1321 + }, + { + "problem_id": 270745, + "difficulty_1pl": -0.34184521436691284, + "difficulty_2pl": 0.11206352710723877, + "discrimination_2pl": 0.38737180829048157, + "difficulty_simple": -0.5683363363589228, + "percent_correct": 0.6383792048929664, + "n_responses": 1308 + }, + { + "problem_id": 271030, + "difficulty_1pl": -0.5989829301834106, + "difficulty_2pl": 0.02889110893011093, + "discrimination_2pl": 0.2590879797935486, + "difficulty_simple": -0.5611913357641015, + "percent_correct": 0.6367281475541299, + "n_responses": 1247 + }, + { + "problem_id": 272713, + "difficulty_1pl": -0.23429220914840698, + "difficulty_2pl": 0.20450139045715332, + "discrimination_2pl": 0.3794265389442444, + "difficulty_simple": -0.43739815521117337, + "percent_correct": 0.6076388888888888, + "n_responses": 1152 + }, + { + "problem_id": 271838, + "difficulty_1pl": 1.4842228889465332, + "difficulty_2pl": -0.08190251886844635, + "discrimination_2pl": 0.08529583364725113, + "difficulty_simple": -0.2812511821214905, + "percent_correct": 0.5698529411764706, + "n_responses": 1088 + }, + { + "problem_id": 272220, + "difficulty_1pl": -1.0003739595413208, + "difficulty_2pl": -0.01252127718180418, + "discrimination_2pl": 0.37147390842437744, + "difficulty_simple": -0.6648624667213632, + "percent_correct": 0.6603518267929634, + "n_responses": 739 + }, + { + "problem_id": 272435, + "difficulty_1pl": 6.797754764556885, + "difficulty_2pl": 0.04308312386274338, + "discrimination_2pl": 0.0210072360932827, + "difficulty_simple": 0.8908536561933793, + "percent_correct": 0.29093369418132614, + "n_responses": 739 + }, + { + "problem_id": 351353, + "difficulty_1pl": -3.5713210105895996, + "difficulty_2pl": -0.05179553106427193, + "discrimination_2pl": 0.48959630727767944, + "difficulty_simple": -0.918819178227514, + "percent_correct": 0.7148014440433214, + "n_responses": 831 + }, + { + "problem_id": 130584, + "difficulty_1pl": -0.9448762536048889, + "difficulty_2pl": -0.07249941676855087, + "discrimination_2pl": 0.4217519164085388, + "difficulty_simple": -0.5867509320285869, + "percent_correct": 0.6426193118756937, + "n_responses": 901 + }, + { + "problem_id": 130824, + "difficulty_1pl": 1.5743354558944702, + "difficulty_2pl": 0.0714733824133873, + "discrimination_2pl": 0.18341344594955444, + "difficulty_simple": -0.0022497197340154416, + "percent_correct": 0.500562429696288, + "n_responses": 889 + }, + { + "problem_id": 131134, + "difficulty_1pl": -2.9579923152923584, + "difficulty_2pl": -0.06957463920116425, + "discrimination_2pl": 0.4656299352645874, + "difficulty_simple": -0.8727327575350253, + "percent_correct": 0.7053140096618358, + "n_responses": 828 + }, + { + "problem_id": 131367, + "difficulty_1pl": -3.3331410884857178, + "difficulty_2pl": 0.15544132888317108, + "discrimination_2pl": 0.3583330512046814, + "difficulty_simple": -0.514739523087127, + "percent_correct": 0.6259168704156479, + "n_responses": 818 + }, + { + "problem_id": 131672, + "difficulty_1pl": 0.7444083094596863, + "difficulty_2pl": -0.04166727140545845, + "discrimination_2pl": 0.3044409453868866, + "difficulty_simple": -0.23303917906843374, + "percent_correct": 0.557997557997558, + "n_responses": 819 + }, + { + "problem_id": 131899, + "difficulty_1pl": 0.677280843257904, + "difficulty_2pl": 0.19150276482105255, + "discrimination_2pl": 0.3130328059196472, + "difficulty_simple": -0.2287145963636654, + "percent_correct": 0.556930693069307, + "n_responses": 808 + }, + { + "problem_id": 522821, + "difficulty_1pl": 1.6092342138290405, + "difficulty_2pl": 0.44559767842292786, + "discrimination_2pl": 0.30610740184783936, + "difficulty_simple": 0.04917411502843934, + "percent_correct": 0.48770894788593905, + "n_responses": 1017 + }, + { + "problem_id": 132200, + "difficulty_1pl": 3.4835352897644043, + "difficulty_2pl": -0.06413216143846512, + "discrimination_2pl": 0.12317997217178345, + "difficulty_simple": 0.29868328351375445, + "percent_correct": 0.4258793969849246, + "n_responses": 796 + }, + { + "problem_id": 132416, + "difficulty_1pl": 2.0855937004089355, + "difficulty_2pl": 0.10345514118671417, + "discrimination_2pl": 0.21129702031612396, + "difficulty_simple": 0.11207645762326303, + "percent_correct": 0.4720101781170484, + "n_responses": 786 + }, + { + "problem_id": 132688, + "difficulty_1pl": -2.154794931411743, + "difficulty_2pl": -0.08803654462099075, + "discrimination_2pl": 0.445218950510025, + "difficulty_simple": -0.865705235086049, + "percent_correct": 0.703851261620186, + "n_responses": 753 + }, + { + "problem_id": 132932, + "difficulty_1pl": 0.5595614314079285, + "difficulty_2pl": 0.3166440427303314, + "discrimination_2pl": 0.3665124475955963, + "difficulty_simple": -0.20336466260867095, + "percent_correct": 0.5506666666666666, + "n_responses": 750 + }, + { + "problem_id": 133257, + "difficulty_1pl": -3.6386260986328125, + "difficulty_2pl": -0.14411070942878723, + "discrimination_2pl": 0.34042975306510925, + "difficulty_simple": -0.8953256034091103, + "percent_correct": 0.7099879663056559, + "n_responses": 831 + }, + { + "problem_id": 238362, + "difficulty_1pl": 5.645744323730469, + "difficulty_2pl": 0.09645786881446838, + "discrimination_2pl": 0.04845802113413811, + "difficulty_simple": 0.6536972147692546, + "percent_correct": 0.34215686274509804, + "n_responses": 1020 + }, + { + "problem_id": 236051, + "difficulty_1pl": -0.03490003943443298, + "difficulty_2pl": 0.21635887026786804, + "discrimination_2pl": 0.3459728956222534, + "difficulty_simple": -0.36425180072828844, + "percent_correct": 0.5900692840646651, + "n_responses": 866 + }, + { + "problem_id": 236208, + "difficulty_1pl": 1.0493805408477783, + "difficulty_2pl": 0.08110854029655457, + "discrimination_2pl": 0.3385342061519623, + "difficulty_simple": -0.3489749201534217, + "percent_correct": 0.5863689776733255, + "n_responses": 851 + }, + { + "problem_id": 236371, + "difficulty_1pl": -0.6727870106697083, + "difficulty_2pl": 0.20780229568481445, + "discrimination_2pl": 0.41729381680488586, + "difficulty_simple": -0.5234840206379142, + "percent_correct": 0.6279620853080569, + "n_responses": 844 + }, + { + "problem_id": 237164, + "difficulty_1pl": -0.5147451758384705, + "difficulty_2pl": 0.1863635778427124, + "discrimination_2pl": 0.5019415616989136, + "difficulty_simple": -0.6026993740717346, + "percent_correct": 0.646273637374861, + "n_responses": 899 + }, + { + "problem_id": 237316, + "difficulty_1pl": -6.7934675216674805, + "difficulty_2pl": -0.055899739265441895, + "discrimination_2pl": 0.696008563041687, + "difficulty_simple": -1.1637374921340369, + "percent_correct": 0.7620111731843575, + "n_responses": 895 + }, + { + "problem_id": 237456, + "difficulty_1pl": -4.3066606521606445, + "difficulty_2pl": -0.09211515635251999, + "discrimination_2pl": 0.6012704968452454, + "difficulty_simple": -1.156116783148301, + "percent_correct": 0.7606263982102909, + "n_responses": 894 + }, + { + "problem_id": 237612, + "difficulty_1pl": -0.5935583710670471, + "difficulty_2pl": 0.14795520901679993, + "discrimination_2pl": 0.4177072048187256, + "difficulty_simple": -0.5613779029288217, + "percent_correct": 0.6367713004484304, + "n_responses": 892 + }, + { + "problem_id": 237868, + "difficulty_1pl": 0.49683859944343567, + "difficulty_2pl": 0.15287421643733978, + "discrimination_2pl": 0.31334125995635986, + "difficulty_simple": -0.24537969276109134, + "percent_correct": 0.561038961038961, + "n_responses": 770 + }, + { + "problem_id": 238070, + "difficulty_1pl": 1.4104506969451904, + "difficulty_2pl": 0.1899757832288742, + "discrimination_2pl": 0.3842805325984955, + "difficulty_simple": -0.438041278542777, + "percent_correct": 0.6077922077922078, + "n_responses": 770 + }, + { + "problem_id": 218191, + "difficulty_1pl": -5.810689926147461, + "difficulty_2pl": 0.06824975460767746, + "discrimination_2pl": 0.5797224044799805, + "difficulty_simple": -1.12632187009587, + "percent_correct": 0.7551594746716698, + "n_responses": 1066 + }, + { + "problem_id": 218311, + "difficulty_1pl": -0.7197866439819336, + "difficulty_2pl": 0.11512314528226852, + "discrimination_2pl": 0.46158286929130554, + "difficulty_simple": -0.6579074524276427, + "percent_correct": 0.6587901701323251, + "n_responses": 1058 + }, + { + "problem_id": 218537, + "difficulty_1pl": -3.271108388900757, + "difficulty_2pl": -0.3643462359905243, + "discrimination_2pl": 0.2621522545814514, + "difficulty_simple": -1.0999887513768332, + "percent_correct": 0.7502579979360166, + "n_responses": 969 + }, + { + "problem_id": 219121, + "difficulty_1pl": -4.679835319519043, + "difficulty_2pl": -0.4007611572742462, + "discrimination_2pl": 0.6397634148597717, + "difficulty_simple": -1.5828372306369212, + "percent_correct": 0.8296059637912673, + "n_responses": 939 + }, + { + "problem_id": 219244, + "difficulty_1pl": -5.856187343597412, + "difficulty_2pl": -0.2219621241092682, + "discrimination_2pl": 0.5719497799873352, + "difficulty_simple": -1.362452172157131, + "percent_correct": 0.7961579509071505, + "n_responses": 937 + }, + { + "problem_id": 103383, + "difficulty_1pl": -2.1081831455230713, + "difficulty_2pl": -0.08551930636167526, + "discrimination_2pl": 0.42229267954826355, + "difficulty_simple": -0.762373125116359, + "percent_correct": 0.681868743047831, + "n_responses": 899 + }, + { + "problem_id": 103888, + "difficulty_1pl": 1.8036092519760132, + "difficulty_2pl": 0.13012422621250153, + "discrimination_2pl": 0.2668161690235138, + "difficulty_simple": 0.012903404835907782, + "percent_correct": 0.4967741935483871, + "n_responses": 620 + }, + { + "problem_id": 20026, + "difficulty_1pl": -4.26677942276001, + "difficulty_2pl": -0.07998193055391312, + "discrimination_2pl": 0.4071013331413269, + "difficulty_simple": -0.8567766043417475, + "percent_correct": 0.7019867549668874, + "n_responses": 151 + }, + { + "problem_id": 20199, + "difficulty_1pl": -2.8088369369506836, + "difficulty_2pl": -0.040950242429971695, + "discrimination_2pl": 0.3900029957294464, + "difficulty_simple": -0.8377284093710529, + "percent_correct": 0.697986577181208, + "n_responses": 149 + }, + { + "problem_id": 20357, + "difficulty_1pl": -6.2232747077941895, + "difficulty_2pl": -0.059620603919029236, + "discrimination_2pl": 0.39337286353111267, + "difficulty_simple": -1.4201959127955717, + "percent_correct": 0.8053691275167785, + "n_responses": 149 + }, + { + "problem_id": 20515, + "difficulty_1pl": -2.843010187149048, + "difficulty_2pl": -0.07131347805261612, + "discrimination_2pl": 0.38106873631477356, + "difficulty_simple": -0.925769475828699, + "percent_correct": 0.7162162162162162, + "n_responses": 148 + }, + { + "problem_id": 20669, + "difficulty_1pl": 0.8442868590354919, + "difficulty_2pl": 0.00018175214063376188, + "discrimination_2pl": 0.2052200883626938, + "difficulty_simple": -0.21706450523782764, + "percent_correct": 0.5540540540540541, + "n_responses": 148 + }, + { + "problem_id": 20885, + "difficulty_1pl": -2.5965304374694824, + "difficulty_2pl": -0.05407993867993355, + "discrimination_2pl": 0.32825493812561035, + "difficulty_simple": -0.6330432564902396, + "percent_correct": 0.653179190751445, + "n_responses": 173 + }, + { + "problem_id": 21043, + "difficulty_1pl": -6.470810890197754, + "difficulty_2pl": -0.05912701040506363, + "discrimination_2pl": 0.3843379616737366, + "difficulty_simple": -1.336461987372015, + "percent_correct": 0.791907514450867, + "n_responses": 173 + }, + { + "problem_id": 21201, + "difficulty_1pl": -2.8674654960632324, + "difficulty_2pl": -0.09967990964651108, + "discrimination_2pl": 0.3568466007709503, + "difficulty_simple": -0.8171998292299241, + "percent_correct": 0.6936416184971098, + "n_responses": 173 + }, + { + "problem_id": 21347, + "difficulty_1pl": 0.9304838180541992, + "difficulty_2pl": 0.02552330121397972, + "discrimination_2pl": 0.184591606259346, + "difficulty_simple": -0.11641035184441147, + "percent_correct": 0.5290697674418605, + "n_responses": 172 + }, + { + "problem_id": 22470, + "difficulty_1pl": -6.335805892944336, + "difficulty_2pl": -0.19715124368667603, + "discrimination_2pl": 0.4161187708377838, + "difficulty_simple": -1.1671322351048659, + "percent_correct": 0.7626262626262627, + "n_responses": 198 + }, + { + "problem_id": 331301, + "difficulty_1pl": -1.1742957830429077, + "difficulty_2pl": -0.045642778277397156, + "discrimination_2pl": 0.31483039259910583, + "difficulty_simple": -0.3209758005512447, + "percent_correct": 0.5795620437956205, + "n_responses": 685 + }, + { + "problem_id": 35357, + "difficulty_1pl": -3.429656982421875, + "difficulty_2pl": -0.10899042338132858, + "discrimination_2pl": 0.4206988513469696, + "difficulty_simple": -0.7353475350503218, + "percent_correct": 0.6759776536312849, + "n_responses": 537 + }, + { + "problem_id": 275581, + "difficulty_1pl": -0.44305697083473206, + "difficulty_2pl": 0.07773757725954056, + "discrimination_2pl": 0.23228870332241058, + "difficulty_simple": -0.3091224036896501, + "percent_correct": 0.5766710353866317, + "n_responses": 1526 + }, + { + "problem_id": 277069, + "difficulty_1pl": 4.519800662994385, + "difficulty_2pl": 0.4317643642425537, + "discrimination_2pl": 0.1814887970685959, + "difficulty_simple": 0.43969827975040665, + "percent_correct": 0.391812865497076, + "n_responses": 1539 + }, + { + "problem_id": 277314, + "difficulty_1pl": 3.5732927322387695, + "difficulty_2pl": 0.519783079624176, + "discrimination_2pl": 0.2081858366727829, + "difficulty_simple": 0.5121968958355125, + "percent_correct": 0.37467866323907456, + "n_responses": 1556 + }, + { + "problem_id": 316680, + "difficulty_1pl": -3.882732391357422, + "difficulty_2pl": -0.07584355771541595, + "discrimination_2pl": 0.2706913650035858, + "difficulty_simple": -1.0635209688568397, + "percent_correct": 0.7433628318584071, + "n_responses": 113 + }, + { + "problem_id": 316809, + "difficulty_1pl": -13.255654335021973, + "difficulty_2pl": 0.023901863023638725, + "discrimination_2pl": 0.35879620909690857, + "difficulty_simple": -1.5260563034950492, + "percent_correct": 0.8214285714285714, + "n_responses": 112 + }, + { + "problem_id": 316941, + "difficulty_1pl": -14.959068298339844, + "difficulty_2pl": -0.04798312857747078, + "discrimination_2pl": 0.4182299077510834, + "difficulty_simple": -2.1102132003465894, + "percent_correct": 0.8918918918918919, + "n_responses": 111 + }, + { + "problem_id": 317074, + "difficulty_1pl": -14.151713371276855, + "difficulty_2pl": -0.20897164940834045, + "discrimination_2pl": 0.3973981440067291, + "difficulty_simple": -2.4277482359480524, + "percent_correct": 0.918918918918919, + "n_responses": 111 + }, + { + "problem_id": 317307, + "difficulty_1pl": -7.674577713012695, + "difficulty_2pl": -0.014310036785900593, + "discrimination_2pl": 0.25643181800842285, + "difficulty_simple": -1.0560526742493137, + "percent_correct": 0.7419354838709677, + "n_responses": 93 + }, + { + "problem_id": 317429, + "difficulty_1pl": -9.830615997314453, + "difficulty_2pl": -0.07748895138502121, + "discrimination_2pl": 0.33128610253334045, + "difficulty_simple": -1.897119984885881, + "percent_correct": 0.8695652173913043, + "n_responses": 92 + }, + { + "problem_id": 318171, + "difficulty_1pl": 0.1717776358127594, + "difficulty_2pl": -0.010449993424117565, + "discrimination_2pl": 0.18628007173538208, + "difficulty_simple": -0.19912867511033602, + "percent_correct": 0.549618320610687, + "n_responses": 131 + }, + { + "problem_id": 318309, + "difficulty_1pl": -0.8735405206680298, + "difficulty_2pl": -0.056063462048769, + "discrimination_2pl": 0.19479481875896454, + "difficulty_simple": -0.35482137528940944, + "percent_correct": 0.5877862595419847, + "n_responses": 131 + }, + { + "problem_id": 39475, + "difficulty_1pl": -4.151516914367676, + "difficulty_2pl": -0.3624430000782013, + "discrimination_2pl": 0.5108564496040344, + "difficulty_simple": -1.0690722655929585, + "percent_correct": 0.7444204463642908, + "n_responses": 1389 + }, + { + "problem_id": 40142, + "difficulty_1pl": 4.109433650970459, + "difficulty_2pl": 0.1511867195367813, + "discrimination_2pl": 0.048996299505233765, + "difficulty_simple": 0.5296037191266878, + "percent_correct": 0.37060931899641575, + "n_responses": 1395 + }, + { + "problem_id": 40512, + "difficulty_1pl": 2.55324387550354, + "difficulty_2pl": 0.20553900301456451, + "discrimination_2pl": 0.1477939784526825, + "difficulty_simple": 0.33051244743866215, + "percent_correct": 0.4181159420289855, + "n_responses": 1380 + }, + { + "problem_id": 43371, + "difficulty_1pl": 4.578989505767822, + "difficulty_2pl": 0.052289772778749466, + "discrimination_2pl": 0.05242765322327614, + "difficulty_simple": 0.9427190341424722, + "percent_correct": 0.2803514376996805, + "n_responses": 1252 + }, + { + "problem_id": 537870, + "difficulty_1pl": 1.0481573343276978, + "difficulty_2pl": -0.12339461594820023, + "discrimination_2pl": 0.10421299189329147, + "difficulty_simple": -0.02777956410707559, + "percent_correct": 0.5069444444444444, + "n_responses": 144 + }, + { + "problem_id": 238173, + "difficulty_1pl": -1.5344494581222534, + "difficulty_2pl": 0.014163322746753693, + "discrimination_2pl": 0.4238649904727936, + "difficulty_simple": -0.42381424677636076, + "percent_correct": 0.6043956043956044, + "n_responses": 728 + }, + { + "problem_id": 178224, + "difficulty_1pl": 0.4302023947238922, + "difficulty_2pl": -0.013119170442223549, + "discrimination_2pl": 0.2166680097579956, + "difficulty_simple": 0.12323264042394806, + "percent_correct": 0.46923076923076923, + "n_responses": 130 + }, + { + "problem_id": 178110, + "difficulty_1pl": -0.9863837957382202, + "difficulty_2pl": 0.046422235667705536, + "discrimination_2pl": 0.2985899746417999, + "difficulty_simple": -0.25704510298989125, + "percent_correct": 0.5639097744360902, + "n_responses": 133 + }, + { + "problem_id": 177927, + "difficulty_1pl": 2.6199092864990234, + "difficulty_2pl": 0.02643667161464691, + "discrimination_2pl": 0.08194760978221893, + "difficulty_simple": 0.6931471805599455, + "percent_correct": 0.3333333333333333, + "n_responses": 204 + }, + { + "problem_id": 177807, + "difficulty_1pl": 0.35931000113487244, + "difficulty_2pl": 0.051053281873464584, + "discrimination_2pl": 0.23792237043380737, + "difficulty_simple": 0.009756174945364656, + "percent_correct": 0.4975609756097561, + "n_responses": 205 + }, + { + "problem_id": 177693, + "difficulty_1pl": -0.3076538145542145, + "difficulty_2pl": 0.035739537328481674, + "discrimination_2pl": 0.278655081987381, + "difficulty_simple": -0.29334780998745813, + "percent_correct": 0.5728155339805825, + "n_responses": 206 + }, + { + "problem_id": 251426, + "difficulty_1pl": 3.2355048656463623, + "difficulty_2pl": 0.1458994299173355, + "discrimination_2pl": 0.08470969647169113, + "difficulty_simple": 0.5258901532273865, + "percent_correct": 0.3714759535655058, + "n_responses": 603 + }, + { + "problem_id": 76458, + "difficulty_1pl": -11.61986255645752, + "difficulty_2pl": -0.8968029618263245, + "discrimination_2pl": 0.6971315145492554, + "difficulty_simple": -2.3683728335320486, + "percent_correct": 0.9143835616438356, + "n_responses": 1168 + }, + { + "problem_id": 76591, + "difficulty_1pl": 2.2904179096221924, + "difficulty_2pl": 0.22392962872982025, + "discrimination_2pl": 0.19530950486660004, + "difficulty_simple": 0.15813316219157586, + "percent_correct": 0.46054888507718694, + "n_responses": 1166 + }, + { + "problem_id": 76716, + "difficulty_1pl": -5.197271823883057, + "difficulty_2pl": -0.42331254482269287, + "discrimination_2pl": 0.4167872965335846, + "difficulty_simple": -1.0667914220570307, + "percent_correct": 0.7439862542955327, + "n_responses": 1164 + }, + { + "problem_id": 77264, + "difficulty_1pl": 2.860290050506592, + "difficulty_2pl": 0.19738835096359253, + "discrimination_2pl": 0.15349146723747253, + "difficulty_simple": 0.30739793561619805, + "percent_correct": 0.42375, + "n_responses": 800 + }, + { + "problem_id": 77616, + "difficulty_1pl": 3.097475051879883, + "difficulty_2pl": 0.05129888281226158, + "discrimination_2pl": 0.10901731997728348, + "difficulty_simple": 0.46515558693280223, + "percent_correct": 0.3857634902411022, + "n_responses": 871 + }, + { + "problem_id": 18664, + "difficulty_1pl": -0.9501065611839294, + "difficulty_2pl": -0.12632741034030914, + "discrimination_2pl": 0.15058550238609314, + "difficulty_simple": -0.29076373898918895, + "percent_correct": 0.5721830985915493, + "n_responses": 1136 + }, + { + "problem_id": 428623, + "difficulty_1pl": -14.382484436035156, + "difficulty_2pl": -0.6861299276351929, + "discrimination_2pl": 0.5885244607925415, + "difficulty_simple": -1.75046541076809, + "percent_correct": 0.8520114942528736, + "n_responses": 696 + }, + { + "problem_id": 428993, + "difficulty_1pl": -7.060297012329102, + "difficulty_2pl": -0.5892359018325806, + "discrimination_2pl": 0.5714585781097412, + "difficulty_simple": -1.6287198419835507, + "percent_correct": 0.8359941944847605, + "n_responses": 689 + }, + { + "problem_id": 429393, + "difficulty_1pl": -9.382248878479004, + "difficulty_2pl": -0.3886633515357971, + "discrimination_2pl": 0.5595242381095886, + "difficulty_simple": -1.6978633834609285, + "percent_correct": 0.8452554744525548, + "n_responses": 685 + }, + { + "problem_id": 429767, + "difficulty_1pl": -3.4135921001434326, + "difficulty_2pl": -0.29995930194854736, + "discrimination_2pl": 0.2987019121646881, + "difficulty_simple": -0.8634329000097106, + "percent_correct": 0.7033773861967695, + "n_responses": 681 + }, + { + "problem_id": 477073, + "difficulty_1pl": 5.354121208190918, + "difficulty_2pl": 0.20429681241512299, + "discrimination_2pl": 0.08359470963478088, + "difficulty_simple": 0.5536177692868691, + "percent_correct": 0.36502546689303905, + "n_responses": 1178 + }, + { + "problem_id": 469563, + "difficulty_1pl": -0.5004530549049377, + "difficulty_2pl": 0.14520180225372314, + "discrimination_2pl": 0.33332815766334534, + "difficulty_simple": -0.3856624808119846, + "percent_correct": 0.5952380952380952, + "n_responses": 1092 + }, + { + "problem_id": 130932, + "difficulty_1pl": -4.450727939605713, + "difficulty_2pl": -0.2362525314092636, + "discrimination_2pl": 0.49626806378364563, + "difficulty_simple": -1.083032616191365, + "percent_correct": 0.7470674486803519, + "n_responses": 1364 + }, + { + "problem_id": 131258, + "difficulty_1pl": -1.4988192319869995, + "difficulty_2pl": -0.11763803660869598, + "discrimination_2pl": 0.44871988892555237, + "difficulty_simple": -0.8854588304289863, + "percent_correct": 0.7079521463757917, + "n_responses": 1421 + }, + { + "problem_id": 131386, + "difficulty_1pl": -5.920231819152832, + "difficulty_2pl": -0.339096337556839, + "discrimination_2pl": 0.6180054545402527, + "difficulty_simple": -1.3103958781923808, + "percent_correct": 0.7875793930839803, + "n_responses": 1417 + }, + { + "problem_id": 131506, + "difficulty_1pl": -6.922861099243164, + "difficulty_2pl": -0.2755615711212158, + "discrimination_2pl": 0.6746293902397156, + "difficulty_simple": -1.4464831581309958, + "percent_correct": 0.8094565984474241, + "n_responses": 1417 + }, + { + "problem_id": 132330, + "difficulty_1pl": 0.4286336898803711, + "difficulty_2pl": 0.15785470604896545, + "discrimination_2pl": 0.2790953516960144, + "difficulty_simple": -0.2616098321420059, + "percent_correct": 0.5650319829424307, + "n_responses": 938 + }, + { + "problem_id": 418897, + "difficulty_1pl": -0.6498540043830872, + "difficulty_2pl": 0.34693312644958496, + "discrimination_2pl": 0.41888803243637085, + "difficulty_simple": -0.22386531244261948, + "percent_correct": 0.5557337610264635, + "n_responses": 1247 + }, + { + "problem_id": 419376, + "difficulty_1pl": -4.538326740264893, + "difficulty_2pl": -0.42457252740859985, + "discrimination_2pl": 0.48305970430374146, + "difficulty_simple": -1.0302826204772697, + "percent_correct": 0.7369706840390879, + "n_responses": 1228 + }, + { + "problem_id": 199749, + "difficulty_1pl": -3.025996685028076, + "difficulty_2pl": -0.11886094510555267, + "discrimination_2pl": 0.325748473405838, + "difficulty_simple": -0.8401293709085913, + "percent_correct": 0.6984924623115578, + "n_responses": 398 + }, + { + "problem_id": 231289, + "difficulty_1pl": 1.2350353002548218, + "difficulty_2pl": 0.0634361207485199, + "discrimination_2pl": 0.24538098275661469, + "difficulty_simple": -0.03333642026759172, + "percent_correct": 0.5083333333333333, + "n_responses": 480 + }, + { + "problem_id": 231522, + "difficulty_1pl": -2.4554429054260254, + "difficulty_2pl": -0.08859171718358994, + "discrimination_2pl": 0.3765023946762085, + "difficulty_simple": -0.6956316538876074, + "percent_correct": 0.6672185430463576, + "n_responses": 604 + }, + { + "problem_id": 230038, + "difficulty_1pl": -7.688916206359863, + "difficulty_2pl": -0.3768164813518524, + "discrimination_2pl": 0.6166873574256897, + "difficulty_simple": -1.7235512192015217, + "percent_correct": 0.848585690515807, + "n_responses": 601 + }, + { + "problem_id": 231799, + "difficulty_1pl": 1.2548896074295044, + "difficulty_2pl": 0.030183594673871994, + "discrimination_2pl": 0.23539933562278748, + "difficulty_simple": -0.05305456295588975, + "percent_correct": 0.5132605304212169, + "n_responses": 641 + }, + { + "problem_id": 205281, + "difficulty_1pl": -1.9846980571746826, + "difficulty_2pl": -0.029943475499749184, + "discrimination_2pl": 0.28215646743774414, + "difficulty_simple": -0.37469344944141053, + "percent_correct": 0.5925925925925926, + "n_responses": 216 + }, + { + "problem_id": 205401, + "difficulty_1pl": -6.677863597869873, + "difficulty_2pl": -0.11453007161617279, + "discrimination_2pl": 0.4519018828868866, + "difficulty_simple": -1.1878434223960521, + "percent_correct": 0.7663551401869159, + "n_responses": 214 + }, + { + "problem_id": 205498, + "difficulty_1pl": -1.3845335245132446, + "difficulty_2pl": 0.029561813920736313, + "discrimination_2pl": 0.3404916822910309, + "difficulty_simple": -0.3204718952747716, + "percent_correct": 0.5794392523364486, + "n_responses": 214 + }, + { + "problem_id": 205821, + "difficulty_1pl": 1.7210774421691895, + "difficulty_2pl": 0.0476565919816494, + "discrimination_2pl": 0.2010509967803955, + "difficulty_simple": 0.2935471919041791, + "percent_correct": 0.4271356783919598, + "n_responses": 199 + }, + { + "problem_id": 205959, + "difficulty_1pl": -2.94710636138916, + "difficulty_2pl": 0.11783283203840256, + "discrimination_2pl": 0.4084913730621338, + "difficulty_simple": -0.6628418310646162, + "percent_correct": 0.6598984771573604, + "n_responses": 197 + }, + { + "problem_id": 311, + "difficulty_1pl": 1.8155938386917114, + "difficulty_2pl": 0.048691537231206894, + "discrimination_2pl": 0.1909937858581543, + "difficulty_simple": -0.017778246021284055, + "percent_correct": 0.5044444444444445, + "n_responses": 450 + }, + { + "problem_id": 131934, + "difficulty_1pl": 1.1007493734359741, + "difficulty_2pl": 0.11771003901958466, + "discrimination_2pl": 0.3047352135181427, + "difficulty_simple": -0.15353205933119216, + "percent_correct": 0.5383077948034644, + "n_responses": 1501 + }, + { + "problem_id": 130668, + "difficulty_1pl": -1.5054566860198975, + "difficulty_2pl": 0.12527401745319366, + "discrimination_2pl": 0.39922216534614563, + "difficulty_simple": -0.5563136385396633, + "percent_correct": 0.6355991590749824, + "n_responses": 1427 + }, + { + "problem_id": 131027, + "difficulty_1pl": 0.42534103989601135, + "difficulty_2pl": 0.16571690142154694, + "discrimination_2pl": 0.34191423654556274, + "difficulty_simple": -0.022441334472680412, + "percent_correct": 0.5056100981767181, + "n_responses": 1426 + }, + { + "problem_id": 131322, + "difficulty_1pl": 8.764405250549316, + "difficulty_2pl": 0.183797225356102, + "discrimination_2pl": 0.06011834740638733, + "difficulty_simple": 1.109911843922043, + "percent_correct": 0.24788732394366197, + "n_responses": 1420 + }, + { + "problem_id": 131590, + "difficulty_1pl": 2.205326557159424, + "difficulty_2pl": 0.4575835168361664, + "discrimination_2pl": 0.2336784452199936, + "difficulty_simple": 0.3670556599932931, + "percent_correct": 0.4092526690391459, + "n_responses": 1405 + }, + { + "problem_id": 84788, + "difficulty_1pl": -2.522892951965332, + "difficulty_2pl": 0.015080449171364307, + "discrimination_2pl": 0.19897519052028656, + "difficulty_simple": -0.5768873744440833, + "percent_correct": 0.6403508771929824, + "n_responses": 114 + }, + { + "problem_id": 84918, + "difficulty_1pl": -0.5399478077888489, + "difficulty_2pl": -0.028173230588436127, + "discrimination_2pl": 0.1885577142238617, + "difficulty_simple": -0.16251892949777508, + "percent_correct": 0.5405405405405406, + "n_responses": 111 + }, + { + "problem_id": 35549, + "difficulty_1pl": 2.29729962348938, + "difficulty_2pl": 0.40489107370376587, + "discrimination_2pl": 0.23862166702747345, + "difficulty_simple": -0.02509092199352654, + "percent_correct": 0.5062724014336918, + "n_responses": 1116 + }, + { + "problem_id": 35817, + "difficulty_1pl": 6.965483665466309, + "difficulty_2pl": 0.21866750717163086, + "discrimination_2pl": 0.09171725064516068, + "difficulty_simple": 0.6280835872128833, + "percent_correct": 0.34794520547945207, + "n_responses": 1095 + }, + { + "problem_id": 36318, + "difficulty_1pl": 1.878657341003418, + "difficulty_2pl": 0.2604151964187622, + "discrimination_2pl": 0.2721391022205353, + "difficulty_simple": -0.19519475973016098, + "percent_correct": 0.5486443381180224, + "n_responses": 1254 + }, + { + "problem_id": 36501, + "difficulty_1pl": 0.8477448225021362, + "difficulty_2pl": 0.41507774591445923, + "discrimination_2pl": 0.3361126184463501, + "difficulty_simple": -0.3056835059704383, + "percent_correct": 0.5758313057583131, + "n_responses": 1233 + }, + { + "problem_id": 36743, + "difficulty_1pl": 3.8013906478881836, + "difficulty_2pl": 0.24963049590587616, + "discrimination_2pl": 0.09566490352153778, + "difficulty_simple": 0.2650792705271596, + "percent_correct": 0.434115523465704, + "n_responses": 1108 + }, + { + "problem_id": 36911, + "difficulty_1pl": 2.856466293334961, + "difficulty_2pl": 0.29095152020454407, + "discrimination_2pl": 0.21546576917171478, + "difficulty_simple": 0.05445991713238105, + "percent_correct": 0.4863883847549909, + "n_responses": 1102 + }, + { + "problem_id": 37735, + "difficulty_1pl": 5.533702850341797, + "difficulty_2pl": 0.028905916959047318, + "discrimination_2pl": 0.05451566353440285, + "difficulty_simple": 0.6931471805599455, + "percent_correct": 0.3333333333333333, + "n_responses": 696 + }, + { + "problem_id": 37956, + "difficulty_1pl": -3.7692301273345947, + "difficulty_2pl": -0.15206633508205414, + "discrimination_2pl": 0.3315578103065491, + "difficulty_simple": -0.9912428233801935, + "percent_correct": 0.7293333333333333, + "n_responses": 750 + }, + { + "problem_id": 498517, + "difficulty_1pl": 0.788348376750946, + "difficulty_2pl": -0.029415763914585114, + "discrimination_2pl": 0.2885548174381256, + "difficulty_simple": -0.26954992412836565, + "percent_correct": 0.5669824086603519, + "n_responses": 739 + }, + { + "problem_id": 530004, + "difficulty_1pl": 5.075639247894287, + "difficulty_2pl": 0.10264968127012253, + "discrimination_2pl": 0.043297696858644485, + "difficulty_simple": 0.6542317643102717, + "percent_correct": 0.34203655352480417, + "n_responses": 766 + }, + { + "problem_id": 527725, + "difficulty_1pl": -6.3120622634887695, + "difficulty_2pl": -0.2561613619327545, + "discrimination_2pl": 0.5458065867424011, + "difficulty_simple": -1.111421246960691, + "percent_correct": 0.7523939808481532, + "n_responses": 731 + }, + { + "problem_id": 184908, + "difficulty_1pl": -0.5670309662818909, + "difficulty_2pl": 0.18370719254016876, + "discrimination_2pl": 0.3898078501224518, + "difficulty_simple": -0.3406651148812488, + "percent_correct": 0.5843520782396088, + "n_responses": 818 + }, + { + "problem_id": 15333, + "difficulty_1pl": 0.34723931550979614, + "difficulty_2pl": 0.05094873905181885, + "discrimination_2pl": 0.17148807644844055, + "difficulty_simple": 0.013513719166722855, + "percent_correct": 0.4966216216216216, + "n_responses": 296 + }, + { + "problem_id": 15492, + "difficulty_1pl": -3.541445732116699, + "difficulty_2pl": -0.10533790290355682, + "discrimination_2pl": 0.4361926019191742, + "difficulty_simple": -0.7782096191037944, + "percent_correct": 0.6852941176470588, + "n_responses": 340 + }, + { + "problem_id": 15629, + "difficulty_1pl": 0.7432317137718201, + "difficulty_2pl": 0.07600919902324677, + "discrimination_2pl": 0.1146600991487503, + "difficulty_simple": 0.11697167658550421, + "percent_correct": 0.47079037800687284, + "n_responses": 291 + }, + { + "problem_id": 15760, + "difficulty_1pl": -1.6062698364257812, + "difficulty_2pl": -0.07958667725324631, + "discrimination_2pl": 0.2947152554988861, + "difficulty_simple": -0.5280674302004967, + "percent_correct": 0.6290322580645161, + "n_responses": 186 + }, + { + "problem_id": 15881, + "difficulty_1pl": 2.585888147354126, + "difficulty_2pl": 0.0513111911714077, + "discrimination_2pl": 0.12260875850915909, + "difficulty_simple": 0.3541718137206139, + "percent_correct": 0.41237113402061853, + "n_responses": 194 + }, + { + "problem_id": 16005, + "difficulty_1pl": 0.5102182626724243, + "difficulty_2pl": 0.09397823363542557, + "discrimination_2pl": 0.14460057020187378, + "difficulty_simple": 0.07333127308554951, + "percent_correct": 0.4816753926701571, + "n_responses": 191 + }, + { + "problem_id": 171238, + "difficulty_1pl": 6.059598922729492, + "difficulty_2pl": 0.06538081914186478, + "discrimination_2pl": 0.048703014850616455, + "difficulty_simple": 0.6970764586998348, + "percent_correct": 0.3324607329842932, + "n_responses": 764 + }, + { + "problem_id": 171421, + "difficulty_1pl": 0.65479576587677, + "difficulty_2pl": 0.00670758867636323, + "discrimination_2pl": 0.25682488083839417, + "difficulty_simple": -0.09763846956391606, + "percent_correct": 0.524390243902439, + "n_responses": 738 + }, + { + "problem_id": 289043, + "difficulty_1pl": 3.2370402812957764, + "difficulty_2pl": 0.06597667932510376, + "discrimination_2pl": 0.03858673945069313, + "difficulty_simple": 0.8174448972375227, + "percent_correct": 0.3063063063063063, + "n_responses": 666 + }, + { + "problem_id": 41185, + "difficulty_1pl": -1.018916368484497, + "difficulty_2pl": -0.07993175089359283, + "discrimination_2pl": 0.2916416823863983, + "difficulty_simple": -0.69097090113735, + "percent_correct": 0.6661828737300436, + "n_responses": 1378 + }, + { + "problem_id": 41469, + "difficulty_1pl": -1.6494474411010742, + "difficulty_2pl": -0.17514564096927643, + "discrimination_2pl": 0.3004486858844757, + "difficulty_simple": -0.9536782639457755, + "percent_correct": 0.7218543046357616, + "n_responses": 1359 + }, + { + "problem_id": 294102, + "difficulty_1pl": 1.7378016710281372, + "difficulty_2pl": 0.11497235298156738, + "discrimination_2pl": 0.17394964396953583, + "difficulty_simple": 0.11560200971002327, + "percent_correct": 0.47113163972286376, + "n_responses": 866 + }, + { + "problem_id": 293786, + "difficulty_1pl": 1.3567701578140259, + "difficulty_2pl": 0.2114001363515854, + "discrimination_2pl": 0.34668585658073425, + "difficulty_simple": -0.24942406854973742, + "percent_correct": 0.5620347394540943, + "n_responses": 806 + }, + { + "problem_id": 382378, + "difficulty_1pl": -2.0181427001953125, + "difficulty_2pl": 0.06494956463575363, + "discrimination_2pl": 0.5150201320648193, + "difficulty_simple": -0.6649763035932489, + "percent_correct": 0.660377358490566, + "n_responses": 583 + }, + { + "problem_id": 381490, + "difficulty_1pl": 0.12433408200740814, + "difficulty_2pl": -0.03585604205727577, + "discrimination_2pl": 0.24677777290344238, + "difficulty_simple": -0.4150345591243149, + "percent_correct": 0.6022944550669216, + "n_responses": 523 + }, + { + "problem_id": 381865, + "difficulty_1pl": -0.7201301455497742, + "difficulty_2pl": 0.09584425389766693, + "discrimination_2pl": 0.3728574514389038, + "difficulty_simple": -0.2854474346503647, + "percent_correct": 0.5708812260536399, + "n_responses": 522 + }, + { + "problem_id": 51822, + "difficulty_1pl": 3.364262104034424, + "difficulty_2pl": 0.06503979116678238, + "discrimination_2pl": 0.14149248600006104, + "difficulty_simple": 0.7086513670959108, + "percent_correct": 0.32989690721649484, + "n_responses": 97 + }, + { + "problem_id": 51938, + "difficulty_1pl": 0.15187370777130127, + "difficulty_2pl": 0.04478759691119194, + "discrimination_2pl": 0.21232478320598602, + "difficulty_simple": 0.25378052077609964, + "percent_correct": 0.4368932038834951, + "n_responses": 103 + }, + { + "problem_id": 52062, + "difficulty_1pl": 6.296910285949707, + "difficulty_2pl": 0.01690499484539032, + "discrimination_2pl": 0.09460875391960144, + "difficulty_simple": 1.3460204619819507, + "percent_correct": 0.20652173913043478, + "n_responses": 92 + }, + { + "problem_id": 51480, + "difficulty_1pl": 5.24454927444458, + "difficulty_2pl": 0.2110833078622818, + "discrimination_2pl": 0.07999306917190552, + "difficulty_simple": 0.9555114450274362, + "percent_correct": 0.2777777777777778, + "n_responses": 72 + }, + { + "problem_id": 51614, + "difficulty_1pl": 6.388217926025391, + "difficulty_2pl": 0.027187885716557503, + "discrimination_2pl": 0.08400480449199677, + "difficulty_simple": 1.1557707025080584, + "percent_correct": 0.23943661971830985, + "n_responses": 71 + }, + { + "problem_id": 328341, + "difficulty_1pl": -2.714405059814453, + "difficulty_2pl": -0.03676174208521843, + "discrimination_2pl": 0.42433562874794006, + "difficulty_simple": -0.7913069450321891, + "percent_correct": 0.6881118881118881, + "n_responses": 715 + }, + { + "problem_id": 328823, + "difficulty_1pl": -4.84941291809082, + "difficulty_2pl": -0.21175667643547058, + "discrimination_2pl": 0.5417590737342834, + "difficulty_simple": -1.2827243562358526, + "percent_correct": 0.7829131652661064, + "n_responses": 714 + }, + { + "problem_id": 329327, + "difficulty_1pl": -3.603407621383667, + "difficulty_2pl": -0.07453428208827972, + "discrimination_2pl": 0.40970757603645325, + "difficulty_simple": -0.902470176255523, + "percent_correct": 0.7114568599717115, + "n_responses": 707 + }, + { + "problem_id": 330016, + "difficulty_1pl": 3.071880578994751, + "difficulty_2pl": 0.16914604604244232, + "discrimination_2pl": 0.05675299093127251, + "difficulty_simple": 0.5101136265839008, + "percent_correct": 0.3751668891855808, + "n_responses": 749 + }, + { + "problem_id": 330854, + "difficulty_1pl": 0.9255220293998718, + "difficulty_2pl": 0.16798624396324158, + "discrimination_2pl": 0.20551332831382751, + "difficulty_simple": -0.13353139262452263, + "percent_correct": 0.5333333333333333, + "n_responses": 585 + }, + { + "problem_id": 331070, + "difficulty_1pl": -2.282264232635498, + "difficulty_2pl": -0.10396751761436462, + "discrimination_2pl": 0.42143386602401733, + "difficulty_simple": -0.7862376036259574, + "percent_correct": 0.6870229007633588, + "n_responses": 655 + }, + { + "problem_id": 331322, + "difficulty_1pl": -0.35970795154571533, + "difficulty_2pl": -0.09734915941953659, + "discrimination_2pl": 0.28315460681915283, + "difficulty_simple": -0.4563567154045537, + "percent_correct": 0.6121495327102804, + "n_responses": 642 + }, + { + "problem_id": 331521, + "difficulty_1pl": 3.758492946624756, + "difficulty_2pl": 0.1992812156677246, + "discrimination_2pl": 0.13075174391269684, + "difficulty_simple": 0.41265421168063365, + "percent_correct": 0.39827586206896554, + "n_responses": 580 + }, + { + "problem_id": 330357, + "difficulty_1pl": -3.5643482208251953, + "difficulty_2pl": -0.21923549473285675, + "discrimination_2pl": 0.2973015308380127, + "difficulty_simple": -0.958850346292951, + "percent_correct": 0.7228915662650602, + "n_responses": 498 + }, + { + "problem_id": 333395, + "difficulty_1pl": -1.8615450859069824, + "difficulty_2pl": -0.04750695824623108, + "discrimination_2pl": 0.2502540946006775, + "difficulty_simple": -0.7038196404507173, + "percent_correct": 0.6690340909090909, + "n_responses": 704 + }, + { + "problem_id": 503274, + "difficulty_1pl": 8.583451271057129, + "difficulty_2pl": -0.0903804823756218, + "discrimination_2pl": 0.018964212387800217, + "difficulty_simple": 0.9481876405489109, + "percent_correct": 0.2792494481236203, + "n_responses": 906 + }, + { + "problem_id": 147769, + "difficulty_1pl": -7.028464317321777, + "difficulty_2pl": -0.5034244656562805, + "discrimination_2pl": 0.6655619740486145, + "difficulty_simple": -1.6815912520021254, + "percent_correct": 0.8431151241534989, + "n_responses": 886 + }, + { + "problem_id": 147962, + "difficulty_1pl": -6.655487060546875, + "difficulty_2pl": -0.260142058134079, + "discrimination_2pl": 0.5990287661552429, + "difficulty_simple": -1.376358154460761, + "percent_correct": 0.7984054669703873, + "n_responses": 878 + }, + { + "problem_id": 148145, + "difficulty_1pl": -5.080845832824707, + "difficulty_2pl": -0.25121697783470154, + "discrimination_2pl": 0.3675526976585388, + "difficulty_simple": -1.158955418575578, + "percent_correct": 0.7611428571428571, + "n_responses": 875 + }, + { + "problem_id": 148285, + "difficulty_1pl": -2.2727153301239014, + "difficulty_2pl": -0.11258315294981003, + "discrimination_2pl": 0.3317604959011078, + "difficulty_simple": -0.8271501600830923, + "percent_correct": 0.695752009184845, + "n_responses": 871 + }, + { + "problem_id": 148466, + "difficulty_1pl": -3.9535951614379883, + "difficulty_2pl": -0.21186555922031403, + "discrimination_2pl": 0.2895675003528595, + "difficulty_simple": -0.9253034925956629, + "percent_correct": 0.7161214953271028, + "n_responses": 856 + }, + { + "problem_id": 146473, + "difficulty_1pl": 1.0148286819458008, + "difficulty_2pl": -0.04271802306175232, + "discrimination_2pl": 0.11585155874490738, + "difficulty_simple": -0.1516286103945485, + "percent_correct": 0.5378346915017462, + "n_responses": 859 + }, + { + "problem_id": 146938, + "difficulty_1pl": -0.4536333382129669, + "difficulty_2pl": 0.14708922803401947, + "discrimination_2pl": 0.34234532713890076, + "difficulty_simple": -0.3992731378602434, + "percent_correct": 0.5985130111524164, + "n_responses": 807 + }, + { + "problem_id": 148754, + "difficulty_1pl": 1.0885467529296875, + "difficulty_2pl": 0.030071742832660675, + "discrimination_2pl": 0.1792546659708023, + "difficulty_simple": -0.03462396456604812, + "percent_correct": 0.5086551264980027, + "n_responses": 751 + }, + { + "problem_id": 148929, + "difficulty_1pl": 0.08458742499351501, + "difficulty_2pl": 0.11976771056652069, + "discrimination_2pl": 0.3220899701118469, + "difficulty_simple": -0.33930643785708825, + "percent_correct": 0.5840220385674931, + "n_responses": 726 + }, + { + "problem_id": 149101, + "difficulty_1pl": -1.1695648431777954, + "difficulty_2pl": 0.03907838836312294, + "discrimination_2pl": 0.367520809173584, + "difficulty_simple": -0.6061358035703156, + "percent_correct": 0.6470588235294118, + "n_responses": 731 + }, + { + "problem_id": 342229, + "difficulty_1pl": 4.954517364501953, + "difficulty_2pl": 0.14798851311206818, + "discrimination_2pl": 0.04498839005827904, + "difficulty_simple": 0.7765287894989965, + "percent_correct": 0.3150684931506849, + "n_responses": 438 + }, + { + "problem_id": 63357, + "difficulty_1pl": -1.8876105546951294, + "difficulty_2pl": -0.0035630310885608196, + "discrimination_2pl": 0.31834688782691956, + "difficulty_simple": -0.6344737788747721, + "percent_correct": 0.6535031847133758, + "n_responses": 1570 + }, + { + "problem_id": 67623, + "difficulty_1pl": 4.23544454574585, + "difficulty_2pl": 0.21430279314517975, + "discrimination_2pl": 0.1147104948759079, + "difficulty_simple": 0.5478800945012875, + "percent_correct": 0.3663563829787234, + "n_responses": 1504 + }, + { + "problem_id": 67861, + "difficulty_1pl": -0.679324209690094, + "difficulty_2pl": -0.11702621728181839, + "discrimination_2pl": 0.29841455817222595, + "difficulty_simple": -0.5042466526679482, + "percent_correct": 0.6234567901234568, + "n_responses": 1782 + }, + { + "problem_id": 233780, + "difficulty_1pl": -0.6374892592430115, + "difficulty_2pl": 0.09681183099746704, + "discrimination_2pl": 0.4067055583000183, + "difficulty_simple": -0.36917510670296366, + "percent_correct": 0.5912596401028277, + "n_responses": 778 + }, + { + "problem_id": 232017, + "difficulty_1pl": -2.4045639038085938, + "difficulty_2pl": 0.051881104707717896, + "discrimination_2pl": 0.43385884165763855, + "difficulty_simple": -0.8073723979780195, + "percent_correct": 0.6915492957746479, + "n_responses": 710 + }, + { + "problem_id": 232208, + "difficulty_1pl": 3.9293603897094727, + "difficulty_2pl": 0.127510666847229, + "discrimination_2pl": 0.09667033702135086, + "difficulty_simple": 0.5562879978427483, + "percent_correct": 0.3644067796610169, + "n_responses": 708 + }, + { + "problem_id": 232362, + "difficulty_1pl": 5.245182514190674, + "difficulty_2pl": 0.23753470182418823, + "discrimination_2pl": 0.10961836576461792, + "difficulty_simple": 0.618723900189832, + "percent_correct": 0.3500717360114778, + "n_responses": 697 + }, + { + "problem_id": 232533, + "difficulty_1pl": 1.3009742498397827, + "difficulty_2pl": 0.21122168004512787, + "discrimination_2pl": 0.3219638764858246, + "difficulty_simple": -0.0760600387100438, + "percent_correct": 0.5190058479532164, + "n_responses": 684 + }, + { + "problem_id": 233998, + "difficulty_1pl": 0.0327455997467041, + "difficulty_2pl": -0.061669960618019104, + "discrimination_2pl": 0.20726117491722107, + "difficulty_simple": -0.558507754581061, + "percent_correct": 0.6361071932299013, + "n_responses": 709 + }, + { + "problem_id": 386019, + "difficulty_1pl": -4.061659812927246, + "difficulty_2pl": -0.3644305467605591, + "discrimination_2pl": 0.26216110587120056, + "difficulty_simple": -0.9146500424166949, + "percent_correct": 0.7139507620164126, + "n_responses": 853 + }, + { + "problem_id": 386445, + "difficulty_1pl": -3.4498913288116455, + "difficulty_2pl": -0.17068655788898468, + "discrimination_2pl": 0.25282981991767883, + "difficulty_simple": -0.914622674773458, + "percent_correct": 0.7139451728247914, + "n_responses": 839 + }, + { + "problem_id": 387531, + "difficulty_1pl": -9.449454307556152, + "difficulty_2pl": -0.27795007824897766, + "discrimination_2pl": 0.5201996564865112, + "difficulty_simple": -1.2907079000594912, + "percent_correct": 0.7842669845053635, + "n_responses": 839 + }, + { + "problem_id": 187169, + "difficulty_1pl": 3.011535406112671, + "difficulty_2pl": 0.23769798874855042, + "discrimination_2pl": 0.1495998650789261, + "difficulty_simple": 0.4378004887511008, + "percent_correct": 0.39226519337016574, + "n_responses": 543 + }, + { + "problem_id": 146878, + "difficulty_1pl": 2.4873201847076416, + "difficulty_2pl": 0.15356945991516113, + "discrimination_2pl": 0.09709389507770538, + "difficulty_simple": 0.5937747067467415, + "percent_correct": 0.3557692307692308, + "n_responses": 416 + }, + { + "problem_id": 147088, + "difficulty_1pl": 0.5009533762931824, + "difficulty_2pl": 0.05132005736231804, + "discrimination_2pl": 0.2349565625190735, + "difficulty_simple": 0.1361321743245799, + "percent_correct": 0.46601941747572817, + "n_responses": 412 + }, + { + "problem_id": 129703, + "difficulty_1pl": -1.844996690750122, + "difficulty_2pl": -0.17738942801952362, + "discrimination_2pl": 0.21077759563922882, + "difficulty_simple": -0.6579735663816783, + "percent_correct": 0.6588050314465409, + "n_responses": 636 + }, + { + "problem_id": 253, + "difficulty_1pl": -8.776939392089844, + "difficulty_2pl": -0.3543981611728668, + "discrimination_2pl": 0.35324493050575256, + "difficulty_simple": -1.40189530156237, + "percent_correct": 0.8024844720496894, + "n_responses": 805 + }, + { + "problem_id": 503, + "difficulty_1pl": -1.1118922233581543, + "difficulty_2pl": 0.07150943577289581, + "discrimination_2pl": 0.3968428671360016, + "difficulty_simple": -0.42647428419750777, + "percent_correct": 0.6050314465408805, + "n_responses": 795 + }, + { + "problem_id": 682, + "difficulty_1pl": -0.995775580406189, + "difficulty_2pl": 0.08093350380659103, + "discrimination_2pl": 0.315606027841568, + "difficulty_simple": -0.5487191967112096, + "percent_correct": 0.6338383838383839, + "n_responses": 792 + }, + { + "problem_id": 1867, + "difficulty_1pl": 3.028818130493164, + "difficulty_2pl": -0.03685222566127777, + "discrimination_2pl": 0.1773645579814911, + "difficulty_simple": 0.36642455890456416, + "percent_correct": 0.4094052558782849, + "n_responses": 723 + }, + { + "problem_id": 154867, + "difficulty_1pl": 1.4906022548675537, + "difficulty_2pl": 0.18380501866340637, + "discrimination_2pl": 0.26013320684432983, + "difficulty_simple": -0.15533062096710684, + "percent_correct": 0.5387547649301143, + "n_responses": 1574 + }, + { + "problem_id": 155072, + "difficulty_1pl": -0.28590941429138184, + "difficulty_2pl": 0.2701423466205597, + "discrimination_2pl": 0.45904403924942017, + "difficulty_simple": -0.48862146645498034, + "percent_correct": 0.619781631342325, + "n_responses": 1557 + }, + { + "problem_id": 155237, + "difficulty_1pl": -0.6965996623039246, + "difficulty_2pl": 0.26178815960884094, + "discrimination_2pl": 0.45674386620521545, + "difficulty_simple": -0.43334147763641906, + "percent_correct": 0.606671299513551, + "n_responses": 1439 + }, + { + "problem_id": 155392, + "difficulty_1pl": 0.14472882449626923, + "difficulty_2pl": 0.11008283495903015, + "discrimination_2pl": 0.4139300286769867, + "difficulty_simple": -0.43203561303405597, + "percent_correct": 0.606359649122807, + "n_responses": 912 + }, + { + "problem_id": 153748, + "difficulty_1pl": -4.37134313583374, + "difficulty_2pl": -0.2585718333721161, + "discrimination_2pl": 0.6041038036346436, + "difficulty_simple": -1.152449651300435, + "percent_correct": 0.759958071278826, + "n_responses": 954 + }, + { + "problem_id": 153894, + "difficulty_1pl": -6.680558681488037, + "difficulty_2pl": -0.18705715239048004, + "discrimination_2pl": 0.6484189629554749, + "difficulty_simple": -1.4394041864338392, + "percent_correct": 0.8083623693379791, + "n_responses": 861 + }, + { + "problem_id": 154014, + "difficulty_1pl": -1.5478339195251465, + "difficulty_2pl": 0.07509056478738785, + "discrimination_2pl": 0.5146054625511169, + "difficulty_simple": -0.9260787382403177, + "percent_correct": 0.7162790697674418, + "n_responses": 860 + }, + { + "problem_id": 650373, + "difficulty_1pl": 1.824381709098816, + "difficulty_2pl": 0.5422002077102661, + "discrimination_2pl": 0.22771286964416504, + "difficulty_simple": 0.03433392658471715, + "percent_correct": 0.491417361451692, + "n_responses": 2039 + }, + { + "problem_id": 650519, + "difficulty_1pl": 1.0473579168319702, + "difficulty_2pl": 0.2553671598434448, + "discrimination_2pl": 0.2686688005924225, + "difficulty_simple": -0.11028534355058281, + "percent_correct": 0.5275434243176179, + "n_responses": 2015 + }, + { + "problem_id": 650734, + "difficulty_1pl": 0.579281210899353, + "difficulty_2pl": 0.33671796321868896, + "discrimination_2pl": 0.28163689374923706, + "difficulty_simple": -0.15703423707930556, + "percent_correct": 0.5391780821917809, + "n_responses": 1825 + }, + { + "problem_id": 129599, + "difficulty_1pl": 2.803382396697998, + "difficulty_2pl": 0.20390422642230988, + "discrimination_2pl": 0.19608935713768005, + "difficulty_simple": 0.32488462144882513, + "percent_correct": 0.41948579161028415, + "n_responses": 739 + }, + { + "problem_id": 129804, + "difficulty_1pl": 3.451157331466675, + "difficulty_2pl": 0.2354976385831833, + "discrimination_2pl": 0.2088165134191513, + "difficulty_simple": 0.24430177682155577, + "percent_correct": 0.43922651933701656, + "n_responses": 724 + }, + { + "problem_id": 130008, + "difficulty_1pl": 3.2031214237213135, + "difficulty_2pl": 0.23019057512283325, + "discrimination_2pl": 0.24100430309772491, + "difficulty_simple": 0.18691223050255354, + "percent_correct": 0.4534075104311544, + "n_responses": 719 + }, + { + "problem_id": 131112, + "difficulty_1pl": -2.2563512325286865, + "difficulty_2pl": 0.10809618979692459, + "discrimination_2pl": 0.47536501288414, + "difficulty_simple": -0.6032364104113127, + "percent_correct": 0.6463963963963963, + "n_responses": 444 + }, + { + "problem_id": 131293, + "difficulty_1pl": 3.8973519802093506, + "difficulty_2pl": -0.03840923309326172, + "discrimination_2pl": 0.05685235559940338, + "difficulty_simple": 0.5730028687178821, + "percent_correct": 0.36054421768707484, + "n_responses": 441 + }, + { + "problem_id": 131520, + "difficulty_1pl": 2.0322186946868896, + "difficulty_2pl": 0.1462056040763855, + "discrimination_2pl": 0.30792081356048584, + "difficulty_simple": 0.0501243871825686, + "percent_correct": 0.4874715261958998, + "n_responses": 439 + }, + { + "problem_id": 518347, + "difficulty_1pl": 2.96877384185791, + "difficulty_2pl": 0.1398148536682129, + "discrimination_2pl": 0.08418601751327515, + "difficulty_simple": 0.6138978089058048, + "percent_correct": 0.3511705685618729, + "n_responses": 598 + }, + { + "problem_id": 518599, + "difficulty_1pl": -9.095351219177246, + "difficulty_2pl": -0.4962775409221649, + "discrimination_2pl": 0.5482105612754822, + "difficulty_simple": -1.556037135706985, + "percent_correct": 0.8257839721254355, + "n_responses": 574 + }, + { + "problem_id": 518807, + "difficulty_1pl": -11.476370811462402, + "difficulty_2pl": -0.46962910890579224, + "discrimination_2pl": 0.5517926216125488, + "difficulty_simple": -1.706812076459277, + "percent_correct": 0.8464223385689355, + "n_responses": 573 + }, + { + "problem_id": 104427, + "difficulty_1pl": -0.8890999555587769, + "difficulty_2pl": 0.1653040647506714, + "discrimination_2pl": 0.5137907266616821, + "difficulty_simple": -0.5410776669365114, + "percent_correct": 0.6320630749014454, + "n_responses": 761 + }, + { + "problem_id": 104135, + "difficulty_1pl": -0.35280078649520874, + "difficulty_2pl": 0.11267697811126709, + "discrimination_2pl": 0.29582130908966064, + "difficulty_simple": -0.4105029021381216, + "percent_correct": 0.6012084592145015, + "n_responses": 662 + }, + { + "problem_id": 247252, + "difficulty_1pl": -5.176671028137207, + "difficulty_2pl": -0.20637689530849457, + "discrimination_2pl": 0.5275077819824219, + "difficulty_simple": -0.8514004302439812, + "percent_correct": 0.7008608321377331, + "n_responses": 1394 + }, + { + "problem_id": 277226, + "difficulty_1pl": -1.3057458400726318, + "difficulty_2pl": 0.03843539208173752, + "discrimination_2pl": 0.4635341167449951, + "difficulty_simple": -0.8572018155041483, + "percent_correct": 0.702075702075702, + "n_responses": 819 + }, + { + "problem_id": 405832, + "difficulty_1pl": -13.893135070800781, + "difficulty_2pl": -0.8230503797531128, + "discrimination_2pl": 0.6159471869468689, + "difficulty_simple": -2.2426132431502466, + "percent_correct": 0.9040114613180515, + "n_responses": 698 + }, + { + "problem_id": 153749, + "difficulty_1pl": -9.809213638305664, + "difficulty_2pl": -0.5791520476341248, + "discrimination_2pl": 0.41086530685424805, + "difficulty_simple": -1.435439828188779, + "percent_correct": 0.8077474892395983, + "n_responses": 697 + }, + { + "problem_id": 154547, + "difficulty_1pl": -1.6162912845611572, + "difficulty_2pl": -0.07677130401134491, + "discrimination_2pl": 0.17304657399654388, + "difficulty_simple": -0.30698607096674946, + "percent_correct": 0.5761494252873564, + "n_responses": 696 + }, + { + "problem_id": 306064, + "difficulty_1pl": 1.251875638961792, + "difficulty_2pl": 0.1269063651561737, + "discrimination_2pl": 0.3140247166156769, + "difficulty_simple": -0.2362237751763056, + "percent_correct": 0.5587828492392808, + "n_responses": 723 + }, + { + "problem_id": 306325, + "difficulty_1pl": -1.9572041034698486, + "difficulty_2pl": 0.035525646060705185, + "discrimination_2pl": 0.4069317877292633, + "difficulty_simple": -0.8325027014704566, + "percent_correct": 0.6968838526912181, + "n_responses": 706 + }, + { + "problem_id": 449847, + "difficulty_1pl": -10.133902549743652, + "difficulty_2pl": -0.5028403401374817, + "discrimination_2pl": 0.6005655527114868, + "difficulty_simple": -1.534382746271603, + "percent_correct": 0.8226466575716235, + "n_responses": 733 + }, + { + "problem_id": 450077, + "difficulty_1pl": -6.394908428192139, + "difficulty_2pl": -0.40032652020454407, + "discrimination_2pl": 0.5052878260612488, + "difficulty_simple": -1.4384801142904609, + "percent_correct": 0.8082191780821918, + "n_responses": 730 + }, + { + "problem_id": 225403, + "difficulty_1pl": 1.224136233329773, + "difficulty_2pl": 0.29450568556785583, + "discrimination_2pl": 0.2885456383228302, + "difficulty_simple": 0.07579383936953352, + "percent_correct": 0.4810606060606061, + "n_responses": 528 + }, + { + "problem_id": 227799, + "difficulty_1pl": -1.5299935340881348, + "difficulty_2pl": 0.12480089068412781, + "discrimination_2pl": 0.4865075349807739, + "difficulty_simple": -0.5140462384660328, + "percent_correct": 0.6257545271629779, + "n_responses": 497 + }, + { + "problem_id": 226545, + "difficulty_1pl": 4.125489711761475, + "difficulty_2pl": 0.1466531753540039, + "discrimination_2pl": 0.1329636573791504, + "difficulty_simple": 0.634306680537012, + "percent_correct": 0.3465346534653465, + "n_responses": 505 + }, + { + "problem_id": 225929, + "difficulty_1pl": -4.470667362213135, + "difficulty_2pl": -0.2572774589061737, + "discrimination_2pl": 0.2740163505077362, + "difficulty_simple": -1.0476921982408527, + "percent_correct": 0.7403314917127072, + "n_responses": 543 + }, + { + "problem_id": 125069, + "difficulty_1pl": 4.815749645233154, + "difficulty_2pl": 0.010794076137244701, + "discrimination_2pl": 0.03160766884684563, + "difficulty_simple": 0.7774883289936962, + "percent_correct": 0.3148614609571788, + "n_responses": 794 + }, + { + "problem_id": 125391, + "difficulty_1pl": 2.5765562057495117, + "difficulty_2pl": 0.17486093938350677, + "discrimination_2pl": 0.10034482181072235, + "difficulty_simple": 0.2706458852992132, + "percent_correct": 0.4327485380116959, + "n_responses": 855 + }, + { + "problem_id": 126203, + "difficulty_1pl": -1.4397609233856201, + "difficulty_2pl": -0.057097695767879486, + "discrimination_2pl": 0.4600781798362732, + "difficulty_simple": -0.681630738498386, + "percent_correct": 0.6641025641025641, + "n_responses": 780 + }, + { + "problem_id": 127330, + "difficulty_1pl": -1.7271511554718018, + "difficulty_2pl": 0.026964982971549034, + "discrimination_2pl": 0.37544670701026917, + "difficulty_simple": -0.6431367599852839, + "percent_correct": 0.6554621848739496, + "n_responses": 595 + }, + { + "problem_id": 128360, + "difficulty_1pl": -0.7454720735549927, + "difficulty_2pl": 0.08972308039665222, + "discrimination_2pl": 0.3646019995212555, + "difficulty_simple": -0.5934796953866649, + "percent_correct": 0.6441631504922645, + "n_responses": 711 + }, + { + "problem_id": 127673, + "difficulty_1pl": -0.1585087776184082, + "difficulty_2pl": 0.1487116515636444, + "discrimination_2pl": 0.27840787172317505, + "difficulty_simple": -0.3254224004346281, + "percent_correct": 0.5806451612903226, + "n_responses": 496 + }, + { + "problem_id": 127791, + "difficulty_1pl": -0.9483679533004761, + "difficulty_2pl": -0.11938264966011047, + "discrimination_2pl": 0.27097219228744507, + "difficulty_simple": -0.56594492298707, + "percent_correct": 0.6378269617706237, + "n_responses": 497 + }, + { + "problem_id": 128001, + "difficulty_1pl": -1.1918514966964722, + "difficulty_2pl": -0.029123522341251373, + "discrimination_2pl": 0.3775577247142792, + "difficulty_simple": -0.5899629443247145, + "percent_correct": 0.6433566433566433, + "n_responses": 572 + }, + { + "problem_id": 128108, + "difficulty_1pl": -5.160644054412842, + "difficulty_2pl": -0.12692195177078247, + "discrimination_2pl": 0.5387441515922546, + "difficulty_simple": -1.1316341569730561, + "percent_correct": 0.756140350877193, + "n_responses": 570 + }, + { + "problem_id": 441780, + "difficulty_1pl": -0.8846572637557983, + "difficulty_2pl": -0.059420619159936905, + "discrimination_2pl": 0.2411515861749649, + "difficulty_simple": -0.44757659345829115, + "percent_correct": 0.610062893081761, + "n_responses": 159 + }, + { + "problem_id": 441900, + "difficulty_1pl": -1.0596022605895996, + "difficulty_2pl": 0.14835526049137115, + "discrimination_2pl": 0.2594691514968872, + "difficulty_simple": -0.29135180134074334, + "percent_correct": 0.5723270440251572, + "n_responses": 159 + }, + { + "problem_id": 442008, + "difficulty_1pl": 0.26815301179885864, + "difficulty_2pl": 0.0020079491659998894, + "discrimination_2pl": 0.1294521689414978, + "difficulty_simple": -0.30616688712588375, + "percent_correct": 0.5759493670886076, + "n_responses": 158 + }, + { + "problem_id": 442127, + "difficulty_1pl": 2.8131635189056396, + "difficulty_2pl": -0.12597636878490448, + "discrimination_2pl": 0.036033760756254196, + "difficulty_simple": 0.49062291644847106, + "percent_correct": 0.379746835443038, + "n_responses": 158 + }, + { + "problem_id": 241877, + "difficulty_1pl": 5.7072367668151855, + "difficulty_2pl": 0.20070676505565643, + "discrimination_2pl": 0.067669577896595, + "difficulty_simple": 0.6589558158116661, + "percent_correct": 0.34097421203438394, + "n_responses": 1047 + }, + { + "problem_id": 243888, + "difficulty_1pl": 0.6789150238037109, + "difficulty_2pl": 0.21790136396884918, + "discrimination_2pl": 0.3197990953922272, + "difficulty_simple": -0.12213742203746893, + "percent_correct": 0.5304964539007092, + "n_responses": 705 + }, + { + "problem_id": 242315, + "difficulty_1pl": -0.9063743352890015, + "difficulty_2pl": 0.0678672268986702, + "discrimination_2pl": 0.4404439330101013, + "difficulty_simple": -0.6725278933572095, + "percent_correct": 0.6620689655172414, + "n_responses": 870 + }, + { + "problem_id": 242498, + "difficulty_1pl": -1.7470591068267822, + "difficulty_2pl": -0.06088695675134659, + "discrimination_2pl": 0.4890053868293762, + "difficulty_simple": -0.7627808723187458, + "percent_correct": 0.6819571865443425, + "n_responses": 654 + }, + { + "problem_id": 242767, + "difficulty_1pl": 5.637251377105713, + "difficulty_2pl": 0.09014911949634552, + "discrimination_2pl": 0.06454794853925705, + "difficulty_simple": 0.6678293725756556, + "percent_correct": 0.3389830508474576, + "n_responses": 649 + }, + { + "problem_id": 243107, + "difficulty_1pl": 0.14328786730766296, + "difficulty_2pl": 0.16729556024074554, + "discrimination_2pl": 0.33569228649139404, + "difficulty_simple": -0.569352963213281, + "percent_correct": 0.6386138613861386, + "n_responses": 1010 + }, + { + "problem_id": 243402, + "difficulty_1pl": 2.2327916622161865, + "difficulty_2pl": 0.22405390441417694, + "discrimination_2pl": 0.18723106384277344, + "difficulty_simple": 0.2812747278767807, + "percent_correct": 0.4301412872841444, + "n_responses": 637 + }, + { + "problem_id": 243534, + "difficulty_1pl": 1.6131941080093384, + "difficulty_2pl": 0.020252550020813942, + "discrimination_2pl": 0.2643730342388153, + "difficulty_simple": -0.028528083614538166, + "percent_correct": 0.5071315372424723, + "n_responses": 631 + }, + { + "problem_id": 243693, + "difficulty_1pl": -0.30259430408477783, + "difficulty_2pl": 0.12633368372917175, + "discrimination_2pl": 0.44762158393859863, + "difficulty_simple": -0.3883255982314685, + "percent_correct": 0.595879556259905, + "n_responses": 631 + }, + { + "problem_id": 43293, + "difficulty_1pl": 4.690507411956787, + "difficulty_2pl": -0.04779069498181343, + "discrimination_2pl": 0.05849006026983261, + "difficulty_simple": 0.6788407849087074, + "percent_correct": 0.3365200764818356, + "n_responses": 523 + }, + { + "problem_id": 87236, + "difficulty_1pl": 1.8506355285644531, + "difficulty_2pl": 0.022631019353866577, + "discrimination_2pl": 0.091049425303936, + "difficulty_simple": 0.2668789448220177, + "percent_correct": 0.4336734693877551, + "n_responses": 392 + }, + { + "problem_id": 77978, + "difficulty_1pl": -1.6780234575271606, + "difficulty_2pl": -0.10004336386919022, + "discrimination_2pl": 0.3958444595336914, + "difficulty_simple": -0.41303680463905795, + "percent_correct": 0.6018158236057068, + "n_responses": 771 + }, + { + "problem_id": 78165, + "difficulty_1pl": 1.3099453449249268, + "difficulty_2pl": 0.20532597601413727, + "discrimination_2pl": 0.21942469477653503, + "difficulty_simple": 0.3074846997479607, + "percent_correct": 0.423728813559322, + "n_responses": 767 + }, + { + "problem_id": 267340, + "difficulty_1pl": -12.378585815429688, + "difficulty_2pl": -0.3966008722782135, + "discrimination_2pl": 0.5127118229866028, + "difficulty_simple": -1.908754172167222, + "percent_correct": 0.8708791208791209, + "n_responses": 364 + }, + { + "problem_id": 267646, + "difficulty_1pl": -3.790494441986084, + "difficulty_2pl": -0.016254907473921776, + "discrimination_2pl": 0.39587393403053284, + "difficulty_simple": -0.9617082115649478, + "percent_correct": 0.723463687150838, + "n_responses": 358 + }, + { + "problem_id": 267794, + "difficulty_1pl": 4.317356586456299, + "difficulty_2pl": 0.03355931490659714, + "discrimination_2pl": 0.07856756448745728, + "difficulty_simple": 0.6061358035703154, + "percent_correct": 0.35294117647058826, + "n_responses": 357 + }, + { + "problem_id": 9419, + "difficulty_1pl": -5.312132835388184, + "difficulty_2pl": -0.08846992999315262, + "discrimination_2pl": 0.4179626405239105, + "difficulty_simple": -1.6222586008631619, + "percent_correct": 0.8351063829787234, + "n_responses": 188 + }, + { + "problem_id": 9567, + "difficulty_1pl": -8.249860763549805, + "difficulty_2pl": -0.1845535784959793, + "discrimination_2pl": 0.33393043279647827, + "difficulty_simple": -1.5602476682433284, + "percent_correct": 0.8263888888888888, + "n_responses": 144 + }, + { + "problem_id": 9673, + "difficulty_1pl": -12.294201850891113, + "difficulty_2pl": -0.04410891607403755, + "discrimination_2pl": 0.3952842950820923, + "difficulty_simple": -2.327277705584417, + "percent_correct": 0.9111111111111111, + "n_responses": 135 + }, + { + "problem_id": 185126, + "difficulty_1pl": -5.681935787200928, + "difficulty_2pl": -0.1448705643415451, + "discrimination_2pl": 0.45031195878982544, + "difficulty_simple": -1.5804503755608479, + "percent_correct": 0.8292682926829268, + "n_responses": 205 + }, + { + "problem_id": 185277, + "difficulty_1pl": -9.723002433776855, + "difficulty_2pl": 0.04516620188951492, + "discrimination_2pl": 0.35099878907203674, + "difficulty_simple": -1.4170660197866447, + "percent_correct": 0.8048780487804879, + "n_responses": 205 + }, + { + "problem_id": 185395, + "difficulty_1pl": -9.534377098083496, + "difficulty_2pl": -0.058703258633613586, + "discrimination_2pl": 0.41430580615997314, + "difficulty_simple": -1.8031881650516777, + "percent_correct": 0.8585365853658536, + "n_responses": 205 + }, + { + "problem_id": 42327, + "difficulty_1pl": 1.6692638397216797, + "difficulty_2pl": 0.09375295788049698, + "discrimination_2pl": 0.16021297872066498, + "difficulty_simple": 0.07368771579115913, + "percent_correct": 0.48158640226628896, + "n_responses": 706 + }, + { + "problem_id": 42642, + "difficulty_1pl": -0.33381325006484985, + "difficulty_2pl": 0.08766788244247437, + "discrimination_2pl": 0.2603645920753479, + "difficulty_simple": -0.2076393647782445, + "percent_correct": 0.5517241379310345, + "n_responses": 696 + }, + { + "problem_id": 128308, + "difficulty_1pl": 3.083014488220215, + "difficulty_2pl": 0.1465712934732437, + "discrimination_2pl": 0.1840759664773941, + "difficulty_simple": 0.2785495888885083, + "percent_correct": 0.4308093994778068, + "n_responses": 383 + }, + { + "problem_id": 429356, + "difficulty_1pl": -2.7319576740264893, + "difficulty_2pl": -0.05363405495882034, + "discrimination_2pl": 0.40817728638648987, + "difficulty_simple": -0.803657456887249, + "percent_correct": 0.6907563025210084, + "n_responses": 595 + }, + { + "problem_id": 207279, + "difficulty_1pl": 5.41029691696167, + "difficulty_2pl": 0.07545329630374908, + "discrimination_2pl": 0.14437343180179596, + "difficulty_simple": 0.7795796863322526, + "percent_correct": 0.314410480349345, + "n_responses": 229 + }, + { + "problem_id": 579223, + "difficulty_1pl": -0.7530598640441895, + "difficulty_2pl": 0.3042943477630615, + "discrimination_2pl": 0.4134017825126648, + "difficulty_simple": -0.5801820655168997, + "percent_correct": 0.6411092985318108, + "n_responses": 1226 + }, + { + "problem_id": 234184, + "difficulty_1pl": 0.1459442526102066, + "difficulty_2pl": 0.1485874056816101, + "discrimination_2pl": 0.3591451048851013, + "difficulty_simple": -0.23249565688449025, + "percent_correct": 0.5578635014836796, + "n_responses": 674 + }, + { + "problem_id": 577269, + "difficulty_1pl": 4.705864906311035, + "difficulty_2pl": 0.20150576531887054, + "discrimination_2pl": 0.08962640166282654, + "difficulty_simple": 0.4907297597628523, + "percent_correct": 0.3797216699801193, + "n_responses": 1006 + }, + { + "problem_id": 233384, + "difficulty_1pl": 0.6378493905067444, + "difficulty_2pl": 0.09703614562749863, + "discrimination_2pl": 0.2963801920413971, + "difficulty_simple": -0.27880889977129414, + "percent_correct": 0.5692541856925418, + "n_responses": 657 + }, + { + "problem_id": 577430, + "difficulty_1pl": 5.552450656890869, + "difficulty_2pl": 0.0868949219584465, + "discrimination_2pl": 0.05916750431060791, + "difficulty_simple": 0.5469773890636999, + "percent_correct": 0.36656596173212486, + "n_responses": 993 + }, + { + "problem_id": 387953, + "difficulty_1pl": -2.19901967048645, + "difficulty_2pl": -0.16132551431655884, + "discrimination_2pl": 0.3910132646560669, + "difficulty_simple": -0.7765287894989962, + "percent_correct": 0.684931506849315, + "n_responses": 803 + }, + { + "problem_id": 388305, + "difficulty_1pl": -4.4389824867248535, + "difficulty_2pl": -0.1678595095872879, + "discrimination_2pl": 0.41788896918296814, + "difficulty_simple": -0.9102116857977728, + "percent_correct": 0.7130434782608696, + "n_responses": 805 + }, + { + "problem_id": 383239, + "difficulty_1pl": -6.027801990509033, + "difficulty_2pl": -0.23404885828495026, + "discrimination_2pl": 0.4147739112377167, + "difficulty_simple": -1.160955419242245, + "percent_correct": 0.7615062761506276, + "n_responses": 478 + }, + { + "problem_id": 388718, + "difficulty_1pl": -8.176187515258789, + "difficulty_2pl": -0.3324180841445923, + "discrimination_2pl": 0.6385194063186646, + "difficulty_simple": -1.6015638560031944, + "percent_correct": 0.8322368421052632, + "n_responses": 608 + }, + { + "problem_id": 389082, + "difficulty_1pl": -12.343738555908203, + "difficulty_2pl": -0.43799668550491333, + "discrimination_2pl": 0.6362716555595398, + "difficulty_simple": -2.0375028524595056, + "percent_correct": 0.8846787479406919, + "n_responses": 607 + }, + { + "problem_id": 277396, + "difficulty_1pl": 0.3354504406452179, + "difficulty_2pl": 0.17511115968227386, + "discrimination_2pl": 0.23117034137248993, + "difficulty_simple": -0.4223157984600201, + "percent_correct": 0.6040372670807453, + "n_responses": 644 + }, + { + "problem_id": 275754, + "difficulty_1pl": -0.7329312562942505, + "difficulty_2pl": 0.08187125623226166, + "discrimination_2pl": 0.39286869764328003, + "difficulty_simple": -0.7291407832078506, + "percent_correct": 0.6746166950596252, + "n_responses": 587 + }, + { + "problem_id": 275922, + "difficulty_1pl": -2.771270751953125, + "difficulty_2pl": -0.14559079706668854, + "discrimination_2pl": 0.6180570125579834, + "difficulty_simple": -1.3884288336485233, + "percent_correct": 0.8003412969283277, + "n_responses": 586 + }, + { + "problem_id": 276105, + "difficulty_1pl": -4.797745227813721, + "difficulty_2pl": 0.02210552804172039, + "discrimination_2pl": 0.49518683552742004, + "difficulty_simple": -1.080429969584919, + "percent_correct": 0.7465753424657534, + "n_responses": 584 + }, + { + "problem_id": 615367, + "difficulty_1pl": 5.328644275665283, + "difficulty_2pl": 0.10699281096458435, + "discrimination_2pl": 0.08440298587083817, + "difficulty_simple": 1.1748396540559938, + "percent_correct": 0.23598130841121495, + "n_responses": 428 + }, + { + "problem_id": 615225, + "difficulty_1pl": 4.9498820304870605, + "difficulty_2pl": 0.019346516579389572, + "discrimination_2pl": 0.030465295538306236, + "difficulty_simple": 1.2069985252424729, + "percent_correct": 0.2302325581395349, + "n_responses": 430 + }, + { + "problem_id": 259069, + "difficulty_1pl": -8.169462203979492, + "difficulty_2pl": -0.06363625824451447, + "discrimination_2pl": 0.23211772739887238, + "difficulty_simple": -1.5404450409471486, + "percent_correct": 0.8235294117647058, + "n_responses": 136 + }, + { + "problem_id": 259215, + "difficulty_1pl": -15.004739761352539, + "difficulty_2pl": -0.08051170408725739, + "discrimination_2pl": 0.22971679270267487, + "difficulty_simple": -2.310883895808741, + "percent_correct": 0.9097744360902256, + "n_responses": 133 + }, + { + "problem_id": 259356, + "difficulty_1pl": -8.350391387939453, + "difficulty_2pl": 0.04854822903871536, + "discrimination_2pl": 0.251549631357193, + "difficulty_simple": -1.4147322964404243, + "percent_correct": 0.8045112781954887, + "n_responses": 133 + }, + { + "problem_id": 1805, + "difficulty_1pl": -10.947591781616211, + "difficulty_2pl": -0.38669031858444214, + "discrimination_2pl": 0.6173902153968811, + "difficulty_simple": -1.8808112468439575, + "percent_correct": 0.867704280155642, + "n_responses": 514 + }, + { + "problem_id": 3195, + "difficulty_1pl": 3.685110092163086, + "difficulty_2pl": 0.14838643372058868, + "discrimination_2pl": 0.1932959258556366, + "difficulty_simple": 0.16507975035944877, + "percent_correct": 0.4588235294117647, + "n_responses": 425 + }, + { + "problem_id": 64437, + "difficulty_1pl": -10.216045379638672, + "difficulty_2pl": -0.784570038318634, + "discrimination_2pl": 0.6455253958702087, + "difficulty_simple": -1.606636790154389, + "percent_correct": 0.8329439252336449, + "n_responses": 1712 + }, + { + "problem_id": 64758, + "difficulty_1pl": -10.106657028198242, + "difficulty_2pl": -0.8311951160430908, + "discrimination_2pl": 0.7251908779144287, + "difficulty_simple": -2.0192926949893373, + "percent_correct": 0.8828078524687686, + "n_responses": 1681 + }, + { + "problem_id": 65010, + "difficulty_1pl": -5.493640422821045, + "difficulty_2pl": -0.6154089570045471, + "discrimination_2pl": 0.49902504682540894, + "difficulty_simple": -1.3833313959892333, + "percent_correct": 0.7995255041518387, + "n_responses": 1686 + }, + { + "problem_id": 65369, + "difficulty_1pl": -1.8544957637786865, + "difficulty_2pl": -0.4110604226589203, + "discrimination_2pl": 0.33029407262802124, + "difficulty_simple": -0.8481478391889082, + "percent_correct": 0.7001784651992862, + "n_responses": 1681 + }, + { + "problem_id": 63291, + "difficulty_1pl": 1.4005438089370728, + "difficulty_2pl": 0.2719274163246155, + "discrimination_2pl": 0.22330066561698914, + "difficulty_simple": 0.07442786978920735, + "percent_correct": 0.4814016172506739, + "n_responses": 1855 + }, + { + "problem_id": 64016, + "difficulty_1pl": 12.315386772155762, + "difficulty_2pl": 0.10531360656023026, + "discrimination_2pl": 0.018741605803370476, + "difficulty_simple": 1.7788560643921474, + "percent_correct": 0.14444444444444443, + "n_responses": 1170 + }, + { + "problem_id": 569234, + "difficulty_1pl": -1.5635236501693726, + "difficulty_2pl": 0.028248803690075874, + "discrimination_2pl": 0.14733904600143433, + "difficulty_simple": -0.49247648509779424, + "percent_correct": 0.6206896551724138, + "n_responses": 638 + }, + { + "problem_id": 189877, + "difficulty_1pl": -4.556118965148926, + "difficulty_2pl": -0.24669991433620453, + "discrimination_2pl": 0.4685218036174774, + "difficulty_simple": -1.3299414245687586, + "percent_correct": 0.7908309455587392, + "n_responses": 349 + }, + { + "problem_id": 308259, + "difficulty_1pl": -1.6889593601226807, + "difficulty_2pl": -0.08297547698020935, + "discrimination_2pl": 0.29428693652153015, + "difficulty_simple": -0.5792029212107276, + "percent_correct": 0.6408839779005525, + "n_responses": 181 + }, + { + "problem_id": 132144, + "difficulty_1pl": -1.2941447496414185, + "difficulty_2pl": -0.06492717564105988, + "discrimination_2pl": 0.2839961647987366, + "difficulty_simple": -0.6386589952758756, + "percent_correct": 0.6544502617801047, + "n_responses": 191 + }, + { + "problem_id": 132256, + "difficulty_1pl": -0.6252049803733826, + "difficulty_2pl": -0.012032907456159592, + "discrimination_2pl": 0.22915269434452057, + "difficulty_simple": -0.5616840409994815, + "percent_correct": 0.6368421052631579, + "n_responses": 190 + }, + { + "problem_id": 132432, + "difficulty_1pl": -13.751651763916016, + "difficulty_2pl": -0.004613752476871014, + "discrimination_2pl": 0.4238484799861908, + "difficulty_simple": -1.6031682994205054, + "percent_correct": 0.8324607329842932, + "n_responses": 191 + }, + { + "problem_id": 132567, + "difficulty_1pl": -4.274339199066162, + "difficulty_2pl": -0.04446757212281227, + "discrimination_2pl": 0.3413712978363037, + "difficulty_simple": -1.0367368849500218, + "percent_correct": 0.7382198952879581, + "n_responses": 191 + }, + { + "problem_id": 132758, + "difficulty_1pl": -3.993682622909546, + "difficulty_2pl": -0.03234376758337021, + "discrimination_2pl": 0.29120925068855286, + "difficulty_simple": -1.0330150061822967, + "percent_correct": 0.7375, + "n_responses": 160 + }, + { + "problem_id": 132877, + "difficulty_1pl": -3.1845474243164062, + "difficulty_2pl": 0.07384908199310303, + "discrimination_2pl": 0.27763280272483826, + "difficulty_simple": -0.6466271649250525, + "percent_correct": 0.65625, + "n_responses": 160 + }, + { + "problem_id": 184283, + "difficulty_1pl": -0.9094712734222412, + "difficulty_2pl": -0.04947090521454811, + "discrimination_2pl": 0.22650055587291718, + "difficulty_simple": -0.594707107746693, + "percent_correct": 0.6444444444444445, + "n_responses": 90 + }, + { + "problem_id": 184392, + "difficulty_1pl": -0.4343486428260803, + "difficulty_2pl": -0.11101269721984863, + "discrimination_2pl": 0.07337476313114166, + "difficulty_simple": -0.20294084399669043, + "percent_correct": 0.550561797752809, + "n_responses": 89 + }, + { + "problem_id": 184499, + "difficulty_1pl": -4.751959800720215, + "difficulty_2pl": 0.05750727653503418, + "discrimination_2pl": 0.1718413084745407, + "difficulty_simple": -0.7270487322356265, + "percent_correct": 0.6741573033707865, + "n_responses": 89 + }, + { + "problem_id": 248005, + "difficulty_1pl": -0.9617180824279785, + "difficulty_2pl": -0.011067507788538933, + "discrimination_2pl": 0.2036735713481903, + "difficulty_simple": -0.4561088409269191, + "percent_correct": 0.6120906801007556, + "n_responses": 397 + }, + { + "problem_id": 69320, + "difficulty_1pl": 0.9096763730049133, + "difficulty_2pl": 0.1778346598148346, + "discrimination_2pl": 0.239380344748497, + "difficulty_simple": -0.259323207891712, + "percent_correct": 0.5644699140401146, + "n_responses": 349 + }, + { + "problem_id": 114294, + "difficulty_1pl": 12.711555480957031, + "difficulty_2pl": -0.004442698322236538, + "discrimination_2pl": 0.011368372477591038, + "difficulty_simple": 1.5112202842886542, + "percent_correct": 0.18075801749271136, + "n_responses": 343 + }, + { + "problem_id": 69444, + "difficulty_1pl": -0.13648536801338196, + "difficulty_2pl": -0.05459718033671379, + "discrimination_2pl": 0.2418636828660965, + "difficulty_simple": -0.7782096191037944, + "percent_correct": 0.6852941176470588, + "n_responses": 340 + }, + { + "problem_id": 522597, + "difficulty_1pl": -6.516892910003662, + "difficulty_2pl": -0.29481643438339233, + "discrimination_2pl": 0.437004417181015, + "difficulty_simple": -1.5109978396208479, + "percent_correct": 0.8192090395480226, + "n_responses": 354 + }, + { + "problem_id": 189992, + "difficulty_1pl": 1.7557222843170166, + "difficulty_2pl": 0.04367731884121895, + "discrimination_2pl": 0.11577082425355911, + "difficulty_simple": -0.1443423087287381, + "percent_correct": 0.5360230547550432, + "n_responses": 347 + }, + { + "problem_id": 190106, + "difficulty_1pl": 4.857232093811035, + "difficulty_2pl": 0.0006467700004577637, + "discrimination_2pl": 0.03854482248425484, + "difficulty_simple": 0.4318772076479416, + "percent_correct": 0.3936781609195402, + "n_responses": 348 + }, + { + "problem_id": 483519, + "difficulty_1pl": 2.9398927688598633, + "difficulty_2pl": 0.032455720007419586, + "discrimination_2pl": 0.07739423960447311, + "difficulty_simple": 0.4475765934582912, + "percent_correct": 0.389937106918239, + "n_responses": 159 + }, + { + "problem_id": 68115, + "difficulty_1pl": 1.1889855861663818, + "difficulty_2pl": -0.034601595252752304, + "discrimination_2pl": 0.17123417556285858, + "difficulty_simple": -0.1949003390008148, + "percent_correct": 0.5485714285714286, + "n_responses": 175 + }, + { + "problem_id": 483667, + "difficulty_1pl": 2.470930576324463, + "difficulty_2pl": -0.04891948401927948, + "discrimination_2pl": 0.06469526886940002, + "difficulty_simple": 0.16034265007517948, + "percent_correct": 0.46, + "n_responses": 150 + }, + { + "problem_id": 115085, + "difficulty_1pl": -7.118340969085693, + "difficulty_2pl": -0.13090990483760834, + "discrimination_2pl": 0.3470709025859833, + "difficulty_simple": -1.804498495005485, + "percent_correct": 0.8586956521739131, + "n_responses": 184 + }, + { + "problem_id": 5125, + "difficulty_1pl": 1.930480718612671, + "difficulty_2pl": 0.0051532043144106865, + "discrimination_2pl": 0.1726241558790207, + "difficulty_simple": -0.0993724738132036, + "percent_correct": 0.524822695035461, + "n_responses": 141 + }, + { + "problem_id": 51025, + "difficulty_1pl": -11.810660362243652, + "difficulty_2pl": -0.8368239402770996, + "discrimination_2pl": 0.7372698187828064, + "difficulty_simple": -2.3295856948125513, + "percent_correct": 0.911297852474323, + "n_responses": 1071 + }, + { + "problem_id": 53108, + "difficulty_1pl": 1.23398756980896, + "difficulty_2pl": 0.08114823698997498, + "discrimination_2pl": 0.3029191493988037, + "difficulty_simple": -0.2351793886583994, + "percent_correct": 0.5585253456221199, + "n_responses": 1085 + }, + { + "problem_id": 51557, + "difficulty_1pl": -4.152491569519043, + "difficulty_2pl": -0.18092569708824158, + "discrimination_2pl": 0.4065096378326416, + "difficulty_simple": -0.9738362175207558, + "percent_correct": 0.725883476599809, + "n_responses": 1047 + }, + { + "problem_id": 53415, + "difficulty_1pl": 5.807843208312988, + "difficulty_2pl": 0.15499508380889893, + "discrimination_2pl": 0.033126842230558395, + "difficulty_simple": 0.6828200664040955, + "percent_correct": 0.335632183908046, + "n_responses": 870 + }, + { + "problem_id": 53711, + "difficulty_1pl": 1.3551745414733887, + "difficulty_2pl": 0.29133063554763794, + "discrimination_2pl": 0.2557031512260437, + "difficulty_simple": -0.15851090810023602, + "percent_correct": 0.5395449620801733, + "n_responses": 923 + }, + { + "problem_id": 323003, + "difficulty_1pl": 3.1489768028259277, + "difficulty_2pl": 0.2581774890422821, + "discrimination_2pl": 0.06806894391775131, + "difficulty_simple": 0.6443570163905133, + "percent_correct": 0.3442622950819672, + "n_responses": 61 + }, + { + "problem_id": 323128, + "difficulty_1pl": 3.4919962882995605, + "difficulty_2pl": 0.032201871275901794, + "discrimination_2pl": 0.05161680653691292, + "difficulty_simple": 0.6678293725756556, + "percent_correct": 0.3389830508474576, + "n_responses": 59 + }, + { + "problem_id": 323266, + "difficulty_1pl": 3.3592309951782227, + "difficulty_2pl": 0.03855203464627266, + "discrimination_2pl": 0.07195858657360077, + "difficulty_simple": 0.5108256237659907, + "percent_correct": 0.375, + "n_responses": 56 + }, + { + "problem_id": 323410, + "difficulty_1pl": -0.6283716559410095, + "difficulty_2pl": -0.07724051922559738, + "discrimination_2pl": 0.1143730953335762, + "difficulty_simple": -0.1431008436406733, + "percent_correct": 0.5357142857142857, + "n_responses": 56 + }, + { + "problem_id": 247183, + "difficulty_1pl": -6.035351753234863, + "difficulty_2pl": -0.36085689067840576, + "discrimination_2pl": 0.6672568917274475, + "difficulty_simple": -1.2125381671848592, + "percent_correct": 0.770747740345111, + "n_responses": 1217 + }, + { + "problem_id": 195004, + "difficulty_1pl": -4.847964763641357, + "difficulty_2pl": -0.15818974375724792, + "discrimination_2pl": 0.2957395315170288, + "difficulty_simple": -1.0539121097502029, + "percent_correct": 0.7415254237288136, + "n_responses": 472 + }, + { + "problem_id": 96485, + "difficulty_1pl": -8.031365394592285, + "difficulty_2pl": -0.40229928493499756, + "discrimination_2pl": 0.6067121028900146, + "difficulty_simple": -1.4805709491009331, + "percent_correct": 0.814658803706824, + "n_responses": 1187 + }, + { + "problem_id": 96902, + "difficulty_1pl": -3.524139642715454, + "difficulty_2pl": -0.2490953654050827, + "discrimination_2pl": 0.5248890519142151, + "difficulty_simple": -1.2091255577215925, + "percent_correct": 0.7701441899915182, + "n_responses": 1179 + }, + { + "problem_id": 97915, + "difficulty_1pl": -2.003894329071045, + "difficulty_2pl": -0.1316939890384674, + "discrimination_2pl": 0.3971778452396393, + "difficulty_simple": -0.734711604981196, + "percent_correct": 0.6758383490971626, + "n_responses": 1163 + }, + { + "problem_id": 302268, + "difficulty_1pl": 1.6637723445892334, + "difficulty_2pl": 0.26562073826789856, + "discrimination_2pl": 0.2404337078332901, + "difficulty_simple": -0.0656371636399793, + "percent_correct": 0.5164034021871203, + "n_responses": 823 + }, + { + "problem_id": 302658, + "difficulty_1pl": 2.2282967567443848, + "difficulty_2pl": 0.11009633541107178, + "discrimination_2pl": 0.15335750579833984, + "difficulty_simple": 0.19809004886865944, + "percent_correct": 0.45063879210220675, + "n_responses": 861 + }, + { + "problem_id": 495451, + "difficulty_1pl": -0.7500844597816467, + "difficulty_2pl": -0.08063814789056778, + "discrimination_2pl": 0.22261160612106323, + "difficulty_simple": -0.32980554526302386, + "percent_correct": 0.5817120622568094, + "n_responses": 514 + }, + { + "problem_id": 184709, + "difficulty_1pl": 0.7793365120887756, + "difficulty_2pl": -0.010419106110930443, + "discrimination_2pl": 0.20747630298137665, + "difficulty_simple": 0.07145896398214485, + "percent_correct": 0.48214285714285715, + "n_responses": 280 + }, + { + "problem_id": 240434, + "difficulty_1pl": 7.118487358093262, + "difficulty_2pl": 0.07251109927892685, + "discrimination_2pl": 0.03717903420329094, + "difficulty_simple": 0.8941496059969415, + "percent_correct": 0.2902542372881356, + "n_responses": 1416 + }, + { + "problem_id": 35246, + "difficulty_1pl": -4.229423522949219, + "difficulty_2pl": -0.18638065457344055, + "discrimination_2pl": 0.31463661789894104, + "difficulty_simple": -0.9818368097720259, + "percent_correct": 0.7274725274725274, + "n_responses": 455 + }, + { + "problem_id": 61911, + "difficulty_1pl": -5.314889430999756, + "difficulty_2pl": -0.40911611914634705, + "discrimination_2pl": 0.5715809464454651, + "difficulty_simple": -1.4417907665694059, + "percent_correct": 0.8087318087318087, + "n_responses": 962 + }, + { + "problem_id": 62442, + "difficulty_1pl": -14.472979545593262, + "difficulty_2pl": -0.8619918823242188, + "discrimination_2pl": 0.8080657720565796, + "difficulty_simple": -3.0108350417397474, + "percent_correct": 0.9530612244897959, + "n_responses": 980 + }, + { + "problem_id": 21767, + "difficulty_1pl": 3.7300963401794434, + "difficulty_2pl": 0.1984957903623581, + "discrimination_2pl": 0.09179708361625671, + "difficulty_simple": 0.752336051950276, + "percent_correct": 0.3203125, + "n_responses": 256 + }, + { + "problem_id": 91335, + "difficulty_1pl": -2.86014986038208, + "difficulty_2pl": 0.006157747935503721, + "discrimination_2pl": 0.3688177466392517, + "difficulty_simple": -0.6622396430968688, + "percent_correct": 0.6597633136094675, + "n_responses": 338 + }, + { + "problem_id": 43208, + "difficulty_1pl": -3.8960349559783936, + "difficulty_2pl": -0.2819064259529114, + "discrimination_2pl": 0.4550221562385559, + "difficulty_simple": -1.028558033745236, + "percent_correct": 0.7366362451108214, + "n_responses": 767 + }, + { + "problem_id": 44592, + "difficulty_1pl": 1.116607666015625, + "difficulty_2pl": 0.2377185821533203, + "discrimination_2pl": 0.13192147016525269, + "difficulty_simple": 0.06840272688440041, + "percent_correct": 0.4829059829059829, + "n_responses": 468 + }, + { + "problem_id": 44926, + "difficulty_1pl": 3.23370361328125, + "difficulty_2pl": 0.1982114017009735, + "discrimination_2pl": 0.060971833765506744, + "difficulty_simple": 0.42341891172476015, + "percent_correct": 0.3956989247311828, + "n_responses": 465 + }, + { + "problem_id": 594494, + "difficulty_1pl": -1.6703909635543823, + "difficulty_2pl": -0.09451151639223099, + "discrimination_2pl": 0.3339480459690094, + "difficulty_simple": -0.6264558060612732, + "percent_correct": 0.651685393258427, + "n_responses": 356 + }, + { + "problem_id": 129738, + "difficulty_1pl": 3.633585214614868, + "difficulty_2pl": 0.07964003086090088, + "discrimination_2pl": 0.1514304131269455, + "difficulty_simple": 0.7129498078561248, + "percent_correct": 0.32894736842105265, + "n_responses": 152 + }, + { + "problem_id": 129451, + "difficulty_1pl": 1.3764495849609375, + "difficulty_2pl": 0.06770607829093933, + "discrimination_2pl": 0.1717425435781479, + "difficulty_simple": 0.21130909366720677, + "percent_correct": 0.4473684210526316, + "n_responses": 152 + }, + { + "problem_id": 129133, + "difficulty_1pl": 3.875930070877075, + "difficulty_2pl": 0.05866120383143425, + "discrimination_2pl": 0.10568734258413315, + "difficulty_simple": 0.8347976976229722, + "percent_correct": 0.3026315789473684, + "n_responses": 152 + }, + { + "problem_id": 130499, + "difficulty_1pl": -1.1866620779037476, + "difficulty_2pl": 0.08442109823226929, + "discrimination_2pl": 0.2006203830242157, + "difficulty_simple": -0.3022808718729334, + "percent_correct": 0.575, + "n_responses": 160 + }, + { + "problem_id": 390129, + "difficulty_1pl": 0.6731670498847961, + "difficulty_2pl": 0.06762820482254028, + "discrimination_2pl": 0.24572578072547913, + "difficulty_simple": -0.16819585453030592, + "percent_correct": 0.5419501133786848, + "n_responses": 441 + }, + { + "problem_id": 392468, + "difficulty_1pl": -5.371922492980957, + "difficulty_2pl": -0.07650594413280487, + "discrimination_2pl": 0.2895018756389618, + "difficulty_simple": -1.1878434223960521, + "percent_correct": 0.7663551401869159, + "n_responses": 214 + }, + { + "problem_id": 390823, + "difficulty_1pl": -2.6214606761932373, + "difficulty_2pl": 0.060624074190855026, + "discrimination_2pl": 0.38882678747177124, + "difficulty_simple": -0.4715085204251556, + "percent_correct": 0.6157407407407407, + "n_responses": 432 + }, + { + "problem_id": 390558, + "difficulty_1pl": 2.5869390964508057, + "difficulty_2pl": 0.1506597101688385, + "discrimination_2pl": 0.18988509476184845, + "difficulty_simple": 0.22006188477680166, + "percent_correct": 0.4452054794520548, + "n_responses": 438 + }, + { + "problem_id": 64354, + "difficulty_1pl": -0.7729355096817017, + "difficulty_2pl": -0.020991463214159012, + "discrimination_2pl": 0.2861959934234619, + "difficulty_simple": -0.08912777989600752, + "percent_correct": 0.5222672064777328, + "n_responses": 247 + }, + { + "problem_id": 194307, + "difficulty_1pl": -2.0267269611358643, + "difficulty_2pl": -0.02609551139175892, + "discrimination_2pl": 0.4035855531692505, + "difficulty_simple": -0.629884983781979, + "percent_correct": 0.6524633821571239, + "n_responses": 751 + }, + { + "problem_id": 194852, + "difficulty_1pl": -3.592844247817993, + "difficulty_2pl": -0.19822460412979126, + "discrimination_2pl": 0.3670266568660736, + "difficulty_simple": -0.8013055028421189, + "percent_correct": 0.6902536715620827, + "n_responses": 749 + }, + { + "problem_id": 195315, + "difficulty_1pl": -13.825928688049316, + "difficulty_2pl": -0.7172835469245911, + "discrimination_2pl": 0.7556653022766113, + "difficulty_simple": -2.3353749158170363, + "percent_correct": 0.9117647058823529, + "n_responses": 748 + }, + { + "problem_id": 196019, + "difficulty_1pl": -0.36395755410194397, + "difficulty_2pl": 0.07337402552366257, + "discrimination_2pl": 0.3672198951244354, + "difficulty_simple": -0.3122962567451828, + "percent_correct": 0.5774456521739131, + "n_responses": 736 + }, + { + "problem_id": 198767, + "difficulty_1pl": 2.1841888427734375, + "difficulty_2pl": 0.20582681894302368, + "discrimination_2pl": 0.18890602886676788, + "difficulty_simple": 0.1380212978973746, + "percent_correct": 0.4655493482309125, + "n_responses": 537 + }, + { + "problem_id": 279365, + "difficulty_1pl": -0.007883830927312374, + "difficulty_2pl": -0.046656299382448196, + "discrimination_2pl": 0.3095099925994873, + "difficulty_simple": -0.15254425377898476, + "percent_correct": 0.5380622837370242, + "n_responses": 578 + }, + { + "problem_id": 279742, + "difficulty_1pl": 4.473847389221191, + "difficulty_2pl": 0.054758600890636444, + "discrimination_2pl": 0.06041780859231949, + "difficulty_simple": 0.9469836782735612, + "percent_correct": 0.279491833030853, + "n_responses": 551 + }, + { + "problem_id": 277185, + "difficulty_1pl": 0.9829093813896179, + "difficulty_2pl": 0.07901718467473984, + "discrimination_2pl": 0.2596312165260315, + "difficulty_simple": -0.0569081322718796, + "percent_correct": 0.5142231947483589, + "n_responses": 457 + }, + { + "problem_id": 278886, + "difficulty_1pl": -3.351118564605713, + "difficulty_2pl": -0.09707428514957428, + "discrimination_2pl": 0.3986605405807495, + "difficulty_simple": -0.8338145100499166, + "percent_correct": 0.6971608832807571, + "n_responses": 317 + }, + { + "problem_id": 235060, + "difficulty_1pl": -0.12011222541332245, + "difficulty_2pl": 0.05980249121785164, + "discrimination_2pl": 0.3787747323513031, + "difficulty_simple": -0.3807724955177927, + "percent_correct": 0.594059405940594, + "n_responses": 1212 + }, + { + "problem_id": 235425, + "difficulty_1pl": 1.6422102451324463, + "difficulty_2pl": 0.6663947701454163, + "discrimination_2pl": 0.37560322880744934, + "difficulty_simple": 0.31401976833681633, + "percent_correct": 0.42213386348575216, + "n_responses": 1509 + }, + { + "problem_id": 225175, + "difficulty_1pl": 0.4440700113773346, + "difficulty_2pl": 0.010316940024495125, + "discrimination_2pl": 0.1658497452735901, + "difficulty_simple": -0.12883287184296857, + "percent_correct": 0.5321637426900585, + "n_responses": 171 + }, + { + "problem_id": 225359, + "difficulty_1pl": -2.6531877517700195, + "difficulty_2pl": -0.15230661630630493, + "discrimination_2pl": 0.3227103352546692, + "difficulty_simple": -0.6045937832185003, + "percent_correct": 0.6467065868263473, + "n_responses": 167 + }, + { + "problem_id": 77989, + "difficulty_1pl": 2.926128387451172, + "difficulty_2pl": -0.09087805449962616, + "discrimination_2pl": 0.03667018190026283, + "difficulty_simple": 0.578580615994396, + "percent_correct": 0.3592592592592593, + "n_responses": 270 + }, + { + "problem_id": 313329, + "difficulty_1pl": 1.6475123167037964, + "difficulty_2pl": 0.23549118638038635, + "discrimination_2pl": 0.35987576842308044, + "difficulty_simple": -0.21978596561936364, + "percent_correct": 0.554726368159204, + "n_responses": 1206 + }, + { + "problem_id": 313685, + "difficulty_1pl": 3.716874122619629, + "difficulty_2pl": 0.20383623242378235, + "discrimination_2pl": 0.07716262340545654, + "difficulty_simple": 0.5228337733943873, + "percent_correct": 0.37218984179850123, + "n_responses": 1201 + }, + { + "problem_id": 314006, + "difficulty_1pl": -3.8758649826049805, + "difficulty_2pl": -0.25750672817230225, + "discrimination_2pl": 0.4860863983631134, + "difficulty_simple": -1.034144311779448, + "percent_correct": 0.7377185678601166, + "n_responses": 1201 + }, + { + "problem_id": 314324, + "difficulty_1pl": 4.121187210083008, + "difficulty_2pl": 0.19383077323436737, + "discrimination_2pl": 0.09963017702102661, + "difficulty_simple": 0.4572611496603963, + "percent_correct": 0.38763575605680867, + "n_responses": 1197 + }, + { + "problem_id": 256912, + "difficulty_1pl": 3.179064989089966, + "difficulty_2pl": -0.038375359028577805, + "discrimination_2pl": 0.08426391333341599, + "difficulty_simple": 0.2900157957980013, + "percent_correct": 0.428, + "n_responses": 250 + }, + { + "problem_id": 256677, + "difficulty_1pl": 2.9339048862457275, + "difficulty_2pl": -0.002596453297883272, + "discrimination_2pl": 0.06469268351793289, + "difficulty_simple": 0.39551477725499645, + "percent_correct": 0.40239043824701193, + "n_responses": 251 + }, + { + "problem_id": 87902, + "difficulty_1pl": -6.921804428100586, + "difficulty_2pl": -0.5134710669517517, + "discrimination_2pl": 0.4171503782272339, + "difficulty_simple": -1.6366504759589855, + "percent_correct": 0.8370786516853933, + "n_responses": 712 + }, + { + "problem_id": 88255, + "difficulty_1pl": -3.853179693222046, + "difficulty_2pl": -0.34238767623901367, + "discrimination_2pl": 0.25951212644577026, + "difficulty_simple": -0.9672762866070225, + "percent_correct": 0.7245762711864406, + "n_responses": 708 + }, + { + "problem_id": 88607, + "difficulty_1pl": -4.767094612121582, + "difficulty_2pl": -0.3110264837741852, + "discrimination_2pl": 0.38896214962005615, + "difficulty_simple": -1.2719328846030882, + "percent_correct": 0.7810734463276836, + "n_responses": 708 + }, + { + "problem_id": 88965, + "difficulty_1pl": -7.796643257141113, + "difficulty_2pl": -0.36920425295829773, + "discrimination_2pl": 0.32201263308525085, + "difficulty_simple": -1.5364370195496104, + "percent_correct": 0.8229461756373938, + "n_responses": 706 + }, + { + "problem_id": 89416, + "difficulty_1pl": 2.1898231506347656, + "difficulty_2pl": 0.14635439217090607, + "discrimination_2pl": 0.28090742230415344, + "difficulty_simple": -0.08198823357902767, + "percent_correct": 0.5204855842185129, + "n_responses": 659 + }, + { + "problem_id": 80588, + "difficulty_1pl": 2.812622308731079, + "difficulty_2pl": 0.03481089323759079, + "discrimination_2pl": 0.10703809559345245, + "difficulty_simple": 0.23638877806423053, + "percent_correct": 0.4411764705882353, + "n_responses": 238 + }, + { + "problem_id": 78469, + "difficulty_1pl": 2.585907220840454, + "difficulty_2pl": 0.10615682601928711, + "discrimination_2pl": 0.08099250495433807, + "difficulty_simple": 0.245958229080381, + "percent_correct": 0.4388185654008439, + "n_responses": 237 + }, + { + "problem_id": 292178, + "difficulty_1pl": 2.9201138019561768, + "difficulty_2pl": 0.2256729155778885, + "discrimination_2pl": 0.1812683492898941, + "difficulty_simple": 0.30768273915845046, + "percent_correct": 0.42368045649072755, + "n_responses": 701 + }, + { + "problem_id": 14761, + "difficulty_1pl": 0.3398073613643646, + "difficulty_2pl": 0.3687608242034912, + "discrimination_2pl": 0.29173219203948975, + "difficulty_simple": -0.11355469954686236, + "percent_correct": 0.5283582089552239, + "n_responses": 670 + }, + { + "problem_id": 150895, + "difficulty_1pl": 0.3328864872455597, + "difficulty_2pl": -0.006445902865380049, + "discrimination_2pl": 0.2233198881149292, + "difficulty_simple": -0.25510590201716826, + "percent_correct": 0.5634328358208955, + "n_responses": 268 + }, + { + "problem_id": 151049, + "difficulty_1pl": 4.150213241577148, + "difficulty_2pl": -0.07895948737859726, + "discrimination_2pl": 0.04563698172569275, + "difficulty_simple": 0.44830526678465676, + "percent_correct": 0.38976377952755903, + "n_responses": 254 + }, + { + "problem_id": 468619, + "difficulty_1pl": 3.14170503616333, + "difficulty_2pl": 0.33310070633888245, + "discrimination_2pl": 0.14933645725250244, + "difficulty_simple": 0.4470643382994822, + "percent_correct": 0.3900589721988206, + "n_responses": 1187 + }, + { + "problem_id": 125047, + "difficulty_1pl": 3.384308099746704, + "difficulty_2pl": 0.061227522790431976, + "discrimination_2pl": 0.04988326132297516, + "difficulty_simple": 0.4242576074575316, + "percent_correct": 0.3954983922829582, + "n_responses": 311 + }, + { + "problem_id": 125385, + "difficulty_1pl": -4.453690528869629, + "difficulty_2pl": -0.34983304142951965, + "discrimination_2pl": 0.5189199447631836, + "difficulty_simple": -1.346448452572691, + "percent_correct": 0.7935483870967742, + "n_responses": 310 + }, + { + "problem_id": 100451, + "difficulty_1pl": 3.911738157272339, + "difficulty_2pl": 0.1184767484664917, + "discrimination_2pl": 0.06273398548364639, + "difficulty_simple": 0.6095996102895034, + "percent_correct": 0.3521505376344086, + "n_responses": 372 + }, + { + "problem_id": 99247, + "difficulty_1pl": -2.7023160457611084, + "difficulty_2pl": -0.08642084151506424, + "discrimination_2pl": 0.4013309180736542, + "difficulty_simple": -0.912895142873017, + "percent_correct": 0.7135922330097088, + "n_responses": 206 + }, + { + "problem_id": 99606, + "difficulty_1pl": -8.349021911621094, + "difficulty_2pl": -0.1285390853881836, + "discrimination_2pl": 0.5161600708961487, + "difficulty_simple": -1.5745506534336602, + "percent_correct": 0.8284313725490197, + "n_responses": 204 + }, + { + "problem_id": 99939, + "difficulty_1pl": 5.936722755432129, + "difficulty_2pl": 0.061769038438797, + "discrimination_2pl": 0.024730151519179344, + "difficulty_simple": 0.7683706017975328, + "percent_correct": 0.31683168316831684, + "n_responses": 202 + }, + { + "problem_id": 100714, + "difficulty_1pl": 4.2434306144714355, + "difficulty_2pl": -0.11918313056230545, + "discrimination_2pl": 0.058194879442453384, + "difficulty_simple": 0.7621400520468969, + "percent_correct": 0.3181818181818182, + "n_responses": 264 + }, + { + "problem_id": 78866, + "difficulty_1pl": -7.461382865905762, + "difficulty_2pl": -0.3152715861797333, + "discrimination_2pl": 0.5533149242401123, + "difficulty_simple": -1.2896675254308188, + "percent_correct": 0.7840909090909091, + "n_responses": 616 + }, + { + "problem_id": 310109, + "difficulty_1pl": -2.087791681289673, + "difficulty_2pl": -0.11833707988262177, + "discrimination_2pl": 0.3018147647380829, + "difficulty_simple": -0.6496620686202064, + "percent_correct": 0.656934306569343, + "n_responses": 411 + }, + { + "problem_id": 539841, + "difficulty_1pl": -0.3822559714317322, + "difficulty_2pl": 0.025157654657959938, + "discrimination_2pl": 0.22833839058876038, + "difficulty_simple": -0.3788980807234424, + "percent_correct": 0.593607305936073, + "n_responses": 438 + }, + { + "problem_id": 632697, + "difficulty_1pl": 1.4166264533996582, + "difficulty_2pl": 0.18181754648685455, + "discrimination_2pl": 0.14865337312221527, + "difficulty_simple": 0.14934528855232, + "percent_correct": 0.46273291925465837, + "n_responses": 322 + }, + { + "problem_id": 101005, + "difficulty_1pl": 1.812505841255188, + "difficulty_2pl": 0.10897345095872879, + "discrimination_2pl": 0.24851997196674347, + "difficulty_simple": -0.1106655678875193, + "percent_correct": 0.5276381909547738, + "n_responses": 199 + }, + { + "problem_id": 289975, + "difficulty_1pl": -0.9727743268013, + "difficulty_2pl": -0.16953590512275696, + "discrimination_2pl": 0.18583784997463226, + "difficulty_simple": -0.7419373447293771, + "percent_correct": 0.6774193548387096, + "n_responses": 62 + }, + { + "problem_id": 287888, + "difficulty_1pl": 0.6994913220405579, + "difficulty_2pl": -0.11344882845878601, + "discrimination_2pl": 0.13392099738121033, + "difficulty_simple": -0.44183275227903934, + "percent_correct": 0.6086956521739131, + "n_responses": 69 + }, + { + "problem_id": 288005, + "difficulty_1pl": 1.315124273300171, + "difficulty_2pl": -0.055196426808834076, + "discrimination_2pl": 0.1275264471769333, + "difficulty_simple": -0.2702903297399117, + "percent_correct": 0.5671641791044776, + "n_responses": 67 + }, + { + "problem_id": 288230, + "difficulty_1pl": -3.6215531826019287, + "difficulty_2pl": -0.09120279550552368, + "discrimination_2pl": 0.27063989639282227, + "difficulty_simple": -1.5339303599259555, + "percent_correct": 0.8225806451612904, + "n_responses": 62 + }, + { + "problem_id": 288530, + "difficulty_1pl": -8.957633972167969, + "difficulty_2pl": -0.1466592401266098, + "discrimination_2pl": 0.20085561275482178, + "difficulty_simple": -1.586965056582042, + "percent_correct": 0.8301886792452831, + "n_responses": 53 + }, + { + "problem_id": 31406, + "difficulty_1pl": 0.2512248754501343, + "difficulty_2pl": 0.02029292657971382, + "discrimination_2pl": 0.11173821240663528, + "difficulty_simple": 0.0771173033444312, + "percent_correct": 0.48073022312373226, + "n_responses": 493 + }, + { + "problem_id": 91020, + "difficulty_1pl": -1.7514739036560059, + "difficulty_2pl": 0.08629291504621506, + "discrimination_2pl": 0.5303990244865417, + "difficulty_simple": -0.5204705911251726, + "percent_correct": 0.6272577996715928, + "n_responses": 609 + }, + { + "problem_id": 89069, + "difficulty_1pl": 3.3287558555603027, + "difficulty_2pl": 0.08900335431098938, + "discrimination_2pl": 0.09943137317895889, + "difficulty_simple": 0.5224173719297757, + "percent_correct": 0.3722871452420701, + "n_responses": 599 + }, + { + "problem_id": 89270, + "difficulty_1pl": -3.9082376956939697, + "difficulty_2pl": 0.07344695180654526, + "discrimination_2pl": 0.5540425777435303, + "difficulty_simple": -0.7879684823296005, + "percent_correct": 0.6873949579831933, + "n_responses": 595 + }, + { + "problem_id": 89478, + "difficulty_1pl": 1.4117467403411865, + "difficulty_2pl": 0.1426338106393814, + "discrimination_2pl": 0.20031613111495972, + "difficulty_simple": 0.20951729960244442, + "percent_correct": 0.4478114478114478, + "n_responses": 594 + }, + { + "problem_id": 539325, + "difficulty_1pl": -5.779372692108154, + "difficulty_2pl": -0.14994046092033386, + "discrimination_2pl": 0.3796151876449585, + "difficulty_simple": -1.0182771405772235, + "percent_correct": 0.7346368715083799, + "n_responses": 358 + }, + { + "problem_id": 633159, + "difficulty_1pl": 6.766145706176758, + "difficulty_2pl": 0.15643621981143951, + "discrimination_2pl": 0.025779210031032562, + "difficulty_simple": 0.9162907318741551, + "percent_correct": 0.2857142857142857, + "n_responses": 301 + }, + { + "problem_id": 51977, + "difficulty_1pl": -1.9609715938568115, + "difficulty_2pl": -0.018691355362534523, + "discrimination_2pl": 0.21249930560588837, + "difficulty_simple": -0.49507726679785125, + "percent_correct": 0.621301775147929, + "n_responses": 169 + }, + { + "problem_id": 53735, + "difficulty_1pl": -1.560782790184021, + "difficulty_2pl": -0.13411124050617218, + "discrimination_2pl": 0.3002452254295349, + "difficulty_simple": -0.8938178760220967, + "percent_correct": 0.7096774193548387, + "n_responses": 93 + }, + { + "problem_id": 54008, + "difficulty_1pl": -2.67156720161438, + "difficulty_2pl": -0.038425590842962265, + "discrimination_2pl": 0.25514745712280273, + "difficulty_simple": -0.6286086594223742, + "percent_correct": 0.6521739130434783, + "n_responses": 92 + }, + { + "problem_id": 183371, + "difficulty_1pl": -2.6567001342773438, + "difficulty_2pl": -0.09152446687221527, + "discrimination_2pl": 0.39943549036979675, + "difficulty_simple": -0.7193703756590478, + "percent_correct": 0.6724683544303798, + "n_responses": 632 + }, + { + "problem_id": 309627, + "difficulty_1pl": 1.2698585987091064, + "difficulty_2pl": 0.052804574370384216, + "discrimination_2pl": 0.18602104485034943, + "difficulty_simple": 0.029852963149681343, + "percent_correct": 0.4925373134328358, + "n_responses": 402 + }, + { + "problem_id": 308995, + "difficulty_1pl": 2.847885847091675, + "difficulty_2pl": 0.03579491749405861, + "discrimination_2pl": 0.0353640541434288, + "difficulty_simple": 0.22073100490882563, + "percent_correct": 0.4450402144772118, + "n_responses": 373 + }, + { + "problem_id": 70471, + "difficulty_1pl": -3.8269126415252686, + "difficulty_2pl": -0.4882551431655884, + "discrimination_2pl": 0.3529379367828369, + "difficulty_simple": -1.0280611776761446, + "percent_correct": 0.7365398420674802, + "n_responses": 1393 + }, + { + "problem_id": 73862, + "difficulty_1pl": 2.530102491378784, + "difficulty_2pl": 0.4165753722190857, + "discrimination_2pl": 0.17935886979103088, + "difficulty_simple": 0.1812079709327749, + "percent_correct": 0.4548215641609719, + "n_responses": 1317 + }, + { + "problem_id": 104881, + "difficulty_1pl": 0.3037222623825073, + "difficulty_2pl": 0.08607608824968338, + "discrimination_2pl": 0.28914353251457214, + "difficulty_simple": -0.41566927828240613, + "percent_correct": 0.6024464831804281, + "n_responses": 327 + }, + { + "problem_id": 105229, + "difficulty_1pl": -8.161638259887695, + "difficulty_2pl": -0.1221606433391571, + "discrimination_2pl": 0.5923203825950623, + "difficulty_simple": -1.6204877486206852, + "percent_correct": 0.8348623853211009, + "n_responses": 327 + }, + { + "problem_id": 105511, + "difficulty_1pl": -10.978665351867676, + "difficulty_2pl": -0.29831022024154663, + "discrimination_2pl": 0.576773464679718, + "difficulty_simple": -1.831692179563426, + "percent_correct": 0.8619631901840491, + "n_responses": 326 + }, + { + "problem_id": 106945, + "difficulty_1pl": 0.28030139207839966, + "difficulty_2pl": 0.12028124183416367, + "discrimination_2pl": 0.27865302562713623, + "difficulty_simple": -0.44349250369740384, + "percent_correct": 0.6090909090909091, + "n_responses": 330 + }, + { + "problem_id": 106008, + "difficulty_1pl": -2.398076057434082, + "difficulty_2pl": -0.0332631841301918, + "discrimination_2pl": 0.21123676002025604, + "difficulty_simple": -0.7246955382948714, + "percent_correct": 0.6736401673640168, + "n_responses": 239 + }, + { + "problem_id": 106494, + "difficulty_1pl": 0.14315420389175415, + "difficulty_2pl": 0.02846536412835121, + "discrimination_2pl": 0.12386955320835114, + "difficulty_simple": -0.12568821516349674, + "percent_correct": 0.5313807531380753, + "n_responses": 239 + }, + { + "problem_id": 255819, + "difficulty_1pl": -1.652977705001831, + "difficulty_2pl": -0.019830899313092232, + "discrimination_2pl": 0.26951923966407776, + "difficulty_simple": -0.740104163647716, + "percent_correct": 0.6770186335403726, + "n_responses": 322 + }, + { + "problem_id": 256298, + "difficulty_1pl": 2.684467077255249, + "difficulty_2pl": -0.02672000601887703, + "discrimination_2pl": 0.0788131132721901, + "difficulty_simple": 0.5007752879124892, + "percent_correct": 0.37735849056603776, + "n_responses": 265 + }, + { + "problem_id": 256603, + "difficulty_1pl": 7.8224196434021, + "difficulty_2pl": -0.08721877634525299, + "discrimination_2pl": 0.03291464224457741, + "difficulty_simple": 1.2829160066660557, + "percent_correct": 0.21705426356589147, + "n_responses": 258 + }, + { + "problem_id": 257090, + "difficulty_1pl": 0.40769392251968384, + "difficulty_2pl": 0.06607650965452194, + "discrimination_2pl": 0.1500156670808792, + "difficulty_simple": 0.07579383936953352, + "percent_correct": 0.4810606060606061, + "n_responses": 264 + }, + { + "problem_id": 257569, + "difficulty_1pl": -3.4382100105285645, + "difficulty_2pl": 0.020650405436754227, + "discrimination_2pl": 0.34972548484802246, + "difficulty_simple": -0.9728863994977894, + "percent_correct": 0.7256944444444444, + "n_responses": 288 + }, + { + "problem_id": 257987, + "difficulty_1pl": -0.7879465818405151, + "difficulty_2pl": -0.008704349398612976, + "discrimination_2pl": 0.28759655356407166, + "difficulty_simple": -0.7036184804272411, + "percent_correct": 0.6689895470383276, + "n_responses": 287 + }, + { + "problem_id": 190220, + "difficulty_1pl": -2.437495708465576, + "difficulty_2pl": -0.08232200890779495, + "discrimination_2pl": 0.3800365626811981, + "difficulty_simple": -0.7696872576822795, + "percent_correct": 0.6834532374100719, + "n_responses": 695 + }, + { + "problem_id": 210383, + "difficulty_1pl": -2.37715744972229, + "difficulty_2pl": 0.0017739157192409039, + "discrimination_2pl": 0.5599284768104553, + "difficulty_simple": -1.0342171264297875, + "percent_correct": 0.7377326565143824, + "n_responses": 591 + }, + { + "problem_id": 208182, + "difficulty_1pl": -0.7955572009086609, + "difficulty_2pl": 0.21030692756175995, + "discrimination_2pl": 0.35451439023017883, + "difficulty_simple": -0.5267564458381849, + "percent_correct": 0.6287262872628726, + "n_responses": 738 + }, + { + "problem_id": 207052, + "difficulty_1pl": -12.8944730758667, + "difficulty_2pl": -0.7792323231697083, + "discrimination_2pl": 0.6985426545143127, + "difficulty_simple": -2.198335071620247, + "percent_correct": 0.9000999000999002, + "n_responses": 1001 + }, + { + "problem_id": 206599, + "difficulty_1pl": -11.36366081237793, + "difficulty_2pl": -0.5170385837554932, + "discrimination_2pl": 0.5837568044662476, + "difficulty_simple": -1.943603342957398, + "percent_correct": 0.8747474747474747, + "n_responses": 990 + }, + { + "problem_id": 206088, + "difficulty_1pl": -9.771183013916016, + "difficulty_2pl": -0.327511191368103, + "discrimination_2pl": 0.5994542241096497, + "difficulty_simple": -1.640466654672793, + "percent_correct": 0.8375984251968503, + "n_responses": 1016 + }, + { + "problem_id": 247400, + "difficulty_1pl": 1.4454096555709839, + "difficulty_2pl": 0.1987372189760208, + "discrimination_2pl": 0.21766768395900726, + "difficulty_simple": 0.2279320680460071, + "percent_correct": 0.4432624113475177, + "n_responses": 564 + }, + { + "problem_id": 247823, + "difficulty_1pl": 0.5350192785263062, + "difficulty_2pl": 0.21243999898433685, + "discrimination_2pl": 0.1301734745502472, + "difficulty_simple": 0.2809930843009844, + "percent_correct": 0.43021032504780116, + "n_responses": 523 + }, + { + "problem_id": 165863, + "difficulty_1pl": -9.127275466918945, + "difficulty_2pl": -0.0565628781914711, + "discrimination_2pl": 0.36072874069213867, + "difficulty_simple": -1.7190001149456264, + "percent_correct": 0.848, + "n_responses": 125 + }, + { + "problem_id": 166007, + "difficulty_1pl": 0.5292390584945679, + "difficulty_2pl": -0.08673782646656036, + "discrimination_2pl": 0.11113161593675613, + "difficulty_simple": -0.5408064559779265, + "percent_correct": 0.632, + "n_responses": 125 + }, + { + "problem_id": 109572, + "difficulty_1pl": -0.4621133506298065, + "difficulty_2pl": -0.07931078225374222, + "discrimination_2pl": 0.2670966386795044, + "difficulty_simple": -0.33845439782520403, + "percent_correct": 0.5838150289017341, + "n_responses": 173 + }, + { + "problem_id": 153281, + "difficulty_1pl": -2.1590561866760254, + "difficulty_2pl": -0.10319960862398148, + "discrimination_2pl": 0.2424933910369873, + "difficulty_simple": -0.3543734469504529, + "percent_correct": 0.5876777251184834, + "n_responses": 633 + }, + { + "problem_id": 244242, + "difficulty_1pl": 2.3675408363342285, + "difficulty_2pl": 0.501447319984436, + "discrimination_2pl": 0.24651338160037994, + "difficulty_simple": 0.3284209034308844, + "percent_correct": 0.4186248912097476, + "n_responses": 1149 + }, + { + "problem_id": 123623, + "difficulty_1pl": 2.3856759071350098, + "difficulty_2pl": 0.30622342228889465, + "discrimination_2pl": 0.24418732523918152, + "difficulty_simple": 0.08970006691355814, + "percent_correct": 0.4775900073475386, + "n_responses": 1361 + }, + { + "problem_id": 121352, + "difficulty_1pl": -13.987245559692383, + "difficulty_2pl": -0.5520536303520203, + "discrimination_2pl": 0.7304473519325256, + "difficulty_simple": -2.01957047358976, + "percent_correct": 0.8828365878725591, + "n_responses": 973 + }, + { + "problem_id": 33513, + "difficulty_1pl": 1.0126657485961914, + "difficulty_2pl": 0.026399219408631325, + "discrimination_2pl": 0.27863809466362, + "difficulty_simple": 0.05329858172436192, + "percent_correct": 0.4866785079928952, + "n_responses": 563 + }, + { + "problem_id": 9612, + "difficulty_1pl": 2.451392889022827, + "difficulty_2pl": -0.05574127286672592, + "discrimination_2pl": 0.09898031502962112, + "difficulty_simple": 0.30702503529491204, + "percent_correct": 0.423841059602649, + "n_responses": 302 + }, + { + "problem_id": 8405, + "difficulty_1pl": -8.532049179077148, + "difficulty_2pl": -0.22107075154781342, + "discrimination_2pl": 0.4164621829986572, + "difficulty_simple": -1.7510884294971274, + "percent_correct": 0.8520900321543409, + "n_responses": 311 + }, + { + "problem_id": 55691, + "difficulty_1pl": -2.9411442279815674, + "difficulty_2pl": -0.18198877573013306, + "discrimination_2pl": 0.45601537823677063, + "difficulty_simple": -0.9144541840668535, + "percent_correct": 0.7139107611548556, + "n_responses": 762 + }, + { + "problem_id": 141750, + "difficulty_1pl": -0.16200527548789978, + "difficulty_2pl": -0.23263026773929596, + "discrimination_2pl": 0.19556282460689545, + "difficulty_simple": -0.3067302674224755, + "percent_correct": 0.5760869565217391, + "n_responses": 276 + }, + { + "problem_id": 169437, + "difficulty_1pl": -3.3784444332122803, + "difficulty_2pl": -0.06384755671024323, + "discrimination_2pl": 0.34432458877563477, + "difficulty_simple": -0.731861692740636, + "percent_correct": 0.6752136752136753, + "n_responses": 117 + }, + { + "problem_id": 169705, + "difficulty_1pl": 1.497905969619751, + "difficulty_2pl": 0.024014882743358612, + "discrimination_2pl": 0.15472659468650818, + "difficulty_simple": 0.03448617607116919, + "percent_correct": 0.49137931034482757, + "n_responses": 116 + }, + { + "problem_id": 170227, + "difficulty_1pl": -2.831890821456909, + "difficulty_2pl": -0.018136458471417427, + "discrimination_2pl": 0.20780332386493683, + "difficulty_simple": -0.6931471805599451, + "percent_correct": 0.6666666666666666, + "n_responses": 117 + }, + { + "problem_id": 73275, + "difficulty_1pl": -0.6479558348655701, + "difficulty_2pl": 0.11706846207380295, + "discrimination_2pl": 0.4067458510398865, + "difficulty_simple": -0.6153412528571788, + "percent_correct": 0.6491582491582492, + "n_responses": 1485 + }, + { + "problem_id": 73395, + "difficulty_1pl": -7.786796569824219, + "difficulty_2pl": -0.8333723545074463, + "discrimination_2pl": 0.806865930557251, + "difficulty_simple": -2.0440596048337207, + "percent_correct": 0.8853459972862958, + "n_responses": 1474 + }, + { + "problem_id": 73585, + "difficulty_1pl": 2.767418384552002, + "difficulty_2pl": 0.29747462272644043, + "discrimination_2pl": 0.14267003536224365, + "difficulty_simple": 0.25197070394022786, + "percent_correct": 0.43733850129198965, + "n_responses": 1548 + }, + { + "problem_id": 73717, + "difficulty_1pl": -5.225619316101074, + "difficulty_2pl": -0.30061453580856323, + "discrimination_2pl": 0.5832798480987549, + "difficulty_simple": -1.2674045184883163, + "percent_correct": 0.7802981205443941, + "n_responses": 1543 + }, + { + "problem_id": 74258, + "difficulty_1pl": -3.240722894668579, + "difficulty_2pl": 0.024859394878149033, + "discrimination_2pl": 0.5800514817237854, + "difficulty_simple": -1.1132614088843418, + "percent_correct": 0.7527366387636832, + "n_responses": 1553 + }, + { + "problem_id": 74416, + "difficulty_1pl": -8.464019775390625, + "difficulty_2pl": -0.32321232557296753, + "discrimination_2pl": 0.6348498463630676, + "difficulty_simple": -1.531577590661828, + "percent_correct": 0.822237017310253, + "n_responses": 1502 + }, + { + "problem_id": 74581, + "difficulty_1pl": -2.3665106296539307, + "difficulty_2pl": 0.13963091373443604, + "discrimination_2pl": 0.5257329940795898, + "difficulty_simple": -0.8476181165949049, + "percent_correct": 0.7000672494956288, + "n_responses": 1487 + }, + { + "problem_id": 61624, + "difficulty_1pl": -0.5115871429443359, + "difficulty_2pl": 0.20133739709854126, + "discrimination_2pl": 0.47179675102233887, + "difficulty_simple": -0.6004700660346383, + "percent_correct": 0.6457638425617078, + "n_responses": 1499 + }, + { + "problem_id": 74735, + "difficulty_1pl": -6.349573135375977, + "difficulty_2pl": -0.10393393039703369, + "discrimination_2pl": 0.669197142124176, + "difficulty_simple": -1.2960829813995902, + "percent_correct": 0.785175017158545, + "n_responses": 1457 + }, + { + "problem_id": 75189, + "difficulty_1pl": -1.4073374271392822, + "difficulty_2pl": -0.07116790860891342, + "discrimination_2pl": 0.4453102946281433, + "difficulty_simple": -0.9637036750574123, + "percent_correct": 0.7238627294493216, + "n_responses": 1253 + }, + { + "problem_id": 75309, + "difficulty_1pl": -2.6197290420532227, + "difficulty_2pl": -0.13677585124969482, + "discrimination_2pl": 0.4799405038356781, + "difficulty_simple": -1.1370785694959056, + "percent_correct": 0.7571428571428571, + "n_responses": 1190 + }, + { + "problem_id": 10359, + "difficulty_1pl": 1.1967462301254272, + "difficulty_2pl": 0.032965224236249924, + "discrimination_2pl": 0.0721716359257698, + "difficulty_simple": -0.032260862218221435, + "percent_correct": 0.5080645161290323, + "n_responses": 124 + }, + { + "problem_id": 75928, + "difficulty_1pl": -0.260684609413147, + "difficulty_2pl": 0.17175719141960144, + "discrimination_2pl": 0.24311713874340057, + "difficulty_simple": -0.017825783952600798, + "percent_correct": 0.5044563279857398, + "n_responses": 561 + }, + { + "problem_id": 76294, + "difficulty_1pl": 0.45859256386756897, + "difficulty_2pl": -0.0668468102812767, + "discrimination_2pl": 0.17947892844676971, + "difficulty_simple": 0.04115807249350755, + "percent_correct": 0.4897119341563786, + "n_responses": 486 + }, + { + "problem_id": 137922, + "difficulty_1pl": -0.5696888566017151, + "difficulty_2pl": 0.00823146104812622, + "discrimination_2pl": 0.1923169046640396, + "difficulty_simple": -0.39730179746900335, + "percent_correct": 0.5980392156862745, + "n_responses": 102 + }, + { + "problem_id": 524787, + "difficulty_1pl": -2.6073691844940186, + "difficulty_2pl": -0.05777601897716522, + "discrimination_2pl": 0.38026824593544006, + "difficulty_simple": -0.6065665595537154, + "percent_correct": 0.6471571906354515, + "n_responses": 598 + }, + { + "problem_id": 525202, + "difficulty_1pl": 1.0570995807647705, + "difficulty_2pl": 0.11647511273622513, + "discrimination_2pl": 0.19246967136859894, + "difficulty_simple": 0.017762456339840468, + "percent_correct": 0.4955595026642984, + "n_responses": 563 + }, + { + "problem_id": 198295, + "difficulty_1pl": -0.508834958076477, + "difficulty_2pl": 0.24410927295684814, + "discrimination_2pl": 0.3895092010498047, + "difficulty_simple": -0.39367053161532756, + "percent_correct": 0.597165991902834, + "n_responses": 988 + }, + { + "problem_id": 198406, + "difficulty_1pl": -8.410243034362793, + "difficulty_2pl": -0.11260679364204407, + "discrimination_2pl": 0.5849261283874512, + "difficulty_simple": -1.1508937951781506, + "percent_correct": 0.7596741344195519, + "n_responses": 982 + }, + { + "problem_id": 198693, + "difficulty_1pl": -0.05734166502952576, + "difficulty_2pl": 0.3102189600467682, + "discrimination_2pl": 0.4546389579772949, + "difficulty_simple": -0.6070310587778271, + "percent_correct": 0.6472632493483927, + "n_responses": 1151 + }, + { + "problem_id": 198805, + "difficulty_1pl": -2.5735924243927, + "difficulty_2pl": -0.240849107503891, + "discrimination_2pl": 0.5533971190452576, + "difficulty_simple": -1.2667805795746792, + "percent_correct": 0.7801911381407471, + "n_responses": 1151 + }, + { + "problem_id": 199099, + "difficulty_1pl": 0.2403739094734192, + "difficulty_2pl": 0.27771925926208496, + "discrimination_2pl": 0.38297438621520996, + "difficulty_simple": -0.30116898850612467, + "percent_correct": 0.5747282608695652, + "n_responses": 736 + }, + { + "problem_id": 222661, + "difficulty_1pl": 9.505597114562988, + "difficulty_2pl": 0.11416788399219513, + "discrimination_2pl": 0.0404394157230854, + "difficulty_simple": 1.0264880163325953, + "percent_correct": 0.26376554174067496, + "n_responses": 1126 + }, + { + "problem_id": 222789, + "difficulty_1pl": 4.834865093231201, + "difficulty_2pl": 0.22551889717578888, + "discrimination_2pl": 0.16160531342029572, + "difficulty_simple": 0.3434506320026753, + "percent_correct": 0.4149715215622457, + "n_responses": 1229 + }, + { + "problem_id": 222907, + "difficulty_1pl": -8.863961219787598, + "difficulty_2pl": -0.5133602023124695, + "discrimination_2pl": 0.6260846853256226, + "difficulty_simple": -1.9140490469863292, + "percent_correct": 0.8714733542319749, + "n_responses": 1276 + }, + { + "problem_id": 223118, + "difficulty_1pl": 1.4549974203109741, + "difficulty_2pl": 0.32881370186805725, + "discrimination_2pl": 0.2838846445083618, + "difficulty_simple": -0.10601819407679691, + "percent_correct": 0.5264797507788161, + "n_responses": 1284 + }, + { + "problem_id": 223323, + "difficulty_1pl": -3.572329521179199, + "difficulty_2pl": -0.22839771211147308, + "discrimination_2pl": 0.5656390190124512, + "difficulty_simple": -1.3178265618424303, + "percent_correct": 0.7888198757763976, + "n_responses": 1288 + }, + { + "problem_id": 223535, + "difficulty_1pl": -2.335603952407837, + "difficulty_2pl": 0.01882307603955269, + "discrimination_2pl": 0.4783020615577698, + "difficulty_simple": -0.9288551461617054, + "percent_correct": 0.7168429617575265, + "n_responses": 1229 + }, + { + "problem_id": 221668, + "difficulty_1pl": -4.648385047912598, + "difficulty_2pl": 0.03383832424879074, + "discrimination_2pl": 0.473110556602478, + "difficulty_simple": -0.8542270219696529, + "percent_correct": 0.7014531043593131, + "n_responses": 757 + }, + { + "problem_id": 221830, + "difficulty_1pl": -2.1282379627227783, + "difficulty_2pl": 0.12320291250944138, + "discrimination_2pl": 0.4475438594818115, + "difficulty_simple": -0.8732240675000762, + "percent_correct": 0.7054161162483488, + "n_responses": 757 + }, + { + "problem_id": 222018, + "difficulty_1pl": -0.5624735355377197, + "difficulty_2pl": 0.005462629720568657, + "discrimination_2pl": 0.38748106360435486, + "difficulty_simple": -0.6225296133459921, + "percent_correct": 0.6507936507936508, + "n_responses": 756 + }, + { + "problem_id": 222283, + "difficulty_1pl": -5.543568134307861, + "difficulty_2pl": -0.2875872552394867, + "discrimination_2pl": 0.43125060200691223, + "difficulty_simple": -1.2734150130480373, + "percent_correct": 0.7813267813267813, + "n_responses": 814 + }, + { + "problem_id": 162021, + "difficulty_1pl": 3.329392671585083, + "difficulty_2pl": 0.06641104817390442, + "discrimination_2pl": 0.07283514738082886, + "difficulty_simple": 0.6807758887573984, + "percent_correct": 0.33608815426997246, + "n_responses": 726 + }, + { + "problem_id": 186074, + "difficulty_1pl": -2.6091485023498535, + "difficulty_2pl": -0.07875745743513107, + "discrimination_2pl": 0.47637709975242615, + "difficulty_simple": -0.6981347220709846, + "percent_correct": 0.6677740863787376, + "n_responses": 602 + }, + { + "problem_id": 248217, + "difficulty_1pl": -1.2173926830291748, + "difficulty_2pl": 0.09103544056415558, + "discrimination_2pl": 0.4813525080680847, + "difficulty_simple": -0.6605710101253325, + "percent_correct": 0.6593886462882096, + "n_responses": 687 + }, + { + "problem_id": 113478, + "difficulty_1pl": -3.0206336975097656, + "difficulty_2pl": -0.05070670694112778, + "discrimination_2pl": 0.5783337950706482, + "difficulty_simple": -0.9229722712076378, + "percent_correct": 0.715647339158062, + "n_responses": 1259 + }, + { + "problem_id": 110852, + "difficulty_1pl": -3.863600492477417, + "difficulty_2pl": 0.049922045320272446, + "discrimination_2pl": 0.5653566122055054, + "difficulty_simple": -1.116898512491528, + "percent_correct": 0.7534129692832765, + "n_responses": 1172 + }, + { + "problem_id": 112350, + "difficulty_1pl": 3.6084651947021484, + "difficulty_2pl": 0.0973697230219841, + "discrimination_2pl": 0.08174517750740051, + "difficulty_simple": 0.21309321546070836, + "percent_correct": 0.44692737430167595, + "n_responses": 1074 + }, + { + "problem_id": 112511, + "difficulty_1pl": -1.6921954154968262, + "difficulty_2pl": -0.058419570326805115, + "discrimination_2pl": 0.36547186970710754, + "difficulty_simple": -0.7212389154269604, + "percent_correct": 0.6728797763280522, + "n_responses": 1073 + }, + { + "problem_id": 112678, + "difficulty_1pl": 0.051693953573703766, + "difficulty_2pl": 0.014320239424705505, + "discrimination_2pl": 0.2451428771018982, + "difficulty_simple": -0.4023595155500114, + "percent_correct": 0.5992544268406338, + "n_responses": 1073 + }, + { + "problem_id": 113676, + "difficulty_1pl": -0.8798598051071167, + "difficulty_2pl": 0.04072503000497818, + "discrimination_2pl": 0.3965243101119995, + "difficulty_simple": -0.8559049350399482, + "percent_correct": 0.7018043684710351, + "n_responses": 1053 + }, + { + "problem_id": 55933, + "difficulty_1pl": -9.571258544921875, + "difficulty_2pl": -0.4283989369869232, + "discrimination_2pl": 0.5698632597923279, + "difficulty_simple": -1.7189076208420602, + "percent_correct": 0.8479880774962743, + "n_responses": 671 + }, + { + "problem_id": 56987, + "difficulty_1pl": -1.4393023252487183, + "difficulty_2pl": -0.15122158825397491, + "discrimination_2pl": 0.3219497799873352, + "difficulty_simple": -0.658461622572055, + "percent_correct": 0.6589147286821705, + "n_responses": 645 + }, + { + "problem_id": 257823, + "difficulty_1pl": 10.984397888183594, + "difficulty_2pl": 0.09171078354120255, + "discrimination_2pl": 0.029145319014787674, + "difficulty_simple": 1.6199092123013958, + "percent_correct": 0.16521739130434782, + "n_responses": 230 + }, + { + "problem_id": 426071, + "difficulty_1pl": -0.8558557629585266, + "difficulty_2pl": 0.039015915244817734, + "discrimination_2pl": 0.30806562304496765, + "difficulty_simple": -0.5285252008653915, + "percent_correct": 0.6291390728476821, + "n_responses": 604 + }, + { + "problem_id": 270010, + "difficulty_1pl": -4.938249588012695, + "difficulty_2pl": -0.4653145372867584, + "discrimination_2pl": 0.4954720437526703, + "difficulty_simple": -1.339377441332139, + "percent_correct": 0.7923875432525952, + "n_responses": 867 + }, + { + "problem_id": 270175, + "difficulty_1pl": -0.41097965836524963, + "difficulty_2pl": 0.021203406155109406, + "discrimination_2pl": 0.07933609187602997, + "difficulty_simple": -0.282276653884873, + "percent_correct": 0.5701042873696408, + "n_responses": 863 + }, + { + "problem_id": 271394, + "difficulty_1pl": -0.3502005636692047, + "difficulty_2pl": 0.04748416692018509, + "discrimination_2pl": 0.42475461959838867, + "difficulty_simple": -0.506817602368452, + "percent_correct": 0.6240601503759399, + "n_responses": 665 + }, + { + "problem_id": 55154, + "difficulty_1pl": -1.1983249187469482, + "difficulty_2pl": 0.016968585550785065, + "discrimination_2pl": 0.35791778564453125, + "difficulty_simple": -0.45015059745346414, + "percent_correct": 0.6106750392464678, + "n_responses": 637 + }, + { + "problem_id": 113030, + "difficulty_1pl": -1.2760905027389526, + "difficulty_2pl": 0.3745148181915283, + "discrimination_2pl": 0.5024969577789307, + "difficulty_simple": -0.5508534098564368, + "percent_correct": 0.6343335659455688, + "n_responses": 1433 + }, + { + "problem_id": 110609, + "difficulty_1pl": -3.7063052654266357, + "difficulty_2pl": -0.2966863811016083, + "discrimination_2pl": 0.43721848726272583, + "difficulty_simple": -1.2277480698195944, + "percent_correct": 0.7734241908006815, + "n_responses": 1174 + }, + { + "problem_id": 111728, + "difficulty_1pl": 0.23025119304656982, + "difficulty_2pl": 0.17899160087108612, + "discrimination_2pl": 0.3737340271472931, + "difficulty_simple": -0.5554388310365999, + "percent_correct": 0.6353965183752418, + "n_responses": 1034 + }, + { + "problem_id": 186704, + "difficulty_1pl": -8.189925193786621, + "difficulty_2pl": -0.4392850697040558, + "discrimination_2pl": 0.6386315822601318, + "difficulty_simple": -1.6258246525488727, + "percent_correct": 0.8355968548963545, + "n_responses": 1399 + }, + { + "problem_id": 189623, + "difficulty_1pl": 1.9684268236160278, + "difficulty_2pl": 0.24339354038238525, + "discrimination_2pl": 0.20951353013515472, + "difficulty_simple": -0.0540672212702757, + "percent_correct": 0.5135135135135135, + "n_responses": 1369 + }, + { + "problem_id": 189763, + "difficulty_1pl": 2.5249757766723633, + "difficulty_2pl": 0.042126886546611786, + "discrimination_2pl": 0.14887209236621857, + "difficulty_simple": 0.17548482230224938, + "percent_correct": 0.4562410329985653, + "n_responses": 1394 + }, + { + "problem_id": 189985, + "difficulty_1pl": 3.5532033443450928, + "difficulty_2pl": 0.17949232459068298, + "discrimination_2pl": 0.12528720498085022, + "difficulty_simple": 0.11934675763256623, + "percent_correct": 0.47019867549668876, + "n_responses": 1057 + }, + { + "problem_id": 297160, + "difficulty_1pl": 0.581448495388031, + "difficulty_2pl": 0.337877094745636, + "discrimination_2pl": 0.24688731133937836, + "difficulty_simple": -0.022506576409799636, + "percent_correct": 0.5056264066016504, + "n_responses": 1333 + }, + { + "problem_id": 297477, + "difficulty_1pl": -4.927086353302002, + "difficulty_2pl": -0.18711715936660767, + "discrimination_2pl": 0.5015443563461304, + "difficulty_simple": -0.9102116857977728, + "percent_correct": 0.7130434782608696, + "n_responses": 1265 + }, + { + "problem_id": 295642, + "difficulty_1pl": -7.40116024017334, + "difficulty_2pl": -0.15179121494293213, + "discrimination_2pl": 0.5154450535774231, + "difficulty_simple": -1.2047187946626572, + "percent_correct": 0.7693631669535284, + "n_responses": 1162 + }, + { + "problem_id": 295883, + "difficulty_1pl": -9.629495620727539, + "difficulty_2pl": -0.4828075170516968, + "discrimination_2pl": 0.6337049007415771, + "difficulty_simple": -1.6859896207769567, + "percent_correct": 0.8436960276338514, + "n_responses": 1158 + }, + { + "problem_id": 296064, + "difficulty_1pl": -8.146162986755371, + "difficulty_2pl": -0.27883005142211914, + "discrimination_2pl": 0.5269092917442322, + "difficulty_simple": -1.2152723595798698, + "percent_correct": 0.7712305025996534, + "n_responses": 1154 + }, + { + "problem_id": 298057, + "difficulty_1pl": -1.0229312181472778, + "difficulty_2pl": 0.050347816199064255, + "discrimination_2pl": 0.3917243480682373, + "difficulty_simple": -0.827853431357592, + "percent_correct": 0.6959008579599618, + "n_responses": 1049 + }, + { + "problem_id": 298258, + "difficulty_1pl": -5.734710216522217, + "difficulty_2pl": -0.2504296600818634, + "discrimination_2pl": 0.5753523111343384, + "difficulty_simple": -1.3211550589489294, + "percent_correct": 0.7893738140417458, + "n_responses": 1054 + }, + { + "problem_id": 298444, + "difficulty_1pl": -1.5260272026062012, + "difficulty_2pl": -0.05785196274518967, + "discrimination_2pl": 0.48789358139038086, + "difficulty_simple": -1.0412301862017952, + "percent_correct": 0.7390873015873016, + "n_responses": 1008 + }, + { + "problem_id": 298615, + "difficulty_1pl": -5.341385364532471, + "difficulty_2pl": -0.04196736961603165, + "discrimination_2pl": 0.5391968488693237, + "difficulty_simple": -1.292768303109067, + "percent_correct": 0.7846153846153846, + "n_responses": 910 + }, + { + "problem_id": 298817, + "difficulty_1pl": 0.8864360451698303, + "difficulty_2pl": 0.13498887419700623, + "discrimination_2pl": 0.2870725095272064, + "difficulty_simple": -0.34347343208019643, + "percent_correct": 0.5850340136054422, + "n_responses": 882 + }, + { + "problem_id": 296344, + "difficulty_1pl": -4.011451721191406, + "difficulty_2pl": -0.2197083681821823, + "discrimination_2pl": 0.43464526534080505, + "difficulty_simple": -1.3035023996729689, + "percent_correct": 0.7864238410596026, + "n_responses": 604 + }, + { + "problem_id": 296749, + "difficulty_1pl": -1.8729331493377686, + "difficulty_2pl": 0.1036912351846695, + "discrimination_2pl": 0.22568422555923462, + "difficulty_simple": -0.8721488386442295, + "percent_correct": 0.7051926298157454, + "n_responses": 597 + }, + { + "problem_id": 86722, + "difficulty_1pl": -0.4821736812591553, + "difficulty_2pl": 0.23787888884544373, + "discrimination_2pl": 0.4610532522201538, + "difficulty_simple": -0.6175444398169944, + "percent_correct": 0.6496598639455783, + "n_responses": 1470 + }, + { + "problem_id": 83709, + "difficulty_1pl": -2.0491857528686523, + "difficulty_2pl": -0.0769938975572586, + "discrimination_2pl": 0.3904058039188385, + "difficulty_simple": -0.8376824016877615, + "percent_correct": 0.6979768786127167, + "n_responses": 1384 + }, + { + "problem_id": 84110, + "difficulty_1pl": -10.247608184814453, + "difficulty_2pl": -0.4920683801174164, + "discrimination_2pl": 0.5932122468948364, + "difficulty_simple": -1.6782987620052223, + "percent_correct": 0.8426791277258567, + "n_responses": 1284 + }, + { + "problem_id": 84517, + "difficulty_1pl": -9.180154800415039, + "difficulty_2pl": -0.5617657899856567, + "discrimination_2pl": 0.5972349047660828, + "difficulty_simple": -1.6584495360219988, + "percent_correct": 0.8400297619047619, + "n_responses": 1344 + }, + { + "problem_id": 84944, + "difficulty_1pl": -7.2046799659729, + "difficulty_2pl": -0.46184441447257996, + "discrimination_2pl": 0.43004176020622253, + "difficulty_simple": -1.4331694273532227, + "percent_correct": 0.8073946689595872, + "n_responses": 1163 + }, + { + "problem_id": 85308, + "difficulty_1pl": -10.597916603088379, + "difficulty_2pl": -0.43875008821487427, + "discrimination_2pl": 0.6188209652900696, + "difficulty_simple": -1.9068287990128425, + "percent_correct": 0.8706624605678234, + "n_responses": 1268 + }, + { + "problem_id": 86962, + "difficulty_1pl": 0.7509437203407288, + "difficulty_2pl": 0.19191323220729828, + "discrimination_2pl": 0.32841017842292786, + "difficulty_simple": -0.08426034361773972, + "percent_correct": 0.5210526315789473, + "n_responses": 760 + }, + { + "problem_id": 87135, + "difficulty_1pl": 3.6525962352752686, + "difficulty_2pl": 0.01022319681942463, + "discrimination_2pl": 0.04905373603105545, + "difficulty_simple": 0.494101180824796, + "percent_correct": 0.3789279112754159, + "n_responses": 541 + }, + { + "problem_id": 87339, + "difficulty_1pl": 0.6948329210281372, + "difficulty_2pl": 0.1491611748933792, + "discrimination_2pl": 0.18608112633228302, + "difficulty_simple": 0.13013580362338442, + "percent_correct": 0.4675118858954041, + "n_responses": 631 + }, + { + "problem_id": 87535, + "difficulty_1pl": 2.1149165630340576, + "difficulty_2pl": 0.08256886154413223, + "discrimination_2pl": 0.12402469664812088, + "difficulty_simple": 0.2724146003209925, + "percent_correct": 0.43231441048034935, + "n_responses": 458 + }, + { + "problem_id": 87743, + "difficulty_1pl": 1.4589529037475586, + "difficulty_2pl": 0.2025095820426941, + "discrimination_2pl": 0.2593570649623871, + "difficulty_simple": -0.048974004596459626, + "percent_correct": 0.512241054613936, + "n_responses": 1062 + }, + { + "problem_id": 86400, + "difficulty_1pl": 8.195199966430664, + "difficulty_2pl": 0.08780104666948318, + "discrimination_2pl": 0.03609984740614891, + "difficulty_simple": 0.6931471805599455, + "percent_correct": 0.3333333333333333, + "n_responses": 570 + }, + { + "problem_id": 80087, + "difficulty_1pl": 1.2810430526733398, + "difficulty_2pl": 0.020404791459441185, + "discrimination_2pl": 0.1524069458246231, + "difficulty_simple": 0.08552217343816193, + "percent_correct": 0.47863247863247865, + "n_responses": 234 + }, + { + "problem_id": 237440, + "difficulty_1pl": -3.2446446418762207, + "difficulty_2pl": -0.0706823393702507, + "discrimination_2pl": 0.12689679861068726, + "difficulty_simple": -0.5933967777928857, + "percent_correct": 0.6441441441441441, + "n_responses": 444 + }, + { + "problem_id": 237641, + "difficulty_1pl": -6.326128959655762, + "difficulty_2pl": -0.1366225630044937, + "discrimination_2pl": 0.21037234365940094, + "difficulty_simple": -1.4880770554298328, + "percent_correct": 0.8157894736842105, + "n_responses": 418 + }, + { + "problem_id": 46101, + "difficulty_1pl": 1.0770183801651, + "difficulty_2pl": 0.2579106390476227, + "discrimination_2pl": 0.24523313343524933, + "difficulty_simple": -0.09546993697376763, + "percent_correct": 0.5238493723849372, + "n_responses": 1195 + }, + { + "problem_id": 46338, + "difficulty_1pl": -8.417957305908203, + "difficulty_2pl": -0.24631455540657043, + "discrimination_2pl": 0.6201813220977783, + "difficulty_simple": -1.5294679823159978, + "percent_correct": 0.8219284603421462, + "n_responses": 1286 + }, + { + "problem_id": 46527, + "difficulty_1pl": -11.255846977233887, + "difficulty_2pl": -0.6896739602088928, + "discrimination_2pl": 0.7034585475921631, + "difficulty_simple": -2.041496610115712, + "percent_correct": 0.8850855745721271, + "n_responses": 1227 + }, + { + "problem_id": 46711, + "difficulty_1pl": -12.17532730102539, + "difficulty_2pl": -0.4623143970966339, + "discrimination_2pl": 0.7239798307418823, + "difficulty_simple": -1.8926457044909601, + "percent_correct": 0.8690568978955573, + "n_responses": 1283 + }, + { + "problem_id": 46909, + "difficulty_1pl": -5.732457637786865, + "difficulty_2pl": -0.3381384611129761, + "discrimination_2pl": 0.606783926486969, + "difficulty_simple": -1.4707914191428073, + "percent_correct": 0.8131776480400333, + "n_responses": 1199 + }, + { + "problem_id": 47109, + "difficulty_1pl": -5.105299472808838, + "difficulty_2pl": 0.0628088116645813, + "discrimination_2pl": 0.5744433999061584, + "difficulty_simple": -1.191622483886993, + "percent_correct": 0.767031118587048, + "n_responses": 1189 + }, + { + "problem_id": 47289, + "difficulty_1pl": -9.610530853271484, + "difficulty_2pl": -0.09211737662553787, + "discrimination_2pl": 0.5683731436729431, + "difficulty_simple": -1.466337068793427, + "percent_correct": 0.8125, + "n_responses": 1184 + }, + { + "problem_id": 47479, + "difficulty_1pl": -0.7455788850784302, + "difficulty_2pl": -0.09554678201675415, + "discrimination_2pl": 0.41776275634765625, + "difficulty_simple": -0.7211744928146012, + "percent_correct": 0.672865595942519, + "n_responses": 1183 + }, + { + "problem_id": 47649, + "difficulty_1pl": 2.0250658988952637, + "difficulty_2pl": 0.21703045070171356, + "discrimination_2pl": 0.2579095959663391, + "difficulty_simple": -0.10191328523405886, + "percent_correct": 0.5254562920268973, + "n_responses": 1041 + }, + { + "problem_id": 44696, + "difficulty_1pl": -11.331408500671387, + "difficulty_2pl": -0.637376070022583, + "discrimination_2pl": 0.6758687496185303, + "difficulty_simple": -2.052460432848728, + "percent_correct": 0.8861959957850368, + "n_responses": 949 + }, + { + "problem_id": 45043, + "difficulty_1pl": -0.3525685966014862, + "difficulty_2pl": 0.09940128773450851, + "discrimination_2pl": 0.34201672673225403, + "difficulty_simple": -0.6854548349367895, + "percent_correct": 0.6649550706033376, + "n_responses": 779 + }, + { + "problem_id": 45372, + "difficulty_1pl": -1.330331802368164, + "difficulty_2pl": -0.02060844376683235, + "discrimination_2pl": 0.412796288728714, + "difficulty_simple": -0.8622235106038793, + "percent_correct": 0.703125, + "n_responses": 640 + }, + { + "problem_id": 47917, + "difficulty_1pl": -5.605319499969482, + "difficulty_2pl": 0.08146809786558151, + "discrimination_2pl": 0.5937433838844299, + "difficulty_simple": -1.0194073525713094, + "percent_correct": 0.7348571428571429, + "n_responses": 875 + }, + { + "problem_id": 45675, + "difficulty_1pl": -6.238144874572754, + "difficulty_2pl": -0.20927658677101135, + "discrimination_2pl": 0.3762091100215912, + "difficulty_simple": -1.436879857907997, + "percent_correct": 0.8079710144927537, + "n_responses": 276 + }, + { + "problem_id": 168704, + "difficulty_1pl": 0.050625670701265335, + "difficulty_2pl": 0.24924631416797638, + "discrimination_2pl": 0.3073976933956146, + "difficulty_simple": -0.3615411335899051, + "percent_correct": 0.5894134477825465, + "n_responses": 699 + }, + { + "problem_id": 168477, + "difficulty_1pl": 2.4770870208740234, + "difficulty_2pl": 0.04086540639400482, + "discrimination_2pl": 0.20659859478473663, + "difficulty_simple": 0.1373584160478243, + "percent_correct": 0.4657142857142857, + "n_responses": 700 + }, + { + "problem_id": 373493, + "difficulty_1pl": -1.5245540142059326, + "difficulty_2pl": -0.036869168281555176, + "discrimination_2pl": 0.23940765857696533, + "difficulty_simple": -0.6439781567534751, + "percent_correct": 0.6556521739130434, + "n_responses": 575 + }, + { + "problem_id": 373766, + "difficulty_1pl": -3.2117464542388916, + "difficulty_2pl": -0.09594803303480148, + "discrimination_2pl": 0.344658762216568, + "difficulty_simple": -0.669554998543125, + "percent_correct": 0.6614035087719298, + "n_responses": 570 + }, + { + "problem_id": 374058, + "difficulty_1pl": 0.25265151262283325, + "difficulty_2pl": 0.016114206984639168, + "discrimination_2pl": 0.35036614537239075, + "difficulty_simple": -0.1916674192121923, + "percent_correct": 0.5477707006369427, + "n_responses": 471 + }, + { + "problem_id": 374220, + "difficulty_1pl": -0.9042101502418518, + "difficulty_2pl": 0.11619548499584198, + "discrimination_2pl": 0.4244537055492401, + "difficulty_simple": -0.4734698372222218, + "percent_correct": 0.6162046908315565, + "n_responses": 469 + }, + { + "problem_id": 374368, + "difficulty_1pl": -2.870832681655884, + "difficulty_2pl": 0.0536249503493309, + "discrimination_2pl": 0.5369611382484436, + "difficulty_simple": -0.7711087220296572, + "percent_correct": 0.6837606837606838, + "n_responses": 468 + }, + { + "problem_id": 374418, + "difficulty_1pl": -4.879638671875, + "difficulty_2pl": 0.1792561411857605, + "discrimination_2pl": 0.45987561345100403, + "difficulty_simple": -0.8362480242006187, + "percent_correct": 0.6976744186046512, + "n_responses": 387 + }, + { + "problem_id": 157411, + "difficulty_1pl": -2.017167806625366, + "difficulty_2pl": -0.08528801798820496, + "discrimination_2pl": 0.32444339990615845, + "difficulty_simple": -0.6805047871447688, + "percent_correct": 0.6638513513513513, + "n_responses": 592 + }, + { + "problem_id": 50592, + "difficulty_1pl": -3.2047078609466553, + "difficulty_2pl": -0.05573808401823044, + "discrimination_2pl": 0.325602650642395, + "difficulty_simple": -0.7453329337305152, + "percent_correct": 0.6781609195402298, + "n_responses": 435 + }, + { + "problem_id": 50741, + "difficulty_1pl": 1.7056584358215332, + "difficulty_2pl": 0.16889818012714386, + "discrimination_2pl": 0.2844948172569275, + "difficulty_simple": 0.17570840090223755, + "percent_correct": 0.45618556701030927, + "n_responses": 388 + }, + { + "problem_id": 155954, + "difficulty_1pl": -3.915717601776123, + "difficulty_2pl": -0.3393138349056244, + "discrimination_2pl": 0.4541245698928833, + "difficulty_simple": -1.2971161360451708, + "percent_correct": 0.7853492333901193, + "n_responses": 587 + }, + { + "problem_id": 15120, + "difficulty_1pl": -4.221337795257568, + "difficulty_2pl": -0.12134774029254913, + "discrimination_2pl": 0.5676243901252747, + "difficulty_simple": -1.3758776002616349, + "percent_correct": 0.7983281086729362, + "n_responses": 957 + }, + { + "problem_id": 15269, + "difficulty_1pl": -6.192504405975342, + "difficulty_2pl": -0.29377061128616333, + "discrimination_2pl": 0.6877901554107666, + "difficulty_simple": -1.7662571764171187, + "percent_correct": 0.8539915966386554, + "n_responses": 952 + }, + { + "problem_id": 15414, + "difficulty_1pl": -1.3764729499816895, + "difficulty_2pl": 0.15218529105186462, + "discrimination_2pl": 0.49804699420928955, + "difficulty_simple": -0.7844836427710263, + "percent_correct": 0.68664563617245, + "n_responses": 951 + }, + { + "problem_id": 15569, + "difficulty_1pl": -5.2899489402771, + "difficulty_2pl": -0.04555913433432579, + "discrimination_2pl": 0.570280909538269, + "difficulty_simple": -1.468495498295337, + "percent_correct": 0.8128286014721346, + "n_responses": 951 + }, + { + "problem_id": 17475, + "difficulty_1pl": -1.803654670715332, + "difficulty_2pl": -0.05904797464609146, + "discrimination_2pl": 0.5280911326408386, + "difficulty_simple": -0.7964467503977489, + "percent_correct": 0.6892138939670932, + "n_responses": 547 + }, + { + "problem_id": 14914, + "difficulty_1pl": -0.5451256036758423, + "difficulty_2pl": 0.01950892060995102, + "discrimination_2pl": 0.4537624418735504, + "difficulty_simple": -0.45417858810133876, + "percent_correct": 0.6116322701688556, + "n_responses": 533 + }, + { + "problem_id": 15072, + "difficulty_1pl": 0.02185029536485672, + "difficulty_2pl": 0.024754125624895096, + "discrimination_2pl": 0.29476025700569153, + "difficulty_simple": -0.32292801151345557, + "percent_correct": 0.5800376647834274, + "n_responses": 531 + }, + { + "problem_id": 15234, + "difficulty_1pl": -4.820931434631348, + "difficulty_2pl": -0.18575090169906616, + "discrimination_2pl": 0.5148390531539917, + "difficulty_simple": -1.2370336665868238, + "percent_correct": 0.775047258979206, + "n_responses": 529 + }, + { + "problem_id": 15627, + "difficulty_1pl": 7.518087863922119, + "difficulty_2pl": 0.020604794844985008, + "discrimination_2pl": 0.02932133339345455, + "difficulty_simple": 1.059772455351846, + "percent_correct": 0.25735294117647056, + "n_responses": 408 + }, + { + "problem_id": 341553, + "difficulty_1pl": -3.2769010066986084, + "difficulty_2pl": -0.14467358589172363, + "discrimination_2pl": 0.3666805624961853, + "difficulty_simple": -0.8428925669192872, + "percent_correct": 0.6990740740740741, + "n_responses": 216 + }, + { + "problem_id": 341780, + "difficulty_1pl": -6.950392246246338, + "difficulty_2pl": -0.0832023024559021, + "discrimination_2pl": 0.4644368588924408, + "difficulty_simple": -1.4759065198095778, + "percent_correct": 0.813953488372093, + "n_responses": 215 + }, + { + "problem_id": 104597, + "difficulty_1pl": 1.839257001876831, + "difficulty_2pl": -0.06082916259765625, + "discrimination_2pl": 0.15909443795681, + "difficulty_simple": 0.15246859364427354, + "percent_correct": 0.46195652173913043, + "n_responses": 184 + }, + { + "problem_id": 124074, + "difficulty_1pl": -5.2514567375183105, + "difficulty_2pl": -0.06305927038192749, + "discrimination_2pl": 0.2730993628501892, + "difficulty_simple": -1.359626114037729, + "percent_correct": 0.7956989247311828, + "n_responses": 93 + }, + { + "problem_id": 124358, + "difficulty_1pl": -13.29073715209961, + "difficulty_2pl": -0.058403220027685165, + "discrimination_2pl": 0.35491451621055603, + "difficulty_simple": -2.054123733695546, + "percent_correct": 0.8863636363636364, + "n_responses": 88 + }, + { + "problem_id": 124637, + "difficulty_1pl": -6.3005051612854, + "difficulty_2pl": -0.1591957062482834, + "discrimination_2pl": 0.27542683482170105, + "difficulty_simple": -1.6784307839210515, + "percent_correct": 0.8426966292134831, + "n_responses": 89 + }, + { + "problem_id": 124948, + "difficulty_1pl": -0.24995315074920654, + "difficulty_2pl": 0.012995678000152111, + "discrimination_2pl": 0.10340023040771484, + "difficulty_simple": -0.3053816495511821, + "percent_correct": 0.5757575757575758, + "n_responses": 66 + }, + { + "problem_id": 43771, + "difficulty_1pl": -0.015573803335428238, + "difficulty_2pl": 0.23795519769191742, + "discrimination_2pl": 0.3696804642677307, + "difficulty_simple": -0.4725663251384644, + "percent_correct": 0.615990990990991, + "n_responses": 888 + }, + { + "problem_id": 44015, + "difficulty_1pl": 4.221939563751221, + "difficulty_2pl": 0.09810086339712143, + "discrimination_2pl": 0.1539144366979599, + "difficulty_simple": 0.25995752443692605, + "percent_correct": 0.43537414965986393, + "n_responses": 882 + }, + { + "problem_id": 86322, + "difficulty_1pl": 0.6176832318305969, + "difficulty_2pl": 0.07392969727516174, + "discrimination_2pl": 0.369841992855072, + "difficulty_simple": -0.45155621530843126, + "percent_correct": 0.6110091743119266, + "n_responses": 545 + }, + { + "problem_id": 86515, + "difficulty_1pl": 6.4053826332092285, + "difficulty_2pl": -0.07002788037061691, + "discrimination_2pl": 0.034001924097537994, + "difficulty_simple": 0.9059813622152939, + "percent_correct": 0.2878228782287823, + "n_responses": 542 + }, + { + "problem_id": 89267, + "difficulty_1pl": -1.3085248470306396, + "difficulty_2pl": 0.08426124602556229, + "discrimination_2pl": 0.41434022784233093, + "difficulty_simple": -0.5198754592859085, + "percent_correct": 0.6271186440677966, + "n_responses": 531 + }, + { + "problem_id": 87609, + "difficulty_1pl": -5.72554349899292, + "difficulty_2pl": -0.27383026480674744, + "discrimination_2pl": 0.3378201425075531, + "difficulty_simple": -1.4039939382192919, + "percent_correct": 0.8028169014084507, + "n_responses": 355 + }, + { + "problem_id": 87931, + "difficulty_1pl": 1.27703857421875, + "difficulty_2pl": 0.12155711650848389, + "discrimination_2pl": 0.30897942185401917, + "difficulty_simple": 0.05100255445237279, + "percent_correct": 0.48725212464589235, + "n_responses": 353 + }, + { + "problem_id": 88244, + "difficulty_1pl": -0.6168522834777832, + "difficulty_2pl": -0.005330323241651058, + "discrimination_2pl": 0.49251407384872437, + "difficulty_simple": -0.36772478012531756, + "percent_correct": 0.5909090909090909, + "n_responses": 352 + }, + { + "problem_id": 526525, + "difficulty_1pl": -11.069856643676758, + "difficulty_2pl": -0.1844637095928192, + "discrimination_2pl": 0.3691762387752533, + "difficulty_simple": -1.7600107709134747, + "percent_correct": 0.8532110091743119, + "n_responses": 109 + }, + { + "problem_id": 180722, + "difficulty_1pl": 8.34484577178955, + "difficulty_2pl": -0.0009376560337841511, + "discrimination_2pl": 0.016501503065228462, + "difficulty_simple": 1.2823334258164876, + "percent_correct": 0.21715328467153286, + "n_responses": 548 + }, + { + "problem_id": 27930, + "difficulty_1pl": -0.46191367506980896, + "difficulty_2pl": 0.21365758776664734, + "discrimination_2pl": 0.3392874002456665, + "difficulty_simple": -0.3472557220222407, + "percent_correct": 0.5859519408502772, + "n_responses": 541 + }, + { + "problem_id": 179830, + "difficulty_1pl": -5.084121227264404, + "difficulty_2pl": -0.05530789494514465, + "discrimination_2pl": 0.3709639012813568, + "difficulty_simple": -1.1660535694636427, + "percent_correct": 0.7624309392265194, + "n_responses": 362 + }, + { + "problem_id": 68783, + "difficulty_1pl": -7.910488605499268, + "difficulty_2pl": -0.3888627886772156, + "discrimination_2pl": 0.6539955735206604, + "difficulty_simple": -1.6188529113687018, + "percent_correct": 0.8346368715083798, + "n_responses": 895 + }, + { + "problem_id": 68963, + "difficulty_1pl": -1.796461582183838, + "difficulty_2pl": 0.02612302266061306, + "discrimination_2pl": 0.47615739703178406, + "difficulty_simple": -0.9280786876261972, + "percent_correct": 0.7166853303471444, + "n_responses": 893 + }, + { + "problem_id": 70516, + "difficulty_1pl": 3.3895585536956787, + "difficulty_2pl": 0.16894598305225372, + "discrimination_2pl": 0.13114269077777863, + "difficulty_simple": 0.128350033882525, + "percent_correct": 0.46795646916565903, + "n_responses": 827 + }, + { + "problem_id": 180143, + "difficulty_1pl": -0.9455888867378235, + "difficulty_2pl": 0.024516966193914413, + "discrimination_2pl": 0.4694935381412506, + "difficulty_simple": -0.3546458597119514, + "percent_correct": 0.5877437325905293, + "n_responses": 359 + }, + { + "problem_id": 180292, + "difficulty_1pl": -10.758543968200684, + "difficulty_2pl": -0.4102756679058075, + "discrimination_2pl": 0.3242316246032715, + "difficulty_simple": -1.500704712297635, + "percent_correct": 0.8176795580110497, + "n_responses": 362 + }, + { + "problem_id": 180476, + "difficulty_1pl": -0.7902444005012512, + "difficulty_2pl": -0.01828882470726967, + "discrimination_2pl": 0.47496989369392395, + "difficulty_simple": -0.3202582428863937, + "percent_correct": 0.5793871866295265, + "n_responses": 359 + }, + { + "problem_id": 196111, + "difficulty_1pl": -0.9768041968345642, + "difficulty_2pl": -0.05147906392812729, + "discrimination_2pl": 0.3933275043964386, + "difficulty_simple": -0.5603124093498705, + "percent_correct": 0.6365248226950354, + "n_responses": 564 + }, + { + "problem_id": 196505, + "difficulty_1pl": -3.328136682510376, + "difficulty_2pl": 0.024479128420352936, + "discrimination_2pl": 0.5186266899108887, + "difficulty_simple": -0.8418924418202957, + "percent_correct": 0.6988636363636364, + "n_responses": 528 + }, + { + "problem_id": 196907, + "difficulty_1pl": 1.1873760223388672, + "difficulty_2pl": 0.08371590822935104, + "discrimination_2pl": 0.27088022232055664, + "difficulty_simple": 0.010638398205055797, + "percent_correct": 0.4973404255319149, + "n_responses": 376 + }, + { + "problem_id": 197182, + "difficulty_1pl": 3.2021231651306152, + "difficulty_2pl": 0.06483850628137589, + "discrimination_2pl": 0.07731977105140686, + "difficulty_simple": 0.5930637220029629, + "percent_correct": 0.3559322033898305, + "n_responses": 590 + }, + { + "problem_id": 136717, + "difficulty_1pl": -4.533275604248047, + "difficulty_2pl": -0.20193997025489807, + "discrimination_2pl": 0.4354341924190521, + "difficulty_simple": -1.2205021062771466, + "percent_correct": 0.7721518987341772, + "n_responses": 237 + }, + { + "problem_id": 137062, + "difficulty_1pl": -3.353719711303711, + "difficulty_2pl": 0.005111066158860922, + "discrimination_2pl": 0.37205570936203003, + "difficulty_simple": -0.8232003088081432, + "percent_correct": 0.6949152542372882, + "n_responses": 236 + }, + { + "problem_id": 137984, + "difficulty_1pl": 0.9762659668922424, + "difficulty_2pl": 0.03882330656051636, + "discrimination_2pl": 0.33958593010902405, + "difficulty_simple": -0.3148107398400337, + "percent_correct": 0.5780590717299579, + "n_responses": 237 + }, + { + "problem_id": 138133, + "difficulty_1pl": -0.8405920267105103, + "difficulty_2pl": 0.10399921238422394, + "discrimination_2pl": 0.3245037794113159, + "difficulty_simple": -0.4658742359037245, + "percent_correct": 0.614406779661017, + "n_responses": 236 + }, + { + "problem_id": 138360, + "difficulty_1pl": 0.31666356325149536, + "difficulty_2pl": 0.05220051109790802, + "discrimination_2pl": 0.28623872995376587, + "difficulty_simple": -0.42322756444800474, + "percent_correct": 0.6042553191489362, + "n_responses": 235 + }, + { + "problem_id": 138533, + "difficulty_1pl": 0.6236100792884827, + "difficulty_2pl": 0.11118466407060623, + "discrimination_2pl": 0.2785179913043976, + "difficulty_simple": -0.13696585507315742, + "percent_correct": 0.5341880341880342, + "n_responses": 234 + }, + { + "problem_id": 114450, + "difficulty_1pl": -2.5110788345336914, + "difficulty_2pl": -0.024366630241274834, + "discrimination_2pl": 0.4073711633682251, + "difficulty_simple": -0.8353216693404878, + "percent_correct": 0.6974789915966386, + "n_responses": 238 + }, + { + "problem_id": 114637, + "difficulty_1pl": -7.1908698081970215, + "difficulty_2pl": -0.019249537959694862, + "discrimination_2pl": 0.4563307464122772, + "difficulty_simple": -1.2446438440568637, + "percent_correct": 0.7763713080168776, + "n_responses": 237 + }, + { + "problem_id": 114806, + "difficulty_1pl": -2.4825778007507324, + "difficulty_2pl": 0.08283843845129013, + "discrimination_2pl": 0.2622022032737732, + "difficulty_simple": -0.7187896111732829, + "percent_correct": 0.6723404255319149, + "n_responses": 235 + }, + { + "problem_id": 115049, + "difficulty_1pl": 3.97216534614563, + "difficulty_2pl": 0.06708448380231857, + "discrimination_2pl": 0.09221883118152618, + "difficulty_simple": 0.38299225225610556, + "percent_correct": 0.40540540540540543, + "n_responses": 222 + }, + { + "problem_id": 115187, + "difficulty_1pl": -1.2150882482528687, + "difficulty_2pl": 0.04108138754963875, + "discrimination_2pl": 0.3071574568748474, + "difficulty_simple": -0.47000362924573574, + "percent_correct": 0.6153846153846154, + "n_responses": 221 + }, + { + "problem_id": 115324, + "difficulty_1pl": -7.181403636932373, + "difficulty_2pl": -0.1107783243060112, + "discrimination_2pl": 0.560504138469696, + "difficulty_simple": -1.3919600986555682, + "percent_correct": 0.8009049773755657, + "n_responses": 221 + }, + { + "problem_id": 115951, + "difficulty_1pl": -2.53261399269104, + "difficulty_2pl": -0.0017289184033870697, + "discrimination_2pl": 0.3323972523212433, + "difficulty_simple": -1.1290097658524805, + "percent_correct": 0.755656108597285, + "n_responses": 221 + }, + { + "problem_id": 116167, + "difficulty_1pl": 0.89741051197052, + "difficulty_2pl": -0.05343477055430412, + "discrimination_2pl": 0.344308465719223, + "difficulty_simple": -0.3115875933053353, + "percent_correct": 0.5772727272727273, + "n_responses": 220 + }, + { + "problem_id": 35632, + "difficulty_1pl": 0.541815996170044, + "difficulty_2pl": 0.274287611246109, + "discrimination_2pl": 0.29646509885787964, + "difficulty_simple": -0.2071896233719682, + "percent_correct": 0.5516129032258065, + "n_responses": 930 + }, + { + "problem_id": 538288, + "difficulty_1pl": -6.75944709777832, + "difficulty_2pl": -0.43993088603019714, + "discrimination_2pl": 0.4033399522304535, + "difficulty_simple": -1.2729656758128873, + "percent_correct": 0.78125, + "n_responses": 800 + }, + { + "problem_id": 2894, + "difficulty_1pl": -0.44201332330703735, + "difficulty_2pl": -0.01567051373422146, + "discrimination_2pl": 0.3029893934726715, + "difficulty_simple": -0.26533477375978454, + "percent_correct": 0.565947242206235, + "n_responses": 417 + }, + { + "problem_id": 3056, + "difficulty_1pl": -0.2949051558971405, + "difficulty_2pl": -0.020948950201272964, + "discrimination_2pl": 0.2836111783981323, + "difficulty_simple": -0.35550466879054227, + "percent_correct": 0.5879518072289157, + "n_responses": 415 + }, + { + "problem_id": 50042, + "difficulty_1pl": 0.538755476474762, + "difficulty_2pl": 0.1594126671552658, + "discrimination_2pl": 0.2101781964302063, + "difficulty_simple": -0.03431709292412904, + "percent_correct": 0.508578431372549, + "n_responses": 816 + }, + { + "problem_id": 50267, + "difficulty_1pl": 0.33301985263824463, + "difficulty_2pl": 0.2880568504333496, + "discrimination_2pl": 0.33990243077278137, + "difficulty_simple": -0.18232155679395445, + "percent_correct": 0.5454545454545454, + "n_responses": 671 + }, + { + "problem_id": 50477, + "difficulty_1pl": 0.21114274859428406, + "difficulty_2pl": 0.1374177485704422, + "discrimination_2pl": 0.3167904317378998, + "difficulty_simple": -0.3958956570920139, + "percent_correct": 0.5977011494252874, + "n_responses": 609 + }, + { + "problem_id": 50674, + "difficulty_1pl": -0.32693758606910706, + "difficulty_2pl": -0.021326424553990364, + "discrimination_2pl": 0.3820950984954834, + "difficulty_simple": -0.5197651388047992, + "percent_correct": 0.6270928462709284, + "n_responses": 657 + }, + { + "problem_id": 50865, + "difficulty_1pl": -0.2546921670436859, + "difficulty_2pl": 0.06295035779476166, + "discrimination_2pl": 0.3265216052532196, + "difficulty_simple": -0.3900801892686852, + "percent_correct": 0.5963020030816641, + "n_responses": 649 + }, + { + "problem_id": 21711, + "difficulty_1pl": -3.335218906402588, + "difficulty_2pl": -0.2260139286518097, + "discrimination_2pl": 0.35516485571861267, + "difficulty_simple": -0.9231636111619171, + "percent_correct": 0.7156862745098039, + "n_responses": 306 + }, + { + "problem_id": 22093, + "difficulty_1pl": 1.6574363708496094, + "difficulty_2pl": -0.09046685695648193, + "discrimination_2pl": 0.15447476506233215, + "difficulty_simple": 0.337596463833494, + "percent_correct": 0.4163934426229508, + "n_responses": 305 + }, + { + "problem_id": 86798, + "difficulty_1pl": 1.8691984415054321, + "difficulty_2pl": 0.07610038667917252, + "discrimination_2pl": 0.10496819019317627, + "difficulty_simple": 0.4784902431230542, + "percent_correct": 0.3826086956521739, + "n_responses": 115 + }, + { + "problem_id": 497385, + "difficulty_1pl": 0.5034232139587402, + "difficulty_2pl": 0.1630113422870636, + "discrimination_2pl": 0.3320545554161072, + "difficulty_simple": -0.1392620673335078, + "percent_correct": 0.5347593582887701, + "n_responses": 561 + }, + { + "problem_id": 407929, + "difficulty_1pl": -8.899598121643066, + "difficulty_2pl": -0.4777745306491852, + "discrimination_2pl": 0.7443387508392334, + "difficulty_simple": -2.3318404511428352, + "percent_correct": 0.9114799446749654, + "n_responses": 723 + }, + { + "problem_id": 407757, + "difficulty_1pl": -4.66951847076416, + "difficulty_2pl": -0.20544365048408508, + "discrimination_2pl": 0.456807404756546, + "difficulty_simple": -1.2809338454620645, + "percent_correct": 0.782608695652174, + "n_responses": 713 + }, + { + "problem_id": 407583, + "difficulty_1pl": -11.773274421691895, + "difficulty_2pl": -0.5848649740219116, + "discrimination_2pl": 0.7040698528289795, + "difficulty_simple": -2.2707400973131233, + "percent_correct": 0.9064245810055865, + "n_responses": 716 + }, + { + "problem_id": 407357, + "difficulty_1pl": -5.5980730056762695, + "difficulty_2pl": -0.13666677474975586, + "discrimination_2pl": 0.5029380321502686, + "difficulty_simple": -0.9662304535905736, + "percent_correct": 0.7243675099866844, + "n_responses": 751 + }, + { + "problem_id": 151258, + "difficulty_1pl": 6.379490852355957, + "difficulty_2pl": 0.11390023678541183, + "discrimination_2pl": 0.03448152169585228, + "difficulty_simple": 0.8390219510833438, + "percent_correct": 0.30174081237911027, + "n_responses": 517 + }, + { + "problem_id": 151429, + "difficulty_1pl": 0.7734097242355347, + "difficulty_2pl": 0.14230524003505707, + "discrimination_2pl": 0.2847670018672943, + "difficulty_simple": 0.011696039763191456, + "percent_correct": 0.49707602339181284, + "n_responses": 513 + }, + { + "problem_id": 151596, + "difficulty_1pl": 0.035195499658584595, + "difficulty_2pl": 0.1960824579000473, + "discrimination_2pl": 0.42931780219078064, + "difficulty_simple": -0.36331948665740094, + "percent_correct": 0.58984375, + "n_responses": 512 + }, + { + "problem_id": 151827, + "difficulty_1pl": 0.5931701064109802, + "difficulty_2pl": 0.0517391674220562, + "discrimination_2pl": 0.2488168179988861, + "difficulty_simple": -0.1431008436406733, + "percent_correct": 0.5357142857142857, + "n_responses": 476 + }, + { + "problem_id": 151987, + "difficulty_1pl": -1.997370719909668, + "difficulty_2pl": 0.06011923402547836, + "discrimination_2pl": 0.43484216928482056, + "difficulty_simple": -0.6209022736866168, + "percent_correct": 0.6504237288135594, + "n_responses": 472 + }, + { + "problem_id": 152166, + "difficulty_1pl": -0.9602867364883423, + "difficulty_2pl": 0.12747377157211304, + "discrimination_2pl": 0.45569998025894165, + "difficulty_simple": -0.7187896111732829, + "percent_correct": 0.6723404255319149, + "n_responses": 470 + }, + { + "problem_id": 152409, + "difficulty_1pl": -0.5828500390052795, + "difficulty_2pl": -0.02826816216111183, + "discrimination_2pl": 0.3538261353969574, + "difficulty_simple": -0.45147138111680823, + "percent_correct": 0.610989010989011, + "n_responses": 455 + }, + { + "problem_id": 152568, + "difficulty_1pl": -13.257308006286621, + "difficulty_2pl": -0.4814701974391937, + "discrimination_2pl": 0.5775503516197205, + "difficulty_simple": -2.1194468762935346, + "percent_correct": 0.8927789934354485, + "n_responses": 457 + }, + { + "problem_id": 153081, + "difficulty_1pl": 2.376086473464966, + "difficulty_2pl": 0.10598400235176086, + "discrimination_2pl": 0.1600508838891983, + "difficulty_simple": 0.24283150628642902, + "percent_correct": 0.43958868894601544, + "n_responses": 389 + }, + { + "problem_id": 351677, + "difficulty_1pl": 1.2989001274108887, + "difficulty_2pl": 0.07105500251054764, + "discrimination_2pl": 0.2465188205242157, + "difficulty_simple": 0.11551288712184443, + "percent_correct": 0.47115384615384615, + "n_responses": 312 + }, + { + "problem_id": 351813, + "difficulty_1pl": -1.0454552173614502, + "difficulty_2pl": 0.07400207221508026, + "discrimination_2pl": 0.4194360673427582, + "difficulty_simple": -0.5280674302004967, + "percent_correct": 0.6290322580645161, + "n_responses": 310 + }, + { + "problem_id": 351988, + "difficulty_1pl": 0.7642713189125061, + "difficulty_2pl": 0.17760133743286133, + "discrimination_2pl": 0.2954857647418976, + "difficulty_simple": -0.2071896233719682, + "percent_correct": 0.5516129032258065, + "n_responses": 310 + }, + { + "problem_id": 352230, + "difficulty_1pl": -3.0493955612182617, + "difficulty_2pl": -0.1060846820473671, + "discrimination_2pl": 0.5039569735527039, + "difficulty_simple": -0.9883311636635206, + "percent_correct": 0.7287581699346405, + "n_responses": 306 + }, + { + "problem_id": 352407, + "difficulty_1pl": -0.9500773549079895, + "difficulty_2pl": -0.050010159611701965, + "discrimination_2pl": 0.3544713258743286, + "difficulty_simple": -0.4657573383642847, + "percent_correct": 0.6143790849673203, + "n_responses": 306 + }, + { + "problem_id": 352595, + "difficulty_1pl": -2.5849153995513916, + "difficulty_2pl": -0.20473405718803406, + "discrimination_2pl": 0.4048530161380768, + "difficulty_simple": -0.7078894622971486, + "percent_correct": 0.6699346405228758, + "n_responses": 306 + }, + { + "problem_id": 352750, + "difficulty_1pl": -5.535482406616211, + "difficulty_2pl": -0.1651240885257721, + "discrimination_2pl": 0.5340692400932312, + "difficulty_simple": -1.192641238316386, + "percent_correct": 0.7672131147540984, + "n_responses": 305 + }, + { + "problem_id": 352921, + "difficulty_1pl": -3.8930413722991943, + "difficulty_2pl": -0.07727895677089691, + "discrimination_2pl": 0.5049092173576355, + "difficulty_simple": -1.0855402071007572, + "percent_correct": 0.7475409836065574, + "n_responses": 305 + }, + { + "problem_id": 353101, + "difficulty_1pl": -3.1045608520507812, + "difficulty_2pl": -0.10144181549549103, + "discrimination_2pl": 0.48324641585350037, + "difficulty_simple": -0.9793220937211549, + "percent_correct": 0.7269736842105263, + "n_responses": 304 + }, + { + "problem_id": 218163, + "difficulty_1pl": 7.61656379699707, + "difficulty_2pl": 0.016470596194267273, + "discrimination_2pl": 0.05572160705924034, + "difficulty_simple": 1.0942166771950719, + "percent_correct": 0.2508250825082508, + "n_responses": 303 + }, + { + "problem_id": 373740, + "difficulty_1pl": -4.952268600463867, + "difficulty_2pl": -0.17273473739624023, + "discrimination_2pl": 0.6257734298706055, + "difficulty_simple": -1.3363671871633835, + "percent_correct": 0.7918918918918919, + "n_responses": 740 + }, + { + "problem_id": 373537, + "difficulty_1pl": -8.923545837402344, + "difficulty_2pl": -0.3701164424419403, + "discrimination_2pl": 0.7148621678352356, + "difficulty_simple": -1.855396141514481, + "percent_correct": 0.8647594278283485, + "n_responses": 769 + }, + { + "problem_id": 373325, + "difficulty_1pl": -4.823175430297852, + "difficulty_2pl": -0.15190322697162628, + "discrimination_2pl": 0.5089545249938965, + "difficulty_simple": -1.1898282969397713, + "percent_correct": 0.7667103538663171, + "n_responses": 763 + }, + { + "problem_id": 373136, + "difficulty_1pl": -14.290985107421875, + "difficulty_2pl": -0.6402378082275391, + "discrimination_2pl": 0.8305976390838623, + "difficulty_simple": -2.637598540151598, + "percent_correct": 0.9332425068119891, + "n_responses": 734 + }, + { + "problem_id": 372951, + "difficulty_1pl": -2.365976333618164, + "difficulty_2pl": -0.13100962340831757, + "discrimination_2pl": 0.5260917544364929, + "difficulty_simple": -1.0914180130340825, + "percent_correct": 0.7486486486486487, + "n_responses": 740 + }, + { + "problem_id": 372761, + "difficulty_1pl": -9.020000457763672, + "difficulty_2pl": -0.21705389022827148, + "discrimination_2pl": 0.6024737358093262, + "difficulty_simple": -1.462113197677242, + "percent_correct": 0.8118556701030928, + "n_responses": 776 + }, + { + "problem_id": 356457, + "difficulty_1pl": 4.466892242431641, + "difficulty_2pl": -0.102633997797966, + "discrimination_2pl": 0.04273984581232071, + "difficulty_simple": 0.5150945736855667, + "percent_correct": 0.374, + "n_responses": 500 + }, + { + "problem_id": 214651, + "difficulty_1pl": -2.9205143451690674, + "difficulty_2pl": -0.024973884224891663, + "discrimination_2pl": 0.31470999121665955, + "difficulty_simple": -0.6931471805599451, + "percent_correct": 0.6666666666666666, + "n_responses": 87 + }, + { + "problem_id": 249250, + "difficulty_1pl": 0.3110276758670807, + "difficulty_2pl": -0.021278947591781616, + "discrimination_2pl": 0.1395011991262436, + "difficulty_simple": -0.24231346742193013, + "percent_correct": 0.5602836879432624, + "n_responses": 141 + }, + { + "problem_id": 375713, + "difficulty_1pl": 3.2544429302215576, + "difficulty_2pl": 0.3596046566963196, + "discrimination_2pl": 0.23303839564323425, + "difficulty_simple": 0.33944400701037036, + "percent_correct": 0.41594454072790293, + "n_responses": 1154 + }, + { + "problem_id": 375908, + "difficulty_1pl": -1.3068228960037231, + "difficulty_2pl": 0.09336099773645401, + "discrimination_2pl": 0.4643628001213074, + "difficulty_simple": -0.5862634353615975, + "percent_correct": 0.6425073457394711, + "n_responses": 1021 + }, + { + "problem_id": 376147, + "difficulty_1pl": -1.520811676979065, + "difficulty_2pl": -0.12187806516885757, + "discrimination_2pl": 0.41686660051345825, + "difficulty_simple": -0.6646706801189874, + "percent_correct": 0.6603088101725704, + "n_responses": 1101 + }, + { + "problem_id": 376399, + "difficulty_1pl": -0.8053432703018188, + "difficulty_2pl": -0.1435636579990387, + "discrimination_2pl": 0.4107462465763092, + "difficulty_simple": -0.566853455235653, + "percent_correct": 0.6380368098159509, + "n_responses": 978 + }, + { + "problem_id": 376600, + "difficulty_1pl": -3.7972629070281982, + "difficulty_2pl": -0.16324110329151154, + "discrimination_2pl": 0.4907446503639221, + "difficulty_simple": -0.9518991593415228, + "percent_correct": 0.721496953872933, + "n_responses": 1149 + }, + { + "problem_id": 376894, + "difficulty_1pl": -3.6949663162231445, + "difficulty_2pl": -0.12732787430286407, + "discrimination_2pl": 0.5226682424545288, + "difficulty_simple": -0.845020473841525, + "percent_correct": 0.6995215311004784, + "n_responses": 1045 + }, + { + "problem_id": 19984, + "difficulty_1pl": 0.7553741931915283, + "difficulty_2pl": 0.15089760720729828, + "discrimination_2pl": 0.2514803111553192, + "difficulty_simple": -0.13396836007740065, + "percent_correct": 0.533442088091354, + "n_responses": 613 + }, + { + "problem_id": 20430, + "difficulty_1pl": 6.584733963012695, + "difficulty_2pl": 0.07317576557397842, + "discrimination_2pl": 0.06468086689710617, + "difficulty_simple": 0.8294836241120763, + "percent_correct": 0.3037542662116041, + "n_responses": 586 + }, + { + "problem_id": 20908, + "difficulty_1pl": -1.9749304056167603, + "difficulty_2pl": -0.05496656894683838, + "discrimination_2pl": 0.47108083963394165, + "difficulty_simple": -0.7365274761901704, + "percent_correct": 0.6762360446570973, + "n_responses": 627 + }, + { + "problem_id": 21076, + "difficulty_1pl": -10.405014038085938, + "difficulty_2pl": -0.19014573097229004, + "discrimination_2pl": 0.5637880563735962, + "difficulty_simple": -1.7122068375261008, + "percent_correct": 0.8471223021582733, + "n_responses": 556 + }, + { + "problem_id": 21258, + "difficulty_1pl": 3.6628003120422363, + "difficulty_2pl": 0.23714394867420197, + "discrimination_2pl": 0.05804804712533951, + "difficulty_simple": 0.4149438520627083, + "percent_correct": 0.3977272727272727, + "n_responses": 528 + }, + { + "problem_id": 21399, + "difficulty_1pl": -0.5497410893440247, + "difficulty_2pl": 0.10615698248147964, + "discrimination_2pl": 0.2906762659549713, + "difficulty_simple": -0.33714586413068703, + "percent_correct": 0.5834970530451866, + "n_responses": 509 + }, + { + "problem_id": 21595, + "difficulty_1pl": 0.7623777389526367, + "difficulty_2pl": 0.0777069702744484, + "discrimination_2pl": 0.22352494299411774, + "difficulty_simple": -0.086683239168802, + "percent_correct": 0.5216572504708098, + "n_responses": 531 + }, + { + "problem_id": 19386, + "difficulty_1pl": 2.272205352783203, + "difficulty_2pl": -0.05721564218401909, + "discrimination_2pl": 0.13698451220989227, + "difficulty_simple": 0.2247950793526827, + "percent_correct": 0.44403669724770645, + "n_responses": 545 + }, + { + "problem_id": 19578, + "difficulty_1pl": 0.8053449392318726, + "difficulty_2pl": 0.08717457205057144, + "discrimination_2pl": 0.36205145716667175, + "difficulty_simple": -0.3992150877629932, + "percent_correct": 0.5984990619136961, + "n_responses": 533 + }, + { + "problem_id": 19738, + "difficulty_1pl": 0.31968173384666443, + "difficulty_2pl": 0.06546766310930252, + "discrimination_2pl": 0.2824447751045227, + "difficulty_simple": -0.12136085700426735, + "percent_correct": 0.5303030303030303, + "n_responses": 528 + }, + { + "problem_id": 350665, + "difficulty_1pl": -2.3747355937957764, + "difficulty_2pl": 0.0846434086561203, + "discrimination_2pl": 0.3522743880748749, + "difficulty_simple": -0.6113171623123131, + "percent_correct": 0.6482412060301508, + "n_responses": 398 + }, + { + "problem_id": 247607, + "difficulty_1pl": -0.08066907525062561, + "difficulty_2pl": 0.20368298888206482, + "discrimination_2pl": 0.3420240581035614, + "difficulty_simple": 0.024273036356206333, + "percent_correct": 0.49393203883495146, + "n_responses": 824 + }, + { + "problem_id": 96079, + "difficulty_1pl": 1.570204496383667, + "difficulty_2pl": 0.13303612172603607, + "discrimination_2pl": 0.06136038526892662, + "difficulty_simple": 0.1442496088445467, + "percent_correct": 0.464, + "n_responses": 125 + }, + { + "problem_id": 96224, + "difficulty_1pl": -2.1995930671691895, + "difficulty_2pl": 0.018695997074246407, + "discrimination_2pl": 0.27139928936958313, + "difficulty_simple": -0.6684545679695739, + "percent_correct": 0.6611570247933884, + "n_responses": 121 + }, + { + "problem_id": 73287, + "difficulty_1pl": -4.335432529449463, + "difficulty_2pl": -0.0920356959104538, + "discrimination_2pl": 0.4510844945907593, + "difficulty_simple": -0.8385641804184492, + "percent_correct": 0.6981627296587927, + "n_responses": 381 + }, + { + "problem_id": 136828, + "difficulty_1pl": -3.8701741695404053, + "difficulty_2pl": -0.08054912835359573, + "discrimination_2pl": 0.39796876907348633, + "difficulty_simple": -1.0535886072941545, + "percent_correct": 0.7414634146341463, + "n_responses": 410 + }, + { + "problem_id": 137016, + "difficulty_1pl": -4.524714946746826, + "difficulty_2pl": -0.20646636188030243, + "discrimination_2pl": 0.4572424292564392, + "difficulty_simple": -1.2249630802177716, + "percent_correct": 0.7729357798165137, + "n_responses": 436 + }, + { + "problem_id": 137139, + "difficulty_1pl": -3.675029993057251, + "difficulty_2pl": -0.15037919580936432, + "discrimination_2pl": 0.39748188853263855, + "difficulty_simple": -0.9641820195785702, + "percent_correct": 0.7239583333333334, + "n_responses": 384 + }, + { + "problem_id": 137305, + "difficulty_1pl": -6.283763408660889, + "difficulty_2pl": -0.07658056914806366, + "discrimination_2pl": 0.4726566672325134, + "difficulty_simple": -1.4133230335078097, + "percent_correct": 0.8042895442359249, + "n_responses": 373 + }, + { + "problem_id": 227043, + "difficulty_1pl": 2.6091623306274414, + "difficulty_2pl": 0.04540175199508667, + "discrimination_2pl": 0.13583368062973022, + "difficulty_simple": 0.07958743791834745, + "percent_correct": 0.48011363636363635, + "n_responses": 1056 + }, + { + "problem_id": 228800, + "difficulty_1pl": 5.6274309158325195, + "difficulty_2pl": 0.061857420951128006, + "discrimination_2pl": 0.04238813742995262, + "difficulty_simple": 0.6056597264368294, + "percent_correct": 0.35304990757855825, + "n_responses": 541 + }, + { + "problem_id": 228973, + "difficulty_1pl": -2.2641618251800537, + "difficulty_2pl": -0.06182217225432396, + "discrimination_2pl": 0.4046977162361145, + "difficulty_simple": -0.790089125752176, + "percent_correct": 0.6878504672897197, + "n_responses": 535 + }, + { + "problem_id": 229143, + "difficulty_1pl": -1.9923948049545288, + "difficulty_2pl": 0.13850948214530945, + "discrimination_2pl": 0.4014167785644531, + "difficulty_simple": -0.6931471805599451, + "percent_correct": 0.6666666666666666, + "n_responses": 534 + }, + { + "problem_id": 229303, + "difficulty_1pl": -0.03173079341650009, + "difficulty_2pl": 0.1452266275882721, + "discrimination_2pl": 0.3021400570869446, + "difficulty_simple": -0.4480247225269606, + "percent_correct": 0.6101694915254238, + "n_responses": 531 + }, + { + "problem_id": 21566, + "difficulty_1pl": 6.68579626083374, + "difficulty_2pl": -0.020739495754241943, + "discrimination_2pl": 0.03744015470147133, + "difficulty_simple": 0.681890026035311, + "percent_correct": 0.3358395989974937, + "n_responses": 399 + }, + { + "problem_id": 351554, + "difficulty_1pl": -3.1953041553497314, + "difficulty_2pl": -0.11880789697170258, + "discrimination_2pl": 0.49400466680526733, + "difficulty_simple": -0.746572347233526, + "percent_correct": 0.6784313725490196, + "n_responses": 510 + }, + { + "problem_id": 351786, + "difficulty_1pl": -3.9343624114990234, + "difficulty_2pl": -0.16711534559726715, + "discrimination_2pl": 0.3730844557285309, + "difficulty_simple": -0.756326082181477, + "percent_correct": 0.6805555555555556, + "n_responses": 504 + }, + { + "problem_id": 323597, + "difficulty_1pl": -6.7718987464904785, + "difficulty_2pl": -0.09989363700151443, + "discrimination_2pl": 0.4213887155056, + "difficulty_simple": -1.2337147735246736, + "percent_correct": 0.774468085106383, + "n_responses": 235 + }, + { + "problem_id": 175247, + "difficulty_1pl": -8.05329418182373, + "difficulty_2pl": -0.2352350652217865, + "discrimination_2pl": 0.5916247367858887, + "difficulty_simple": -1.4033887944791907, + "percent_correct": 0.8027210884353742, + "n_responses": 882 + }, + { + "problem_id": 361789, + "difficulty_1pl": -0.5240793228149414, + "difficulty_2pl": 0.05879490450024605, + "discrimination_2pl": 0.3356221914291382, + "difficulty_simple": -0.4840553827013861, + "percent_correct": 0.6187050359712231, + "n_responses": 417 + }, + { + "problem_id": 361669, + "difficulty_1pl": -1.6604620218276978, + "difficulty_2pl": 0.0747498944401741, + "discrimination_2pl": 0.3607235550880432, + "difficulty_simple": -0.4917774287952963, + "percent_correct": 0.6205250596658711, + "n_responses": 419 + }, + { + "problem_id": 362112, + "difficulty_1pl": -0.8420246243476868, + "difficulty_2pl": -0.02493392489850521, + "discrimination_2pl": 0.2495793104171753, + "difficulty_simple": -0.4197589193653092, + "percent_correct": 0.6034255599472991, + "n_responses": 759 + }, + { + "problem_id": 175861, + "difficulty_1pl": -11.173580169677734, + "difficulty_2pl": -0.46716824173927307, + "discrimination_2pl": 0.51498943567276, + "difficulty_simple": -1.8702310846695505, + "percent_correct": 0.8664850136239782, + "n_responses": 734 + }, + { + "problem_id": 19255, + "difficulty_1pl": -0.7155790328979492, + "difficulty_2pl": -0.03615420684218407, + "discrimination_2pl": 0.2015690952539444, + "difficulty_simple": -0.36464311358790913, + "percent_correct": 0.5901639344262295, + "n_responses": 366 + }, + { + "problem_id": 227110, + "difficulty_1pl": 0.5877596139907837, + "difficulty_2pl": 0.1200985237956047, + "discrimination_2pl": 0.3801383376121521, + "difficulty_simple": -0.44129352336330446, + "percent_correct": 0.6085672082717873, + "n_responses": 677 + }, + { + "problem_id": 227295, + "difficulty_1pl": -3.2590413093566895, + "difficulty_2pl": 0.13154861330986023, + "discrimination_2pl": 0.5305505990982056, + "difficulty_simple": -0.9048263019834555, + "percent_correct": 0.7119402985074627, + "n_responses": 670 + }, + { + "problem_id": 323397, + "difficulty_1pl": -1.7855253219604492, + "difficulty_2pl": -0.0196949765086174, + "discrimination_2pl": 0.4300232529640198, + "difficulty_simple": -0.7246649408803506, + "percent_correct": 0.6736334405144695, + "n_responses": 622 + }, + { + "problem_id": 323576, + "difficulty_1pl": 4.058100700378418, + "difficulty_2pl": 0.12470445781946182, + "discrimination_2pl": 0.09221485257148743, + "difficulty_simple": 0.33481615012623306, + "percent_correct": 0.4170692431561997, + "n_responses": 621 + }, + { + "problem_id": 323787, + "difficulty_1pl": 2.2246716022491455, + "difficulty_2pl": 0.24403910338878632, + "discrimination_2pl": 0.2634030282497406, + "difficulty_simple": -0.1516587772170791, + "percent_correct": 0.537842190016103, + "n_responses": 621 + }, + { + "problem_id": 325132, + "difficulty_1pl": -0.8666216135025024, + "difficulty_2pl": 0.031711265444755554, + "discrimination_2pl": 0.42161309719085693, + "difficulty_simple": -0.5174387796577079, + "percent_correct": 0.6265486725663717, + "n_responses": 565 + }, + { + "problem_id": 258731, + "difficulty_1pl": 0.19707627594470978, + "difficulty_2pl": 0.048376262187957764, + "discrimination_2pl": 0.15383312106132507, + "difficulty_simple": -0.5920510636885767, + "percent_correct": 0.6438356164383562, + "n_responses": 73 + }, + { + "problem_id": 62003, + "difficulty_1pl": 5.176424980163574, + "difficulty_2pl": 0.14122812449932098, + "discrimination_2pl": 0.046308018267154694, + "difficulty_simple": 0.7496993500648664, + "percent_correct": 0.3208868144690782, + "n_responses": 857 + }, + { + "problem_id": 205980, + "difficulty_1pl": 0.8719912767410278, + "difficulty_2pl": 0.019785849377512932, + "discrimination_2pl": 0.061269283294677734, + "difficulty_simple": -0.09082921636928876, + "percent_correct": 0.5226917057902973, + "n_responses": 639 + }, + { + "problem_id": 435477, + "difficulty_1pl": 2.1684443950653076, + "difficulty_2pl": -0.028381982818245888, + "discrimination_2pl": 0.09424089640378952, + "difficulty_simple": 0.28881265482206714, + "percent_correct": 0.42829457364341084, + "n_responses": 516 + }, + { + "problem_id": 48838, + "difficulty_1pl": -1.716037631034851, + "difficulty_2pl": 0.007337841205298901, + "discrimination_2pl": 0.4039228856563568, + "difficulty_simple": -0.5955087109960292, + "percent_correct": 0.6446280991735537, + "n_responses": 363 + }, + { + "problem_id": 261766, + "difficulty_1pl": -2.4834420680999756, + "difficulty_2pl": -0.10209086537361145, + "discrimination_2pl": 0.42743733525276184, + "difficulty_simple": -0.9386476389754315, + "percent_correct": 0.7188264058679706, + "n_responses": 409 + }, + { + "problem_id": 261537, + "difficulty_1pl": -7.832002639770508, + "difficulty_2pl": -0.1478273719549179, + "discrimination_2pl": 0.5873352289199829, + "difficulty_simple": -1.6691571471357225, + "percent_correct": 0.8414634146341463, + "n_responses": 410 + }, + { + "problem_id": 39966, + "difficulty_1pl": 6.252798080444336, + "difficulty_2pl": -0.060687385499477386, + "discrimination_2pl": 0.03385395184159279, + "difficulty_simple": 1.0209613544380436, + "percent_correct": 0.2648401826484018, + "n_responses": 438 + }, + { + "problem_id": 105121, + "difficulty_1pl": 1.8401389122009277, + "difficulty_2pl": 0.11271555721759796, + "discrimination_2pl": 0.18129399418830872, + "difficulty_simple": 0.15131781674295414, + "percent_correct": 0.4622425629290618, + "n_responses": 437 + }, + { + "problem_id": 221748, + "difficulty_1pl": -2.1484627723693848, + "difficulty_2pl": -0.09323161095380783, + "discrimination_2pl": 0.4237339496612549, + "difficulty_simple": -0.8771340166729612, + "percent_correct": 0.7062279670975323, + "n_responses": 851 + }, + { + "problem_id": 221966, + "difficulty_1pl": -7.9627580642700195, + "difficulty_2pl": -0.4848621189594269, + "discrimination_2pl": 0.5520414113998413, + "difficulty_simple": -1.4505434885352857, + "percent_correct": 0.8100820633059789, + "n_responses": 853 + }, + { + "problem_id": 222136, + "difficulty_1pl": 1.2999258041381836, + "difficulty_2pl": 0.004224241711199284, + "discrimination_2pl": 0.2158990353345871, + "difficulty_simple": -0.17723013177086697, + "percent_correct": 0.5441919191919192, + "n_responses": 792 + }, + { + "problem_id": 63146, + "difficulty_1pl": 0.19929198920726776, + "difficulty_2pl": 0.054258525371551514, + "discrimination_2pl": 0.22237803041934967, + "difficulty_simple": -0.24928293951724517, + "percent_correct": 0.562, + "n_responses": 500 + }, + { + "problem_id": 63340, + "difficulty_1pl": 8.408293724060059, + "difficulty_2pl": 0.007308845408260822, + "discrimination_2pl": 0.02321826107800007, + "difficulty_simple": 1.2092221602120798, + "percent_correct": 0.22983870967741934, + "n_responses": 496 + }, + { + "problem_id": 63719, + "difficulty_1pl": -1.3326489925384521, + "difficulty_2pl": 0.05990009754896164, + "discrimination_2pl": 0.35574913024902344, + "difficulty_simple": -0.6730796175091361, + "percent_correct": 0.6621923937360179, + "n_responses": 447 + }, + { + "problem_id": 208025, + "difficulty_1pl": 1.136267900466919, + "difficulty_2pl": 0.09735104441642761, + "discrimination_2pl": 0.25299885869026184, + "difficulty_simple": -0.026223195099102672, + "percent_correct": 0.5065554231227652, + "n_responses": 839 + }, + { + "problem_id": 63054, + "difficulty_1pl": 0.3528424799442291, + "difficulty_2pl": 0.2516136169433594, + "discrimination_2pl": 0.11656977236270905, + "difficulty_simple": -0.3219893859508425, + "percent_correct": 0.5798090040927695, + "n_responses": 733 + }, + { + "problem_id": 63205, + "difficulty_1pl": -0.6303024888038635, + "difficulty_2pl": 0.05768081545829773, + "discrimination_2pl": 0.18285855650901794, + "difficulty_simple": -0.4523040521463346, + "percent_correct": 0.6111869031377899, + "n_responses": 733 + }, + { + "problem_id": 64054, + "difficulty_1pl": -13.420843124389648, + "difficulty_2pl": -0.5650495290756226, + "discrimination_2pl": 0.7015529870986938, + "difficulty_simple": -2.0133867200243007, + "percent_correct": 0.8821954484605087, + "n_responses": 747 + }, + { + "problem_id": 64237, + "difficulty_1pl": -7.717719078063965, + "difficulty_2pl": -0.23173193633556366, + "discrimination_2pl": 0.6592043042182922, + "difficulty_simple": -1.7366996920450273, + "percent_correct": 0.8502673796791443, + "n_responses": 748 + }, + { + "problem_id": 64410, + "difficulty_1pl": -3.360426187515259, + "difficulty_2pl": -0.33053433895111084, + "discrimination_2pl": 0.5830870866775513, + "difficulty_simple": -1.3171791729549074, + "percent_correct": 0.788712011577424, + "n_responses": 691 + }, + { + "problem_id": 64605, + "difficulty_1pl": -1.956506371498108, + "difficulty_2pl": -0.08747078478336334, + "discrimination_2pl": 0.4510120451450348, + "difficulty_simple": -0.78612363701805, + "percent_correct": 0.6869983948635634, + "n_responses": 623 + }, + { + "problem_id": 64813, + "difficulty_1pl": -5.361843585968018, + "difficulty_2pl": -0.08749661594629288, + "discrimination_2pl": 0.5830278396606445, + "difficulty_simple": -1.3258852333243307, + "percent_correct": 0.7901591895803184, + "n_responses": 691 + }, + { + "problem_id": 165245, + "difficulty_1pl": 4.557960510253906, + "difficulty_2pl": 0.022361313924193382, + "discrimination_2pl": 0.09175627678632736, + "difficulty_simple": 0.28768207245178085, + "percent_correct": 0.42857142857142855, + "n_responses": 455 + }, + { + "problem_id": 164833, + "difficulty_1pl": 3.2272891998291016, + "difficulty_2pl": 0.08622633665800095, + "discrimination_2pl": 0.13669712841510773, + "difficulty_simple": 0.31845373111853476, + "percent_correct": 0.42105263157894735, + "n_responses": 380 + }, + { + "problem_id": 165493, + "difficulty_1pl": 4.73816442489624, + "difficulty_2pl": 0.0735115185379982, + "discrimination_2pl": 0.057032711803913116, + "difficulty_simple": 0.676226303071608, + "percent_correct": 0.33710407239819007, + "n_responses": 442 + }, + { + "problem_id": 113440, + "difficulty_1pl": 2.398770332336426, + "difficulty_2pl": 0.044448669999837875, + "discrimination_2pl": 0.2043299376964569, + "difficulty_simple": 0.19574457712609533, + "percent_correct": 0.45121951219512196, + "n_responses": 738 + }, + { + "problem_id": 113830, + "difficulty_1pl": -4.182966709136963, + "difficulty_2pl": -0.06610449403524399, + "discrimination_2pl": 0.331076055765152, + "difficulty_simple": -1.037110088910316, + "percent_correct": 0.7382920110192838, + "n_responses": 726 + }, + { + "problem_id": 113646, + "difficulty_1pl": 3.202902317047119, + "difficulty_2pl": 0.1642443686723709, + "discrimination_2pl": 0.0636020228266716, + "difficulty_simple": 0.570872942460057, + "percent_correct": 0.36103542234332425, + "n_responses": 734 + }, + { + "problem_id": 196033, + "difficulty_1pl": -6.197028636932373, + "difficulty_2pl": -0.05777597054839134, + "discrimination_2pl": 0.21149900555610657, + "difficulty_simple": -1.1474024528375417, + "percent_correct": 0.7590361445783133, + "n_responses": 83 + }, + { + "problem_id": 69182, + "difficulty_1pl": 1.4379053115844727, + "difficulty_2pl": -0.03109002113342285, + "discrimination_2pl": 0.14487296342849731, + "difficulty_simple": 0.14614190021645238, + "percent_correct": 0.46352941176470586, + "n_responses": 425 + }, + { + "problem_id": 18187, + "difficulty_1pl": 12.93362808227539, + "difficulty_2pl": 0.040319573134183884, + "discrimination_2pl": 0.0273072998970747, + "difficulty_simple": 1.6175680385173505, + "percent_correct": 0.16554054054054054, + "n_responses": 296 + }, + { + "problem_id": 18301, + "difficulty_1pl": 8.52365779876709, + "difficulty_2pl": 0.007668362930417061, + "discrimination_2pl": 0.011744952760636806, + "difficulty_simple": 1.5446379192071849, + "percent_correct": 0.17586206896551723, + "n_responses": 290 + }, + { + "problem_id": 18501, + "difficulty_1pl": 0.487970232963562, + "difficulty_2pl": -0.01052633486688137, + "discrimination_2pl": 0.15449099242687225, + "difficulty_simple": -0.09255155736524513, + "percent_correct": 0.523121387283237, + "n_responses": 346 + }, + { + "problem_id": 104232, + "difficulty_1pl": -6.411221504211426, + "difficulty_2pl": -0.1941555291414261, + "discrimination_2pl": 0.542259693145752, + "difficulty_simple": -1.4300389100827473, + "percent_correct": 0.8069073783359497, + "n_responses": 637 + }, + { + "problem_id": 104560, + "difficulty_1pl": -2.204453229904175, + "difficulty_2pl": 0.10418081283569336, + "discrimination_2pl": 0.42674699425697327, + "difficulty_simple": -0.6207702110887532, + "percent_correct": 0.6503937007874016, + "n_responses": 635 + }, + { + "problem_id": 105610, + "difficulty_1pl": 3.0762856006622314, + "difficulty_2pl": 0.14777739346027374, + "discrimination_2pl": 0.19818975031375885, + "difficulty_simple": 0.2336148511815051, + "percent_correct": 0.4418604651162791, + "n_responses": 645 + }, + { + "problem_id": 104928, + "difficulty_1pl": -8.208005905151367, + "difficulty_2pl": -0.39371269941329956, + "discrimination_2pl": 0.5097270607948303, + "difficulty_simple": -1.6657908489852318, + "percent_correct": 0.8410138248847926, + "n_responses": 434 + }, + { + "problem_id": 105377, + "difficulty_1pl": -0.8054232001304626, + "difficulty_2pl": -0.031988922506570816, + "discrimination_2pl": 0.421173095703125, + "difficulty_simple": -0.45795529072956087, + "percent_correct": 0.6125290023201856, + "n_responses": 431 + }, + { + "problem_id": 7514, + "difficulty_1pl": -11.050910949707031, + "difficulty_2pl": -0.04770777001976967, + "discrimination_2pl": 0.37688323855400085, + "difficulty_simple": -1.8082887711792652, + "percent_correct": 0.8591549295774648, + "n_responses": 71 + }, + { + "problem_id": 7407, + "difficulty_1pl": 2.1775803565979004, + "difficulty_2pl": -0.14316092431545258, + "discrimination_2pl": 0.05308787152171135, + "difficulty_simple": 0.37037378829689427, + "percent_correct": 0.4084507042253521, + "n_responses": 71 + }, + { + "problem_id": 7280, + "difficulty_1pl": -4.110625743865967, + "difficulty_2pl": 0.008556711487472057, + "discrimination_2pl": 0.24466189742088318, + "difficulty_simple": -1.1557707025080584, + "percent_correct": 0.7605633802816901, + "n_responses": 71 + }, + { + "problem_id": 7158, + "difficulty_1pl": -4.941960334777832, + "difficulty_2pl": -0.2673584818840027, + "discrimination_2pl": 0.26799893379211426, + "difficulty_simple": -1.4954936530848828, + "percent_correct": 0.8169014084507042, + "n_responses": 71 + }, + { + "problem_id": 6946, + "difficulty_1pl": -0.2251509428024292, + "difficulty_2pl": -0.040202632546424866, + "discrimination_2pl": 0.1138245165348053, + "difficulty_simple": -0.32721291120841595, + "percent_correct": 0.581081081081081, + "n_responses": 74 + }, + { + "problem_id": 19594, + "difficulty_1pl": 2.4126763343811035, + "difficulty_2pl": 0.011836887337267399, + "discrimination_2pl": 0.16080112755298615, + "difficulty_simple": 0.019570096194097514, + "percent_correct": 0.49510763209393344, + "n_responses": 511 + }, + { + "problem_id": 19761, + "difficulty_1pl": 0.24949294328689575, + "difficulty_2pl": 0.11218998581171036, + "discrimination_2pl": 0.28078144788742065, + "difficulty_simple": -0.3356912916381414, + "percent_correct": 0.5831435079726651, + "n_responses": 439 + }, + { + "problem_id": 19879, + "difficulty_1pl": -3.9070565700531006, + "difficulty_2pl": -0.052581995725631714, + "discrimination_2pl": 0.43873023986816406, + "difficulty_simple": -0.9389821430762259, + "percent_correct": 0.7188940092165899, + "n_responses": 434 + }, + { + "problem_id": 292175, + "difficulty_1pl": 0.7825345396995544, + "difficulty_2pl": 0.12996122241020203, + "discrimination_2pl": 0.18018916249275208, + "difficulty_simple": -0.02272825107755629, + "percent_correct": 0.5056818181818182, + "n_responses": 352 + }, + { + "problem_id": 292292, + "difficulty_1pl": -1.0349541902542114, + "difficulty_2pl": 0.050010185688734055, + "discrimination_2pl": 0.3089621365070343, + "difficulty_simple": -0.5719133157458287, + "percent_correct": 0.6392045454545454, + "n_responses": 352 + }, + { + "problem_id": 416720, + "difficulty_1pl": -0.5010010600090027, + "difficulty_2pl": -0.006529457401484251, + "discrimination_2pl": 0.3718130588531494, + "difficulty_simple": -0.6061358035703156, + "percent_correct": 0.6470588235294118, + "n_responses": 442 + }, + { + "problem_id": 416968, + "difficulty_1pl": -6.478053092956543, + "difficulty_2pl": 0.04318526014685631, + "discrimination_2pl": 0.47689881920814514, + "difficulty_simple": -1.1459584092653081, + "percent_correct": 0.7587719298245614, + "n_responses": 456 + }, + { + "problem_id": 417173, + "difficulty_1pl": -1.3877307176589966, + "difficulty_2pl": -0.010865280404686928, + "discrimination_2pl": 0.23747660219669342, + "difficulty_simple": -0.5037584565428981, + "percent_correct": 0.623342175066313, + "n_responses": 377 + }, + { + "problem_id": 417385, + "difficulty_1pl": -3.74023175239563, + "difficulty_2pl": -0.1844373196363449, + "discrimination_2pl": 0.43238192796707153, + "difficulty_simple": -1.0408712939785933, + "percent_correct": 0.7390180878552972, + "n_responses": 387 + }, + { + "problem_id": 90496, + "difficulty_1pl": -3.56856369972229, + "difficulty_2pl": 0.09923313558101654, + "discrimination_2pl": 0.34241199493408203, + "difficulty_simple": -0.8207084061979643, + "percent_correct": 0.6943866943866944, + "n_responses": 481 + }, + { + "problem_id": 90685, + "difficulty_1pl": -7.256882667541504, + "difficulty_2pl": -0.37278568744659424, + "discrimination_2pl": 0.5199636816978455, + "difficulty_simple": -1.703501986158178, + "percent_correct": 0.8459915611814346, + "n_responses": 474 + }, + { + "problem_id": 90927, + "difficulty_1pl": -0.953464150428772, + "difficulty_2pl": 0.05640657618641853, + "discrimination_2pl": 0.41050440073013306, + "difficulty_simple": -0.785115669702367, + "percent_correct": 0.6867816091954023, + "n_responses": 348 + }, + { + "problem_id": 91074, + "difficulty_1pl": -0.8184971213340759, + "difficulty_2pl": -0.005153104197233915, + "discrimination_2pl": 0.3459249436855316, + "difficulty_simple": -0.5618807945662747, + "percent_correct": 0.6368876080691642, + "n_responses": 347 + }, + { + "problem_id": 91237, + "difficulty_1pl": -1.9202572107315063, + "difficulty_2pl": 0.010282511822879314, + "discrimination_2pl": 0.36977145075798035, + "difficulty_simple": -0.8213578393785878, + "percent_correct": 0.6945244956772334, + "n_responses": 347 + }, + { + "problem_id": 192067, + "difficulty_1pl": -4.982333183288574, + "difficulty_2pl": -0.2397373914718628, + "discrimination_2pl": 0.4422835409641266, + "difficulty_simple": -1.1073004406257476, + "percent_correct": 0.7516254876462939, + "n_responses": 769 + }, + { + "problem_id": 192377, + "difficulty_1pl": -2.7950165271759033, + "difficulty_2pl": -0.0662313774228096, + "discrimination_2pl": 0.23775359988212585, + "difficulty_simple": -0.8024913475704644, + "percent_correct": 0.6905071521456437, + "n_responses": 769 + }, + { + "problem_id": 131558, + "difficulty_1pl": -1.8565399646759033, + "difficulty_2pl": 0.028491700068116188, + "discrimination_2pl": 0.10270290076732635, + "difficulty_simple": -0.04000533461369925, + "percent_correct": 0.51, + "n_responses": 100 + }, + { + "problem_id": 132812, + "difficulty_1pl": 2.609718084335327, + "difficulty_2pl": 0.03919254615902901, + "discrimination_2pl": 0.038750503212213516, + "difficulty_simple": 0.44952509790219486, + "percent_correct": 0.3894736842105263, + "n_responses": 95 + }, + { + "problem_id": 133008, + "difficulty_1pl": -1.629303216934204, + "difficulty_2pl": 0.14293506741523743, + "discrimination_2pl": 0.27308887243270874, + "difficulty_simple": -0.9236708391717777, + "percent_correct": 0.7157894736842105, + "n_responses": 95 + }, + { + "problem_id": 97579, + "difficulty_1pl": -3.5029287338256836, + "difficulty_2pl": -0.11213906109333038, + "discrimination_2pl": 0.39515209197998047, + "difficulty_simple": -0.9049911766202215, + "percent_correct": 0.7119741100323624, + "n_responses": 309 + }, + { + "problem_id": 593590, + "difficulty_1pl": -3.900682210922241, + "difficulty_2pl": 0.025633079931139946, + "discrimination_2pl": 0.4896687865257263, + "difficulty_simple": -0.9951493067864746, + "percent_correct": 0.7301038062283737, + "n_responses": 289 + }, + { + "problem_id": 593802, + "difficulty_1pl": -0.9419552087783813, + "difficulty_2pl": 0.0892258733510971, + "discrimination_2pl": 0.3068655729293823, + "difficulty_simple": -0.4666195312614952, + "percent_correct": 0.6145833333333334, + "n_responses": 288 + }, + { + "problem_id": 6116, + "difficulty_1pl": 1.0953271389007568, + "difficulty_2pl": 0.011076763272285461, + "discrimination_2pl": 0.17851033806800842, + "difficulty_simple": -0.16126814759612226, + "percent_correct": 0.5402298850574713, + "n_responses": 261 + }, + { + "problem_id": 9879, + "difficulty_1pl": -0.06402085721492767, + "difficulty_2pl": 0.2429303228855133, + "discrimination_2pl": 0.31865328550338745, + "difficulty_simple": -0.3148107398400337, + "percent_correct": 0.5780590717299579, + "n_responses": 711 + }, + { + "problem_id": 7635, + "difficulty_1pl": 0.8429746031761169, + "difficulty_2pl": -0.012423502281308174, + "discrimination_2pl": 0.2852083444595337, + "difficulty_simple": -0.2597082204093751, + "percent_correct": 0.5645645645645646, + "n_responses": 666 + }, + { + "problem_id": 7829, + "difficulty_1pl": -0.2990909516811371, + "difficulty_2pl": 0.14458432793617249, + "discrimination_2pl": 0.3241344094276428, + "difficulty_simple": -0.3765504601886235, + "percent_correct": 0.5930408472012103, + "n_responses": 661 + }, + { + "problem_id": 541977, + "difficulty_1pl": -4.58831262588501, + "difficulty_2pl": -0.046596840023994446, + "discrimination_2pl": 0.4684019982814789, + "difficulty_simple": -0.748836086420534, + "percent_correct": 0.6789250353606789, + "n_responses": 707 + }, + { + "problem_id": 209221, + "difficulty_1pl": 2.6248345375061035, + "difficulty_2pl": -0.00011880931560881436, + "discrimination_2pl": 0.06102389842271805, + "difficulty_simple": 0.022472855852058576, + "percent_correct": 0.4943820224719101, + "n_responses": 89 + }, + { + "problem_id": 327381, + "difficulty_1pl": -0.40853890776634216, + "difficulty_2pl": 0.07629496604204178, + "discrimination_2pl": 0.30205395817756653, + "difficulty_simple": -0.5024573740954743, + "percent_correct": 0.6230366492146597, + "n_responses": 191 + }, + { + "problem_id": 90598, + "difficulty_1pl": -1.7958178520202637, + "difficulty_2pl": -0.034605033695697784, + "discrimination_2pl": 0.09847144782543182, + "difficulty_simple": -0.5337745567515352, + "percent_correct": 0.6303630363036303, + "n_responses": 303 + }, + { + "problem_id": 90903, + "difficulty_1pl": -1.1416170597076416, + "difficulty_2pl": -0.036731451749801636, + "discrimination_2pl": 0.3388012647628784, + "difficulty_simple": -0.4248831939652658, + "percent_correct": 0.6046511627906976, + "n_responses": 301 + }, + { + "problem_id": 91177, + "difficulty_1pl": -5.528115749359131, + "difficulty_2pl": -0.10724975913763046, + "discrimination_2pl": 0.33443158864974976, + "difficulty_simple": -1.0940976083135827, + "percent_correct": 0.7491525423728813, + "n_responses": 295 + }, + { + "problem_id": 91453, + "difficulty_1pl": -6.604226589202881, + "difficulty_2pl": -0.1539880633354187, + "discrimination_2pl": 0.5878928899765015, + "difficulty_simple": -1.5459245067117746, + "percent_correct": 0.8243243243243243, + "n_responses": 296 + }, + { + "problem_id": 92205, + "difficulty_1pl": -1.658341884613037, + "difficulty_2pl": -0.12350401282310486, + "discrimination_2pl": 0.3946525454521179, + "difficulty_simple": -0.6523251860396901, + "percent_correct": 0.6575342465753424, + "n_responses": 292 + }, + { + "problem_id": 92361, + "difficulty_1pl": -1.8948029279708862, + "difficulty_2pl": -0.10968447476625443, + "discrimination_2pl": 0.3363508880138397, + "difficulty_simple": -0.7399089464679848, + "percent_correct": 0.6769759450171822, + "n_responses": 291 + }, + { + "problem_id": 92518, + "difficulty_1pl": -0.6303799748420715, + "difficulty_2pl": -0.05458095669746399, + "discrimination_2pl": 0.2430843710899353, + "difficulty_simple": -0.3424069721410274, + "percent_correct": 0.5847750865051903, + "n_responses": 289 + }, + { + "problem_id": 92677, + "difficulty_1pl": -2.6844987869262695, + "difficulty_2pl": -0.0766066461801529, + "discrimination_2pl": 0.37523385882377625, + "difficulty_simple": -0.6061358035703156, + "percent_correct": 0.6470588235294118, + "n_responses": 289 + }, + { + "problem_id": 93868, + "difficulty_1pl": -0.6141651272773743, + "difficulty_2pl": 0.0690627470612526, + "discrimination_2pl": 0.2792131006717682, + "difficulty_simple": -0.38372512147175847, + "percent_correct": 0.5947712418300654, + "n_responses": 153 + }, + { + "problem_id": 94031, + "difficulty_1pl": -1.670473337173462, + "difficulty_2pl": -0.007741797249764204, + "discrimination_2pl": 0.22442631423473358, + "difficulty_simple": -0.5839478885949531, + "percent_correct": 0.6419753086419753, + "n_responses": 162 + }, + { + "problem_id": 94199, + "difficulty_1pl": -9.073214530944824, + "difficulty_2pl": -0.06604274362325668, + "discrimination_2pl": 0.3412362337112427, + "difficulty_simple": -1.2039728043259361, + "percent_correct": 0.7692307692307693, + "n_responses": 156 + }, + { + "problem_id": 341397, + "difficulty_1pl": -14.426396369934082, + "difficulty_2pl": 0.05231790989637375, + "discrimination_2pl": 0.26457229256629944, + "difficulty_simple": -2.4849066497880012, + "percent_correct": 0.9230769230769231, + "n_responses": 52 + }, + { + "problem_id": 490287, + "difficulty_1pl": 1.746984839439392, + "difficulty_2pl": 0.1723172962665558, + "discrimination_2pl": 0.22955422103405, + "difficulty_simple": 0.06899287148695121, + "percent_correct": 0.4827586206896552, + "n_responses": 464 + }, + { + "problem_id": 60015, + "difficulty_1pl": -1.8212310075759888, + "difficulty_2pl": -0.016857972368597984, + "discrimination_2pl": 0.19153811037540436, + "difficulty_simple": -0.5456117398514061, + "percent_correct": 0.6331168831168831, + "n_responses": 308 + }, + { + "problem_id": 398365, + "difficulty_1pl": -11.891666412353516, + "difficulty_2pl": -0.40944379568099976, + "discrimination_2pl": 0.5511631369590759, + "difficulty_simple": -2.487284772192968, + "percent_correct": 0.9232456140350878, + "n_responses": 456 + }, + { + "problem_id": 398730, + "difficulty_1pl": -15.99204158782959, + "difficulty_2pl": -0.481070339679718, + "discrimination_2pl": 0.5872166752815247, + "difficulty_simple": -2.840247370713597, + "percent_correct": 0.9448123620309051, + "n_responses": 453 + }, + { + "problem_id": 399091, + "difficulty_1pl": -3.0360665321350098, + "difficulty_2pl": -0.08078553527593613, + "discrimination_2pl": 0.37708839774131775, + "difficulty_simple": -0.922521281624791, + "percent_correct": 0.7155555555555555, + "n_responses": 450 + }, + { + "problem_id": 400715, + "difficulty_1pl": -2.8266005516052246, + "difficulty_2pl": -0.0839744284749031, + "discrimination_2pl": 0.3493511378765106, + "difficulty_simple": -0.8488494510786224, + "percent_correct": 0.7003257328990228, + "n_responses": 307 + }, + { + "problem_id": 43045, + "difficulty_1pl": 5.608923435211182, + "difficulty_2pl": 0.11302872747182846, + "discrimination_2pl": 0.046344488859176636, + "difficulty_simple": 0.8213223739839427, + "percent_correct": 0.30548302872062666, + "n_responses": 383 + }, + { + "problem_id": 136119, + "difficulty_1pl": -14.19630241394043, + "difficulty_2pl": -0.48304256796836853, + "discrimination_2pl": 0.586861789226532, + "difficulty_simple": -2.3671236141316165, + "percent_correct": 0.9142857142857143, + "n_responses": 490 + }, + { + "problem_id": 136547, + "difficulty_1pl": -7.8506903648376465, + "difficulty_2pl": -0.24873897433280945, + "discrimination_2pl": 0.5129526853561401, + "difficulty_simple": -1.3675018617705235, + "percent_correct": 0.796976241900648, + "n_responses": 463 + }, + { + "problem_id": 136895, + "difficulty_1pl": -11.496109962463379, + "difficulty_2pl": -0.5112528204917908, + "discrimination_2pl": 0.5854172706604004, + "difficulty_simple": -2.2594456003334282, + "percent_correct": 0.9054621848739496, + "n_responses": 476 + }, + { + "problem_id": 137297, + "difficulty_1pl": -11.852971076965332, + "difficulty_2pl": -0.4886317551136017, + "discrimination_2pl": 0.6207011938095093, + "difficulty_simple": -2.270249712351109, + "percent_correct": 0.9063829787234042, + "n_responses": 470 + }, + { + "problem_id": 137690, + "difficulty_1pl": -16.50715446472168, + "difficulty_2pl": -0.4737480580806732, + "discrimination_2pl": 0.6237296462059021, + "difficulty_simple": -2.549445170925572, + "percent_correct": 0.927536231884058, + "n_responses": 414 + }, + { + "problem_id": 138605, + "difficulty_1pl": 2.1508991718292236, + "difficulty_2pl": -0.029725804924964905, + "discrimination_2pl": 0.10638834536075592, + "difficulty_simple": 0.16430305129127615, + "percent_correct": 0.45901639344262296, + "n_responses": 244 + }, + { + "problem_id": 553198, + "difficulty_1pl": 1.4124014377593994, + "difficulty_2pl": 0.07248657941818237, + "discrimination_2pl": 0.1754217892885208, + "difficulty_simple": -0.028573372444055885, + "percent_correct": 0.5071428571428571, + "n_responses": 560 + }, + { + "problem_id": 553401, + "difficulty_1pl": -5.828406810760498, + "difficulty_2pl": -0.15984097123146057, + "discrimination_2pl": 0.5590382814407349, + "difficulty_simple": -1.3573713216506402, + "percent_correct": 0.7953321364452424, + "n_responses": 557 + }, + { + "problem_id": 553614, + "difficulty_1pl": 2.756011962890625, + "difficulty_2pl": 0.14718550443649292, + "discrimination_2pl": 0.15380901098251343, + "difficulty_simple": 0.24673146883868555, + "percent_correct": 0.43862815884476536, + "n_responses": 554 + }, + { + "problem_id": 43132, + "difficulty_1pl": 3.4508934020996094, + "difficulty_2pl": 0.021394696086645126, + "discrimination_2pl": 0.048862844705581665, + "difficulty_simple": 0.44911773826590107, + "percent_correct": 0.3895705521472393, + "n_responses": 652 + }, + { + "problem_id": 262608, + "difficulty_1pl": 3.9244565963745117, + "difficulty_2pl": 0.17755700647830963, + "discrimination_2pl": 0.08124192804098129, + "difficulty_simple": 0.39256170327225637, + "percent_correct": 0.40310077519379844, + "n_responses": 645 + }, + { + "problem_id": 262820, + "difficulty_1pl": 2.5287411212921143, + "difficulty_2pl": 0.06082350015640259, + "discrimination_2pl": 0.12049353122711182, + "difficulty_simple": 0.31691171076671926, + "percent_correct": 0.42142857142857143, + "n_responses": 280 + }, + { + "problem_id": 6158, + "difficulty_1pl": 1.5677138566970825, + "difficulty_2pl": -0.16251270473003387, + "discrimination_2pl": 0.11181027442216873, + "difficulty_simple": 0.0, + "percent_correct": 0.5, + "n_responses": 474 + }, + { + "problem_id": 187130, + "difficulty_1pl": -0.9126559495925903, + "difficulty_2pl": -0.08488933742046356, + "discrimination_2pl": 0.3661530911922455, + "difficulty_simple": -0.5540343780972276, + "percent_correct": 0.6350710900473934, + "n_responses": 211 + }, + { + "problem_id": 187306, + "difficulty_1pl": 1.3997009992599487, + "difficulty_2pl": 0.0797540619969368, + "discrimination_2pl": 0.1805078387260437, + "difficulty_simple": 0.0, + "percent_correct": 0.5, + "n_responses": 210 + }, + { + "problem_id": 187451, + "difficulty_1pl": -2.799983501434326, + "difficulty_2pl": -0.0056434813886880875, + "discrimination_2pl": 0.39751532673835754, + "difficulty_simple": -0.9196748298583954, + "percent_correct": 0.714975845410628, + "n_responses": 207 + }, + { + "problem_id": 187602, + "difficulty_1pl": 0.7466554641723633, + "difficulty_2pl": 0.17356184124946594, + "discrimination_2pl": 0.2370169311761856, + "difficulty_simple": -0.18774162426329385, + "percent_correct": 0.5467980295566502, + "n_responses": 203 + }, + { + "problem_id": 187772, + "difficulty_1pl": -6.173803806304932, + "difficulty_2pl": -0.21226724982261658, + "discrimination_2pl": 0.21318452060222626, + "difficulty_simple": -1.6274564179367785, + "percent_correct": 0.835820895522388, + "n_responses": 201 + }, + { + "problem_id": 350118, + "difficulty_1pl": -2.787447690963745, + "difficulty_2pl": 0.02994079887866974, + "discrimination_2pl": 0.2276805341243744, + "difficulty_simple": -0.831733343846092, + "percent_correct": 0.6967213114754098, + "n_responses": 122 + }, + { + "problem_id": 349832, + "difficulty_1pl": -9.54648208618164, + "difficulty_2pl": -0.09349197894334793, + "discrimination_2pl": 0.3463626801967621, + "difficulty_simple": -1.976063187226001, + "percent_correct": 0.8782608695652174, + "n_responses": 115 + }, + { + "problem_id": 349546, + "difficulty_1pl": -4.258932113647461, + "difficulty_2pl": -0.13237282633781433, + "discrimination_2pl": 0.2637004554271698, + "difficulty_simple": -1.295780353579059, + "percent_correct": 0.7851239669421488, + "n_responses": 121 + }, + { + "problem_id": 349260, + "difficulty_1pl": -7.15646505355835, + "difficulty_2pl": -0.016333570703864098, + "discrimination_2pl": 0.30372288823127747, + "difficulty_simple": -1.589235205116581, + "percent_correct": 0.8305084745762712, + "n_responses": 118 + }, + { + "problem_id": 348977, + "difficulty_1pl": -5.590129852294922, + "difficulty_2pl": -0.024992063641548157, + "discrimination_2pl": 0.23622988164424896, + "difficulty_simple": -1.1198896871153945, + "percent_correct": 0.753968253968254, + "n_responses": 126 + }, + { + "problem_id": 283170, + "difficulty_1pl": -9.487822532653809, + "difficulty_2pl": -0.2738910913467407, + "discrimination_2pl": 0.5743247866630554, + "difficulty_simple": -1.694363782932709, + "percent_correct": 0.8447971781305115, + "n_responses": 567 + }, + { + "problem_id": 285834, + "difficulty_1pl": 1.883665919303894, + "difficulty_2pl": -0.12660548090934753, + "discrimination_2pl": 0.05648424103856087, + "difficulty_simple": 0.4038840801108456, + "percent_correct": 0.40037950664136623, + "n_responses": 527 + }, + { + "problem_id": 303405, + "difficulty_1pl": -11.1887788772583, + "difficulty_2pl": -0.3971492052078247, + "discrimination_2pl": 0.5568104386329651, + "difficulty_simple": -2.8332133440562157, + "percent_correct": 0.9444444444444444, + "n_responses": 324 + }, + { + "problem_id": 155341, + "difficulty_1pl": 0.4825177490711212, + "difficulty_2pl": 0.1951831728219986, + "discrimination_2pl": 0.2965870499610901, + "difficulty_simple": -0.3513978868378889, + "percent_correct": 0.5869565217391305, + "n_responses": 460 + }, + { + "problem_id": 83841, + "difficulty_1pl": 1.8535842895507812, + "difficulty_2pl": 0.028837155550718307, + "discrimination_2pl": 0.22921717166900635, + "difficulty_simple": -0.0086207430439072, + "percent_correct": 0.5021551724137931, + "n_responses": 464 + }, + { + "problem_id": 84315, + "difficulty_1pl": 2.5240352153778076, + "difficulty_2pl": 0.14165858924388885, + "discrimination_2pl": 0.26487675309181213, + "difficulty_simple": 0.044451762570833796, + "percent_correct": 0.4888888888888889, + "n_responses": 405 + }, + { + "problem_id": 84475, + "difficulty_1pl": 2.824367046356201, + "difficulty_2pl": 0.17277759313583374, + "discrimination_2pl": 0.2010461390018463, + "difficulty_simple": 0.2905848321097423, + "percent_correct": 0.42786069651741293, + "n_responses": 402 + }, + { + "problem_id": 84651, + "difficulty_1pl": 2.4164652824401855, + "difficulty_2pl": 0.05682212486863136, + "discrimination_2pl": 0.21970535814762115, + "difficulty_simple": 0.25131442828090617, + "percent_correct": 0.4375, + "n_responses": 400 + }, + { + "problem_id": 155556, + "difficulty_1pl": 0.03694785386323929, + "difficulty_2pl": 0.007553736213594675, + "discrimination_2pl": 0.2913705110549927, + "difficulty_simple": -0.22103606897464478, + "percent_correct": 0.5550351288056206, + "n_responses": 427 + }, + { + "problem_id": 155730, + "difficulty_1pl": -0.6446044445037842, + "difficulty_2pl": 0.0652194693684578, + "discrimination_2pl": 0.3774135112762451, + "difficulty_simple": -0.5291747624341872, + "percent_correct": 0.6292906178489702, + "n_responses": 437 + }, + { + "problem_id": 18775, + "difficulty_1pl": 2.7777926921844482, + "difficulty_2pl": 0.12488971650600433, + "discrimination_2pl": 0.13545212149620056, + "difficulty_simple": 0.3357120693478153, + "percent_correct": 0.41685144124168516, + "n_responses": 451 + }, + { + "problem_id": 83409, + "difficulty_1pl": -3.0513875484466553, + "difficulty_2pl": -0.07261666655540466, + "discrimination_2pl": 0.291792094707489, + "difficulty_simple": -0.7525706010307462, + "percent_correct": 0.6797385620915033, + "n_responses": 459 + }, + { + "problem_id": 155904, + "difficulty_1pl": -0.048925142735242844, + "difficulty_2pl": 0.25171178579330444, + "discrimination_2pl": 0.30111226439476013, + "difficulty_simple": -0.33451337213587995, + "percent_correct": 0.5828571428571429, + "n_responses": 350 + }, + { + "problem_id": 57030, + "difficulty_1pl": -4.740872859954834, + "difficulty_2pl": -0.32084283232688904, + "discrimination_2pl": 0.5397228002548218, + "difficulty_simple": -1.5030575088755282, + "percent_correct": 0.8180300500834724, + "n_responses": 599 + }, + { + "problem_id": 57280, + "difficulty_1pl": -3.2162857055664062, + "difficulty_2pl": -0.3241962194442749, + "discrimination_2pl": 0.4575112760066986, + "difficulty_simple": -1.1416540399266777, + "percent_correct": 0.7579831932773109, + "n_responses": 595 + }, + { + "problem_id": 429590, + "difficulty_1pl": 5.3691020011901855, + "difficulty_2pl": 0.1349620819091797, + "discrimination_2pl": 0.02720208466053009, + "difficulty_simple": 0.9249487946172699, + "percent_correct": 0.2839506172839506, + "n_responses": 405 + }, + { + "problem_id": 474069, + "difficulty_1pl": -1.1919595003128052, + "difficulty_2pl": 0.018928786739706993, + "discrimination_2pl": 0.1990785300731659, + "difficulty_simple": -0.6090640633494039, + "percent_correct": 0.6477272727272727, + "n_responses": 88 + }, + { + "problem_id": 474198, + "difficulty_1pl": 2.8990583419799805, + "difficulty_2pl": -0.10163429379463196, + "discrimination_2pl": 0.03907199949026108, + "difficulty_simple": 0.5232481437645479, + "percent_correct": 0.37209302325581395, + "n_responses": 86 + }, + { + "problem_id": 471899, + "difficulty_1pl": -4.948967456817627, + "difficulty_2pl": -0.06742241233587265, + "discrimination_2pl": 0.20190313458442688, + "difficulty_simple": -1.270462545594769, + "percent_correct": 0.7808219178082192, + "n_responses": 73 + }, + { + "problem_id": 633512, + "difficulty_1pl": 3.301431655883789, + "difficulty_2pl": -0.07849746942520142, + "discrimination_2pl": 0.0862562283873558, + "difficulty_simple": 0.4161603972249125, + "percent_correct": 0.3974358974358974, + "n_responses": 234 + }, + { + "problem_id": 5429, + "difficulty_1pl": -0.3734729588031769, + "difficulty_2pl": 0.10727515816688538, + "discrimination_2pl": 0.27371013164520264, + "difficulty_simple": -0.3318532907649186, + "percent_correct": 0.5822102425876011, + "n_responses": 371 + }, + { + "problem_id": 65434, + "difficulty_1pl": 2.0760436058044434, + "difficulty_2pl": 0.12167283892631531, + "discrimination_2pl": 0.2067485898733139, + "difficulty_simple": 0.05522875794778591, + "percent_correct": 0.48619631901840493, + "n_responses": 652 + }, + { + "problem_id": 142047, + "difficulty_1pl": -10.482989311218262, + "difficulty_2pl": 0.015018503181636333, + "discrimination_2pl": 0.45747581124305725, + "difficulty_simple": -1.6582280766035322, + "percent_correct": 0.84, + "n_responses": 200 + }, + { + "problem_id": 141837, + "difficulty_1pl": -8.86994743347168, + "difficulty_2pl": -0.1984381079673767, + "discrimination_2pl": 0.43993687629699707, + "difficulty_simple": -1.3375041969504589, + "percent_correct": 0.7920792079207921, + "n_responses": 202 + }, + { + "problem_id": 103748, + "difficulty_1pl": 14.71822738647461, + "difficulty_2pl": 0.02370007522404194, + "discrimination_2pl": 0.018717193976044655, + "difficulty_simple": 1.8035939268750578, + "percent_correct": 0.1414141414141414, + "n_responses": 198 + }, + { + "problem_id": 228008, + "difficulty_1pl": -13.39199447631836, + "difficulty_2pl": -0.1711779236793518, + "discrimination_2pl": 0.5299355387687683, + "difficulty_simple": -2.2842359543258492, + "percent_correct": 0.907563025210084, + "n_responses": 238 + }, + { + "problem_id": 228402, + "difficulty_1pl": -6.051496982574463, + "difficulty_2pl": -0.06604672223329544, + "discrimination_2pl": 0.3869602382183075, + "difficulty_simple": -1.4288539755386866, + "percent_correct": 0.8067226890756303, + "n_responses": 238 + }, + { + "problem_id": 228808, + "difficulty_1pl": -12.3618803024292, + "difficulty_2pl": -0.32270440459251404, + "discrimination_2pl": 0.49494415521621704, + "difficulty_simple": -2.4261990489612217, + "percent_correct": 0.9188034188034188, + "n_responses": 234 + }, + { + "problem_id": 229183, + "difficulty_1pl": -5.867016792297363, + "difficulty_2pl": -0.17070583999156952, + "discrimination_2pl": 0.4505396783351898, + "difficulty_simple": -1.8647846042429448, + "percent_correct": 0.8658536585365854, + "n_responses": 246 + }, + { + "problem_id": 229517, + "difficulty_1pl": -7.549626350402832, + "difficulty_2pl": -0.06579837203025818, + "discrimination_2pl": 0.33149346709251404, + "difficulty_simple": -1.3010297094652024, + "percent_correct": 0.7860082304526749, + "n_responses": 243 + }, + { + "problem_id": 229909, + "difficulty_1pl": -4.251351356506348, + "difficulty_2pl": -0.02547931857407093, + "discrimination_2pl": 0.32128387689590454, + "difficulty_simple": -1.0608719606852628, + "percent_correct": 0.7428571428571429, + "n_responses": 245 + }, + { + "problem_id": 230244, + "difficulty_1pl": -7.610538482666016, + "difficulty_2pl": -0.07617132365703583, + "discrimination_2pl": 0.3992537558078766, + "difficulty_simple": -1.6044253706105562, + "percent_correct": 0.8326359832635983, + "n_responses": 239 + }, + { + "problem_id": 230550, + "difficulty_1pl": -4.931107521057129, + "difficulty_2pl": -0.16588254272937775, + "discrimination_2pl": 0.37446776032447815, + "difficulty_simple": -1.1773045572437748, + "percent_correct": 0.7644628099173554, + "n_responses": 242 + }, + { + "problem_id": 253922, + "difficulty_1pl": -1.008654236793518, + "difficulty_2pl": 0.03339288383722305, + "discrimination_2pl": 0.20163846015930176, + "difficulty_simple": -0.3468709438421116, + "percent_correct": 0.5858585858585859, + "n_responses": 594 + }, + { + "problem_id": 252499, + "difficulty_1pl": -13.271235466003418, + "difficulty_2pl": -0.5555889010429382, + "discrimination_2pl": 0.5849624276161194, + "difficulty_simple": -1.9654972823306187, + "percent_correct": 0.8771266540642723, + "n_responses": 529 + }, + { + "problem_id": 253594, + "difficulty_1pl": -7.51065731048584, + "difficulty_2pl": -0.23738020658493042, + "discrimination_2pl": 0.5715134143829346, + "difficulty_simple": -1.5704524657211465, + "percent_correct": 0.8278481012658228, + "n_responses": 395 + }, + { + "problem_id": 176215, + "difficulty_1pl": -4.307455539703369, + "difficulty_2pl": 0.06143837422132492, + "discrimination_2pl": 0.2146763801574707, + "difficulty_simple": -0.9873866535578851, + "percent_correct": 0.7285714285714285, + "n_responses": 70 + }, + { + "problem_id": 176469, + "difficulty_1pl": -6.5644917488098145, + "difficulty_2pl": -0.18317055702209473, + "discrimination_2pl": 0.254323810338974, + "difficulty_simple": -1.368275855617212, + "percent_correct": 0.7971014492753623, + "n_responses": 69 + }, + { + "problem_id": 176751, + "difficulty_1pl": -3.000221014022827, + "difficulty_2pl": -0.005488811992108822, + "discrimination_2pl": 0.2786480486392975, + "difficulty_simple": -0.9162907318741551, + "percent_correct": 0.7142857142857143, + "n_responses": 77 + }, + { + "problem_id": 176895, + "difficulty_1pl": -1.664784550666809, + "difficulty_2pl": -0.07070746272802353, + "discrimination_2pl": 0.20351794362068176, + "difficulty_simple": -0.5039051809214168, + "percent_correct": 0.6233766233766234, + "n_responses": 77 + }, + { + "problem_id": 177695, + "difficulty_1pl": -6.642974376678467, + "difficulty_2pl": -0.3082893192768097, + "discrimination_2pl": 0.20723526179790497, + "difficulty_simple": -1.2237754316221157, + "percent_correct": 0.7727272727272727, + "n_responses": 66 + }, + { + "problem_id": 175939, + "difficulty_1pl": -2.233022928237915, + "difficulty_2pl": -0.015310228802263737, + "discrimination_2pl": 0.1708461195230484, + "difficulty_simple": -0.7357067949787413, + "percent_correct": 0.676056338028169, + "n_responses": 71 + }, + { + "problem_id": 158316, + "difficulty_1pl": 0.018175173550844193, + "difficulty_2pl": -0.02132113091647625, + "discrimination_2pl": 0.11604390293359756, + "difficulty_simple": -0.26337148295116475, + "percent_correct": 0.5654648956356736, + "n_responses": 527 + }, + { + "problem_id": 86693, + "difficulty_1pl": 2.8415987491607666, + "difficulty_2pl": 0.027834750711917877, + "discrimination_2pl": 0.09270559996366501, + "difficulty_simple": 0.14861049945164306, + "percent_correct": 0.4629156010230179, + "n_responses": 391 + }, + { + "problem_id": 159292, + "difficulty_1pl": 4.085082530975342, + "difficulty_2pl": -0.05944742634892464, + "discrimination_2pl": 0.05190174654126167, + "difficulty_simple": 0.5143591963473018, + "percent_correct": 0.3741721854304636, + "n_responses": 302 + }, + { + "problem_id": 159146, + "difficulty_1pl": -4.732508659362793, + "difficulty_2pl": -0.17913232743740082, + "discrimination_2pl": 0.4929424226284027, + "difficulty_simple": -1.4196307813874822, + "percent_correct": 0.8052805280528053, + "n_responses": 303 + }, + { + "problem_id": 158855, + "difficulty_1pl": 10.72420597076416, + "difficulty_2pl": 0.07128563523292542, + "discrimination_2pl": 0.02118861675262451, + "difficulty_simple": 1.1038071055452137, + "percent_correct": 0.2490272373540856, + "n_responses": 514 + }, + { + "problem_id": 158585, + "difficulty_1pl": -5.434994220733643, + "difficulty_2pl": -0.19064348936080933, + "discrimination_2pl": 0.4997873604297638, + "difficulty_simple": -1.3959562720316274, + "percent_correct": 0.8015414258188824, + "n_responses": 519 + }, + { + "problem_id": 191727, + "difficulty_1pl": 3.054063320159912, + "difficulty_2pl": 0.034027159214019775, + "discrimination_2pl": 0.08114425092935562, + "difficulty_simple": 0.3154389564504447, + "percent_correct": 0.42178770949720673, + "n_responses": 358 + }, + { + "problem_id": 247727, + "difficulty_1pl": 0.6665482521057129, + "difficulty_2pl": 0.002423022873699665, + "discrimination_2pl": 0.06239335238933563, + "difficulty_simple": -0.11332868530700312, + "percent_correct": 0.5283018867924528, + "n_responses": 318 + }, + { + "problem_id": 244895, + "difficulty_1pl": -0.8271517157554626, + "difficulty_2pl": 0.16358646750450134, + "discrimination_2pl": 0.2047671377658844, + "difficulty_simple": -0.3604414267342095, + "percent_correct": 0.5891472868217055, + "n_responses": 387 + }, + { + "problem_id": 245240, + "difficulty_1pl": 5.344804763793945, + "difficulty_2pl": 0.011498592793941498, + "discrimination_2pl": 0.04355653002858162, + "difficulty_simple": 0.7404000654104906, + "percent_correct": 0.3229166666666667, + "n_responses": 384 + }, + { + "problem_id": 245546, + "difficulty_1pl": 6.140323162078857, + "difficulty_2pl": 0.1928473263978958, + "discrimination_2pl": 0.04629003629088402, + "difficulty_simple": 1.008896989346079, + "percent_correct": 0.2671957671957672, + "n_responses": 378 + }, + { + "problem_id": 245930, + "difficulty_1pl": 0.8263658285140991, + "difficulty_2pl": 0.02232205495238304, + "discrimination_2pl": 0.13375115394592285, + "difficulty_simple": -0.031581572050299045, + "percent_correct": 0.5078947368421053, + "n_responses": 380 + }, + { + "problem_id": 246376, + "difficulty_1pl": -1.3417555093765259, + "difficulty_2pl": -0.18035054206848145, + "discrimination_2pl": 0.2700605094432831, + "difficulty_simple": -0.6225296133459921, + "percent_correct": 0.6507936507936508, + "n_responses": 378 + }, + { + "problem_id": 246686, + "difficulty_1pl": 1.8461530208587646, + "difficulty_2pl": -0.03932295739650726, + "discrimination_2pl": 0.09444232285022736, + "difficulty_simple": 0.2398703451195233, + "percent_correct": 0.4403183023872679, + "n_responses": 377 + }, + { + "problem_id": 246966, + "difficulty_1pl": -1.3258402347564697, + "difficulty_2pl": 0.07500352710485458, + "discrimination_2pl": 0.3210415542125702, + "difficulty_simple": -0.7251499116461191, + "percent_correct": 0.6737400530503979, + "n_responses": 377 + }, + { + "problem_id": 108650, + "difficulty_1pl": -14.634697914123535, + "difficulty_2pl": -0.15866971015930176, + "discrimination_2pl": 0.2370067834854126, + "difficulty_simple": -1.9810014688665833, + "percent_correct": 0.8787878787878788, + "n_responses": 99 + }, + { + "problem_id": 108867, + "difficulty_1pl": -14.055001258850098, + "difficulty_2pl": -0.026583805680274963, + "discrimination_2pl": 0.21174822747707367, + "difficulty_simple": -2.912350664614939, + "percent_correct": 0.9484536082474226, + "n_responses": 97 + }, + { + "problem_id": 404191, + "difficulty_1pl": 3.804839611053467, + "difficulty_2pl": 0.028831830248236656, + "discrimination_2pl": 0.04670165851712227, + "difficulty_simple": 0.5016931402027179, + "percent_correct": 0.37714285714285717, + "n_responses": 350 + }, + { + "problem_id": 404343, + "difficulty_1pl": 2.327716827392578, + "difficulty_2pl": 0.13628120720386505, + "discrimination_2pl": 0.19438768923282623, + "difficulty_simple": -0.11506932978478723, + "percent_correct": 0.5287356321839081, + "n_responses": 348 + }, + { + "problem_id": 404451, + "difficulty_1pl": 1.3758478164672852, + "difficulty_2pl": 0.08667901158332825, + "discrimination_2pl": 0.20364806056022644, + "difficulty_simple": -0.11573595203465874, + "percent_correct": 0.5289017341040463, + "n_responses": 346 + }, + { + "problem_id": 293491, + "difficulty_1pl": -10.761320114135742, + "difficulty_2pl": -0.18967226147651672, + "discrimination_2pl": 0.5365517735481262, + "difficulty_simple": -1.921812597476253, + "percent_correct": 0.8723404255319149, + "n_responses": 235 + }, + { + "problem_id": 293965, + "difficulty_1pl": -10.762601852416992, + "difficulty_2pl": -0.1487407088279724, + "discrimination_2pl": 0.49429816007614136, + "difficulty_simple": -2.4849066497880012, + "percent_correct": 0.9230769230769231, + "n_responses": 221 + }, + { + "problem_id": 8390, + "difficulty_1pl": 3.328472375869751, + "difficulty_2pl": 0.09662576764822006, + "discrimination_2pl": 0.22945572435855865, + "difficulty_simple": -0.2363887780642304, + "percent_correct": 0.5588235294117647, + "n_responses": 408 + }, + { + "problem_id": 8540, + "difficulty_1pl": 2.8012189865112305, + "difficulty_2pl": 0.07019799947738647, + "discrimination_2pl": 0.19789105653762817, + "difficulty_simple": -0.1678808726391603, + "percent_correct": 0.541871921182266, + "n_responses": 406 + }, + { + "problem_id": 8659, + "difficulty_1pl": -9.189302444458008, + "difficulty_2pl": -0.0845140889286995, + "discrimination_2pl": 0.5215585231781006, + "difficulty_simple": -1.9123874570166697, + "percent_correct": 0.8712871287128713, + "n_responses": 404 + }, + { + "problem_id": 10794, + "difficulty_1pl": -6.292629718780518, + "difficulty_2pl": -0.003945226781070232, + "discrimination_2pl": 0.3633051812648773, + "difficulty_simple": -1.2286654169163078, + "percent_correct": 0.7735849056603774, + "n_responses": 371 + }, + { + "problem_id": 10047, + "difficulty_1pl": 8.765106201171875, + "difficulty_2pl": -0.016335628926753998, + "discrimination_2pl": 0.044714055955410004, + "difficulty_simple": 1.0895624531481918, + "percent_correct": 0.25170068027210885, + "n_responses": 147 + }, + { + "problem_id": 10467, + "difficulty_1pl": -3.335937261581421, + "difficulty_2pl": -0.07172767072916031, + "discrimination_2pl": 0.41415897011756897, + "difficulty_simple": -1.1972838161751398, + "percent_correct": 0.7680412371134021, + "n_responses": 194 + }, + { + "problem_id": 10585, + "difficulty_1pl": -3.620171546936035, + "difficulty_2pl": -0.09488540142774582, + "discrimination_2pl": 0.3270539939403534, + "difficulty_simple": -0.8522118751896325, + "percent_correct": 0.7010309278350515, + "n_responses": 194 + }, + { + "problem_id": 218802, + "difficulty_1pl": 2.008166551589966, + "difficulty_2pl": 0.13664250075817108, + "discrimination_2pl": 0.183747798204422, + "difficulty_simple": 0.19621066895462147, + "percent_correct": 0.45110410094637227, + "n_responses": 634 + }, + { + "problem_id": 406161, + "difficulty_1pl": 2.0452067852020264, + "difficulty_2pl": 0.04042261093854904, + "discrimination_2pl": 0.08148186653852463, + "difficulty_simple": 0.13941953524974512, + "percent_correct": 0.4652014652014652, + "n_responses": 273 + }, + { + "problem_id": 406364, + "difficulty_1pl": -11.226758003234863, + "difficulty_2pl": -0.1985936313867569, + "discrimination_2pl": 0.5273872017860413, + "difficulty_simple": -1.899973053868288, + "percent_correct": 0.8698884758364313, + "n_responses": 269 + }, + { + "problem_id": 406643, + "difficulty_1pl": 3.7061359882354736, + "difficulty_2pl": 0.04564826563000679, + "discrimination_2pl": 0.045279309153556824, + "difficulty_simple": 0.36412376795172297, + "percent_correct": 0.4099616858237548, + "n_responses": 261 + }, + { + "problem_id": 406771, + "difficulty_1pl": -7.198479652404785, + "difficulty_2pl": -0.09619421511888504, + "discrimination_2pl": 0.425956130027771, + "difficulty_simple": -1.3862943611198908, + "percent_correct": 0.8, + "n_responses": 260 + }, + { + "problem_id": 406962, + "difficulty_1pl": -0.9071616530418396, + "difficulty_2pl": 0.006523726042360067, + "discrimination_2pl": 0.22535108029842377, + "difficulty_simple": -0.5007752879124893, + "percent_correct": 0.6226415094339622, + "n_responses": 265 + }, + { + "problem_id": 407163, + "difficulty_1pl": -6.234254837036133, + "difficulty_2pl": -0.16923831403255463, + "discrimination_2pl": 0.3818655014038086, + "difficulty_simple": -1.410048447127998, + "percent_correct": 0.8037735849056604, + "n_responses": 265 + }, + { + "problem_id": 407444, + "difficulty_1pl": -0.7436421513557434, + "difficulty_2pl": 0.12530489265918732, + "discrimination_2pl": 0.216921865940094, + "difficulty_simple": -0.40869612868961064, + "percent_correct": 0.6007751937984496, + "n_responses": 258 + }, + { + "problem_id": 407575, + "difficulty_1pl": -6.807896137237549, + "difficulty_2pl": -0.2561860978603363, + "discrimination_2pl": 0.4474372863769531, + "difficulty_simple": -1.425515074273172, + "percent_correct": 0.8062015503875969, + "n_responses": 258 + }, + { + "problem_id": 6735, + "difficulty_1pl": -0.7284960746765137, + "difficulty_2pl": 0.11996059119701385, + "discrimination_2pl": 0.30574095249176025, + "difficulty_simple": -0.4218320855723696, + "percent_correct": 0.6039215686274509, + "n_responses": 510 + }, + { + "problem_id": 5236, + "difficulty_1pl": -2.2646312713623047, + "difficulty_2pl": -0.04068022966384888, + "discrimination_2pl": 0.45290571451187134, + "difficulty_simple": -0.9009451621994948, + "percent_correct": 0.7111436950146628, + "n_responses": 682 + }, + { + "problem_id": 88478, + "difficulty_1pl": -2.3813700675964355, + "difficulty_2pl": 0.10989473760128021, + "discrimination_2pl": 0.34169942140579224, + "difficulty_simple": -0.6345316777254959, + "percent_correct": 0.6535162950257289, + "n_responses": 583 + }, + { + "problem_id": 88806, + "difficulty_1pl": -9.971197128295898, + "difficulty_2pl": -0.26772862672805786, + "discrimination_2pl": 0.667810320854187, + "difficulty_simple": -2.174751721484161, + "percent_correct": 0.8979591836734694, + "n_responses": 441 + }, + { + "problem_id": 59107, + "difficulty_1pl": -0.584783673286438, + "difficulty_2pl": 0.11256512999534607, + "discrimination_2pl": 0.26332348585128784, + "difficulty_simple": -0.5369864498046626, + "percent_correct": 0.6311111111111111, + "n_responses": 225 + }, + { + "problem_id": 6006, + "difficulty_1pl": 0.9568122029304504, + "difficulty_2pl": 0.10514909029006958, + "discrimination_2pl": 0.19730179011821747, + "difficulty_simple": -0.0880568553911828, + "percent_correct": 0.522, + "n_responses": 500 + }, + { + "problem_id": 6876, + "difficulty_1pl": 1.595131278038025, + "difficulty_2pl": -0.025014204904437065, + "discrimination_2pl": 0.12347123771905899, + "difficulty_simple": 0.04348511193973889, + "percent_correct": 0.4891304347826087, + "n_responses": 368 + }, + { + "problem_id": 561849, + "difficulty_1pl": 1.5286712646484375, + "difficulty_2pl": 0.07627330720424652, + "discrimination_2pl": 0.23949095606803894, + "difficulty_simple": -0.43623676677491835, + "percent_correct": 0.6073619631901841, + "n_responses": 489 + }, + { + "problem_id": 564260, + "difficulty_1pl": -5.485067367553711, + "difficulty_2pl": -0.18105192482471466, + "discrimination_2pl": 0.40406984090805054, + "difficulty_simple": -1.4244461270842668, + "percent_correct": 0.8060344827586207, + "n_responses": 464 + }, + { + "problem_id": 48569, + "difficulty_1pl": -18.26878547668457, + "difficulty_2pl": -0.6232465505599976, + "discrimination_2pl": 0.4853910803794861, + "difficulty_simple": -3.608457886803364, + "percent_correct": 0.973621103117506, + "n_responses": 417 + }, + { + "problem_id": 103860, + "difficulty_1pl": 3.2590396404266357, + "difficulty_2pl": 0.02348313108086586, + "discrimination_2pl": 0.04355843365192413, + "difficulty_simple": 0.237000585975636, + "percent_correct": 0.441025641025641, + "n_responses": 195 + }, + { + "problem_id": 104131, + "difficulty_1pl": 9.837955474853516, + "difficulty_2pl": -0.019766665995121002, + "discrimination_2pl": 0.02104201354086399, + "difficulty_simple": 1.1192315758708453, + "percent_correct": 0.24615384615384617, + "n_responses": 195 + }, + { + "problem_id": 104252, + "difficulty_1pl": 5.654037952423096, + "difficulty_2pl": 0.030545733869075775, + "discrimination_2pl": 0.03212956339120865, + "difficulty_simple": 0.754840749565285, + "percent_correct": 0.31976744186046513, + "n_responses": 172 + }, + { + "problem_id": 111989, + "difficulty_1pl": -8.00360107421875, + "difficulty_2pl": 0.03412808105349541, + "discrimination_2pl": 0.25344592332839966, + "difficulty_simple": -1.1113513144455394, + "percent_correct": 0.7523809523809524, + "n_responses": 105 + }, + { + "problem_id": 66472, + "difficulty_1pl": -5.512344837188721, + "difficulty_2pl": 0.09213666617870331, + "discrimination_2pl": 0.3168012797832489, + "difficulty_simple": -0.9332883082427262, + "percent_correct": 0.717741935483871, + "n_responses": 124 + }, + { + "problem_id": 66602, + "difficulty_1pl": -1.8641767501831055, + "difficulty_2pl": 0.03330855816602707, + "discrimination_2pl": 0.289531409740448, + "difficulty_simple": -0.8050650967639307, + "percent_correct": 0.6910569105691057, + "n_responses": 123 + }, + { + "problem_id": 66748, + "difficulty_1pl": -3.5555992126464844, + "difficulty_2pl": 0.04358069971203804, + "discrimination_2pl": 0.3281209468841553, + "difficulty_simple": -1.1759989522835301, + "percent_correct": 0.7642276422764228, + "n_responses": 123 + }, + { + "problem_id": 9624, + "difficulty_1pl": -5.700160980224609, + "difficulty_2pl": 0.1579914540052414, + "discrimination_2pl": 0.3429265320301056, + "difficulty_simple": -1.3786897617346716, + "percent_correct": 0.7987804878048781, + "n_responses": 164 + }, + { + "problem_id": 9946, + "difficulty_1pl": -4.140548229217529, + "difficulty_2pl": 0.05801716074347496, + "discrimination_2pl": 0.39206042885780334, + "difficulty_simple": -1.236762627148927, + "percent_correct": 0.775, + "n_responses": 160 + }, + { + "problem_id": 10141, + "difficulty_1pl": -3.2681045532226562, + "difficulty_2pl": -0.029080253094434738, + "discrimination_2pl": 0.31214869022369385, + "difficulty_simple": -0.7025369209097841, + "percent_correct": 0.66875, + "n_responses": 160 + }, + { + "problem_id": 363244, + "difficulty_1pl": 0.4295403063297272, + "difficulty_2pl": -0.06656111776828766, + "discrimination_2pl": 0.3134182095527649, + "difficulty_simple": -0.5299192825815703, + "percent_correct": 0.6294642857142857, + "n_responses": 448 + }, + { + "problem_id": 361989, + "difficulty_1pl": -3.4747729301452637, + "difficulty_2pl": -0.06164519861340523, + "discrimination_2pl": 0.3474698066711426, + "difficulty_simple": -0.9178162851829924, + "percent_correct": 0.7145969498910676, + "n_responses": 459 + }, + { + "problem_id": 362327, + "difficulty_1pl": -3.875554084777832, + "difficulty_2pl": -0.21043157577514648, + "discrimination_2pl": 0.44340330362319946, + "difficulty_simple": -1.2756647327820527, + "percent_correct": 0.7817109144542773, + "n_responses": 339 + }, + { + "problem_id": 362897, + "difficulty_1pl": -8.458662033081055, + "difficulty_2pl": -0.10706309229135513, + "discrimination_2pl": 0.4680067002773285, + "difficulty_simple": -1.9151384903885598, + "percent_correct": 0.8715953307392996, + "n_responses": 257 + }, + { + "problem_id": 107995, + "difficulty_1pl": -2.0294532775878906, + "difficulty_2pl": -0.0952811986207962, + "discrimination_2pl": 0.45659178495407104, + "difficulty_simple": -0.7416219370623565, + "percent_correct": 0.6773504273504274, + "n_responses": 468 + }, + { + "problem_id": 164090, + "difficulty_1pl": 2.5957884788513184, + "difficulty_2pl": 0.030057283118367195, + "discrimination_2pl": 0.04747898131608963, + "difficulty_simple": 0.059423420470800806, + "percent_correct": 0.48514851485148514, + "n_responses": 101 + }, + { + "problem_id": 164748, + "difficulty_1pl": 5.127213478088379, + "difficulty_2pl": 0.026991214603185654, + "discrimination_2pl": 0.02018129825592041, + "difficulty_simple": 0.7985076962177716, + "percent_correct": 0.3103448275862069, + "n_responses": 87 + }, + { + "problem_id": 164620, + "difficulty_1pl": -3.230726718902588, + "difficulty_2pl": 0.005863708909600973, + "discrimination_2pl": 0.2429867684841156, + "difficulty_simple": -1.0541605260972762, + "percent_correct": 0.7415730337078652, + "n_responses": 89 + }, + { + "problem_id": 164198, + "difficulty_1pl": 2.9769773483276367, + "difficulty_2pl": 0.1630060076713562, + "discrimination_2pl": 0.058906685560941696, + "difficulty_simple": 0.16362942378180212, + "percent_correct": 0.45918367346938777, + "n_responses": 98 + }, + { + "problem_id": 187657, + "difficulty_1pl": -4.60971212387085, + "difficulty_2pl": -0.05323990434408188, + "discrimination_2pl": 0.3858140707015991, + "difficulty_simple": -1.0857088838322018, + "percent_correct": 0.7475728155339806, + "n_responses": 206 + }, + { + "problem_id": 187859, + "difficulty_1pl": -4.672572612762451, + "difficulty_2pl": 0.02803201973438263, + "discrimination_2pl": 0.35036420822143555, + "difficulty_simple": -1.0857088838322018, + "percent_correct": 0.7475728155339806, + "n_responses": 206 + }, + { + "problem_id": 373578, + "difficulty_1pl": -6.696712017059326, + "difficulty_2pl": -0.10624243319034576, + "discrimination_2pl": 0.3781590759754181, + "difficulty_simple": -1.379125871641278, + "percent_correct": 0.7988505747126436, + "n_responses": 174 + }, + { + "problem_id": 350537, + "difficulty_1pl": 6.364536762237549, + "difficulty_2pl": -0.07913704961538315, + "discrimination_2pl": 0.030762234702706337, + "difficulty_simple": 0.5596157879354227, + "percent_correct": 0.36363636363636365, + "n_responses": 77 + }, + { + "problem_id": 350634, + "difficulty_1pl": 0.8246591091156006, + "difficulty_2pl": -0.032652996480464935, + "discrimination_2pl": 0.1210242360830307, + "difficulty_simple": -0.13353139262452263, + "percent_correct": 0.5333333333333333, + "n_responses": 75 + }, + { + "problem_id": 350745, + "difficulty_1pl": -4.439522743225098, + "difficulty_2pl": -0.18217772245407104, + "discrimination_2pl": 0.23250983655452728, + "difficulty_simple": -1.134979932838985, + "percent_correct": 0.7567567567567568, + "n_responses": 74 + }, + { + "problem_id": 351005, + "difficulty_1pl": -2.9456634521484375, + "difficulty_2pl": -0.06650517135858536, + "discrimination_2pl": 0.2014717012643814, + "difficulty_simple": -0.9745596399981309, + "percent_correct": 0.726027397260274, + "n_responses": 73 + }, + { + "problem_id": 55325, + "difficulty_1pl": 2.2584829330444336, + "difficulty_2pl": 0.07470525056123734, + "discrimination_2pl": 0.06040313467383385, + "difficulty_simple": 0.4454704427218636, + "percent_correct": 0.3904382470119522, + "n_responses": 502 + }, + { + "problem_id": 567463, + "difficulty_1pl": -6.698919773101807, + "difficulty_2pl": -0.11155715584754944, + "discrimination_2pl": 0.3873630464076996, + "difficulty_simple": -1.6863989535702288, + "percent_correct": 0.84375, + "n_responses": 256 + }, + { + "problem_id": 117623, + "difficulty_1pl": 0.779751181602478, + "difficulty_2pl": -0.05388369783759117, + "discrimination_2pl": 0.04787943512201309, + "difficulty_simple": -0.07550755250814517, + "percent_correct": 0.5188679245283019, + "n_responses": 424 + }, + { + "problem_id": 137129, + "difficulty_1pl": 5.773696422576904, + "difficulty_2pl": 0.06795669347047806, + "discrimination_2pl": 0.05422357842326164, + "difficulty_simple": 0.5187937934151675, + "percent_correct": 0.373134328358209, + "n_responses": 134 + }, + { + "problem_id": 1442, + "difficulty_1pl": -11.73348331451416, + "difficulty_2pl": -0.19201317429542542, + "discrimination_2pl": 0.3631795644760132, + "difficulty_simple": -1.605794921155599, + "percent_correct": 0.8328267477203647, + "n_responses": 329 + }, + { + "problem_id": 259177, + "difficulty_1pl": -0.4200074374675751, + "difficulty_2pl": -0.05239839851856232, + "discrimination_2pl": 0.1376430094242096, + "difficulty_simple": -0.7146533857809086, + "percent_correct": 0.6714285714285714, + "n_responses": 70 + }, + { + "problem_id": 1606, + "difficulty_1pl": -1.3416032791137695, + "difficulty_2pl": -0.02549518272280693, + "discrimination_2pl": 0.2622929513454437, + "difficulty_simple": -0.7253338670558469, + "percent_correct": 0.6737804878048781, + "n_responses": 328 + }, + { + "problem_id": 164771, + "difficulty_1pl": 1.2590043544769287, + "difficulty_2pl": 0.03435660898685455, + "discrimination_2pl": 0.14764584600925446, + "difficulty_simple": -0.21151056440426416, + "percent_correct": 0.5526813880126183, + "n_responses": 1585 + }, + { + "problem_id": 188655, + "difficulty_1pl": 0.4269779622554779, + "difficulty_2pl": -0.011162916198372841, + "discrimination_2pl": 0.13957113027572632, + "difficulty_simple": -0.26826398659467926, + "percent_correct": 0.5666666666666667, + "n_responses": 570 + }, + { + "problem_id": 188925, + "difficulty_1pl": 1.5475635528564453, + "difficulty_2pl": 0.07037296146154404, + "discrimination_2pl": 0.16132746636867523, + "difficulty_simple": -0.024692612590371636, + "percent_correct": 0.5061728395061729, + "n_responses": 486 + }, + { + "problem_id": 64548, + "difficulty_1pl": -0.33983057737350464, + "difficulty_2pl": 0.007052969187498093, + "discrimination_2pl": 0.20727744698524475, + "difficulty_simple": -0.4482760735399714, + "percent_correct": 0.6102292768959435, + "n_responses": 567 + }, + { + "problem_id": 384509, + "difficulty_1pl": -2.04667592048645, + "difficulty_2pl": 0.051655180752277374, + "discrimination_2pl": 0.35169368982315063, + "difficulty_simple": -0.38662202030668463, + "percent_correct": 0.5954692556634305, + "n_responses": 309 + }, + { + "problem_id": 45665, + "difficulty_1pl": 0.9650565981864929, + "difficulty_2pl": 0.22050511837005615, + "discrimination_2pl": 0.17737799882888794, + "difficulty_simple": -0.13883644485421595, + "percent_correct": 0.5346534653465347, + "n_responses": 505 + }, + { + "problem_id": 45802, + "difficulty_1pl": -2.3861706256866455, + "difficulty_2pl": 0.0013301679864525795, + "discrimination_2pl": 0.37962767481803894, + "difficulty_simple": -0.8760354701545603, + "percent_correct": 0.706, + "n_responses": 500 + }, + { + "problem_id": 46015, + "difficulty_1pl": 2.866453170776367, + "difficulty_2pl": 0.02889520488679409, + "discrimination_2pl": 0.06879179924726486, + "difficulty_simple": 0.1985293670208081, + "percent_correct": 0.450530035335689, + "n_responses": 566 + }, + { + "problem_id": 46116, + "difficulty_1pl": -1.0323774814605713, + "difficulty_2pl": 0.02616487629711628, + "discrimination_2pl": 0.34042906761169434, + "difficulty_simple": -0.5365781198684052, + "percent_correct": 0.6310160427807486, + "n_responses": 561 + }, + { + "problem_id": 46235, + "difficulty_1pl": -2.0582308769226074, + "difficulty_2pl": 0.056148480623960495, + "discrimination_2pl": 0.30303826928138733, + "difficulty_simple": -0.5252143612180903, + "percent_correct": 0.6283662477558348, + "n_responses": 557 + }, + { + "problem_id": 46358, + "difficulty_1pl": -1.7352172136306763, + "difficulty_2pl": -0.062425095587968826, + "discrimination_2pl": 0.36222967505455017, + "difficulty_simple": -0.7121953755306399, + "percent_correct": 0.6708860759493671, + "n_responses": 553 + }, + { + "problem_id": 47523, + "difficulty_1pl": 0.9597684741020203, + "difficulty_2pl": -0.043773114681243896, + "discrimination_2pl": 0.17126019299030304, + "difficulty_simple": -0.32255089810260495, + "percent_correct": 0.5799457994579946, + "n_responses": 369 + }, + { + "problem_id": 339343, + "difficulty_1pl": 2.834306240081787, + "difficulty_2pl": -0.12713585793972015, + "discrimination_2pl": 0.06750090420246124, + "difficulty_simple": 0.2657031657330057, + "percent_correct": 0.4339622641509434, + "n_responses": 106 + }, + { + "problem_id": 157878, + "difficulty_1pl": -4.600835800170898, + "difficulty_2pl": -0.3169719874858856, + "discrimination_2pl": 0.5355873703956604, + "difficulty_simple": -1.3444335099186822, + "percent_correct": 0.793218085106383, + "n_responses": 1504 + }, + { + "problem_id": 433197, + "difficulty_1pl": -0.38760456442832947, + "difficulty_2pl": 0.020042723044753075, + "discrimination_2pl": 0.23478655517101288, + "difficulty_simple": -0.4344526449814166, + "percent_correct": 0.6069364161849711, + "n_responses": 346 + }, + { + "problem_id": 55302, + "difficulty_1pl": 1.4016917943954468, + "difficulty_2pl": 0.07848937809467316, + "discrimination_2pl": 0.12781162559986115, + "difficulty_simple": 0.12332321603199871, + "percent_correct": 0.46920821114369504, + "n_responses": 341 + }, + { + "problem_id": 55428, + "difficulty_1pl": 1.2929542064666748, + "difficulty_2pl": 0.071112722158432, + "discrimination_2pl": 0.11806714534759521, + "difficulty_simple": 0.21382878003966238, + "percent_correct": 0.4467455621301775, + "n_responses": 338 + }, + { + "problem_id": 54527, + "difficulty_1pl": 5.298617839813232, + "difficulty_2pl": -0.032569143921136856, + "discrimination_2pl": 0.01795874536037445, + "difficulty_simple": 0.9420432279765697, + "percent_correct": 0.2804878048780488, + "n_responses": 328 + }, + { + "problem_id": 65288, + "difficulty_1pl": 12.424015045166016, + "difficulty_2pl": -0.009069922380149364, + "discrimination_2pl": 0.02404308319091797, + "difficulty_simple": 1.6060423234329622, + "percent_correct": 0.1671388101983003, + "n_responses": 353 + }, + { + "problem_id": 80061, + "difficulty_1pl": 2.396544933319092, + "difficulty_2pl": 0.08221527934074402, + "discrimination_2pl": 0.16363871097564697, + "difficulty_simple": 0.02210034700066592, + "percent_correct": 0.494475138121547, + "n_responses": 362 + }, + { + "problem_id": 79667, + "difficulty_1pl": 1.9833687543869019, + "difficulty_2pl": 0.007339654490351677, + "discrimination_2pl": 0.04193256050348282, + "difficulty_simple": 0.17185025692665942, + "percent_correct": 0.45714285714285713, + "n_responses": 245 + }, + { + "problem_id": 206901, + "difficulty_1pl": 4.751922607421875, + "difficulty_2pl": 0.08912806957960129, + "discrimination_2pl": 0.0317266508936882, + "difficulty_simple": 0.5891574670358977, + "percent_correct": 0.3568281938325991, + "n_responses": 227 + }, + { + "problem_id": 206730, + "difficulty_1pl": -6.993224620819092, + "difficulty_2pl": -0.13264161348342896, + "discrimination_2pl": 0.45103439688682556, + "difficulty_simple": -1.5121746070088937, + "percent_correct": 0.8193832599118943, + "n_responses": 227 + }, + { + "problem_id": 194547, + "difficulty_1pl": -1.2732958793640137, + "difficulty_2pl": -0.0818026214838028, + "discrimination_2pl": 0.30254119634628296, + "difficulty_simple": -0.6823362644557296, + "percent_correct": 0.6642599277978339, + "n_responses": 277 + }, + { + "problem_id": 125866, + "difficulty_1pl": 2.731996536254883, + "difficulty_2pl": -0.03177471086382866, + "discrimination_2pl": 0.06153532490134239, + "difficulty_simple": -0.07637297878457397, + "percent_correct": 0.5190839694656488, + "n_responses": 131 + }, + { + "problem_id": 70299, + "difficulty_1pl": -2.717884063720703, + "difficulty_2pl": -0.13142456114292145, + "discrimination_2pl": 0.1867663562297821, + "difficulty_simple": -0.8472978603872034, + "percent_correct": 0.7, + "n_responses": 60 + }, + { + "problem_id": 70629, + "difficulty_1pl": -7.069336891174316, + "difficulty_2pl": 0.01987621560692787, + "discrimination_2pl": 0.21041226387023926, + "difficulty_simple": -1.363304842895192, + "percent_correct": 0.7962962962962963, + "n_responses": 54 + }, + { + "problem_id": 70912, + "difficulty_1pl": -5.247028827667236, + "difficulty_2pl": 0.15755435824394226, + "discrimination_2pl": 0.2373509407043457, + "difficulty_simple": -1.306251653446354, + "percent_correct": 0.7868852459016393, + "n_responses": 61 + }, + { + "problem_id": 71223, + "difficulty_1pl": -5.959380149841309, + "difficulty_2pl": -0.08477747440338135, + "discrimination_2pl": 0.2184251993894577, + "difficulty_simple": -0.8842024173226547, + "percent_correct": 0.7076923076923077, + "n_responses": 65 + }, + { + "problem_id": 9217, + "difficulty_1pl": 2.142882823944092, + "difficulty_2pl": 0.1204926073551178, + "discrimination_2pl": 0.1716311126947403, + "difficulty_simple": 0.08927858443852607, + "percent_correct": 0.47769516728624534, + "n_responses": 538 + }, + { + "problem_id": 10115, + "difficulty_1pl": -0.43060001730918884, + "difficulty_2pl": -0.032459504902362823, + "discrimination_2pl": 0.25953689217567444, + "difficulty_simple": -0.63080404998581, + "percent_correct": 0.6526717557251909, + "n_responses": 262 + }, + { + "problem_id": 10283, + "difficulty_1pl": -1.8233087062835693, + "difficulty_2pl": 0.09329862892627716, + "discrimination_2pl": 0.2567143440246582, + "difficulty_simple": -0.8169182580609516, + "percent_correct": 0.6935817805383023, + "n_responses": 483 + }, + { + "problem_id": 71526, + "difficulty_1pl": -12.35340690612793, + "difficulty_2pl": -0.10578727722167969, + "discrimination_2pl": 0.19736966490745544, + "difficulty_simple": -2.6100697927420056, + "percent_correct": 0.9315068493150684, + "n_responses": 73 + }, + { + "problem_id": 97111, + "difficulty_1pl": -1.9654747247695923, + "difficulty_2pl": -0.08983328938484192, + "discrimination_2pl": 0.24249084293842316, + "difficulty_simple": -0.6523251860396901, + "percent_correct": 0.6575342465753424, + "n_responses": 219 + }, + { + "problem_id": 97230, + "difficulty_1pl": 5.444561004638672, + "difficulty_2pl": -0.011762946844100952, + "discrimination_2pl": 0.02891688235104084, + "difficulty_simple": 0.7977721316388177, + "percent_correct": 0.3105022831050228, + "n_responses": 219 + }, + { + "problem_id": 171270, + "difficulty_1pl": -1.8417624235153198, + "difficulty_2pl": 0.06613773107528687, + "discrimination_2pl": 0.24507902562618256, + "difficulty_simple": -0.9808292530117264, + "percent_correct": 0.7272727272727273, + "n_responses": 154 + }, + { + "problem_id": 171657, + "difficulty_1pl": -4.0978779792785645, + "difficulty_2pl": 0.05020878463983536, + "discrimination_2pl": 0.2834102511405945, + "difficulty_simple": -1.116469906068116, + "percent_correct": 0.7533333333333333, + "n_responses": 150 + }, + { + "problem_id": 118176, + "difficulty_1pl": 1.1394238471984863, + "difficulty_2pl": 0.05365766957402229, + "discrimination_2pl": 0.16932252049446106, + "difficulty_simple": -0.2995165300987839, + "percent_correct": 0.5743243243243243, + "n_responses": 148 + }, + { + "problem_id": 117977, + "difficulty_1pl": -0.7799785137176514, + "difficulty_2pl": -0.21294713020324707, + "discrimination_2pl": 0.24611562490463257, + "difficulty_simple": -0.5940562779157141, + "percent_correct": 0.6442953020134228, + "n_responses": 149 + }, + { + "problem_id": 117788, + "difficulty_1pl": -9.416461944580078, + "difficulty_2pl": -0.0986870527267456, + "discrimination_2pl": 0.4006578326225281, + "difficulty_simple": -1.9230954712891415, + "percent_correct": 0.87248322147651, + "n_responses": 149 + }, + { + "problem_id": 44782, + "difficulty_1pl": -11.13354206085205, + "difficulty_2pl": -0.07308202236890793, + "discrimination_2pl": 0.43423470854759216, + "difficulty_simple": -2.33214389523559, + "percent_correct": 0.911504424778761, + "n_responses": 113 + }, + { + "problem_id": 266614, + "difficulty_1pl": 2.419729232788086, + "difficulty_2pl": 0.0341755636036396, + "discrimination_2pl": 0.05678810179233551, + "difficulty_simple": 0.38641691313746984, + "percent_correct": 0.40458015267175573, + "n_responses": 131 + }, + { + "problem_id": 170408, + "difficulty_1pl": -5.205338478088379, + "difficulty_2pl": 0.0008345497772097588, + "discrimination_2pl": 0.26534366607666016, + "difficulty_simple": -1.6739764335716711, + "percent_correct": 0.8421052631578947, + "n_responses": 57 + }, + { + "problem_id": 174309, + "difficulty_1pl": 4.887661457061768, + "difficulty_2pl": -0.1329755187034607, + "discrimination_2pl": 0.022481296211481094, + "difficulty_simple": 0.43531807125784566, + "percent_correct": 0.39285714285714285, + "n_responses": 56 + }, + { + "problem_id": 197306, + "difficulty_1pl": -10.100686073303223, + "difficulty_2pl": 0.08974748104810715, + "discrimination_2pl": 0.21304595470428467, + "difficulty_simple": -1.4109869737102623, + "percent_correct": 0.803921568627451, + "n_responses": 51 + }, + { + "problem_id": 197603, + "difficulty_1pl": -3.083142042160034, + "difficulty_2pl": -0.16557207703590393, + "discrimination_2pl": 0.18294981122016907, + "difficulty_simple": -0.8754687373539002, + "percent_correct": 0.7058823529411765, + "n_responses": 51 + }, + { + "problem_id": 10412, + "difficulty_1pl": -1.821573257446289, + "difficulty_2pl": -0.09870612621307373, + "discrimination_2pl": 0.4905509948730469, + "difficulty_simple": -0.6855425811747259, + "percent_correct": 0.6649746192893401, + "n_responses": 394 + }, + { + "problem_id": 10564, + "difficulty_1pl": -1.4972950220108032, + "difficulty_2pl": -0.014903985895216465, + "discrimination_2pl": 0.49481385946273804, + "difficulty_simple": -0.6246793812824847, + "percent_correct": 0.6512820512820513, + "n_responses": 390 + }, + { + "problem_id": 10729, + "difficulty_1pl": -5.958023548126221, + "difficulty_2pl": -0.17483529448509216, + "discrimination_2pl": 0.5180748701095581, + "difficulty_simple": -1.1753049094563637, + "percent_correct": 0.764102564102564, + "n_responses": 390 + }, + { + "problem_id": 11875, + "difficulty_1pl": 0.4443456828594208, + "difficulty_2pl": 0.12701426446437836, + "discrimination_2pl": 0.3131297826766968, + "difficulty_simple": -0.27193371548364165, + "percent_correct": 0.5675675675675675, + "n_responses": 259 + }, + { + "problem_id": 12211, + "difficulty_1pl": -6.239606857299805, + "difficulty_2pl": -0.15523307025432587, + "discrimination_2pl": 0.409870982170105, + "difficulty_simple": -1.1072330317120167, + "percent_correct": 0.7516129032258064, + "n_responses": 310 + }, + { + "problem_id": 12381, + "difficulty_1pl": -1.7793508768081665, + "difficulty_2pl": -0.11721774935722351, + "discrimination_2pl": 0.3379434645175934, + "difficulty_simple": -0.7125652664170472, + "percent_correct": 0.6709677419354839, + "n_responses": 310 + }, + { + "problem_id": 12777, + "difficulty_1pl": 1.5143719911575317, + "difficulty_2pl": 0.09878084063529968, + "discrimination_2pl": 0.2261633723974228, + "difficulty_simple": 0.11383514264879839, + "percent_correct": 0.47157190635451507, + "n_responses": 299 + }, + { + "problem_id": 342027, + "difficulty_1pl": -6.5626349449157715, + "difficulty_2pl": -0.13113398849964142, + "discrimination_2pl": 0.27485373616218567, + "difficulty_simple": -1.2192402764567243, + "percent_correct": 0.7719298245614035, + "n_responses": 57 + }, + { + "problem_id": 342329, + "difficulty_1pl": -5.820864200592041, + "difficulty_2pl": 0.016247307881712914, + "discrimination_2pl": 0.2814355194568634, + "difficulty_simple": -1.4522523289116878, + "percent_correct": 0.8103448275862069, + "n_responses": 58 + }, + { + "problem_id": 342597, + "difficulty_1pl": -6.918506622314453, + "difficulty_2pl": -0.03502250090241432, + "discrimination_2pl": 0.22885367274284363, + "difficulty_simple": -1.265666373331276, + "percent_correct": 0.78, + "n_responses": 50 + }, + { + "problem_id": 342865, + "difficulty_1pl": -3.5715253353118896, + "difficulty_2pl": -0.05136562138795853, + "discrimination_2pl": 0.2262619137763977, + "difficulty_simple": -0.8803587226480917, + "percent_correct": 0.7068965517241379, + "n_responses": 58 + }, + { + "problem_id": 343161, + "difficulty_1pl": -1.1861968040466309, + "difficulty_2pl": 0.08070558309555054, + "discrimination_2pl": 0.16850095987319946, + "difficulty_simple": -0.5596157879354225, + "percent_correct": 0.6363636363636364, + "n_responses": 55 + }, + { + "problem_id": 521139, + "difficulty_1pl": -4.787559986114502, + "difficulty_2pl": -0.1613118052482605, + "discrimination_2pl": 0.2762017548084259, + "difficulty_simple": -0.8754687373539002, + "percent_correct": 0.7058823529411765, + "n_responses": 833 + }, + { + "problem_id": 77299, + "difficulty_1pl": -5.03699254989624, + "difficulty_2pl": -0.15594592690467834, + "discrimination_2pl": 0.25627589225769043, + "difficulty_simple": -1.122142786078304, + "percent_correct": 0.7543859649122807, + "n_responses": 57 + }, + { + "problem_id": 77578, + "difficulty_1pl": -3.7993154525756836, + "difficulty_2pl": -0.05017942562699318, + "discrimination_2pl": 0.2325608730316162, + "difficulty_simple": -1.0296194171811581, + "percent_correct": 0.7368421052631579, + "n_responses": 57 + }, + { + "problem_id": 124486, + "difficulty_1pl": 6.817952632904053, + "difficulty_2pl": -0.0475698783993721, + "discrimination_2pl": 0.06068110838532448, + "difficulty_simple": 1.488077055429833, + "percent_correct": 0.18421052631578946, + "n_responses": 228 + }, + { + "problem_id": 124819, + "difficulty_1pl": 0.6739526391029358, + "difficulty_2pl": 0.19144810736179352, + "discrimination_2pl": 0.2979609966278076, + "difficulty_simple": 0.4244410095671699, + "percent_correct": 0.39545454545454545, + "n_responses": 220 + }, + { + "problem_id": 135943, + "difficulty_1pl": -7.761979579925537, + "difficulty_2pl": 0.024926677346229553, + "discrimination_2pl": 0.34344565868377686, + "difficulty_simple": -1.3121863889661687, + "percent_correct": 0.7878787878787878, + "n_responses": 165 + }, + { + "problem_id": 136203, + "difficulty_1pl": -12.087096214294434, + "difficulty_2pl": -0.14675991237163544, + "discrimination_2pl": 0.4636750817298889, + "difficulty_simple": -1.9252908618525773, + "percent_correct": 0.8727272727272727, + "n_responses": 165 + }, + { + "problem_id": 330320, + "difficulty_1pl": -8.444108009338379, + "difficulty_2pl": -0.3316965103149414, + "discrimination_2pl": 0.6017481088638306, + "difficulty_simple": -1.330413902725434, + "percent_correct": 0.7909090909090909, + "n_responses": 550 + }, + { + "problem_id": 330485, + "difficulty_1pl": -0.049142103642225266, + "difficulty_2pl": 0.08075336366891861, + "discrimination_2pl": 0.48096421360969543, + "difficulty_simple": -0.5265430396614004, + "percent_correct": 0.6286764705882353, + "n_responses": 544 + }, + { + "problem_id": 330621, + "difficulty_1pl": -3.1489272117614746, + "difficulty_2pl": 0.0539206936955452, + "discrimination_2pl": 0.43630555272102356, + "difficulty_simple": -0.9670359308793902, + "percent_correct": 0.7245283018867924, + "n_responses": 530 + }, + { + "problem_id": 330781, + "difficulty_1pl": -2.695650815963745, + "difficulty_2pl": -0.0965658649802208, + "discrimination_2pl": 0.5189288258552551, + "difficulty_simple": -1.051978072153746, + "percent_correct": 0.7411545623836127, + "n_responses": 537 + }, + { + "problem_id": 331279, + "difficulty_1pl": -3.3731672763824463, + "difficulty_2pl": -0.10412824153900146, + "discrimination_2pl": 0.5309867858886719, + "difficulty_simple": -1.2872491445665373, + "percent_correct": 0.7836812144212524, + "n_responses": 527 + }, + { + "problem_id": 331447, + "difficulty_1pl": -2.8669772148132324, + "difficulty_2pl": 0.11879794299602509, + "discrimination_2pl": 0.4081096351146698, + "difficulty_simple": -0.7450320159289568, + "percent_correct": 0.6780952380952381, + "n_responses": 525 + }, + { + "problem_id": 331613, + "difficulty_1pl": -2.6761982440948486, + "difficulty_2pl": -0.021629028022289276, + "discrimination_2pl": 0.498702734708786, + "difficulty_simple": -1.0634327815469362, + "percent_correct": 0.7433460076045627, + "n_responses": 526 + }, + { + "problem_id": 331773, + "difficulty_1pl": -0.976260244846344, + "difficulty_2pl": 0.09463939070701599, + "discrimination_2pl": 0.3252454400062561, + "difficulty_simple": -0.39434505706408657, + "percent_correct": 0.5973282442748091, + "n_responses": 524 + }, + { + "problem_id": 331947, + "difficulty_1pl": -0.8434656858444214, + "difficulty_2pl": 0.055813297629356384, + "discrimination_2pl": 0.4064512550830841, + "difficulty_simple": -0.5641169208162143, + "percent_correct": 0.6374045801526718, + "n_responses": 524 + }, + { + "problem_id": 332084, + "difficulty_1pl": 0.34038689732551575, + "difficulty_2pl": 0.15246883034706116, + "discrimination_2pl": 0.24705533683300018, + "difficulty_simple": -0.1760256283371398, + "percent_correct": 0.5438931297709924, + "n_responses": 524 + }, + { + "problem_id": 332235, + "difficulty_1pl": -0.19173450767993927, + "difficulty_2pl": 0.203591451048851, + "discrimination_2pl": 0.3106958568096161, + "difficulty_simple": -0.40712210931579396, + "percent_correct": 0.6003976143141153, + "n_responses": 503 + }, + { + "problem_id": 332409, + "difficulty_1pl": -5.876626491546631, + "difficulty_2pl": -0.16098706424236298, + "discrimination_2pl": 0.5827493667602539, + "difficulty_simple": -1.2809338454620645, + "percent_correct": 0.782608695652174, + "n_responses": 414 + }, + { + "problem_id": 329307, + "difficulty_1pl": -5.138237953186035, + "difficulty_2pl": -0.20272746682167053, + "discrimination_2pl": 0.3489484488964081, + "difficulty_simple": -1.1338271949591763, + "percent_correct": 0.756544502617801, + "n_responses": 382 + }, + { + "problem_id": 487312, + "difficulty_1pl": 0.019564876332879066, + "difficulty_2pl": 0.05046224594116211, + "discrimination_2pl": 0.34488826990127563, + "difficulty_simple": -0.33366718569360426, + "percent_correct": 0.5826513911620295, + "n_responses": 611 + }, + { + "problem_id": 485290, + "difficulty_1pl": 1.0813641548156738, + "difficulty_2pl": 0.046544067561626434, + "discrimination_2pl": 0.06717720627784729, + "difficulty_simple": -0.12751332029895943, + "percent_correct": 0.5318352059925093, + "n_responses": 534 + }, + { + "problem_id": 487468, + "difficulty_1pl": 4.345376014709473, + "difficulty_2pl": -0.032104674726724625, + "discrimination_2pl": 0.05482463166117668, + "difficulty_simple": 0.5537678180529995, + "percent_correct": 0.3649906890130354, + "n_responses": 537 + }, + { + "problem_id": 487616, + "difficulty_1pl": -2.2837843894958496, + "difficulty_2pl": -0.0596916526556015, + "discrimination_2pl": 0.35466626286506653, + "difficulty_simple": -0.7291576180829784, + "percent_correct": 0.6746203904555315, + "n_responses": 461 + }, + { + "problem_id": 251573, + "difficulty_1pl": -2.145577907562256, + "difficulty_2pl": -0.17579755187034607, + "discrimination_2pl": 0.21999745070934296, + "difficulty_simple": -0.7922380832041762, + "percent_correct": 0.6883116883116883, + "n_responses": 77 + }, + { + "problem_id": 251741, + "difficulty_1pl": 0.6565566658973694, + "difficulty_2pl": -0.021603122353553772, + "discrimination_2pl": 0.07346097379922867, + "difficulty_simple": -0.18721154208814633, + "percent_correct": 0.5466666666666666, + "n_responses": 75 + }, + { + "problem_id": 252066, + "difficulty_1pl": 0.08507733047008514, + "difficulty_2pl": 0.042674288153648376, + "discrimination_2pl": 0.21680830419063568, + "difficulty_simple": -0.5671064596645802, + "percent_correct": 0.638095238095238, + "n_responses": 105 + }, + { + "problem_id": 2951, + "difficulty_1pl": -15.405292510986328, + "difficulty_2pl": -0.03995559364557266, + "discrimination_2pl": 0.4068213999271393, + "difficulty_simple": -2.8903717578961636, + "percent_correct": 0.9473684210526315, + "n_responses": 95 + }, + { + "problem_id": 3858, + "difficulty_1pl": -2.1204888820648193, + "difficulty_2pl": -0.1170022040605545, + "discrimination_2pl": 0.20486710965633392, + "difficulty_simple": -1.000631880307906, + "percent_correct": 0.7311827956989247, + "n_responses": 93 + }, + { + "problem_id": 261290, + "difficulty_1pl": -2.317183256149292, + "difficulty_2pl": -0.003761555999517441, + "discrimination_2pl": 0.326271116733551, + "difficulty_simple": -0.9039702474861147, + "percent_correct": 0.711764705882353, + "n_responses": 170 + }, + { + "problem_id": 161350, + "difficulty_1pl": -13.118803977966309, + "difficulty_2pl": -0.28947529196739197, + "discrimination_2pl": 0.6620532274246216, + "difficulty_simple": -1.643839339151433, + "percent_correct": 0.8380566801619433, + "n_responses": 494 + }, + { + "problem_id": 161664, + "difficulty_1pl": -11.272027015686035, + "difficulty_2pl": -0.36091476678848267, + "discrimination_2pl": 0.6893384456634521, + "difficulty_simple": -1.9159884691902638, + "percent_correct": 0.8716904276985743, + "n_responses": 491 + }, + { + "problem_id": 161838, + "difficulty_1pl": -11.22581672668457, + "difficulty_2pl": -0.3011714220046997, + "discrimination_2pl": 0.7566750645637512, + "difficulty_simple": -2.2958961048432496, + "percent_correct": 0.9085365853658537, + "n_responses": 492 + }, + { + "problem_id": 162174, + "difficulty_1pl": 1.7120776176452637, + "difficulty_2pl": 0.13555879890918732, + "discrimination_2pl": 0.20237144827842712, + "difficulty_simple": 0.0088496152769826, + "percent_correct": 0.497787610619469, + "n_responses": 452 + }, + { + "problem_id": 162344, + "difficulty_1pl": 1.3545780181884766, + "difficulty_2pl": 0.08569815754890442, + "discrimination_2pl": 0.22526784241199493, + "difficulty_simple": 0.05129329438755048, + "percent_correct": 0.48717948717948717, + "n_responses": 390 + }, + { + "problem_id": 162490, + "difficulty_1pl": 0.44518113136291504, + "difficulty_2pl": -0.0507221519947052, + "discrimination_2pl": 0.3124588429927826, + "difficulty_simple": -0.32925849929752143, + "percent_correct": 0.5815789473684211, + "n_responses": 380 + }, + { + "problem_id": 162661, + "difficulty_1pl": 8.52101993560791, + "difficulty_2pl": -0.06398075819015503, + "discrimination_2pl": 0.021158771589398384, + "difficulty_simple": 1.0986122886681098, + "percent_correct": 0.25, + "n_responses": 376 + }, + { + "problem_id": 162829, + "difficulty_1pl": 4.524392604827881, + "difficulty_2pl": 0.0890239030122757, + "discrimination_2pl": 0.05247912555932999, + "difficulty_simple": 0.5961549145726356, + "percent_correct": 0.35522388059701493, + "n_responses": 335 + }, + { + "problem_id": 32363, + "difficulty_1pl": -6.773706436157227, + "difficulty_2pl": -0.2547167241573334, + "discrimination_2pl": 0.34840965270996094, + "difficulty_simple": -1.5968591302272406, + "percent_correct": 0.8315789473684211, + "n_responses": 95 + }, + { + "problem_id": 32600, + "difficulty_1pl": -3.3315351009368896, + "difficulty_2pl": -0.00861414521932602, + "discrimination_2pl": 0.33621034026145935, + "difficulty_simple": -1.3862943611198908, + "percent_correct": 0.8, + "n_responses": 95 + }, + { + "problem_id": 353991, + "difficulty_1pl": -8.028596878051758, + "difficulty_2pl": -0.24891848862171173, + "discrimination_2pl": 0.4557231366634369, + "difficulty_simple": -1.8653712865713012, + "percent_correct": 0.8659217877094972, + "n_responses": 358 + }, + { + "problem_id": 354272, + "difficulty_1pl": -8.61591911315918, + "difficulty_2pl": -0.3189355731010437, + "discrimination_2pl": 0.5162354111671448, + "difficulty_simple": -1.711459526826412, + "percent_correct": 0.8470254957507082, + "n_responses": 353 + }, + { + "problem_id": 355074, + "difficulty_1pl": 0.7032229900360107, + "difficulty_2pl": 0.05551408976316452, + "discrimination_2pl": 0.3068370223045349, + "difficulty_simple": -0.3772942311414679, + "percent_correct": 0.5932203389830508, + "n_responses": 354 + }, + { + "problem_id": 355272, + "difficulty_1pl": -14.171940803527832, + "difficulty_2pl": -0.35810258984565735, + "discrimination_2pl": 0.582668662071228, + "difficulty_simple": -2.3405643410592623, + "percent_correct": 0.9121813031161473, + "n_responses": 353 + }, + { + "problem_id": 355425, + "difficulty_1pl": -5.421817302703857, + "difficulty_2pl": 0.14804953336715698, + "discrimination_2pl": 0.4545128643512726, + "difficulty_simple": -0.9951991932946789, + "percent_correct": 0.7301136363636364, + "n_responses": 352 + }, + { + "problem_id": 355634, + "difficulty_1pl": -8.27554988861084, + "difficulty_2pl": -0.3260389268398285, + "discrimination_2pl": 0.5471727848052979, + "difficulty_simple": -1.9169226121820613, + "percent_correct": 0.8717948717948718, + "n_responses": 351 + }, + { + "problem_id": 355769, + "difficulty_1pl": -3.544355869293213, + "difficulty_2pl": -0.11930953711271286, + "discrimination_2pl": 0.4069584310054779, + "difficulty_simple": -1.0203600917683617, + "percent_correct": 0.7350427350427351, + "n_responses": 351 + }, + { + "problem_id": 355920, + "difficulty_1pl": 0.2245979756116867, + "difficulty_2pl": -0.010263612493872643, + "discrimination_2pl": 0.20523594319820404, + "difficulty_simple": -0.38171102210005736, + "percent_correct": 0.5942857142857143, + "n_responses": 350 + }, + { + "problem_id": 356075, + "difficulty_1pl": -2.1805260181427, + "difficulty_2pl": -0.011708674021065235, + "discrimination_2pl": 0.32945898175239563, + "difficulty_simple": -0.6717330860561287, + "percent_correct": 0.66189111747851, + "n_responses": 349 + }, + { + "problem_id": 356245, + "difficulty_1pl": -2.4441661834716797, + "difficulty_2pl": -0.05516105517745018, + "discrimination_2pl": 0.3170187771320343, + "difficulty_simple": -0.7453329337305152, + "percent_correct": 0.6781609195402298, + "n_responses": 348 + }, + { + "problem_id": 356718, + "difficulty_1pl": -11.727713584899902, + "difficulty_2pl": -0.31357795000076294, + "discrimination_2pl": 0.6402391791343689, + "difficulty_simple": -2.1102132003465894, + "percent_correct": 0.8918918918918919, + "n_responses": 333 + }, + { + "problem_id": 356901, + "difficulty_1pl": -19.482675552368164, + "difficulty_2pl": -0.4460234045982361, + "discrimination_2pl": 0.673223078250885, + "difficulty_simple": -2.747270914255492, + "percent_correct": 0.9397590361445783, + "n_responses": 332 + }, + { + "problem_id": 357082, + "difficulty_1pl": -11.71017837524414, + "difficulty_2pl": -0.2828593850135803, + "discrimination_2pl": 0.6456570029258728, + "difficulty_simple": -2.2731230602637287, + "percent_correct": 0.9066265060240963, + "n_responses": 332 + }, + { + "problem_id": 357261, + "difficulty_1pl": -7.715497970581055, + "difficulty_2pl": -0.18139415979385376, + "discrimination_2pl": 0.45691242814064026, + "difficulty_simple": -1.4638525954657653, + "percent_correct": 0.8121212121212121, + "n_responses": 330 + }, + { + "problem_id": 354627, + "difficulty_1pl": -1.1411410570144653, + "difficulty_2pl": 0.12276586890220642, + "discrimination_2pl": 0.4177147150039673, + "difficulty_simple": -0.5972992217698176, + "percent_correct": 0.6450381679389313, + "n_responses": 262 + }, + { + "problem_id": 354813, + "difficulty_1pl": 2.2898166179656982, + "difficulty_2pl": 0.08845024555921555, + "discrimination_2pl": 0.11721785366535187, + "difficulty_simple": 0.29213642280116114, + "percent_correct": 0.42748091603053434, + "n_responses": 262 + }, + { + "problem_id": 269076, + "difficulty_1pl": -0.6862702369689941, + "difficulty_2pl": -0.06249048933386803, + "discrimination_2pl": 0.2126050889492035, + "difficulty_simple": -0.18232155679395445, + "percent_correct": 0.5454545454545454, + "n_responses": 308 + }, + { + "problem_id": 22103, + "difficulty_1pl": 3.4674232006073, + "difficulty_2pl": -0.0033257524482905865, + "discrimination_2pl": 0.060922008007764816, + "difficulty_simple": 0.5908683314395271, + "percent_correct": 0.3564356435643564, + "n_responses": 101 + }, + { + "problem_id": 238849, + "difficulty_1pl": -0.6706526279449463, + "difficulty_2pl": 0.03832189738750458, + "discrimination_2pl": 0.1682821363210678, + "difficulty_simple": -0.34662460808523093, + "percent_correct": 0.5857988165680473, + "n_responses": 169 + }, + { + "problem_id": 39360, + "difficulty_1pl": -6.8852715492248535, + "difficulty_2pl": -0.11001545190811157, + "discrimination_2pl": 0.3088472783565521, + "difficulty_simple": -1.6670077642555783, + "percent_correct": 0.8411764705882353, + "n_responses": 170 + }, + { + "problem_id": 39707, + "difficulty_1pl": -5.900128364562988, + "difficulty_2pl": -0.02944668009877205, + "discrimination_2pl": 0.36452195048332214, + "difficulty_simple": -1.4170660197866447, + "percent_correct": 0.8048780487804879, + "n_responses": 164 + }, + { + "problem_id": 215871, + "difficulty_1pl": -3.972282886505127, + "difficulty_2pl": -0.15353085100650787, + "discrimination_2pl": 0.3062129616737366, + "difficulty_simple": -1.3300546427970144, + "percent_correct": 0.7908496732026143, + "n_responses": 153 + }, + { + "problem_id": 325378, + "difficulty_1pl": -3.348468780517578, + "difficulty_2pl": -0.04025501012802124, + "discrimination_2pl": 0.3248618245124817, + "difficulty_simple": -1.007640510462383, + "percent_correct": 0.7325581395348837, + "n_responses": 172 + }, + { + "problem_id": 198429, + "difficulty_1pl": -12.988250732421875, + "difficulty_2pl": -0.2864319384098053, + "discrimination_2pl": 0.5472903251647949, + "difficulty_simple": -1.8578992717326004, + "percent_correct": 0.8650519031141869, + "n_responses": 289 + }, + { + "problem_id": 198552, + "difficulty_1pl": 0.9527249336242676, + "difficulty_2pl": 0.009074818342924118, + "discrimination_2pl": 0.16881704330444336, + "difficulty_simple": -0.014084739881738972, + "percent_correct": 0.5035211267605634, + "n_responses": 284 + }, + { + "problem_id": 106396, + "difficulty_1pl": -1.5059975385665894, + "difficulty_2pl": 0.04561913013458252, + "discrimination_2pl": 0.15530447661876678, + "difficulty_simple": -0.32158362412746233, + "percent_correct": 0.5797101449275363, + "n_responses": 138 + }, + { + "problem_id": 71072, + "difficulty_1pl": -2.6952292919158936, + "difficulty_2pl": 0.012990724295377731, + "discrimination_2pl": 0.2654986083507538, + "difficulty_simple": -0.4382549309311551, + "percent_correct": 0.6078431372549019, + "n_responses": 102 + }, + { + "problem_id": 159519, + "difficulty_1pl": 0.9882780909538269, + "difficulty_2pl": 0.1091582328081131, + "discrimination_2pl": 0.12387362867593765, + "difficulty_simple": 0.0, + "percent_correct": 0.5, + "n_responses": 284 + }, + { + "problem_id": 3566, + "difficulty_1pl": 5.105302333831787, + "difficulty_2pl": -0.07906840741634369, + "discrimination_2pl": 0.055422160774469376, + "difficulty_simple": 0.6253245842211842, + "percent_correct": 0.3485714285714286, + "n_responses": 175 + }, + { + "problem_id": 3705, + "difficulty_1pl": -0.4752785563468933, + "difficulty_2pl": 0.07077983021736145, + "discrimination_2pl": 0.2479858249425888, + "difficulty_simple": -0.4439313889359607, + "percent_correct": 0.6091954022988506, + "n_responses": 174 + }, + { + "problem_id": 21754, + "difficulty_1pl": -6.8086748123168945, + "difficulty_2pl": 0.1150129958987236, + "discrimination_2pl": 0.2631374001502991, + "difficulty_simple": -1.4781019103730133, + "percent_correct": 0.8142857142857143, + "n_responses": 70 + }, + { + "problem_id": 21866, + "difficulty_1pl": 1.40408194065094, + "difficulty_2pl": 0.09249190241098404, + "discrimination_2pl": 0.10534292459487915, + "difficulty_simple": -0.0571584138399484, + "percent_correct": 0.5142857142857142, + "n_responses": 70 + }, + { + "problem_id": 180839, + "difficulty_1pl": 4.017955780029297, + "difficulty_2pl": -0.0017601433210074902, + "discrimination_2pl": 0.11929238587617874, + "difficulty_simple": 0.36856055117271347, + "percent_correct": 0.4088888888888889, + "n_responses": 450 + }, + { + "problem_id": 185871, + "difficulty_1pl": -6.933138370513916, + "difficulty_2pl": -0.107977956533432, + "discrimination_2pl": 0.36892589926719666, + "difficulty_simple": -1.5673896761906012, + "percent_correct": 0.8274111675126904, + "n_responses": 197 + }, + { + "problem_id": 186153, + "difficulty_1pl": -0.6953522562980652, + "difficulty_2pl": -0.03818307816982269, + "discrimination_2pl": 0.1593649983406067, + "difficulty_simple": -0.35914103643392586, + "percent_correct": 0.5888324873096447, + "n_responses": 197 + }, + { + "problem_id": 308414, + "difficulty_1pl": -0.35373973846435547, + "difficulty_2pl": 0.12466874718666077, + "discrimination_2pl": 0.14437785744667053, + "difficulty_simple": -0.44685032427101884, + "percent_correct": 0.6098901098901099, + "n_responses": 182 + }, + { + "problem_id": 252396, + "difficulty_1pl": 0.2003406435251236, + "difficulty_2pl": -0.045098256319761276, + "discrimination_2pl": 0.21316859126091003, + "difficulty_simple": -0.5212969236332861, + "percent_correct": 0.6274509803921569, + "n_responses": 102 + }, + { + "problem_id": 6560, + "difficulty_1pl": -2.183243751525879, + "difficulty_2pl": -0.04017205908894539, + "discrimination_2pl": 0.18307392299175262, + "difficulty_simple": -0.9267620317414502, + "percent_correct": 0.7164179104477612, + "n_responses": 67 + }, + { + "problem_id": 6843, + "difficulty_1pl": 8.211606979370117, + "difficulty_2pl": -0.16836780309677124, + "discrimination_2pl": 0.0288708359003067, + "difficulty_simple": 0.6931471805599455, + "percent_correct": 0.3333333333333333, + "n_responses": 66 + }, + { + "problem_id": 7018, + "difficulty_1pl": 2.055110216140747, + "difficulty_2pl": 0.08987155556678772, + "discrimination_2pl": 0.09584354609251022, + "difficulty_simple": -0.4054651081081643, + "percent_correct": 0.6, + "n_responses": 65 + }, + { + "problem_id": 7254, + "difficulty_1pl": 1.2536263465881348, + "difficulty_2pl": -0.026652226224541664, + "discrimination_2pl": 0.13353310525417328, + "difficulty_simple": -0.6021754023542187, + "percent_correct": 0.6461538461538462, + "n_responses": 65 + }, + { + "problem_id": 7452, + "difficulty_1pl": 1.1757065057754517, + "difficulty_2pl": -0.0009492231183685362, + "discrimination_2pl": 0.11476510018110275, + "difficulty_simple": -0.6701576623352465, + "percent_correct": 0.6615384615384615, + "n_responses": 65 + }, + { + "problem_id": 7682, + "difficulty_1pl": 5.600433826446533, + "difficulty_2pl": 0.08563260734081268, + "discrimination_2pl": 0.023258373141288757, + "difficulty_simple": 0.47000362924573563, + "percent_correct": 0.38461538461538464, + "n_responses": 65 + }, + { + "problem_id": 108354, + "difficulty_1pl": 2.5622997283935547, + "difficulty_2pl": 0.045368969440460205, + "discrimination_2pl": 0.0360717810690403, + "difficulty_simple": 0.3008923041885873, + "percent_correct": 0.4253393665158371, + "n_responses": 221 + }, + { + "problem_id": 108478, + "difficulty_1pl": -1.7283152341842651, + "difficulty_2pl": -0.12264455109834671, + "discrimination_2pl": 0.2808377742767334, + "difficulty_simple": -0.5524472984568102, + "percent_correct": 0.634703196347032, + "n_responses": 219 + }, + { + "problem_id": 108169, + "difficulty_1pl": -3.635648012161255, + "difficulty_2pl": 0.04455559700727463, + "discrimination_2pl": 0.31427818536758423, + "difficulty_simple": -0.9453719411749969, + "percent_correct": 0.7201834862385321, + "n_responses": 218 + }, + { + "problem_id": 108047, + "difficulty_1pl": -1.4821017980575562, + "difficulty_2pl": -0.1380857229232788, + "discrimination_2pl": 0.2595382034778595, + "difficulty_simple": -0.7479554170549405, + "percent_correct": 0.6787330316742082, + "n_responses": 221 + }, + { + "problem_id": 306997, + "difficulty_1pl": 3.6095917224884033, + "difficulty_2pl": 0.06802214682102203, + "discrimination_2pl": 0.04597393423318863, + "difficulty_simple": 0.49381427793945404, + "percent_correct": 0.3789954337899543, + "n_responses": 219 + }, + { + "problem_id": 295788, + "difficulty_1pl": -1.1661407947540283, + "difficulty_2pl": 0.07344307005405426, + "discrimination_2pl": 0.16522730886936188, + "difficulty_simple": -0.4462871026284195, + "percent_correct": 0.6097560975609756, + "n_responses": 82 + }, + { + "problem_id": 295992, + "difficulty_1pl": -0.8356791138648987, + "difficulty_2pl": 0.02513711526989937, + "discrimination_2pl": 0.13444416224956512, + "difficulty_simple": -0.5306282510621706, + "percent_correct": 0.6296296296296297, + "n_responses": 81 + }, + { + "problem_id": 137959, + "difficulty_1pl": -3.9118258953094482, + "difficulty_2pl": 0.0725003033876419, + "discrimination_2pl": 0.20152251422405243, + "difficulty_simple": -0.6613984822453648, + "percent_correct": 0.6595744680851063, + "n_responses": 94 + }, + { + "problem_id": 405944, + "difficulty_1pl": 2.7631611824035645, + "difficulty_2pl": 0.2409915179014206, + "discrimination_2pl": 0.1405222862958908, + "difficulty_simple": 0.1844837197984497, + "percent_correct": 0.4540094339622642, + "n_responses": 848 + }, + { + "problem_id": 394101, + "difficulty_1pl": -3.5087950229644775, + "difficulty_2pl": -0.4404353201389313, + "discrimination_2pl": 0.4336661398410797, + "difficulty_simple": -1.1515092347901954, + "percent_correct": 0.7597864768683275, + "n_responses": 1124 + }, + { + "problem_id": 55545, + "difficulty_1pl": 4.727267265319824, + "difficulty_2pl": -0.04595016688108444, + "discrimination_2pl": 0.03121117688715458, + "difficulty_simple": 0.39416555285423094, + "percent_correct": 0.40271493212669685, + "n_responses": 221 + }, + { + "problem_id": 558559, + "difficulty_1pl": 1.7672187089920044, + "difficulty_2pl": 0.028897950425744057, + "discrimination_2pl": 0.10850074142217636, + "difficulty_simple": -0.02919915469226224, + "percent_correct": 0.5072992700729927, + "n_responses": 274 + }, + { + "problem_id": 370138, + "difficulty_1pl": -1.7707574367523193, + "difficulty_2pl": -0.11725572496652603, + "discrimination_2pl": 0.3154012858867645, + "difficulty_simple": -0.9946225751440619, + "percent_correct": 0.73, + "n_responses": 200 + }, + { + "problem_id": 370357, + "difficulty_1pl": -8.259191513061523, + "difficulty_2pl": -0.07577043771743774, + "discrimination_2pl": 0.37101617455482483, + "difficulty_simple": -1.2172180310759566, + "percent_correct": 0.7715736040609137, + "n_responses": 197 + }, + { + "problem_id": 370431, + "difficulty_1pl": -5.49451208114624, + "difficulty_2pl": -0.09082382172346115, + "discrimination_2pl": 0.39324307441711426, + "difficulty_simple": -1.4642559025896025, + "percent_correct": 0.8121827411167513, + "n_responses": 197 + }, + { + "problem_id": 370906, + "difficulty_1pl": -1.6824184656143188, + "difficulty_2pl": 0.06523696333169937, + "discrimination_2pl": 0.31552866101264954, + "difficulty_simple": -0.8011358186240409, + "percent_correct": 0.6902173913043478, + "n_responses": 184 + }, + { + "problem_id": 371046, + "difficulty_1pl": -2.1038639545440674, + "difficulty_2pl": -0.09224089980125427, + "discrimination_2pl": 0.3466488718986511, + "difficulty_simple": -1.1574527886910433, + "percent_correct": 0.7608695652173914, + "n_responses": 184 + }, + { + "problem_id": 371156, + "difficulty_1pl": 0.3380218744277954, + "difficulty_2pl": -0.02139194682240486, + "discrimination_2pl": 0.13766701519489288, + "difficulty_simple": -0.18632957819149362, + "percent_correct": 0.546448087431694, + "n_responses": 183 + }, + { + "problem_id": 92124, + "difficulty_1pl": -8.451522827148438, + "difficulty_2pl": -0.6664366722106934, + "discrimination_2pl": 0.5689423084259033, + "difficulty_simple": -1.8038515149930834, + "percent_correct": 0.8586171310629515, + "n_responses": 969 + }, + { + "problem_id": 92479, + "difficulty_1pl": -10.453166007995605, + "difficulty_2pl": -0.5435400605201721, + "discrimination_2pl": 0.5791463255882263, + "difficulty_simple": -1.9483491746546724, + "percent_correct": 0.8752665245202559, + "n_responses": 938 + }, + { + "problem_id": 92835, + "difficulty_1pl": -7.813069820404053, + "difficulty_2pl": -0.36398565769195557, + "discrimination_2pl": 0.5096613764762878, + "difficulty_simple": -1.4884520788731936, + "percent_correct": 0.815845824411135, + "n_responses": 934 + }, + { + "problem_id": 124027, + "difficulty_1pl": -2.217177152633667, + "difficulty_2pl": -0.15355756878852844, + "discrimination_2pl": 0.32873085141181946, + "difficulty_simple": -0.9975161717967411, + "percent_correct": 0.7305699481865285, + "n_responses": 193 + }, + { + "problem_id": 124302, + "difficulty_1pl": -1.6094367504119873, + "difficulty_2pl": -0.1062990352511406, + "discrimination_2pl": 0.23294177651405334, + "difficulty_simple": -0.9088557533866368, + "percent_correct": 0.7127659574468085, + "n_responses": 188 + }, + { + "problem_id": 171627, + "difficulty_1pl": -0.5815290212631226, + "difficulty_2pl": 0.0009230971336364746, + "discrimination_2pl": 0.171387180685997, + "difficulty_simple": -0.1424203400417685, + "percent_correct": 0.5355450236966824, + "n_responses": 211 + }, + { + "problem_id": 77888, + "difficulty_1pl": -1.9070422649383545, + "difficulty_2pl": -0.0532204806804657, + "discrimination_2pl": 0.2813869118690491, + "difficulty_simple": -0.5458224658030868, + "percent_correct": 0.6331658291457286, + "n_responses": 398 + }, + { + "problem_id": 133100, + "difficulty_1pl": -3.3894832134246826, + "difficulty_2pl": 0.08899644762277603, + "discrimination_2pl": 0.3152770400047302, + "difficulty_simple": -1.1216018068928086, + "percent_correct": 0.7542857142857143, + "n_responses": 175 + }, + { + "problem_id": 85020, + "difficulty_1pl": 1.8591982126235962, + "difficulty_2pl": -0.010252801701426506, + "discrimination_2pl": 0.13746079802513123, + "difficulty_simple": 0.06062462181643484, + "percent_correct": 0.48484848484848486, + "n_responses": 66 + }, + { + "problem_id": 85142, + "difficulty_1pl": -2.019681453704834, + "difficulty_2pl": 0.07413343340158463, + "discrimination_2pl": 0.19511547684669495, + "difficulty_simple": -0.49469624183610705, + "percent_correct": 0.6212121212121212, + "n_responses": 66 + }, + { + "problem_id": 85266, + "difficulty_1pl": -11.136214256286621, + "difficulty_2pl": -0.08004570007324219, + "discrimination_2pl": 0.29320240020751953, + "difficulty_simple": -1.7227665977411037, + "percent_correct": 0.8484848484848485, + "n_responses": 66 + }, + { + "problem_id": 452369, + "difficulty_1pl": -19.358713150024414, + "difficulty_2pl": -0.5234148502349854, + "discrimination_2pl": 0.48395073413848877, + "difficulty_simple": -3.0009816294401337, + "percent_correct": 0.9526184538653366, + "n_responses": 401 + }, + { + "problem_id": 347917, + "difficulty_1pl": -0.09636079519987106, + "difficulty_2pl": -0.10822389274835587, + "discrimination_2pl": 0.19197794795036316, + "difficulty_simple": -0.2134190014222151, + "percent_correct": 0.5531531531531532, + "n_responses": 1110 + }, + { + "problem_id": 96695, + "difficulty_1pl": -5.676274299621582, + "difficulty_2pl": -0.4692431390285492, + "discrimination_2pl": 0.4454766511917114, + "difficulty_simple": -1.1827919822464892, + "percent_correct": 0.7654494382022472, + "n_responses": 1424 + }, + { + "problem_id": 37464, + "difficulty_1pl": -0.7330460548400879, + "difficulty_2pl": -0.01663381978869438, + "discrimination_2pl": 0.2976529896259308, + "difficulty_simple": -0.41602486832316665, + "percent_correct": 0.6025316455696202, + "n_responses": 395 + }, + { + "problem_id": 207470, + "difficulty_1pl": -2.275968551635742, + "difficulty_2pl": -0.05742910876870155, + "discrimination_2pl": 0.1356315016746521, + "difficulty_simple": -0.677398823591806, + "percent_correct": 0.6631578947368421, + "n_responses": 190 + }, + { + "problem_id": 43505, + "difficulty_1pl": -1.1069653034210205, + "difficulty_2pl": 0.013274824246764183, + "discrimination_2pl": 0.13755972683429718, + "difficulty_simple": -0.7997569156182036, + "percent_correct": 0.689922480620155, + "n_responses": 129 + }, + { + "problem_id": 37467, + "difficulty_1pl": 0.33096373081207275, + "difficulty_2pl": -0.0946272760629654, + "discrimination_2pl": 0.1579778641462326, + "difficulty_simple": 0.09309042306601203, + "percent_correct": 0.47674418604651164, + "n_responses": 172 + }, + { + "problem_id": 37832, + "difficulty_1pl": 3.1145451068878174, + "difficulty_2pl": -0.01240596640855074, + "discrimination_2pl": 0.05925438180565834, + "difficulty_simple": 0.8671004876833833, + "percent_correct": 0.2958579881656805, + "n_responses": 169 + }, + { + "problem_id": 14257, + "difficulty_1pl": -12.674572944641113, + "difficulty_2pl": -0.22946207225322723, + "discrimination_2pl": 0.5830644965171814, + "difficulty_simple": -1.7083778602890038, + "percent_correct": 0.8466257668711656, + "n_responses": 815 + }, + { + "problem_id": 107470, + "difficulty_1pl": -3.376971960067749, + "difficulty_2pl": -0.020809132605791092, + "discrimination_2pl": 0.17516151070594788, + "difficulty_simple": -0.7985076962177718, + "percent_correct": 0.6896551724137931, + "n_responses": 87 + }, + { + "problem_id": 107783, + "difficulty_1pl": 1.4340572357177734, + "difficulty_2pl": 0.14867211878299713, + "discrimination_2pl": 0.05553719773888588, + "difficulty_simple": 0.28090238546640217, + "percent_correct": 0.43023255813953487, + "n_responses": 86 + }, + { + "problem_id": 91684, + "difficulty_1pl": -6.739068984985352, + "difficulty_2pl": 0.008490558713674545, + "discrimination_2pl": 0.32599562406539917, + "difficulty_simple": -1.170932950247736, + "percent_correct": 0.7633136094674556, + "n_responses": 169 + }, + { + "problem_id": 91811, + "difficulty_1pl": -1.7972476482391357, + "difficulty_2pl": -0.147482767701149, + "discrimination_2pl": 0.3269304633140564, + "difficulty_simple": -0.8956714446714192, + "percent_correct": 0.7100591715976331, + "n_responses": 169 + }, + { + "problem_id": 91913, + "difficulty_1pl": 1.2139278650283813, + "difficulty_2pl": -0.1268301010131836, + "discrimination_2pl": 0.06400081515312195, + "difficulty_simple": 0.16705408466316643, + "percent_correct": 0.4583333333333333, + "n_responses": 168 + }, + { + "problem_id": 53422, + "difficulty_1pl": 0.4884530007839203, + "difficulty_2pl": 0.012441529892385006, + "discrimination_2pl": 0.19585327804088593, + "difficulty_simple": -0.1361321743245799, + "percent_correct": 0.5339805825242718, + "n_responses": 103 + }, + { + "problem_id": 53714, + "difficulty_1pl": -1.4541521072387695, + "difficulty_2pl": -0.0068663060665130615, + "discrimination_2pl": 0.16530200839042664, + "difficulty_simple": -0.46357273891544515, + "percent_correct": 0.6138613861386139, + "n_responses": 101 + }, + { + "problem_id": 189375, + "difficulty_1pl": 4.3716301918029785, + "difficulty_2pl": 0.09359386563301086, + "discrimination_2pl": 0.030492525547742844, + "difficulty_simple": 0.8283219589281978, + "percent_correct": 0.304, + "n_responses": 375 + }, + { + "problem_id": 127860, + "difficulty_1pl": -2.451690435409546, + "difficulty_2pl": 0.0581364743411541, + "discrimination_2pl": 0.16929864883422852, + "difficulty_simple": -0.4984415645662689, + "percent_correct": 0.622093023255814, + "n_responses": 172 + }, + { + "problem_id": 128010, + "difficulty_1pl": -2.48382568359375, + "difficulty_2pl": -0.009798061102628708, + "discrimination_2pl": 0.2069958746433258, + "difficulty_simple": -0.8842024173226547, + "percent_correct": 0.7076923076923077, + "n_responses": 130 + }, + { + "problem_id": 128126, + "difficulty_1pl": -3.2629201412200928, + "difficulty_2pl": -0.15356482565402985, + "discrimination_2pl": 0.08954519778490067, + "difficulty_simple": -0.6140098600012213, + "percent_correct": 0.648854961832061, + "n_responses": 131 + }, + { + "problem_id": 127489, + "difficulty_1pl": -1.6866977214813232, + "difficulty_2pl": 0.03649893403053284, + "discrimination_2pl": 0.20850908756256104, + "difficulty_simple": -0.4595323293784402, + "percent_correct": 0.6129032258064516, + "n_responses": 186 + }, + { + "problem_id": 348598, + "difficulty_1pl": -8.727860450744629, + "difficulty_2pl": -0.051366399973630905, + "discrimination_2pl": 0.2574644684791565, + "difficulty_simple": -1.7047480922384253, + "percent_correct": 0.8461538461538461, + "n_responses": 117 + }, + { + "problem_id": 348711, + "difficulty_1pl": -14.566598892211914, + "difficulty_2pl": -0.04850517213344574, + "discrimination_2pl": 0.368345707654953, + "difficulty_simple": -2.611906340549308, + "percent_correct": 0.9316239316239316, + "n_responses": 117 + }, + { + "problem_id": 348818, + "difficulty_1pl": -10.04376220703125, + "difficulty_2pl": -0.09666066616773605, + "discrimination_2pl": 0.23604406416416168, + "difficulty_simple": -1.7578579175523734, + "percent_correct": 0.8529411764705882, + "n_responses": 102 + }, + { + "problem_id": 347269, + "difficulty_1pl": -3.32637095451355, + "difficulty_2pl": -0.08133848756551743, + "discrimination_2pl": 0.26736709475517273, + "difficulty_simple": -1.0898016589859552, + "percent_correct": 0.7483443708609272, + "n_responses": 151 + }, + { + "problem_id": 347969, + "difficulty_1pl": -0.10825999081134796, + "difficulty_2pl": 0.12646250426769257, + "discrimination_2pl": 0.12566426396369934, + "difficulty_simple": -0.44991687067899794, + "percent_correct": 0.6106194690265486, + "n_responses": 113 + }, + { + "problem_id": 28730, + "difficulty_1pl": -2.295276165008545, + "difficulty_2pl": 0.09650667756795883, + "discrimination_2pl": 0.45962950587272644, + "difficulty_simple": -0.6961248502538697, + "percent_correct": 0.6673280423280423, + "n_responses": 1512 + }, + { + "problem_id": 52116, + "difficulty_1pl": 0.40227264165878296, + "difficulty_2pl": 0.11687065660953522, + "discrimination_2pl": 0.1583891212940216, + "difficulty_simple": -0.3053816495511821, + "percent_correct": 0.5757575757575758, + "n_responses": 66 + }, + { + "problem_id": 51828, + "difficulty_1pl": 7.123816967010498, + "difficulty_2pl": 0.052636273205280304, + "discrimination_2pl": 0.04458640515804291, + "difficulty_simple": 0.8754687373538999, + "percent_correct": 0.29411764705882354, + "n_responses": 68 + }, + { + "problem_id": 51489, + "difficulty_1pl": 0.47845280170440674, + "difficulty_2pl": 0.10863447189331055, + "discrimination_2pl": 0.1443190723657608, + "difficulty_simple": -0.26236426446749084, + "percent_correct": 0.5652173913043478, + "n_responses": 69 + }, + { + "problem_id": 557307, + "difficulty_1pl": -0.07658417522907257, + "difficulty_2pl": 0.021670356392860413, + "discrimination_2pl": 0.13364174962043762, + "difficulty_simple": -0.2214326869105802, + "percent_correct": 0.5551330798479087, + "n_responses": 263 + }, + { + "problem_id": 557481, + "difficulty_1pl": 2.6554458141326904, + "difficulty_2pl": -0.14171144366264343, + "discrimination_2pl": 0.04113517329096794, + "difficulty_simple": 0.450201001949556, + "percent_correct": 0.3893129770992366, + "n_responses": 262 + }, + { + "problem_id": 558257, + "difficulty_1pl": 2.699143648147583, + "difficulty_2pl": -0.0229872427880764, + "discrimination_2pl": 0.043776534497737885, + "difficulty_simple": 0.5493592877682336, + "percent_correct": 0.3660130718954248, + "n_responses": 153 + }, + { + "problem_id": 552378, + "difficulty_1pl": -1.4624457359313965, + "difficulty_2pl": 0.00604484835639596, + "discrimination_2pl": 0.4337924122810364, + "difficulty_simple": -0.6286086594223742, + "percent_correct": 0.6521739130434783, + "n_responses": 805 + }, + { + "problem_id": 197850, + "difficulty_1pl": 2.68424916267395, + "difficulty_2pl": 0.05786437541246414, + "discrimination_2pl": 0.135950967669487, + "difficulty_simple": 0.2727056182622237, + "percent_correct": 0.4322429906542056, + "n_responses": 428 + }, + { + "problem_id": 28352, + "difficulty_1pl": 1.1026458740234375, + "difficulty_2pl": -0.09531834721565247, + "discrimination_2pl": 0.05568304285407066, + "difficulty_simple": 0.036533743332455855, + "percent_correct": 0.4908675799086758, + "n_responses": 438 + }, + { + "problem_id": 3724, + "difficulty_1pl": -0.8055640459060669, + "difficulty_2pl": 0.0008329963311553001, + "discrimination_2pl": 0.24081215262413025, + "difficulty_simple": -0.4245133030788586, + "percent_correct": 0.6045627376425855, + "n_responses": 263 + }, + { + "problem_id": 2516, + "difficulty_1pl": -0.48416560888290405, + "difficulty_2pl": 0.0760321095585823, + "discrimination_2pl": 0.12143290042877197, + "difficulty_simple": -0.35105168638437034, + "percent_correct": 0.5868725868725869, + "n_responses": 259 + }, + { + "problem_id": 3108, + "difficulty_1pl": 3.976144790649414, + "difficulty_2pl": 0.0782545879483223, + "discrimination_2pl": 0.038120537996292114, + "difficulty_simple": 0.6480267452794758, + "percent_correct": 0.3434343434343434, + "n_responses": 198 + }, + { + "problem_id": 3216, + "difficulty_1pl": 0.6488272547721863, + "difficulty_2pl": 0.10555054992437363, + "discrimination_2pl": 0.11262908577919006, + "difficulty_simple": -0.010152371464017849, + "percent_correct": 0.5025380710659898, + "n_responses": 197 + }, + { + "problem_id": 3378, + "difficulty_1pl": 2.9201114177703857, + "difficulty_2pl": -0.020618008449673653, + "discrimination_2pl": 0.02422237955033779, + "difficulty_simple": 0.4224146664219374, + "percent_correct": 0.39593908629441626, + "n_responses": 197 + }, + { + "problem_id": 544776, + "difficulty_1pl": 7.0740532875061035, + "difficulty_2pl": -0.03239264339208603, + "discrimination_2pl": 0.021268274635076523, + "difficulty_simple": 0.7731898882334819, + "percent_correct": 0.3157894736842105, + "n_responses": 114 + }, + { + "problem_id": 544905, + "difficulty_1pl": 2.6554412841796875, + "difficulty_2pl": -0.02240450493991375, + "discrimination_2pl": 0.03951380029320717, + "difficulty_simple": 0.4328640822962789, + "percent_correct": 0.39344262295081966, + "n_responses": 122 + }, + { + "problem_id": 545012, + "difficulty_1pl": 2.4627575874328613, + "difficulty_2pl": 0.15512816607952118, + "discrimination_2pl": 0.03727008029818535, + "difficulty_simple": 0.09015109699429748, + "percent_correct": 0.4774774774774775, + "n_responses": 111 + }, + { + "problem_id": 62717, + "difficulty_1pl": 5.896100044250488, + "difficulty_2pl": -0.10308890044689178, + "discrimination_2pl": 0.07858718186616898, + "difficulty_simple": 0.7695201593445194, + "percent_correct": 0.3165829145728643, + "n_responses": 199 + }, + { + "problem_id": 102028, + "difficulty_1pl": -8.550911903381348, + "difficulty_2pl": -0.4116535782814026, + "discrimination_2pl": 0.5534651279449463, + "difficulty_simple": -1.4707230407366814, + "percent_correct": 0.8131672597864769, + "n_responses": 1124 + }, + { + "problem_id": 36419, + "difficulty_1pl": -5.101190567016602, + "difficulty_2pl": -0.2622157633304596, + "discrimination_2pl": 0.38875192403793335, + "difficulty_simple": -1.188763385662407, + "percent_correct": 0.7665198237885462, + "n_responses": 227 + }, + { + "problem_id": 138414, + "difficulty_1pl": -8.709197998046875, + "difficulty_2pl": -0.06972797960042953, + "discrimination_2pl": 0.3462696671485901, + "difficulty_simple": -1.7211419020141019, + "percent_correct": 0.8482758620689655, + "n_responses": 145 + }, + { + "problem_id": 139112, + "difficulty_1pl": 0.8618406057357788, + "difficulty_2pl": -0.012360546737909317, + "discrimination_2pl": 0.16517269611358643, + "difficulty_simple": -0.33647223662121306, + "percent_correct": 0.5833333333333334, + "n_responses": 192 + }, + { + "problem_id": 138970, + "difficulty_1pl": -5.540904521942139, + "difficulty_2pl": -0.07518613338470459, + "discrimination_2pl": 0.4058521091938019, + "difficulty_simple": -1.466337068793427, + "percent_correct": 0.8125, + "n_responses": 192 + }, + { + "problem_id": 205649, + "difficulty_1pl": -0.22668126225471497, + "difficulty_2pl": -0.10129238665103912, + "discrimination_2pl": 0.2145744264125824, + "difficulty_simple": 0.09952959534703307, + "percent_correct": 0.47513812154696133, + "n_responses": 181 + }, + { + "problem_id": 40714, + "difficulty_1pl": 7.392126560211182, + "difficulty_2pl": 0.1432831883430481, + "discrimination_2pl": 0.03554824739694595, + "difficulty_simple": 1.1118575154181303, + "percent_correct": 0.24752475247524752, + "n_responses": 101 + }, + { + "problem_id": 40911, + "difficulty_1pl": -10.766573905944824, + "difficulty_2pl": -0.17580454051494598, + "discrimination_2pl": 0.23056381940841675, + "difficulty_simple": -1.491654876777717, + "percent_correct": 0.8163265306122449, + "n_responses": 98 + }, + { + "problem_id": 359683, + "difficulty_1pl": 0.22569189965724945, + "difficulty_2pl": -0.027717428281903267, + "discrimination_2pl": 0.15748420357704163, + "difficulty_simple": -0.22580666873369334, + "percent_correct": 0.5562130177514792, + "n_responses": 169 + }, + { + "problem_id": 360011, + "difficulty_1pl": 0.29110512137413025, + "difficulty_2pl": -0.010600212030112743, + "discrimination_2pl": 0.1391630470752716, + "difficulty_simple": -0.17693070815907808, + "percent_correct": 0.5441176470588235, + "n_responses": 136 + }, + { + "problem_id": 360494, + "difficulty_1pl": 1.3536182641983032, + "difficulty_2pl": -0.1017887070775032, + "discrimination_2pl": 0.09593471884727478, + "difficulty_simple": -0.1706255170307632, + "percent_correct": 0.5425531914893617, + "n_responses": 94 + }, + { + "problem_id": 360123, + "difficulty_1pl": 2.448431968688965, + "difficulty_2pl": 0.0393989272415638, + "discrimination_2pl": 0.10199055820703506, + "difficulty_simple": 0.11954515064978273, + "percent_correct": 0.4701492537313433, + "n_responses": 134 + }, + { + "problem_id": 152397, + "difficulty_1pl": 5.192582607269287, + "difficulty_2pl": 0.04387293756008148, + "discrimination_2pl": 0.027450084686279297, + "difficulty_simple": 0.9354606479818754, + "percent_correct": 0.2818181818181818, + "n_responses": 110 + }, + { + "problem_id": 158484, + "difficulty_1pl": 4.50291633605957, + "difficulty_2pl": 0.09737641364336014, + "discrimination_2pl": 0.07570874691009521, + "difficulty_simple": 0.8098714548680866, + "percent_correct": 0.30791788856304986, + "n_responses": 341 + }, + { + "problem_id": 158769, + "difficulty_1pl": -7.815866470336914, + "difficulty_2pl": -0.28027957677841187, + "discrimination_2pl": 0.4846152365207672, + "difficulty_simple": -1.4949282021226862, + "percent_correct": 0.8168168168168168, + "n_responses": 333 + }, + { + "problem_id": 9569, + "difficulty_1pl": -4.416036128997803, + "difficulty_2pl": -0.08217304944992065, + "discrimination_2pl": 0.21699123084545135, + "difficulty_simple": -1.2431935174792175, + "percent_correct": 0.7761194029850746, + "n_responses": 67 + }, + { + "problem_id": 9287, + "difficulty_1pl": -3.424246072769165, + "difficulty_2pl": -0.061762116849422455, + "discrimination_2pl": 0.24540722370147705, + "difficulty_simple": -1.7404661748405046, + "percent_correct": 0.8507462686567164, + "n_responses": 67 + }, + { + "problem_id": 558716, + "difficulty_1pl": -0.41706281900405884, + "difficulty_2pl": -0.04675417020916939, + "discrimination_2pl": 0.22188767790794373, + "difficulty_simple": -0.5283919474838898, + "percent_correct": 0.6291079812206573, + "n_responses": 213 + }, + { + "problem_id": 40538, + "difficulty_1pl": -0.9635129570960999, + "difficulty_2pl": -0.20540903508663177, + "discrimination_2pl": 0.12757083773612976, + "difficulty_simple": -0.41494385206270823, + "percent_correct": 0.6022727272727273, + "n_responses": 88 + }, + { + "problem_id": 354136, + "difficulty_1pl": 0.04123562574386597, + "difficulty_2pl": 0.10659275203943253, + "discrimination_2pl": 0.18167197704315186, + "difficulty_simple": -0.30147539458411665, + "percent_correct": 0.5748031496062992, + "n_responses": 127 + }, + { + "problem_id": 353327, + "difficulty_1pl": -2.209959030151367, + "difficulty_2pl": -0.029020890593528748, + "discrimination_2pl": 0.23904776573181152, + "difficulty_simple": -0.5877866649021192, + "percent_correct": 0.6428571428571429, + "n_responses": 126 + }, + { + "problem_id": 353461, + "difficulty_1pl": -4.346473693847656, + "difficulty_2pl": -0.059979397803545, + "discrimination_2pl": 0.29178816080093384, + "difficulty_simple": -0.9555114450274363, + "percent_correct": 0.7222222222222222, + "n_responses": 126 + }, + { + "problem_id": 353584, + "difficulty_1pl": -1.292500376701355, + "difficulty_2pl": 0.01361286174505949, + "discrimination_2pl": 0.19900035858154297, + "difficulty_simple": -0.4595323293784402, + "percent_correct": 0.6129032258064516, + "n_responses": 124 + }, + { + "problem_id": 184867, + "difficulty_1pl": -0.6790846586227417, + "difficulty_2pl": -0.049245260655879974, + "discrimination_2pl": 0.19635088741779327, + "difficulty_simple": -0.7205461547480598, + "percent_correct": 0.6727272727272727, + "n_responses": 55 + }, + { + "problem_id": 184584, + "difficulty_1pl": -14.06389045715332, + "difficulty_2pl": 0.3802363872528076, + "discrimination_2pl": 0.2648712992668152, + "difficulty_simple": -2.1202635362000914, + "percent_correct": 0.8928571428571429, + "n_responses": 56 + }, + { + "problem_id": 184505, + "difficulty_1pl": -17.56723976135254, + "difficulty_2pl": -0.03996557742357254, + "discrimination_2pl": 0.31847044825553894, + "difficulty_simple": -6.906754778648553, + "percent_correct": 1.0, + "n_responses": 56 + }, + { + "problem_id": 184366, + "difficulty_1pl": -6.229406356811523, + "difficulty_2pl": -0.05959897115826607, + "discrimination_2pl": 0.2651265859603882, + "difficulty_simple": -1.6529230243738393, + "percent_correct": 0.8392857142857143, + "n_responses": 56 + }, + { + "problem_id": 151128, + "difficulty_1pl": -1.6812652349472046, + "difficulty_2pl": -0.03358437865972519, + "discrimination_2pl": 0.28023093938827515, + "difficulty_simple": -0.5565716455541946, + "percent_correct": 0.6356589147286822, + "n_responses": 129 + }, + { + "problem_id": 151389, + "difficulty_1pl": -12.61663818359375, + "difficulty_2pl": -0.22565950453281403, + "discrimination_2pl": 0.3368662893772125, + "difficulty_simple": -1.6094379124341005, + "percent_correct": 0.8333333333333334, + "n_responses": 126 + }, + { + "problem_id": 151533, + "difficulty_1pl": 14.097315788269043, + "difficulty_2pl": 0.04189295321702957, + "discrimination_2pl": 0.026431387290358543, + "difficulty_simple": 2.2512917986064953, + "percent_correct": 0.09523809523809523, + "n_responses": 126 + }, + { + "problem_id": 151647, + "difficulty_1pl": -4.629775047302246, + "difficulty_2pl": -0.14178206026554108, + "discrimination_2pl": 0.31571316719055176, + "difficulty_simple": -0.9555114450274363, + "percent_correct": 0.7222222222222222, + "n_responses": 126 + }, + { + "problem_id": 348936, + "difficulty_1pl": -2.3672168254852295, + "difficulty_2pl": 0.02621135115623474, + "discrimination_2pl": 0.14149293303489685, + "difficulty_simple": -0.7753852787969174, + "percent_correct": 0.6846846846846847, + "n_responses": 111 + }, + { + "problem_id": 249173, + "difficulty_1pl": -10.123305320739746, + "difficulty_2pl": -0.18687810003757477, + "discrimination_2pl": 0.5085866451263428, + "difficulty_simple": -1.9264163543743122, + "percent_correct": 0.872852233676976, + "n_responses": 291 + }, + { + "problem_id": 108670, + "difficulty_1pl": -10.486653327941895, + "difficulty_2pl": -0.17712873220443726, + "discrimination_2pl": 0.46041688323020935, + "difficulty_simple": -1.8268507890393249, + "percent_correct": 0.8613861386138614, + "n_responses": 202 + }, + { + "problem_id": 54134, + "difficulty_1pl": 1.8086445331573486, + "difficulty_2pl": 0.17736618220806122, + "discrimination_2pl": 0.09951480478048325, + "difficulty_simple": 0.33647223662121273, + "percent_correct": 0.4166666666666667, + "n_responses": 84 + }, + { + "problem_id": 183482, + "difficulty_1pl": 6.361096382141113, + "difficulty_2pl": -0.060038622468709946, + "discrimination_2pl": 0.06483181565999985, + "difficulty_simple": 0.3798226774948266, + "percent_correct": 0.40616966580976865, + "n_responses": 389 + }, + { + "problem_id": 159061, + "difficulty_1pl": 0.48139652609825134, + "difficulty_2pl": -0.0031606177799403667, + "discrimination_2pl": 0.1638883799314499, + "difficulty_simple": 0.14310084364067324, + "percent_correct": 0.4642857142857143, + "n_responses": 336 + }, + { + "problem_id": 156887, + "difficulty_1pl": 0.2724257707595825, + "difficulty_2pl": 0.04948379099369049, + "discrimination_2pl": 0.2523902952671051, + "difficulty_simple": -0.22245127022044875, + "percent_correct": 0.5553846153846154, + "n_responses": 650 + }, + { + "problem_id": 478760, + "difficulty_1pl": -2.285006046295166, + "difficulty_2pl": -0.14050254225730896, + "discrimination_2pl": 0.2610737681388855, + "difficulty_simple": -0.8434293836092834, + "percent_correct": 0.6991869918699187, + "n_responses": 123 + }, + { + "problem_id": 478871, + "difficulty_1pl": -1.1441150903701782, + "difficulty_2pl": 0.07105127722024918, + "discrimination_2pl": 0.20519939064979553, + "difficulty_simple": -0.5151640253645887, + "percent_correct": 0.6260162601626016, + "n_responses": 123 + }, + { + "problem_id": 213216, + "difficulty_1pl": 0.37924110889434814, + "difficulty_2pl": -0.08346309512853622, + "discrimination_2pl": 0.15355466306209564, + "difficulty_simple": -0.8109302162163287, + "percent_correct": 0.6923076923076923, + "n_responses": 52 + }, + { + "problem_id": 15930, + "difficulty_1pl": -1.9617007970809937, + "difficulty_2pl": -0.0467858649790287, + "discrimination_2pl": 0.3504544198513031, + "difficulty_simple": -1.057186247013813, + "percent_correct": 0.742152466367713, + "n_responses": 446 + }, + { + "problem_id": 15805, + "difficulty_1pl": -2.451695203781128, + "difficulty_2pl": 0.01775404065847397, + "discrimination_2pl": 0.4080237150192261, + "difficulty_simple": -1.3125911653327562, + "percent_correct": 0.7879464285714286, + "n_responses": 448 + }, + { + "problem_id": 10241, + "difficulty_1pl": -10.725419998168945, + "difficulty_2pl": -0.026886260136961937, + "discrimination_2pl": 0.38067927956581116, + "difficulty_simple": -1.346448452572691, + "percent_correct": 0.7935483870967742, + "n_responses": 155 + }, + { + "problem_id": 10342, + "difficulty_1pl": -0.05419042706489563, + "difficulty_2pl": 0.009732403792440891, + "discrimination_2pl": 0.20682962238788605, + "difficulty_simple": -0.4054651081081643, + "percent_correct": 0.6, + "n_responses": 155 + }, + { + "problem_id": 382388, + "difficulty_1pl": -3.879504442214966, + "difficulty_2pl": -0.10897387564182281, + "discrimination_2pl": 0.28441619873046875, + "difficulty_simple": -0.8817383503674951, + "percent_correct": 0.7071823204419889, + "n_responses": 181 + }, + { + "problem_id": 382646, + "difficulty_1pl": -0.7634907364845276, + "difficulty_2pl": -0.014811374247074127, + "discrimination_2pl": 0.2327175885438919, + "difficulty_simple": -0.5315058290035292, + "percent_correct": 0.6298342541436464, + "n_responses": 181 + }, + { + "problem_id": 437057, + "difficulty_1pl": -3.867466926574707, + "difficulty_2pl": 0.07957006245851517, + "discrimination_2pl": 0.30446675419807434, + "difficulty_simple": -1.0608719606852628, + "percent_correct": 0.7428571428571429, + "n_responses": 70 + }, + { + "problem_id": 437183, + "difficulty_1pl": 9.074508666992188, + "difficulty_2pl": 0.09234900027513504, + "discrimination_2pl": 0.023457126691937447, + "difficulty_simple": 1.4423838277709342, + "percent_correct": 0.19117647058823528, + "n_responses": 68 + }, + { + "problem_id": 437300, + "difficulty_1pl": 9.934618949890137, + "difficulty_2pl": 0.12694594264030457, + "discrimination_2pl": 0.020291097462177277, + "difficulty_simple": 1.5404450409471488, + "percent_correct": 0.17647058823529413, + "n_responses": 68 + }, + { + "problem_id": 437428, + "difficulty_1pl": 5.206380367279053, + "difficulty_2pl": 0.023594733327627182, + "discrimination_2pl": 0.07631342113018036, + "difficulty_simple": 0.6931471805599455, + "percent_correct": 0.3333333333333333, + "n_responses": 66 + }, + { + "problem_id": 351102, + "difficulty_1pl": -3.380068302154541, + "difficulty_2pl": -0.07334861904382706, + "discrimination_2pl": 0.38761553168296814, + "difficulty_simple": -0.7926327317747506, + "percent_correct": 0.6883963494132985, + "n_responses": 767 + }, + { + "problem_id": 262715, + "difficulty_1pl": -2.0733683109283447, + "difficulty_2pl": -0.0399184487760067, + "discrimination_2pl": 0.36927759647369385, + "difficulty_simple": -1.0223849232802256, + "percent_correct": 0.7354368932038835, + "n_responses": 412 + }, + { + "problem_id": 108574, + "difficulty_1pl": -6.028664588928223, + "difficulty_2pl": -0.0467829704284668, + "discrimination_2pl": 0.49838462471961975, + "difficulty_simple": -1.1526795099383855, + "percent_correct": 0.76, + "n_responses": 375 + }, + { + "problem_id": 2196, + "difficulty_1pl": -0.22662651538848877, + "difficulty_2pl": 0.05928545817732811, + "discrimination_2pl": 0.1847498118877411, + "difficulty_simple": -0.18232155679395445, + "percent_correct": 0.5454545454545454, + "n_responses": 99 + }, + { + "problem_id": 2319, + "difficulty_1pl": -0.7177372574806213, + "difficulty_2pl": 0.0884038582444191, + "discrimination_2pl": 0.12188015878200531, + "difficulty_simple": -0.3541718137206139, + "percent_correct": 0.5876288659793815, + "n_responses": 97 + }, + { + "problem_id": 127324, + "difficulty_1pl": -4.690785884857178, + "difficulty_2pl": -0.2508517801761627, + "discrimination_2pl": 0.5736576318740845, + "difficulty_simple": -1.2573022409287873, + "percent_correct": 0.7785613540197461, + "n_responses": 709 + }, + { + "problem_id": 239815, + "difficulty_1pl": 2.638343334197998, + "difficulty_2pl": -0.112413689494133, + "discrimination_2pl": 0.12243381887674332, + "difficulty_simple": 0.05129329438755048, + "percent_correct": 0.48717948717948717, + "n_responses": 117 + }, + { + "problem_id": 239904, + "difficulty_1pl": 3.043156623840332, + "difficulty_2pl": -0.11272260546684265, + "discrimination_2pl": 0.11784730851650238, + "difficulty_simple": 0.016529301951210506, + "percent_correct": 0.49586776859504134, + "n_responses": 121 + }, + { + "problem_id": 238263, + "difficulty_1pl": 1.9455583095550537, + "difficulty_2pl": 0.049852050840854645, + "discrimination_2pl": 0.104326531291008, + "difficulty_simple": -0.11551288712184435, + "percent_correct": 0.5288461538461539, + "n_responses": 104 + }, + { + "problem_id": 238581, + "difficulty_1pl": 0.7289713025093079, + "difficulty_2pl": -0.0726245790719986, + "discrimination_2pl": 0.21352484822273254, + "difficulty_simple": -0.33085424431698957, + "percent_correct": 0.5819672131147541, + "n_responses": 122 + }, + { + "problem_id": 238499, + "difficulty_1pl": 0.9366780519485474, + "difficulty_2pl": 0.039648786187171936, + "discrimination_2pl": 0.16983379423618317, + "difficulty_simple": -0.2305236586118321, + "percent_correct": 0.5573770491803278, + "n_responses": 122 + }, + { + "problem_id": 434672, + "difficulty_1pl": -4.041452884674072, + "difficulty_2pl": 0.06734374165534973, + "discrimination_2pl": 0.20576295256614685, + "difficulty_simple": -0.6286086594223742, + "percent_correct": 0.6521739130434783, + "n_responses": 138 + }, + { + "problem_id": 190961, + "difficulty_1pl": -2.0567965507507324, + "difficulty_2pl": -0.19210460782051086, + "discrimination_2pl": 0.22922588884830475, + "difficulty_simple": -0.6686561605516494, + "percent_correct": 0.6612021857923497, + "n_responses": 366 + }, + { + "problem_id": 191140, + "difficulty_1pl": -0.2053995132446289, + "difficulty_2pl": 0.05481468141078949, + "discrimination_2pl": 0.22952601313591003, + "difficulty_simple": -0.27369583047704077, + "percent_correct": 0.568, + "n_responses": 375 + }, + { + "problem_id": 537832, + "difficulty_1pl": 4.712902545928955, + "difficulty_2pl": 0.07709474116563797, + "discrimination_2pl": 0.024225030094385147, + "difficulty_simple": 0.871838969303321, + "percent_correct": 0.2948717948717949, + "n_responses": 78 + }, + { + "problem_id": 26908, + "difficulty_1pl": -5.021939754486084, + "difficulty_2pl": -0.049966469407081604, + "discrimination_2pl": 0.23209364712238312, + "difficulty_simple": -1.0986122886681098, + "percent_correct": 0.75, + "n_responses": 72 + }, + { + "problem_id": 27175, + "difficulty_1pl": 1.5941624641418457, + "difficulty_2pl": 0.032635465264320374, + "discrimination_2pl": 0.09489820897579193, + "difficulty_simple": 0.19574457712609533, + "percent_correct": 0.45121951219512196, + "n_responses": 82 + }, + { + "problem_id": 271396, + "difficulty_1pl": -2.7133028507232666, + "difficulty_2pl": -0.10029211640357971, + "discrimination_2pl": 0.40517833828926086, + "difficulty_simple": -1.068870319469372, + "percent_correct": 0.7443820224719101, + "n_responses": 356 + }, + { + "problem_id": 271644, + "difficulty_1pl": -6.147573471069336, + "difficulty_2pl": 0.1713566929101944, + "discrimination_2pl": 0.47062236070632935, + "difficulty_simple": -1.33072450996508, + "percent_correct": 0.7909604519774012, + "n_responses": 354 + }, + { + "problem_id": 271538, + "difficulty_1pl": -2.7229247093200684, + "difficulty_2pl": -0.01939513348042965, + "discrimination_2pl": 0.4465777277946472, + "difficulty_simple": -1.2802120843336544, + "percent_correct": 0.7824858757062146, + "n_responses": 354 + }, + { + "problem_id": 201571, + "difficulty_1pl": -1.4426252841949463, + "difficulty_2pl": 0.1395415961742401, + "discrimination_2pl": 0.2197018265724182, + "difficulty_simple": -0.5596157879354225, + "percent_correct": 0.6363636363636364, + "n_responses": 66 + }, + { + "problem_id": 201709, + "difficulty_1pl": 0.41083401441574097, + "difficulty_2pl": 0.12315872311592102, + "discrimination_2pl": 0.1472013294696808, + "difficulty_simple": -0.048790164169432056, + "percent_correct": 0.5121951219512195, + "n_responses": 82 + }, + { + "problem_id": 201829, + "difficulty_1pl": -0.9775042533874512, + "difficulty_2pl": -0.04971031844615936, + "discrimination_2pl": 0.2649456262588501, + "difficulty_simple": -0.42608439531090014, + "percent_correct": 0.6049382716049383, + "n_responses": 81 + }, + { + "problem_id": 48612, + "difficulty_1pl": 0.16084256768226624, + "difficulty_2pl": 0.0005875756032764912, + "discrimination_2pl": 0.1939217746257782, + "difficulty_simple": 0.017699577099400857, + "percent_correct": 0.49557522123893805, + "n_responses": 113 + }, + { + "problem_id": 430695, + "difficulty_1pl": 0.194137305021286, + "difficulty_2pl": 0.03330886736512184, + "discrimination_2pl": 0.22350025177001953, + "difficulty_simple": -0.13562417329765306, + "percent_correct": 0.5338541666666666, + "n_responses": 384 + }, + { + "problem_id": 247330, + "difficulty_1pl": 1.517712950706482, + "difficulty_2pl": -0.1708102822303772, + "discrimination_2pl": 0.04647700488567352, + "difficulty_simple": -0.08408311721054157, + "percent_correct": 0.5210084033613446, + "n_responses": 357 + }, + { + "problem_id": 501551, + "difficulty_1pl": 2.060164213180542, + "difficulty_2pl": -0.05984508618712425, + "discrimination_2pl": 0.08520786464214325, + "difficulty_simple": 0.06595796779179737, + "percent_correct": 0.4835164835164835, + "n_responses": 364 + }, + { + "problem_id": 78941, + "difficulty_1pl": -8.604694366455078, + "difficulty_2pl": 0.12948603928089142, + "discrimination_2pl": 0.23514725267887115, + "difficulty_simple": -1.458615022699517, + "percent_correct": 0.8113207547169812, + "n_responses": 53 + }, + { + "problem_id": 522388, + "difficulty_1pl": -0.687846839427948, + "difficulty_2pl": -0.11547787487506866, + "discrimination_2pl": 0.3466246724128723, + "difficulty_simple": -0.6972039812555595, + "percent_correct": 0.6675675675675675, + "n_responses": 370 + }, + { + "problem_id": 523482, + "difficulty_1pl": 1.2977714538574219, + "difficulty_2pl": 0.11901397258043289, + "discrimination_2pl": 0.14578373730182648, + "difficulty_simple": -0.027398974188114503, + "percent_correct": 0.5068493150684932, + "n_responses": 292 + }, + { + "problem_id": 46664, + "difficulty_1pl": -0.5999880433082581, + "difficulty_2pl": 0.06852900981903076, + "discrimination_2pl": 0.061905842274427414, + "difficulty_simple": -0.16989903679539747, + "percent_correct": 0.5423728813559322, + "n_responses": 59 + }, + { + "problem_id": 44687, + "difficulty_1pl": -2.508596420288086, + "difficulty_2pl": 0.054653603583574295, + "discrimination_2pl": 0.22238829731941223, + "difficulty_simple": -1.0296194171811581, + "percent_correct": 0.7368421052631579, + "n_responses": 95 + }, + { + "problem_id": 45097, + "difficulty_1pl": -4.500036239624023, + "difficulty_2pl": -0.08650854974985123, + "discrimination_2pl": 0.27269670367240906, + "difficulty_simple": -1.1430640512389434, + "percent_correct": 0.7582417582417582, + "n_responses": 91 + }, + { + "problem_id": 45479, + "difficulty_1pl": -8.392539024353027, + "difficulty_2pl": -0.14781777560710907, + "discrimination_2pl": 0.32004839181900024, + "difficulty_simple": -1.5824092400461813, + "percent_correct": 0.8295454545454546, + "n_responses": 88 + }, + { + "problem_id": 69196, + "difficulty_1pl": -13.100756645202637, + "difficulty_2pl": -0.06146552041172981, + "discrimination_2pl": 0.23977573215961456, + "difficulty_simple": -2.268683541318364, + "percent_correct": 0.90625, + "n_responses": 64 + }, + { + "problem_id": 414393, + "difficulty_1pl": -5.94041633605957, + "difficulty_2pl": -0.048028118908405304, + "discrimination_2pl": 0.40672945976257324, + "difficulty_simple": -1.2809338454620645, + "percent_correct": 0.782608695652174, + "n_responses": 138 + }, + { + "problem_id": 414757, + "difficulty_1pl": -1.548802375793457, + "difficulty_2pl": -0.04163118451833725, + "discrimination_2pl": 0.19865530729293823, + "difficulty_simple": -0.43642733371213127, + "percent_correct": 0.6074074074074074, + "n_responses": 135 + }, + { + "problem_id": 415185, + "difficulty_1pl": -1.3924169540405273, + "difficulty_2pl": -0.11161673069000244, + "discrimination_2pl": 0.2154518961906433, + "difficulty_simple": -0.5371429320833643, + "percent_correct": 0.6311475409836066, + "n_responses": 122 + }, + { + "problem_id": 262449, + "difficulty_1pl": -2.2815208435058594, + "difficulty_2pl": 0.07047877460718155, + "discrimination_2pl": 0.18300409615039825, + "difficulty_simple": -0.6254290065049944, + "percent_correct": 0.6514522821576764, + "n_responses": 241 + }, + { + "problem_id": 262837, + "difficulty_1pl": -2.9423835277557373, + "difficulty_2pl": -0.08169853687286377, + "discrimination_2pl": 0.33298712968826294, + "difficulty_simple": -1.1205911953868846, + "percent_correct": 0.7540983606557377, + "n_responses": 183 + }, + { + "problem_id": 263156, + "difficulty_1pl": -1.1398892402648926, + "difficulty_2pl": -0.06250308454036713, + "discrimination_2pl": 0.2415429651737213, + "difficulty_simple": -0.6766178786087346, + "percent_correct": 0.6629834254143646, + "n_responses": 181 + }, + { + "problem_id": 263570, + "difficulty_1pl": 0.10392923653125763, + "difficulty_2pl": 0.05932881310582161, + "discrimination_2pl": 0.17551665008068085, + "difficulty_simple": -0.29135180134074334, + "percent_correct": 0.5723270440251572, + "n_responses": 159 + }, + { + "problem_id": 263960, + "difficulty_1pl": -3.753990411758423, + "difficulty_2pl": -0.018499508500099182, + "discrimination_2pl": 0.16207736730575562, + "difficulty_simple": -0.45547552868282576, + "percent_correct": 0.6119402985074627, + "n_responses": 134 + }, + { + "problem_id": 264344, + "difficulty_1pl": -1.0246659517288208, + "difficulty_2pl": -0.06381426751613617, + "discrimination_2pl": 0.19457142055034637, + "difficulty_simple": -0.4177352006999785, + "percent_correct": 0.6029411764705882, + "n_responses": 136 + }, + { + "problem_id": 174579, + "difficulty_1pl": 5.759592056274414, + "difficulty_2pl": 0.10343319177627563, + "discrimination_2pl": 0.02967689000070095, + "difficulty_simple": 0.946596081369484, + "percent_correct": 0.27956989247311825, + "n_responses": 93 + }, + { + "problem_id": 360720, + "difficulty_1pl": -0.8135146498680115, + "difficulty_2pl": 0.05750430375337601, + "discrimination_2pl": 0.2137654721736908, + "difficulty_simple": -0.5520685823000397, + "percent_correct": 0.6346153846153846, + "n_responses": 52 + }, + { + "problem_id": 296856, + "difficulty_1pl": 4.684309959411621, + "difficulty_2pl": 0.036060187965631485, + "discrimination_2pl": 0.04888903722167015, + "difficulty_simple": 0.3550342544812725, + "percent_correct": 0.41216216216216217, + "n_responses": 148 + }, + { + "problem_id": 297047, + "difficulty_1pl": 3.9343440532684326, + "difficulty_2pl": 0.07323324680328369, + "discrimination_2pl": 0.04315534234046936, + "difficulty_simple": 0.4405564279194344, + "percent_correct": 0.3916083916083916, + "n_responses": 143 + }, + { + "problem_id": 360109, + "difficulty_1pl": 2.131019115447998, + "difficulty_2pl": 0.03993041813373566, + "discrimination_2pl": 0.06977580487728119, + "difficulty_simple": -0.026668247082161523, + "percent_correct": 0.5066666666666667, + "n_responses": 150 + }, + { + "problem_id": 37276, + "difficulty_1pl": 3.1580026149749756, + "difficulty_2pl": 0.10941743105649948, + "discrimination_2pl": 0.1507548987865448, + "difficulty_simple": 0.30414733546729655, + "percent_correct": 0.42454394693200664, + "n_responses": 603 + }, + { + "problem_id": 406068, + "difficulty_1pl": -4.329059600830078, + "difficulty_2pl": 0.0271306112408638, + "discrimination_2pl": 0.549299418926239, + "difficulty_simple": -1.126586140710516, + "percent_correct": 0.7552083333333334, + "n_responses": 576 + }, + { + "problem_id": 167762, + "difficulty_1pl": 0.30152270197868347, + "difficulty_2pl": 0.10205166041851044, + "discrimination_2pl": 0.057686686515808105, + "difficulty_simple": -0.26469255422708216, + "percent_correct": 0.5657894736842105, + "n_responses": 76 + }, + { + "problem_id": 427433, + "difficulty_1pl": 1.6813923120498657, + "difficulty_2pl": -0.14666807651519775, + "discrimination_2pl": 0.07419776171445847, + "difficulty_simple": 0.13815033848081737, + "percent_correct": 0.46551724137931033, + "n_responses": 58 + }, + { + "problem_id": 576243, + "difficulty_1pl": -2.2136714458465576, + "difficulty_2pl": -0.0939372330904007, + "discrimination_2pl": 0.1921977549791336, + "difficulty_simple": -0.6613984822453648, + "percent_correct": 0.6595744680851063, + "n_responses": 94 + }, + { + "problem_id": 576579, + "difficulty_1pl": 0.2165263295173645, + "difficulty_2pl": -0.01096635777503252, + "discrimination_2pl": 0.13844992220401764, + "difficulty_simple": -0.21357410029805918, + "percent_correct": 0.5531914893617021, + "n_responses": 94 + }, + { + "problem_id": 178070, + "difficulty_1pl": -5.437984466552734, + "difficulty_2pl": -0.26791635155677795, + "discrimination_2pl": 0.5648013949394226, + "difficulty_simple": -1.5344362408017997, + "percent_correct": 0.8226544622425629, + "n_responses": 874 + }, + { + "problem_id": 279176, + "difficulty_1pl": 0.9893465638160706, + "difficulty_2pl": 0.009367285296320915, + "discrimination_2pl": 0.28932279348373413, + "difficulty_simple": -0.2491587904554454, + "percent_correct": 0.5619694397283531, + "n_responses": 589 + }, + { + "problem_id": 128305, + "difficulty_1pl": -0.5437567234039307, + "difficulty_2pl": -0.009483130648732185, + "discrimination_2pl": 0.3491148352622986, + "difficulty_simple": -0.5216365398702065, + "percent_correct": 0.6275303643724697, + "n_responses": 247 + }, + { + "problem_id": 524173, + "difficulty_1pl": 4.560735702514648, + "difficulty_2pl": 0.012186494655907154, + "discrimination_2pl": 0.03847227245569229, + "difficulty_simple": 0.6771468392135042, + "percent_correct": 0.33689839572192515, + "n_responses": 187 + }, + { + "problem_id": 262501, + "difficulty_1pl": -4.070492744445801, + "difficulty_2pl": -0.06326021254062653, + "discrimination_2pl": 0.26033419370651245, + "difficulty_simple": -1.167605160155061, + "percent_correct": 0.7627118644067796, + "n_responses": 59 + }, + { + "problem_id": 263940, + "difficulty_1pl": 1.3901968002319336, + "difficulty_2pl": -0.11348097771406174, + "discrimination_2pl": 0.08999008685350418, + "difficulty_simple": 0.03509131981127019, + "percent_correct": 0.49122807017543857, + "n_responses": 57 + }, + { + "problem_id": 263466, + "difficulty_1pl": 0.8284134864807129, + "difficulty_2pl": 0.037315309047698975, + "discrimination_2pl": 0.09548688679933548, + "difficulty_simple": 0.14842000511827322, + "percent_correct": 0.46296296296296297, + "n_responses": 54 + }, + { + "problem_id": 262987, + "difficulty_1pl": 1.3486149311065674, + "difficulty_2pl": 0.1819278746843338, + "discrimination_2pl": 0.09154660999774933, + "difficulty_simple": 0.06252035698133393, + "percent_correct": 0.484375, + "n_responses": 64 + }, + { + "problem_id": 119400, + "difficulty_1pl": 0.41701290011405945, + "difficulty_2pl": -0.10183478891849518, + "discrimination_2pl": 0.1589561402797699, + "difficulty_simple": -0.3201675275962696, + "percent_correct": 0.5793650793650794, + "n_responses": 126 + }, + { + "problem_id": 304444, + "difficulty_1pl": 0.07553388178348541, + "difficulty_2pl": 0.1020292118191719, + "discrimination_2pl": 0.1630660444498062, + "difficulty_simple": 0.0, + "percent_correct": 0.5, + "n_responses": 312 + }, + { + "problem_id": 304606, + "difficulty_1pl": -9.63261604309082, + "difficulty_2pl": -0.20503880083560944, + "discrimination_2pl": 0.37307047843933105, + "difficulty_simple": -1.7548549122926038, + "percent_correct": 0.8525641025641025, + "n_responses": 312 + }, + { + "problem_id": 52890, + "difficulty_1pl": 0.2245512455701828, + "difficulty_2pl": -0.13128292560577393, + "discrimination_2pl": 0.17420944571495056, + "difficulty_simple": -0.2931615382164067, + "percent_correct": 0.5727699530516432, + "n_responses": 213 + }, + { + "problem_id": 53138, + "difficulty_1pl": 1.9318410158157349, + "difficulty_2pl": -0.06150257587432861, + "discrimination_2pl": 0.10798915475606918, + "difficulty_simple": 0.16106155736710526, + "percent_correct": 0.45982142857142855, + "n_responses": 224 + }, + { + "problem_id": 28184, + "difficulty_1pl": -5.205265522003174, + "difficulty_2pl": -0.11337993294000626, + "discrimination_2pl": 0.2153128832578659, + "difficulty_simple": -1.3268709406490895, + "percent_correct": 0.7903225806451613, + "n_responses": 62 + }, + { + "problem_id": 26857, + "difficulty_1pl": -1.0652921199798584, + "difficulty_2pl": 0.08362334966659546, + "discrimination_2pl": 0.1699247509241104, + "difficulty_simple": -0.7963314167951758, + "percent_correct": 0.6891891891891891, + "n_responses": 74 + }, + { + "problem_id": 26752, + "difficulty_1pl": 0.8670968413352966, + "difficulty_2pl": 0.06952131539583206, + "discrimination_2pl": 0.08033981919288635, + "difficulty_simple": -0.32721291120841595, + "percent_correct": 0.581081081081081, + "n_responses": 74 + }, + { + "problem_id": 27039, + "difficulty_1pl": 0.6367688179016113, + "difficulty_2pl": 0.06404126435518265, + "discrimination_2pl": 0.19615095853805542, + "difficulty_simple": -0.20067069546215138, + "percent_correct": 0.55, + "n_responses": 60 + }, + { + "problem_id": 273049, + "difficulty_1pl": -2.6973533630371094, + "difficulty_2pl": -0.12830349802970886, + "discrimination_2pl": 0.3172127902507782, + "difficulty_simple": -0.9985288301111269, + "percent_correct": 0.7307692307692307, + "n_responses": 260 + }, + { + "problem_id": 274139, + "difficulty_1pl": 10.706865310668945, + "difficulty_2pl": 0.04508662596344948, + "discrimination_2pl": 0.012480993755161762, + "difficulty_simple": 1.0717392704170134, + "percent_correct": 0.25507246376811593, + "n_responses": 345 + }, + { + "problem_id": 211131, + "difficulty_1pl": 0.9611912369728088, + "difficulty_2pl": 0.0992032065987587, + "discrimination_2pl": 0.1265900582075119, + "difficulty_simple": -0.15822400521489416, + "percent_correct": 0.5394736842105263, + "n_responses": 76 + }, + { + "problem_id": 211231, + "difficulty_1pl": -0.4722003638744354, + "difficulty_2pl": 0.12185180932283401, + "discrimination_2pl": 0.12812410295009613, + "difficulty_simple": -0.5978370007556204, + "percent_correct": 0.6451612903225806, + "n_responses": 62 + }, + { + "problem_id": 209506, + "difficulty_1pl": -0.5677344799041748, + "difficulty_2pl": -0.07130212336778641, + "discrimination_2pl": 0.20396895706653595, + "difficulty_simple": -0.47000362924573574, + "percent_correct": 0.6153846153846154, + "n_responses": 65 + }, + { + "problem_id": 211312, + "difficulty_1pl": 0.1176733672618866, + "difficulty_2pl": 0.04589805752038956, + "discrimination_2pl": 0.17640674114227295, + "difficulty_simple": -0.4307829160924544, + "percent_correct": 0.6060606060606061, + "n_responses": 66 + }, + { + "problem_id": 77227, + "difficulty_1pl": 3.2819113731384277, + "difficulty_2pl": 0.07316568493843079, + "discrimination_2pl": 0.06739044189453125, + "difficulty_simple": 0.47957308026188644, + "percent_correct": 0.38235294117647056, + "n_responses": 68 + }, + { + "problem_id": 77479, + "difficulty_1pl": -0.3185058534145355, + "difficulty_2pl": -0.14985689520835876, + "discrimination_2pl": 0.1296757161617279, + "difficulty_simple": -0.33647223662121306, + "percent_correct": 0.5833333333333334, + "n_responses": 60 + }, + { + "problem_id": 150076, + "difficulty_1pl": 3.695842981338501, + "difficulty_2pl": 0.18765048682689667, + "discrimination_2pl": 0.0681486576795578, + "difficulty_simple": 0.6931471805599455, + "percent_correct": 0.3333333333333333, + "n_responses": 60 + }, + { + "problem_id": 28093, + "difficulty_1pl": 8.685060501098633, + "difficulty_2pl": -0.006620633415877819, + "discrimination_2pl": 0.03245633840560913, + "difficulty_simple": 0.5725191927713306, + "percent_correct": 0.36065573770491804, + "n_responses": 61 + }, + { + "problem_id": 223780, + "difficulty_1pl": 0.27175572514533997, + "difficulty_2pl": 0.0917137861251831, + "discrimination_2pl": 0.34759727120399475, + "difficulty_simple": -0.1479201300766222, + "percent_correct": 0.5369127516778524, + "n_responses": 298 + }, + { + "problem_id": 340198, + "difficulty_1pl": 5.346412658691406, + "difficulty_2pl": 0.06912457197904587, + "discrimination_2pl": 0.05652162432670593, + "difficulty_simple": 0.7591051483517429, + "percent_correct": 0.3188405797101449, + "n_responses": 69 + }, + { + "problem_id": 340317, + "difficulty_1pl": 4.2203803062438965, + "difficulty_2pl": -0.08182638138532639, + "discrimination_2pl": 0.07770632207393646, + "difficulty_simple": 0.32158362412746233, + "percent_correct": 0.42028985507246375, + "n_responses": 69 + }, + { + "problem_id": 340440, + "difficulty_1pl": -1.4853577613830566, + "difficulty_2pl": 0.025945430621504784, + "discrimination_2pl": 0.21742507815361023, + "difficulty_simple": -0.6286086594223742, + "percent_correct": 0.6521739130434783, + "n_responses": 69 + }, + { + "problem_id": 340581, + "difficulty_1pl": 4.073145866394043, + "difficulty_2pl": -0.07754325866699219, + "discrimination_2pl": 0.058334626257419586, + "difficulty_simple": 0.44183275227903923, + "percent_correct": 0.391304347826087, + "n_responses": 69 + }, + { + "problem_id": 144266, + "difficulty_1pl": -1.879160761833191, + "difficulty_2pl": -0.056444957852363586, + "discrimination_2pl": 0.16271601617336273, + "difficulty_simple": -0.7654678421395715, + "percent_correct": 0.6825396825396826, + "n_responses": 63 + }, + { + "problem_id": 144363, + "difficulty_1pl": 11.522268295288086, + "difficulty_2pl": -0.005365454126149416, + "discrimination_2pl": 0.01125321350991726, + "difficulty_simple": 1.4469189829363254, + "percent_correct": 0.19047619047619047, + "n_responses": 63 + }, + { + "problem_id": 144504, + "difficulty_1pl": 1.6013741493225098, + "difficulty_2pl": -0.004574001766741276, + "discrimination_2pl": 0.07943397760391235, + "difficulty_simple": -0.06453852113757118, + "percent_correct": 0.5161290322580645, + "n_responses": 62 + }, + { + "problem_id": 3852, + "difficulty_1pl": -4.962929725646973, + "difficulty_2pl": -0.16072691977024078, + "discrimination_2pl": 0.274457186460495, + "difficulty_simple": -1.0245043165143874, + "percent_correct": 0.7358490566037735, + "n_responses": 159 + }, + { + "problem_id": 4344, + "difficulty_1pl": 4.754621505737305, + "difficulty_2pl": 0.06075553223490715, + "discrimination_2pl": 0.08585147559642792, + "difficulty_simple": 0.6337237600891445, + "percent_correct": 0.3466666666666667, + "n_responses": 150 + }, + { + "problem_id": 3578, + "difficulty_1pl": -4.862663745880127, + "difficulty_2pl": -0.11055665463209152, + "discrimination_2pl": 0.2307361364364624, + "difficulty_simple": -0.9162907318741551, + "percent_correct": 0.7142857142857143, + "n_responses": 98 + }, + { + "problem_id": 4213, + "difficulty_1pl": -0.5538877248764038, + "difficulty_2pl": 0.09403947740793228, + "discrimination_2pl": 0.23572777211666107, + "difficulty_simple": -0.33420208808667373, + "percent_correct": 0.5827814569536424, + "n_responses": 151 + }, + { + "problem_id": 3418, + "difficulty_1pl": 2.8580713272094727, + "difficulty_2pl": 0.08867364376783371, + "discrimination_2pl": 0.07140903919935226, + "difficulty_simple": 0.8503327640823578, + "percent_correct": 0.29936305732484075, + "n_responses": 157 + }, + { + "problem_id": 3256, + "difficulty_1pl": 1.3200163841247559, + "difficulty_2pl": -0.026477202773094177, + "discrimination_2pl": 0.16063113510608673, + "difficulty_simple": 0.2691286645560331, + "percent_correct": 0.43312101910828027, + "n_responses": 157 + }, + { + "problem_id": 3098, + "difficulty_1pl": -1.2340704202651978, + "difficulty_2pl": -0.04453057795763016, + "discrimination_2pl": 0.23258541524410248, + "difficulty_simple": -0.2174128766052247, + "percent_correct": 0.554140127388535, + "n_responses": 157 + }, + { + "problem_id": 4091, + "difficulty_1pl": -8.324495315551758, + "difficulty_2pl": -0.1755264401435852, + "discrimination_2pl": 0.2521419823169708, + "difficulty_simple": -1.2122716071406314, + "percent_correct": 0.7707006369426752, + "n_responses": 157 + }, + { + "problem_id": 3980, + "difficulty_1pl": -0.325473427772522, + "difficulty_2pl": 0.06368388235569, + "discrimination_2pl": 0.2132713496685028, + "difficulty_simple": 0.012739025777429712, + "percent_correct": 0.4968152866242038, + "n_responses": 157 + }, + { + "problem_id": 180036, + "difficulty_1pl": 0.11240240931510925, + "difficulty_2pl": 0.07636512070894241, + "discrimination_2pl": 0.3294508457183838, + "difficulty_simple": -0.20726050514120659, + "percent_correct": 0.5516304347826086, + "n_responses": 368 + }, + { + "problem_id": 180127, + "difficulty_1pl": -3.7037320137023926, + "difficulty_2pl": 0.0632859617471695, + "discrimination_2pl": 0.50844407081604, + "difficulty_simple": -0.863046217355343, + "percent_correct": 0.7032967032967034, + "n_responses": 364 + }, + { + "problem_id": 238057, + "difficulty_1pl": -2.6068880558013916, + "difficulty_2pl": -0.19248174130916595, + "discrimination_2pl": 0.24786819517612457, + "difficulty_simple": -0.5368011101692515, + "percent_correct": 0.6310679611650486, + "n_responses": 103 + }, + { + "problem_id": 194106, + "difficulty_1pl": -1.0073535442352295, + "difficulty_2pl": -0.012882614508271217, + "discrimination_2pl": 0.3814704716205597, + "difficulty_simple": -0.276847730286071, + "percent_correct": 0.5687732342007435, + "n_responses": 269 + }, + { + "problem_id": 557055, + "difficulty_1pl": -1.4811499118804932, + "difficulty_2pl": -0.09313219040632248, + "discrimination_2pl": 0.22425934672355652, + "difficulty_simple": -0.45041649597043076, + "percent_correct": 0.610738255033557, + "n_responses": 149 + }, + { + "problem_id": 110306, + "difficulty_1pl": -1.15841805934906, + "difficulty_2pl": 0.20576909184455872, + "discrimination_2pl": 0.389128714799881, + "difficulty_simple": -0.5917775481922187, + "percent_correct": 0.6437728937728938, + "n_responses": 1092 + }, + { + "problem_id": 426185, + "difficulty_1pl": -13.619674682617188, + "difficulty_2pl": -0.779956579208374, + "discrimination_2pl": 0.7658712267875671, + "difficulty_simple": -2.1670107987397227, + "percent_correct": 0.8972477064220183, + "n_responses": 1090 + }, + { + "problem_id": 426543, + "difficulty_1pl": -15.679410934448242, + "difficulty_2pl": -1.2454299926757812, + "discrimination_2pl": 0.9093143939971924, + "difficulty_simple": -3.1403135023650974, + "percent_correct": 0.9585253456221198, + "n_responses": 1085 + }, + { + "problem_id": 426918, + "difficulty_1pl": -11.442025184631348, + "difficulty_2pl": -0.5670002698898315, + "discrimination_2pl": 0.6767581105232239, + "difficulty_simple": -1.8304169607387375, + "percent_correct": 0.861811391223156, + "n_responses": 1071 + }, + { + "problem_id": 427265, + "difficulty_1pl": -10.446349143981934, + "difficulty_2pl": -0.6409962177276611, + "discrimination_2pl": 0.6056329011917114, + "difficulty_simple": -1.6956156086751524, + "percent_correct": 0.8449612403100775, + "n_responses": 1032 + }, + { + "problem_id": 180669, + "difficulty_1pl": 5.898370742797852, + "difficulty_2pl": 0.07124388217926025, + "discrimination_2pl": 0.06863792985677719, + "difficulty_simple": 0.8109302162163288, + "percent_correct": 0.3076923076923077, + "n_responses": 156 + }, + { + "problem_id": 61779, + "difficulty_1pl": 2.967695951461792, + "difficulty_2pl": 0.157740518450737, + "discrimination_2pl": 0.08164755254983902, + "difficulty_simple": 0.2582348711254799, + "percent_correct": 0.4357976653696498, + "n_responses": 257 + }, + { + "problem_id": 195193, + "difficulty_1pl": 3.574266195297241, + "difficulty_2pl": -0.0835423395037651, + "discrimination_2pl": 0.05560924857854843, + "difficulty_simple": 0.5547887471871067, + "percent_correct": 0.36475409836065575, + "n_responses": 244 + }, + { + "problem_id": 112290, + "difficulty_1pl": 2.510524272918701, + "difficulty_2pl": -0.1338600516319275, + "discrimination_2pl": 0.07123871147632599, + "difficulty_simple": 0.2790835671965489, + "percent_correct": 0.4306784660766962, + "n_responses": 339 + }, + { + "problem_id": 112497, + "difficulty_1pl": -0.8126676082611084, + "difficulty_2pl": 0.05630144849419594, + "discrimination_2pl": 0.20412635803222656, + "difficulty_simple": -0.4981471655062198, + "percent_correct": 0.6220238095238095, + "n_responses": 336 + }, + { + "problem_id": 112644, + "difficulty_1pl": -6.51723051071167, + "difficulty_2pl": -0.07472895830869675, + "discrimination_2pl": 0.444701611995697, + "difficulty_simple": -1.3456233213889626, + "percent_correct": 0.7934131736526946, + "n_responses": 334 + }, + { + "problem_id": 112797, + "difficulty_1pl": -7.793973922729492, + "difficulty_2pl": -0.07288606464862823, + "discrimination_2pl": 0.4750640094280243, + "difficulty_simple": -1.3094741551364495, + "percent_correct": 0.7874251497005988, + "n_responses": 334 + }, + { + "problem_id": 112931, + "difficulty_1pl": -11.399099349975586, + "difficulty_2pl": -0.25994887948036194, + "discrimination_2pl": 0.5111247897148132, + "difficulty_simple": -2.1102132003465894, + "percent_correct": 0.8918918918918919, + "n_responses": 333 + }, + { + "problem_id": 228072, + "difficulty_1pl": -9.458935737609863, + "difficulty_2pl": -0.7066498398780823, + "discrimination_2pl": 0.5972880125045776, + "difficulty_simple": -2.019098411772368, + "percent_correct": 0.8827877507919747, + "n_responses": 947 + }, + { + "problem_id": 228382, + "difficulty_1pl": -0.49376294016838074, + "difficulty_2pl": 0.06975450366735458, + "discrimination_2pl": 0.21630652248859406, + "difficulty_simple": -0.44183275227903934, + "percent_correct": 0.6086956521739131, + "n_responses": 943 + }, + { + "problem_id": 227828, + "difficulty_1pl": -2.4742438793182373, + "difficulty_2pl": -0.21136556565761566, + "discrimination_2pl": 0.36151865124702454, + "difficulty_simple": -0.6461901974721744, + "percent_correct": 0.6561514195583596, + "n_responses": 951 + }, + { + "problem_id": 227553, + "difficulty_1pl": -0.0662672370672226, + "difficulty_2pl": 0.1457490473985672, + "discrimination_2pl": 0.1922697275876999, + "difficulty_simple": -0.2203226749725685, + "percent_correct": 0.554858934169279, + "n_responses": 957 + }, + { + "problem_id": 126091, + "difficulty_1pl": 1.717232346534729, + "difficulty_2pl": 0.01782648265361786, + "discrimination_2pl": 0.1715087890625, + "difficulty_simple": 0.20377918413241858, + "percent_correct": 0.4492307692307692, + "n_responses": 325 + }, + { + "problem_id": 126362, + "difficulty_1pl": 1.0092469453811646, + "difficulty_2pl": 0.10607915371656418, + "discrimination_2pl": 0.3100402057170868, + "difficulty_simple": -0.06453852113757118, + "percent_correct": 0.5161290322580645, + "n_responses": 310 + }, + { + "problem_id": 126628, + "difficulty_1pl": -4.1416707038879395, + "difficulty_2pl": -0.05133200064301491, + "discrimination_2pl": 0.3991641700267792, + "difficulty_simple": -0.886642037952025, + "percent_correct": 0.7081967213114754, + "n_responses": 305 + }, + { + "problem_id": 312938, + "difficulty_1pl": -9.840948104858398, + "difficulty_2pl": -0.18349653482437134, + "discrimination_2pl": 0.44977283477783203, + "difficulty_simple": -1.9227877316344593, + "percent_correct": 0.8724489795918368, + "n_responses": 196 + }, + { + "problem_id": 591787, + "difficulty_1pl": -2.675567388534546, + "difficulty_2pl": -0.08463092148303986, + "discrimination_2pl": 0.2711780071258545, + "difficulty_simple": -0.9328200338253656, + "percent_correct": 0.7176470588235294, + "n_responses": 170 + }, + { + "problem_id": 592014, + "difficulty_1pl": -1.013713002204895, + "difficulty_2pl": -0.05736811086535454, + "discrimination_2pl": 0.24495063722133636, + "difficulty_simple": -0.6015799870344549, + "percent_correct": 0.6460176991150443, + "n_responses": 113 + }, + { + "problem_id": 60012, + "difficulty_1pl": -9.095568656921387, + "difficulty_2pl": -0.27793070673942566, + "discrimination_2pl": 0.49268627166748047, + "difficulty_simple": -1.7570739112401648, + "percent_correct": 0.8528428093645485, + "n_responses": 299 + }, + { + "problem_id": 60170, + "difficulty_1pl": -8.949951171875, + "difficulty_2pl": -0.32280340790748596, + "discrimination_2pl": 0.5140766501426697, + "difficulty_simple": -1.6054298910365616, + "percent_correct": 0.8327759197324415, + "n_responses": 299 + }, + { + "problem_id": 122331, + "difficulty_1pl": 2.226518154144287, + "difficulty_2pl": 0.008807981386780739, + "discrimination_2pl": 0.14258518815040588, + "difficulty_simple": 0.12169693497751977, + "percent_correct": 0.4696132596685083, + "n_responses": 181 + }, + { + "problem_id": 122450, + "difficulty_1pl": 0.9985283613204956, + "difficulty_2pl": 0.029917003586888313, + "discrimination_2pl": 0.17212586104869843, + "difficulty_simple": 0.08004270767353656, + "percent_correct": 0.48, + "n_responses": 175 + }, + { + "problem_id": 122576, + "difficulty_1pl": 1.4387472867965698, + "difficulty_2pl": 0.020247405394911766, + "discrimination_2pl": 0.19020003080368042, + "difficulty_simple": 0.034685557987889894, + "percent_correct": 0.4913294797687861, + "n_responses": 173 + }, + { + "problem_id": 148105, + "difficulty_1pl": -4.697397708892822, + "difficulty_2pl": 0.03980451449751854, + "discrimination_2pl": 0.14861437678337097, + "difficulty_simple": -0.8965856607948228, + "percent_correct": 0.7102473498233216, + "n_responses": 283 + }, + { + "problem_id": 278217, + "difficulty_1pl": -2.1250839233398438, + "difficulty_2pl": 0.04315488040447235, + "discrimination_2pl": 0.3926255404949188, + "difficulty_simple": -0.6190392084062235, + "percent_correct": 0.65, + "n_responses": 400 + }, + { + "problem_id": 277725, + "difficulty_1pl": -3.3985025882720947, + "difficulty_2pl": -0.173287034034729, + "discrimination_2pl": 0.45551353693008423, + "difficulty_simple": -0.7605884613554779, + "percent_correct": 0.6814814814814815, + "n_responses": 405 + }, + { + "problem_id": 73922, + "difficulty_1pl": -4.725588321685791, + "difficulty_2pl": -0.006271282210946083, + "discrimination_2pl": 0.44627997279167175, + "difficulty_simple": -1.0986122886681098, + "percent_correct": 0.75, + "n_responses": 476 + }, + { + "problem_id": 488, + "difficulty_1pl": -4.83516263961792, + "difficulty_2pl": -0.122132308781147, + "discrimination_2pl": 0.266530841588974, + "difficulty_simple": -0.9218309122497703, + "percent_correct": 0.7154150197628458, + "n_responses": 253 + }, + { + "problem_id": 249667, + "difficulty_1pl": -5.611436367034912, + "difficulty_2pl": -0.02970024198293686, + "discrimination_2pl": 0.3022271394729614, + "difficulty_simple": -1.3139736995402647, + "percent_correct": 0.7881773399014779, + "n_responses": 203 + }, + { + "problem_id": 249867, + "difficulty_1pl": -13.747323989868164, + "difficulty_2pl": -0.183841735124588, + "discrimination_2pl": 0.4415324032306671, + "difficulty_simple": -2.2970140479445895, + "percent_correct": 0.9086294416243654, + "n_responses": 197 + }, + { + "problem_id": 121116, + "difficulty_1pl": 0.18761557340621948, + "difficulty_2pl": -0.08687776327133179, + "discrimination_2pl": 0.2218790501356125, + "difficulty_simple": -0.07061756721395353, + "percent_correct": 0.5176470588235295, + "n_responses": 255 + }, + { + "problem_id": 121281, + "difficulty_1pl": -2.700015068054199, + "difficulty_2pl": -0.0809236466884613, + "discrimination_2pl": 0.3534080982208252, + "difficulty_simple": -0.8010361425711302, + "percent_correct": 0.6901960784313725, + "n_responses": 255 + }, + { + "problem_id": 121482, + "difficulty_1pl": 3.9040448665618896, + "difficulty_2pl": -0.0333419032394886, + "discrimination_2pl": 0.14484195411205292, + "difficulty_simple": 0.538109582714459, + "percent_correct": 0.3686274509803922, + "n_responses": 255 + }, + { + "problem_id": 320405, + "difficulty_1pl": 6.565533638000488, + "difficulty_2pl": -0.056069839745759964, + "discrimination_2pl": 0.03839641809463501, + "difficulty_simple": 1.246532418744732, + "percent_correct": 0.22330097087378642, + "n_responses": 103 + }, + { + "problem_id": 318942, + "difficulty_1pl": -2.2387959957122803, + "difficulty_2pl": -0.013897877186536789, + "discrimination_2pl": 0.1833057850599289, + "difficulty_simple": -0.47000362924573574, + "percent_correct": 0.6153846153846154, + "n_responses": 65 + }, + { + "problem_id": 319193, + "difficulty_1pl": -0.9710915684700012, + "difficulty_2pl": 0.029925702139735222, + "discrimination_2pl": 0.17182032763957977, + "difficulty_simple": -0.2787134024690205, + "percent_correct": 0.5692307692307692, + "n_responses": 65 + }, + { + "problem_id": 204459, + "difficulty_1pl": -1.2121316194534302, + "difficulty_2pl": 0.15196123719215393, + "discrimination_2pl": 0.2655159533023834, + "difficulty_simple": -0.42933258951480796, + "percent_correct": 0.6057142857142858, + "n_responses": 175 + }, + { + "problem_id": 179563, + "difficulty_1pl": -1.5893322229385376, + "difficulty_2pl": -0.048052653670310974, + "discrimination_2pl": 0.32640063762664795, + "difficulty_simple": -0.7607053315712362, + "percent_correct": 0.6815068493150684, + "n_responses": 292 + }, + { + "problem_id": 180312, + "difficulty_1pl": -0.6851051449775696, + "difficulty_2pl": -0.051401253789663315, + "discrimination_2pl": 0.1588958352804184, + "difficulty_simple": -0.3507752218115442, + "percent_correct": 0.5868055555555556, + "n_responses": 288 + }, + { + "problem_id": 596207, + "difficulty_1pl": -0.4722591042518616, + "difficulty_2pl": 0.07439640164375305, + "discrimination_2pl": 0.15879489481449127, + "difficulty_simple": -0.6664789334777839, + "percent_correct": 0.6607142857142857, + "n_responses": 56 + }, + { + "problem_id": 297716, + "difficulty_1pl": 6.232153415679932, + "difficulty_2pl": -0.0881274938583374, + "discrimination_2pl": 0.059555843472480774, + "difficulty_simple": 0.6443570163905133, + "percent_correct": 0.3442622950819672, + "n_responses": 61 + }, + { + "problem_id": 297864, + "difficulty_1pl": 2.4235377311706543, + "difficulty_2pl": -0.07191529124975204, + "discrimination_2pl": 0.1519096940755844, + "difficulty_simple": -0.18232155679395445, + "percent_correct": 0.5454545454545454, + "n_responses": 66 + }, + { + "problem_id": 296303, + "difficulty_1pl": -8.093338012695312, + "difficulty_2pl": -0.07016752660274506, + "discrimination_2pl": 0.20626549422740936, + "difficulty_simple": -1.9042374526547452, + "percent_correct": 0.8703703703703703, + "n_responses": 54 + }, + { + "problem_id": 371766, + "difficulty_1pl": -4.73514461517334, + "difficulty_2pl": 0.047649022191762924, + "discrimination_2pl": 0.3207947015762329, + "difficulty_simple": -1.2144441041932317, + "percent_correct": 0.7710843373493976, + "n_responses": 166 + }, + { + "problem_id": 65337, + "difficulty_1pl": 0.7324995994567871, + "difficulty_2pl": -0.04043110832571983, + "discrimination_2pl": 0.22026927769184113, + "difficulty_simple": 0.05173567439918889, + "percent_correct": 0.4870689655172414, + "n_responses": 232 + }, + { + "problem_id": 65477, + "difficulty_1pl": -0.8400817513465881, + "difficulty_2pl": -0.037150781601667404, + "discrimination_2pl": 0.29473012685775757, + "difficulty_simple": -0.2446918875204126, + "percent_correct": 0.5608695652173913, + "n_responses": 230 + }, + { + "problem_id": 233989, + "difficulty_1pl": -7.5082106590271, + "difficulty_2pl": -0.31855282187461853, + "discrimination_2pl": 0.5899057388305664, + "difficulty_simple": -1.7498685275188952, + "percent_correct": 0.8519362186788155, + "n_responses": 439 + }, + { + "problem_id": 162424, + "difficulty_1pl": 7.703996181488037, + "difficulty_2pl": 0.016421057283878326, + "discrimination_2pl": 0.028764424845576286, + "difficulty_simple": 1.3862943611198906, + "percent_correct": 0.2, + "n_responses": 95 + }, + { + "problem_id": 1089, + "difficulty_1pl": 7.9911394119262695, + "difficulty_2pl": 0.06404418498277664, + "discrimination_2pl": 0.02641179785132408, + "difficulty_simple": 0.8850381883700505, + "percent_correct": 0.29213483146067415, + "n_responses": 89 + }, + { + "problem_id": 1366, + "difficulty_1pl": 7.721863269805908, + "difficulty_2pl": 0.1189412921667099, + "discrimination_2pl": 0.03447306156158447, + "difficulty_simple": 1.1664348850068706, + "percent_correct": 0.2375, + "n_responses": 80 + }, + { + "problem_id": 662, + "difficulty_1pl": 7.271900177001953, + "difficulty_2pl": -0.04489072039723396, + "discrimination_2pl": 0.029126431792974472, + "difficulty_simple": 1.2205021062771466, + "percent_correct": 0.22784810126582278, + "n_responses": 79 + }, + { + "problem_id": 569, + "difficulty_1pl": 2.4713284969329834, + "difficulty_2pl": -0.0019952580332756042, + "discrimination_2pl": 0.08333194255828857, + "difficulty_simple": 0.4054651081081642, + "percent_correct": 0.4, + "n_responses": 80 + }, + { + "problem_id": 457, + "difficulty_1pl": 11.653512954711914, + "difficulty_2pl": 0.08152639865875244, + "discrimination_2pl": 0.03111295774579048, + "difficulty_simple": 1.3256697393034558, + "percent_correct": 0.20987654320987653, + "n_responses": 81 + }, + { + "problem_id": 162201, + "difficulty_1pl": -1.0899649858474731, + "difficulty_2pl": 0.20861558616161346, + "discrimination_2pl": 0.18888095021247864, + "difficulty_simple": -0.5415972824327444, + "percent_correct": 0.632183908045977, + "n_responses": 87 + }, + { + "problem_id": 162087, + "difficulty_1pl": 5.256502628326416, + "difficulty_2pl": 0.056554216891527176, + "discrimination_2pl": 0.038852959871292114, + "difficulty_simple": 0.7786693539981074, + "percent_correct": 0.3146067415730337, + "n_responses": 89 + }, + { + "problem_id": 312, + "difficulty_1pl": 1.6409624814987183, + "difficulty_2pl": 0.03819649666547775, + "discrimination_2pl": 0.04959840700030327, + "difficulty_simple": 0.22778393087071197, + "percent_correct": 0.44329896907216493, + "n_responses": 97 + }, + { + "problem_id": 207, + "difficulty_1pl": 0.47026294469833374, + "difficulty_2pl": -0.0861506536602974, + "discrimination_2pl": 0.22994083166122437, + "difficulty_simple": -0.5273549257172012, + "percent_correct": 0.6288659793814433, + "n_responses": 97 + }, + { + "problem_id": 93, + "difficulty_1pl": -0.08078430593013763, + "difficulty_2pl": -0.07734771817922592, + "discrimination_2pl": 0.10855743288993835, + "difficulty_simple": -0.3541718137206139, + "percent_correct": 0.5876288659793815, + "n_responses": 97 + }, + { + "problem_id": 1195, + "difficulty_1pl": 5.4248948097229, + "difficulty_2pl": -0.06813251227140427, + "discrimination_2pl": 0.07644820958375931, + "difficulty_simple": 0.5172565140962812, + "percent_correct": 0.37349397590361444, + "n_responses": 83 + }, + { + "problem_id": 195291, + "difficulty_1pl": 3.002363681793213, + "difficulty_2pl": 0.013880892656743526, + "discrimination_2pl": 0.08206497877836227, + "difficulty_simple": 0.1445812288111075, + "percent_correct": 0.4639175257731959, + "n_responses": 97 + }, + { + "problem_id": 62772, + "difficulty_1pl": -4.316592693328857, + "difficulty_2pl": -0.18656185269355774, + "discrimination_2pl": 0.4891892075538635, + "difficulty_simple": -1.14438070712369, + "percent_correct": 0.7584830339321357, + "n_responses": 501 + }, + { + "problem_id": 48656, + "difficulty_1pl": 0.9113196730613708, + "difficulty_2pl": -0.08491513133049011, + "discrimination_2pl": 0.3329180181026459, + "difficulty_simple": -0.03252319170556018, + "percent_correct": 0.508130081300813, + "n_responses": 246 + }, + { + "problem_id": 48812, + "difficulty_1pl": 1.3126870393753052, + "difficulty_2pl": -0.004435151349753141, + "discrimination_2pl": 0.33305874466896057, + "difficulty_simple": -0.09134977858822808, + "percent_correct": 0.5228215767634855, + "n_responses": 241 + }, + { + "problem_id": 48968, + "difficulty_1pl": 1.3336867094039917, + "difficulty_2pl": 0.16351301968097687, + "discrimination_2pl": 0.23687118291854858, + "difficulty_simple": 0.11679926774625068, + "percent_correct": 0.4708333333333333, + "n_responses": 240 + }, + { + "problem_id": 223532, + "difficulty_1pl": -4.237215518951416, + "difficulty_2pl": -0.1696937531232834, + "discrimination_2pl": 0.4633624851703644, + "difficulty_simple": -0.9618139868982388, + "percent_correct": 0.7234848484848485, + "n_responses": 264 + }, + { + "problem_id": 223692, + "difficulty_1pl": -4.42344331741333, + "difficulty_2pl": -0.04240152984857559, + "discrimination_2pl": 0.4210765063762665, + "difficulty_simple": -0.7741162430936123, + "percent_correct": 0.6844106463878327, + "n_responses": 263 + }, + { + "problem_id": 36511, + "difficulty_1pl": -1.2183436155319214, + "difficulty_2pl": -0.010894164443016052, + "discrimination_2pl": 0.3754662573337555, + "difficulty_simple": -0.4177352006999785, + "percent_correct": 0.6029411764705882, + "n_responses": 272 + }, + { + "problem_id": 36673, + "difficulty_1pl": 0.816103994846344, + "difficulty_2pl": 0.17349949479103088, + "discrimination_2pl": 0.2262350171804428, + "difficulty_simple": 0.014925650216675792, + "percent_correct": 0.4962686567164179, + "n_responses": 268 + }, + { + "problem_id": 423100, + "difficulty_1pl": 0.8956512212753296, + "difficulty_2pl": 0.11715680360794067, + "discrimination_2pl": 0.3209627568721771, + "difficulty_simple": -0.25249576332673707, + "percent_correct": 0.5627906976744186, + "n_responses": 645 + }, + { + "problem_id": 424891, + "difficulty_1pl": -5.020396709442139, + "difficulty_2pl": -0.27657100558280945, + "discrimination_2pl": 0.6723001003265381, + "difficulty_simple": -1.1578551222309703, + "percent_correct": 0.7609427609427609, + "n_responses": 594 + }, + { + "problem_id": 424722, + "difficulty_1pl": -3.119971752166748, + "difficulty_2pl": -0.08688077330589294, + "discrimination_2pl": 0.5346625447273254, + "difficulty_simple": -0.9481142776869925, + "percent_correct": 0.7207357859531772, + "n_responses": 598 + }, + { + "problem_id": 424567, + "difficulty_1pl": -5.130846977233887, + "difficulty_2pl": -0.1951637715101242, + "discrimination_2pl": 0.5844221115112305, + "difficulty_simple": -1.023871004270294, + "percent_correct": 0.7357259380097879, + "n_responses": 613 + }, + { + "problem_id": 424393, + "difficulty_1pl": -0.03937574848532677, + "difficulty_2pl": 0.14536376297473907, + "discrimination_2pl": 0.4114742875099182, + "difficulty_simple": -0.48385574205388693, + "percent_correct": 0.618657937806874, + "n_responses": 611 + }, + { + "problem_id": 424251, + "difficulty_1pl": -0.8815210461616516, + "difficulty_2pl": 0.09473500400781631, + "discrimination_2pl": 0.4335102438926697, + "difficulty_simple": -0.6019569424953486, + "percent_correct": 0.6461038961038961, + "n_responses": 616 + }, + { + "problem_id": 423932, + "difficulty_1pl": -2.368957042694092, + "difficulty_2pl": 0.1876557171344757, + "discrimination_2pl": 0.42775964736938477, + "difficulty_simple": -0.41091471287572895, + "percent_correct": 0.6013071895424836, + "n_responses": 612 + }, + { + "problem_id": 423601, + "difficulty_1pl": 0.8931236863136292, + "difficulty_2pl": -0.05078664422035217, + "discrimination_2pl": 0.25642088055610657, + "difficulty_simple": -0.028170876966696335, + "percent_correct": 0.5070422535211268, + "n_responses": 639 + }, + { + "problem_id": 423276, + "difficulty_1pl": -11.639067649841309, + "difficulty_2pl": -0.7044070959091187, + "discrimination_2pl": 0.7465234398841858, + "difficulty_simple": -2.0794415416798353, + "percent_correct": 0.8888888888888888, + "n_responses": 648 + }, + { + "problem_id": 153861, + "difficulty_1pl": -4.510022163391113, + "difficulty_2pl": -0.08030218631029129, + "discrimination_2pl": 0.21194793283939362, + "difficulty_simple": -0.9745596399981309, + "percent_correct": 0.726027397260274, + "n_responses": 73 + }, + { + "problem_id": 125684, + "difficulty_1pl": 6.662267208099365, + "difficulty_2pl": 0.1758762001991272, + "discrimination_2pl": 0.07968400418758392, + "difficulty_simple": 1.0386488239005525, + "percent_correct": 0.26141078838174275, + "n_responses": 241 + }, + { + "problem_id": 125853, + "difficulty_1pl": 3.339082717895508, + "difficulty_2pl": 0.015853241086006165, + "discrimination_2pl": 0.12898659706115723, + "difficulty_simple": 0.579818495252942, + "percent_correct": 0.358974358974359, + "n_responses": 234 + }, + { + "problem_id": 188812, + "difficulty_1pl": 1.3538637161254883, + "difficulty_2pl": 0.05220722779631615, + "discrimination_2pl": 0.16746628284454346, + "difficulty_simple": -0.475669366781413, + "percent_correct": 0.6167247386759582, + "n_responses": 287 + }, + { + "problem_id": 1630, + "difficulty_1pl": 5.8401360511779785, + "difficulty_2pl": -0.0876210629940033, + "discrimination_2pl": 0.04253575950860977, + "difficulty_simple": 0.7807452398779313, + "percent_correct": 0.3141592920353982, + "n_responses": 226 + }, + { + "problem_id": 1468, + "difficulty_1pl": 13.715473175048828, + "difficulty_2pl": 0.005299782380461693, + "discrimination_2pl": 0.02020801045000553, + "difficulty_simple": 2.063693184711697, + "percent_correct": 0.11267605633802817, + "n_responses": 142 + }, + { + "problem_id": 24305, + "difficulty_1pl": -2.7962002754211426, + "difficulty_2pl": 0.02590922638773918, + "discrimination_2pl": 0.19063688814640045, + "difficulty_simple": -0.5705448584676128, + "percent_correct": 0.6388888888888888, + "n_responses": 72 + }, + { + "problem_id": 24438, + "difficulty_1pl": 13.39927864074707, + "difficulty_2pl": 0.02765883132815361, + "discrimination_2pl": 0.038956426084041595, + "difficulty_simple": 1.6625477377480486, + "percent_correct": 0.15942028985507245, + "n_responses": 69 + }, + { + "problem_id": 24564, + "difficulty_1pl": 2.6401121616363525, + "difficulty_2pl": -0.23564958572387695, + "discrimination_2pl": 0.10181865841150284, + "difficulty_simple": 0.5187937934151675, + "percent_correct": 0.373134328358209, + "n_responses": 67 + }, + { + "problem_id": 61213, + "difficulty_1pl": -2.1196205615997314, + "difficulty_2pl": -0.00762876495718956, + "discrimination_2pl": 0.20525629818439484, + "difficulty_simple": -0.06899287148695156, + "percent_correct": 0.5172413793103449, + "n_responses": 58 + }, + { + "problem_id": 61289, + "difficulty_1pl": 2.8450045585632324, + "difficulty_2pl": 0.18212959170341492, + "discrimination_2pl": 0.11469094455242157, + "difficulty_simple": 0.7985076962177716, + "percent_correct": 0.3103448275862069, + "n_responses": 58 + }, + { + "problem_id": 154066, + "difficulty_1pl": 4.033823013305664, + "difficulty_2pl": 0.07496613264083862, + "discrimination_2pl": 0.10124126076698303, + "difficulty_simple": 0.6583004492297773, + "percent_correct": 0.3411214953271028, + "n_responses": 214 + }, + { + "problem_id": 140189, + "difficulty_1pl": -0.479995995759964, + "difficulty_2pl": 0.052906762808561325, + "discrimination_2pl": 0.26762381196022034, + "difficulty_simple": -0.3022808718729334, + "percent_correct": 0.575, + "n_responses": 120 + }, + { + "problem_id": 173561, + "difficulty_1pl": -6.873935222625732, + "difficulty_2pl": -0.1309502273797989, + "discrimination_2pl": 0.4921054542064667, + "difficulty_simple": -1.4806050405911322, + "percent_correct": 0.814663951120163, + "n_responses": 491 + }, + { + "problem_id": 173897, + "difficulty_1pl": -0.924267053604126, + "difficulty_2pl": 0.018933141604065895, + "discrimination_2pl": 0.35266822576522827, + "difficulty_simple": -0.6625637571878651, + "percent_correct": 0.6598360655737705, + "n_responses": 488 + }, + { + "problem_id": 232667, + "difficulty_1pl": -15.882608413696289, + "difficulty_2pl": -0.42230814695358276, + "discrimination_2pl": 0.6101523637771606, + "difficulty_simple": -2.762117422372485, + "percent_correct": 0.9405940594059405, + "n_responses": 404 + }, + { + "problem_id": 233319, + "difficulty_1pl": 2.5540995597839355, + "difficulty_2pl": -0.0279432013630867, + "discrimination_2pl": 0.1855108141899109, + "difficulty_simple": 0.16551443847757333, + "percent_correct": 0.45871559633027525, + "n_responses": 218 + }, + { + "problem_id": 233520, + "difficulty_1pl": 0.6917921304702759, + "difficulty_2pl": -0.05295029655098915, + "discrimination_2pl": 0.2591305375099182, + "difficulty_simple": -0.046091107200266976, + "percent_correct": 0.511520737327189, + "n_responses": 217 + }, + { + "problem_id": 68650, + "difficulty_1pl": -1.3350694179534912, + "difficulty_2pl": 0.1110977753996849, + "discrimination_2pl": 0.2803274095058441, + "difficulty_simple": -0.5465437063680699, + "percent_correct": 0.6333333333333333, + "n_responses": 240 + }, + { + "problem_id": 68821, + "difficulty_1pl": -15.901019096374512, + "difficulty_2pl": -0.20206370949745178, + "discrimination_2pl": 0.5725587606430054, + "difficulty_simple": -2.306027437185019, + "percent_correct": 0.909375, + "n_responses": 320 + }, + { + "problem_id": 233480, + "difficulty_1pl": 2.803403377532959, + "difficulty_2pl": 0.050145223736763, + "discrimination_2pl": 0.14776189625263214, + "difficulty_simple": 0.2477382063201369, + "percent_correct": 0.43838028169014087, + "n_responses": 568 + }, + { + "problem_id": 276040, + "difficulty_1pl": 1.5577306747436523, + "difficulty_2pl": 0.2149001508951187, + "discrimination_2pl": 0.25786295533180237, + "difficulty_simple": -0.013937507843781512, + "percent_correct": 0.5034843205574913, + "n_responses": 574 + }, + { + "problem_id": 276196, + "difficulty_1pl": -1.844043493270874, + "difficulty_2pl": 0.03591800481081009, + "discrimination_2pl": 0.4006153345108032, + "difficulty_simple": -0.6851790109107684, + "percent_correct": 0.6648936170212766, + "n_responses": 564 + }, + { + "problem_id": 276338, + "difficulty_1pl": -1.231600284576416, + "difficulty_2pl": 0.11254803836345673, + "discrimination_2pl": 0.47182947397232056, + "difficulty_simple": -0.6162881750343338, + "percent_correct": 0.6493738819320215, + "n_responses": 559 + }, + { + "problem_id": 276480, + "difficulty_1pl": -0.19333809614181519, + "difficulty_2pl": -0.004677164368331432, + "discrimination_2pl": 0.3872053027153015, + "difficulty_simple": -0.44610275383999065, + "percent_correct": 0.6097122302158273, + "n_responses": 556 + }, + { + "problem_id": 276705, + "difficulty_1pl": -7.706045627593994, + "difficulty_2pl": -0.22697532176971436, + "discrimination_2pl": 0.6257294416427612, + "difficulty_simple": -1.3463777537144481, + "percent_correct": 0.7935368043087971, + "n_responses": 557 + }, + { + "problem_id": 277212, + "difficulty_1pl": -4.582764625549316, + "difficulty_2pl": -0.1445348560810089, + "discrimination_2pl": 0.5971047282218933, + "difficulty_simple": -0.9444616088408512, + "percent_correct": 0.72, + "n_responses": 550 + }, + { + "problem_id": 277038, + "difficulty_1pl": -1.887978434562683, + "difficulty_2pl": 0.018612653017044067, + "discrimination_2pl": 0.4314258396625519, + "difficulty_simple": -0.655406852577098, + "percent_correct": 0.6582278481012658, + "n_responses": 553 + }, + { + "problem_id": 276874, + "difficulty_1pl": -0.3366571068763733, + "difficulty_2pl": 0.12831847369670868, + "discrimination_2pl": 0.3489326238632202, + "difficulty_simple": -0.2394040721859899, + "percent_correct": 0.5595667870036101, + "n_responses": 554 + }, + { + "problem_id": 254122, + "difficulty_1pl": -2.764495849609375, + "difficulty_2pl": 0.0545150488615036, + "discrimination_2pl": 0.18031449615955353, + "difficulty_simple": -0.8183103235139514, + "percent_correct": 0.6938775510204082, + "n_responses": 147 + }, + { + "problem_id": 254509, + "difficulty_1pl": -1.1739729642868042, + "difficulty_2pl": -0.017867866903543472, + "discrimination_2pl": 0.22931262850761414, + "difficulty_simple": -1.0788096613719302, + "percent_correct": 0.746268656716418, + "n_responses": 67 + }, + { + "problem_id": 146354, + "difficulty_1pl": -3.4318838119506836, + "difficulty_2pl": -0.042366623878479004, + "discrimination_2pl": 0.422582745552063, + "difficulty_simple": -0.9702537267646395, + "percent_correct": 0.7251700680272108, + "n_responses": 735 + }, + { + "problem_id": 146523, + "difficulty_1pl": -0.38004550337791443, + "difficulty_2pl": -0.013955377042293549, + "discrimination_2pl": 0.3366456925868988, + "difficulty_simple": -0.45266079944443866, + "percent_correct": 0.611271676300578, + "n_responses": 692 + }, + { + "problem_id": 146750, + "difficulty_1pl": 3.9254634380340576, + "difficulty_2pl": 0.12031839042901993, + "discrimination_2pl": 0.16235513985157013, + "difficulty_simple": 0.33647223662121273, + "percent_correct": 0.4166666666666667, + "n_responses": 528 + }, + { + "problem_id": 28640, + "difficulty_1pl": -11.448274612426758, + "difficulty_2pl": -0.016658442094922066, + "discrimination_2pl": 0.39816492795944214, + "difficulty_simple": -2.8526314299133175, + "percent_correct": 0.9454545454545454, + "n_responses": 110 + }, + { + "problem_id": 412814, + "difficulty_1pl": -1.5272729396820068, + "difficulty_2pl": -0.04032326117157936, + "discrimination_2pl": 0.46443048119544983, + "difficulty_simple": -0.7112308559932404, + "percent_correct": 0.6706730769230769, + "n_responses": 416 + }, + { + "problem_id": 46049, + "difficulty_1pl": 3.7303080558776855, + "difficulty_2pl": -0.1106075644493103, + "discrimination_2pl": 0.10632837563753128, + "difficulty_simple": -0.5853943192634995, + "percent_correct": 0.6423076923076924, + "n_responses": 260 + }, + { + "problem_id": 45750, + "difficulty_1pl": -7.258865833282471, + "difficulty_2pl": 0.18626247346401215, + "discrimination_2pl": 0.43655550479888916, + "difficulty_simple": -1.91959284073794, + "percent_correct": 0.872093023255814, + "n_responses": 258 + }, + { + "problem_id": 45439, + "difficulty_1pl": -4.605433940887451, + "difficulty_2pl": 0.041907742619514465, + "discrimination_2pl": 0.38294684886932373, + "difficulty_simple": -1.667196746586293, + "percent_correct": 0.8412017167381974, + "n_responses": 233 + }, + { + "problem_id": 45068, + "difficulty_1pl": -5.4615397453308105, + "difficulty_2pl": -0.027348510921001434, + "discrimination_2pl": 0.3734995722770691, + "difficulty_simple": -1.5404450409471486, + "percent_correct": 0.8235294117647058, + "n_responses": 289 + }, + { + "problem_id": 295905, + "difficulty_1pl": 2.8793816566467285, + "difficulty_2pl": -0.09306804090738297, + "discrimination_2pl": 0.1425894796848297, + "difficulty_simple": 0.034685557987889894, + "percent_correct": 0.4913294797687861, + "n_responses": 173 + }, + { + "problem_id": 296039, + "difficulty_1pl": 3.2062084674835205, + "difficulty_2pl": -0.02829655632376671, + "discrimination_2pl": 0.07119105756282806, + "difficulty_simple": 0.42028019389330484, + "percent_correct": 0.39644970414201186, + "n_responses": 169 + }, + { + "problem_id": 407824, + "difficulty_1pl": -0.7767440676689148, + "difficulty_2pl": 0.04577130451798439, + "discrimination_2pl": 0.27439165115356445, + "difficulty_simple": -0.7328875092094593, + "percent_correct": 0.6754385964912281, + "n_responses": 114 + }, + { + "problem_id": 408023, + "difficulty_1pl": -1.8982328176498413, + "difficulty_2pl": 0.03257200866937637, + "discrimination_2pl": 0.24495314061641693, + "difficulty_simple": -0.972732042779107, + "percent_correct": 0.7256637168141593, + "n_responses": 113 + }, + { + "problem_id": 529857, + "difficulty_1pl": 8.484025955200195, + "difficulty_2pl": 0.015049298293888569, + "discrimination_2pl": 0.04022420197725296, + "difficulty_simple": 1.2776605201170952, + "percent_correct": 0.21794871794871795, + "n_responses": 78 + }, + { + "problem_id": 528652, + "difficulty_1pl": -0.12485067546367645, + "difficulty_2pl": 0.06871280074119568, + "discrimination_2pl": 0.13583385944366455, + "difficulty_simple": -0.35020242943311486, + "percent_correct": 0.5866666666666667, + "n_responses": 75 + }, + { + "problem_id": 528780, + "difficulty_1pl": 9.793035507202148, + "difficulty_2pl": -0.0670979842543602, + "discrimination_2pl": 0.025502946227788925, + "difficulty_simple": 1.287854288306638, + "percent_correct": 0.21621621621621623, + "n_responses": 74 + }, + { + "problem_id": 529063, + "difficulty_1pl": 0.16565954685211182, + "difficulty_2pl": 0.08693955093622208, + "discrimination_2pl": 0.06742062419652939, + "difficulty_simple": -0.1451820098444981, + "percent_correct": 0.5362318840579711, + "n_responses": 69 + }, + { + "problem_id": 529389, + "difficulty_1pl": 3.564025402069092, + "difficulty_2pl": 0.09232506155967712, + "discrimination_2pl": 0.04725126177072525, + "difficulty_simple": 0.43078291609245434, + "percent_correct": 0.3939393939393939, + "n_responses": 66 + }, + { + "problem_id": 412709, + "difficulty_1pl": 0.8263441920280457, + "difficulty_2pl": 0.28611308336257935, + "discrimination_2pl": 0.292997270822525, + "difficulty_simple": -0.08474122845509066, + "percent_correct": 0.5211726384364821, + "n_responses": 614 + }, + { + "problem_id": 15689, + "difficulty_1pl": 2.8064446449279785, + "difficulty_2pl": 0.18562579154968262, + "discrimination_2pl": 0.1785089373588562, + "difficulty_simple": 0.3600027340314072, + "percent_correct": 0.410958904109589, + "n_responses": 511 + }, + { + "problem_id": 425079, + "difficulty_1pl": 4.596182346343994, + "difficulty_2pl": 0.030143097043037415, + "discrimination_2pl": 0.08216600120067596, + "difficulty_simple": 0.47769866546753587, + "percent_correct": 0.3827956989247312, + "n_responses": 465 + }, + { + "problem_id": 212585, + "difficulty_1pl": -4.5350661277771, + "difficulty_2pl": -0.052016690373420715, + "discrimination_2pl": 0.34335145354270935, + "difficulty_simple": -0.9007865453381899, + "percent_correct": 0.7111111111111111, + "n_responses": 135 + }, + { + "problem_id": 52069, + "difficulty_1pl": -2.5611255168914795, + "difficulty_2pl": 0.009606356732547283, + "discrimination_2pl": 0.3995700776576996, + "difficulty_simple": -0.6140098600012213, + "percent_correct": 0.648854961832061, + "n_responses": 262 + }, + { + "problem_id": 533341, + "difficulty_1pl": 2.48264479637146, + "difficulty_2pl": 0.009843547828495502, + "discrimination_2pl": 0.21491922438144684, + "difficulty_simple": 0.20294084399669038, + "percent_correct": 0.449438202247191, + "n_responses": 267 + }, + { + "problem_id": 196678, + "difficulty_1pl": -7.165187835693359, + "difficulty_2pl": -0.17597681283950806, + "discrimination_2pl": 0.30358630418777466, + "difficulty_simple": -1.0750817912579158, + "percent_correct": 0.7455621301775148, + "n_responses": 169 + }, + { + "problem_id": 278407, + "difficulty_1pl": -2.072686195373535, + "difficulty_2pl": 0.057672251015901566, + "discrimination_2pl": 0.2811366617679596, + "difficulty_simple": -0.6892024022689288, + "percent_correct": 0.6657894736842105, + "n_responses": 380 + }, + { + "problem_id": 278747, + "difficulty_1pl": 3.4754135608673096, + "difficulty_2pl": 0.07036300748586655, + "discrimination_2pl": 0.16341671347618103, + "difficulty_simple": 0.280674335294376, + "percent_correct": 0.43028846153846156, + "n_responses": 416 + }, + { + "problem_id": 7541, + "difficulty_1pl": -8.296578407287598, + "difficulty_2pl": -0.041517287492752075, + "discrimination_2pl": 0.3208913505077362, + "difficulty_simple": -1.3163357725129803, + "percent_correct": 0.7885714285714286, + "n_responses": 175 + }, + { + "problem_id": 7398, + "difficulty_1pl": 1.5978959798812866, + "difficulty_2pl": 0.14777901768684387, + "discrimination_2pl": 0.17078876495361328, + "difficulty_simple": 0.1350362838039431, + "percent_correct": 0.46629213483146065, + "n_responses": 534 + }, + { + "problem_id": 7859, + "difficulty_1pl": -4.822352886199951, + "difficulty_2pl": -0.16373170912265778, + "discrimination_2pl": 0.5405219793319702, + "difficulty_simple": -1.0986122886681098, + "percent_correct": 0.75, + "n_responses": 520 + }, + { + "problem_id": 8050, + "difficulty_1pl": -5.9667792320251465, + "difficulty_2pl": -0.11261088401079178, + "discrimination_2pl": 0.6320590376853943, + "difficulty_simple": -1.1849403721566072, + "percent_correct": 0.7658349328214972, + "n_responses": 521 + }, + { + "problem_id": 8202, + "difficulty_1pl": -13.130143165588379, + "difficulty_2pl": -0.45927247405052185, + "discrimination_2pl": 0.7295231819152832, + "difficulty_simple": -2.4849066497880012, + "percent_correct": 0.9230769230769231, + "n_responses": 520 + }, + { + "problem_id": 454526, + "difficulty_1pl": -0.9068630337715149, + "difficulty_2pl": -0.03025004081428051, + "discrimination_2pl": 0.24510173499584198, + "difficulty_simple": -0.3905394578914884, + "percent_correct": 0.5964125560538116, + "n_responses": 223 + }, + { + "problem_id": 2034, + "difficulty_1pl": 1.6276752948760986, + "difficulty_2pl": 0.2030850499868393, + "discrimination_2pl": 0.2726253569126129, + "difficulty_simple": 0.09716374845364767, + "percent_correct": 0.47572815533980584, + "n_responses": 412 + }, + { + "problem_id": 361179, + "difficulty_1pl": -1.7355812788009644, + "difficulty_2pl": -0.0042132060043513775, + "discrimination_2pl": 0.4066581130027771, + "difficulty_simple": -0.7450550401619633, + "percent_correct": 0.6781002638522428, + "n_responses": 379 + }, + { + "problem_id": 361422, + "difficulty_1pl": -0.13351432979106903, + "difficulty_2pl": 0.12451171875, + "discrimination_2pl": 0.33965563774108887, + "difficulty_simple": -0.37021916904648977, + "percent_correct": 0.5915119363395226, + "n_responses": 377 + }, + { + "problem_id": 20788, + "difficulty_1pl": 3.9633376598358154, + "difficulty_2pl": 0.11624355614185333, + "discrimination_2pl": 0.04067147523164749, + "difficulty_simple": 0.5978370007556204, + "percent_correct": 0.3548387096774194, + "n_responses": 62 + }, + { + "problem_id": 21032, + "difficulty_1pl": -0.7200713157653809, + "difficulty_2pl": 0.053792234510183334, + "discrimination_2pl": 0.055266693234443665, + "difficulty_simple": -0.393042588109607, + "percent_correct": 0.5970149253731343, + "n_responses": 67 + }, + { + "problem_id": 478012, + "difficulty_1pl": 3.170151710510254, + "difficulty_2pl": 0.12837806344032288, + "discrimination_2pl": 0.11369811743497849, + "difficulty_simple": 0.29257205774597267, + "percent_correct": 0.4273743016759777, + "n_responses": 358 + }, + { + "problem_id": 475820, + "difficulty_1pl": 12.537939071655273, + "difficulty_2pl": -0.013683989644050598, + "discrimination_2pl": 0.08135183155536652, + "difficulty_simple": 2.2407096892759584, + "percent_correct": 0.09615384615384616, + "n_responses": 52 + }, + { + "problem_id": 475938, + "difficulty_1pl": -0.8429380059242249, + "difficulty_2pl": -0.05537670478224754, + "discrimination_2pl": 0.16262780129909515, + "difficulty_simple": 0.24116205681688824, + "percent_correct": 0.44, + "n_responses": 50 + }, + { + "problem_id": 74236, + "difficulty_1pl": -0.29208457469940186, + "difficulty_2pl": -0.0830792561173439, + "discrimination_2pl": 0.10712622106075287, + "difficulty_simple": -0.17229999833293566, + "percent_correct": 0.54296875, + "n_responses": 256 + }, + { + "problem_id": 6476, + "difficulty_1pl": -6.750753879547119, + "difficulty_2pl": 0.012855575419962406, + "discrimination_2pl": 0.2958366870880127, + "difficulty_simple": -1.574035985383184, + "percent_correct": 0.8283582089552238, + "n_responses": 134 + }, + { + "problem_id": 163692, + "difficulty_1pl": -0.739912748336792, + "difficulty_2pl": -0.14621271193027496, + "discrimination_2pl": 0.16849137842655182, + "difficulty_simple": -0.32721291120841595, + "percent_correct": 0.581081081081081, + "n_responses": 74 + }, + { + "problem_id": 163965, + "difficulty_1pl": 2.4594995975494385, + "difficulty_2pl": -0.02105771005153656, + "discrimination_2pl": 0.06301502138376236, + "difficulty_simple": 0.8303483020734305, + "percent_correct": 0.30357142857142855, + "n_responses": 56 + }, + { + "problem_id": 163825, + "difficulty_1pl": 1.8879624605178833, + "difficulty_2pl": -0.09530249238014221, + "discrimination_2pl": 0.06057928502559662, + "difficulty_simple": 0.13720112151348515, + "percent_correct": 0.4657534246575342, + "n_responses": 73 + }, + { + "problem_id": 206824, + "difficulty_1pl": -1.4992955923080444, + "difficulty_2pl": 0.06736438721418381, + "discrimination_2pl": 0.255097895860672, + "difficulty_simple": -1.0628942060660302, + "percent_correct": 0.7432432432432432, + "n_responses": 74 + }, + { + "problem_id": 206643, + "difficulty_1pl": 1.0893657207489014, + "difficulty_2pl": 0.15661758184432983, + "discrimination_2pl": 0.11640021950006485, + "difficulty_simple": -0.13353139262452263, + "percent_correct": 0.5333333333333333, + "n_responses": 75 + }, + { + "problem_id": 43700, + "difficulty_1pl": -3.055983781814575, + "difficulty_2pl": 0.011616101488471031, + "discrimination_2pl": 0.2027895748615265, + "difficulty_simple": -0.734450986701181, + "percent_correct": 0.67578125, + "n_responses": 256 + }, + { + "problem_id": 44115, + "difficulty_1pl": -5.735806465148926, + "difficulty_2pl": -0.10179828107357025, + "discrimination_2pl": 0.4151126444339752, + "difficulty_simple": -0.8571018604838246, + "percent_correct": 0.702054794520548, + "n_responses": 292 + }, + { + "problem_id": 44248, + "difficulty_1pl": -2.284241199493408, + "difficulty_2pl": -0.12817156314849854, + "discrimination_2pl": 0.3559948801994324, + "difficulty_simple": -0.6418538861723946, + "percent_correct": 0.6551724137931034, + "n_responses": 290 + }, + { + "problem_id": 44396, + "difficulty_1pl": 1.5837061405181885, + "difficulty_2pl": -0.11582071334123611, + "discrimination_2pl": 0.12726926803588867, + "difficulty_simple": -0.041385216162854364, + "percent_correct": 0.5103448275862069, + "n_responses": 290 + }, + { + "problem_id": 61617, + "difficulty_1pl": 0.526466429233551, + "difficulty_2pl": -0.06366343051195145, + "discrimination_2pl": 0.09127281606197357, + "difficulty_simple": -0.07232066157962613, + "percent_correct": 0.5180722891566265, + "n_responses": 83 + }, + { + "problem_id": 61764, + "difficulty_1pl": -0.5065239667892456, + "difficulty_2pl": 0.0648479238152504, + "discrimination_2pl": 0.10106860846281052, + "difficulty_simple": -0.048790164169432056, + "percent_correct": 0.5121951219512195, + "n_responses": 82 + }, + { + "problem_id": 61905, + "difficulty_1pl": 0.5515599846839905, + "difficulty_2pl": -0.030405456200242043, + "discrimination_2pl": 0.12412666529417038, + "difficulty_simple": 0.12361395596717682, + "percent_correct": 0.4691358024691358, + "n_responses": 81 + }, + { + "problem_id": 60703, + "difficulty_1pl": -2.579282760620117, + "difficulty_2pl": 0.0004690110217779875, + "discrimination_2pl": 0.10899218916893005, + "difficulty_simple": -0.5996211225491218, + "percent_correct": 0.6455696202531646, + "n_responses": 79 + }, + { + "problem_id": 62040, + "difficulty_1pl": -7.780963897705078, + "difficulty_2pl": -0.1854453682899475, + "discrimination_2pl": 0.18218138813972473, + "difficulty_simple": -1.4017985476558559, + "percent_correct": 0.8024691358024691, + "n_responses": 81 + }, + { + "problem_id": 84521, + "difficulty_1pl": -16.42302131652832, + "difficulty_2pl": -0.30594027042388916, + "discrimination_2pl": 0.54203861951828, + "difficulty_simple": -2.7990219793079376, + "percent_correct": 0.9426229508196722, + "n_responses": 244 + }, + { + "problem_id": 84657, + "difficulty_1pl": 1.2809829711914062, + "difficulty_2pl": 0.030274365097284317, + "discrimination_2pl": 0.12578743696212769, + "difficulty_simple": 0.06559728248581327, + "percent_correct": 0.48360655737704916, + "n_responses": 244 + }, + { + "problem_id": 90063, + "difficulty_1pl": -5.351740837097168, + "difficulty_2pl": 0.055373892188072205, + "discrimination_2pl": 0.2544291019439697, + "difficulty_simple": -1.4000876832522267, + "percent_correct": 0.8021978021978022, + "n_responses": 91 + }, + { + "problem_id": 90188, + "difficulty_1pl": 4.224649906158447, + "difficulty_2pl": 0.005337504670023918, + "discrimination_2pl": 0.026265757158398628, + "difficulty_simple": 0.7949298748698876, + "percent_correct": 0.3111111111111111, + "n_responses": 90 + }, + { + "problem_id": 90560, + "difficulty_1pl": -2.1884312629699707, + "difficulty_2pl": -0.06041591614484787, + "discrimination_2pl": 0.2182215452194214, + "difficulty_simple": -0.6603573577369544, + "percent_correct": 0.6593406593406593, + "n_responses": 91 + }, + { + "problem_id": 90428, + "difficulty_1pl": 1.478088617324829, + "difficulty_2pl": 0.0723569318652153, + "discrimination_2pl": 0.10319598764181137, + "difficulty_simple": 0.06595796779179737, + "percent_correct": 0.4835164835164835, + "n_responses": 91 + }, + { + "problem_id": 590738, + "difficulty_1pl": -12.303783416748047, + "difficulty_2pl": -0.03357284516096115, + "discrimination_2pl": 0.3199988007545471, + "difficulty_simple": -3.2188758248682015, + "percent_correct": 0.9615384615384616, + "n_responses": 78 + }, + { + "problem_id": 590968, + "difficulty_1pl": -0.19893822073936462, + "difficulty_2pl": 0.048492562025785446, + "discrimination_2pl": 0.15823319554328918, + "difficulty_simple": -0.9162907318741551, + "percent_correct": 0.7142857142857143, + "n_responses": 77 + }, + { + "problem_id": 591069, + "difficulty_1pl": 1.190043330192566, + "difficulty_2pl": 0.11382047832012177, + "discrimination_2pl": 0.1292547881603241, + "difficulty_simple": -0.3946541920039486, + "percent_correct": 0.5974025974025974, + "n_responses": 77 + }, + { + "problem_id": 590413, + "difficulty_1pl": 8.502309799194336, + "difficulty_2pl": 0.02819763869047165, + "discrimination_2pl": 0.027429601177573204, + "difficulty_simple": 0.42744401482693956, + "percent_correct": 0.39473684210526316, + "n_responses": 76 + }, + { + "problem_id": 590847, + "difficulty_1pl": 3.9931890964508057, + "difficulty_2pl": 0.029146939516067505, + "discrimination_2pl": 0.040135037153959274, + "difficulty_simple": 0.07796154146971171, + "percent_correct": 0.4805194805194805, + "n_responses": 77 + }, + { + "problem_id": 124041, + "difficulty_1pl": 3.363654613494873, + "difficulty_2pl": 0.10181038081645966, + "discrimination_2pl": 0.03782395273447037, + "difficulty_simple": 0.46559694915278815, + "percent_correct": 0.3856589147286822, + "n_responses": 516 + }, + { + "problem_id": 123919, + "difficulty_1pl": -0.8583922982215881, + "difficulty_2pl": -0.11498978734016418, + "discrimination_2pl": 0.26258864998817444, + "difficulty_simple": -0.6160762432755665, + "percent_correct": 0.649325626204239, + "n_responses": 519 + }, + { + "problem_id": 636416, + "difficulty_1pl": -1.3536790609359741, + "difficulty_2pl": -0.029389072209596634, + "discrimination_2pl": 0.24514643847942352, + "difficulty_simple": -0.8150369981689825, + "percent_correct": 0.6931818181818182, + "n_responses": 88 + }, + { + "problem_id": 296489, + "difficulty_1pl": -0.023314809426665306, + "difficulty_2pl": 0.06577418744564056, + "discrimination_2pl": 0.24893249571323395, + "difficulty_simple": -0.6931471805599451, + "percent_correct": 0.6666666666666666, + "n_responses": 78 + }, + { + "problem_id": 296579, + "difficulty_1pl": 2.943532705307007, + "difficulty_2pl": -0.0537620484828949, + "discrimination_2pl": 0.11767054349184036, + "difficulty_simple": 0.0, + "percent_correct": 0.5, + "n_responses": 78 + }, + { + "problem_id": 152004, + "difficulty_1pl": -8.31346607208252, + "difficulty_2pl": 0.05159563198685646, + "discrimination_2pl": 0.31361955404281616, + "difficulty_simple": -1.4790760945708568, + "percent_correct": 0.8144329896907216, + "n_responses": 97 + }, + { + "problem_id": 152091, + "difficulty_1pl": -2.4529314041137695, + "difficulty_2pl": -0.13332633674144745, + "discrimination_2pl": 0.33432140946388245, + "difficulty_simple": -1.1124056108004454, + "percent_correct": 0.7525773195876289, + "n_responses": 97 + }, + { + "problem_id": 152206, + "difficulty_1pl": -3.4058799743652344, + "difficulty_2pl": 0.1480552852153778, + "discrimination_2pl": 0.27950918674468994, + "difficulty_simple": -1.004583339019833, + "percent_correct": 0.7319587628865979, + "n_responses": 97 + }, + { + "problem_id": 182285, + "difficulty_1pl": -6.570174217224121, + "difficulty_2pl": -0.0314619243144989, + "discrimination_2pl": 0.059616465121507645, + "difficulty_simple": -0.6678293725756556, + "percent_correct": 0.6610169491525424, + "n_responses": 59 + }, + { + "problem_id": 182483, + "difficulty_1pl": -6.35271692276001, + "difficulty_2pl": -0.10755797475576401, + "discrimination_2pl": 0.11535491794347763, + "difficulty_simple": -1.0531499145913525, + "percent_correct": 0.7413793103448276, + "n_responses": 58 + }, + { + "problem_id": 182704, + "difficulty_1pl": -5.613649368286133, + "difficulty_2pl": 0.028287917375564575, + "discrimination_2pl": 0.08370232582092285, + "difficulty_simple": -0.9650808960435872, + "percent_correct": 0.7241379310344828, + "n_responses": 58 + }, + { + "problem_id": 427706, + "difficulty_1pl": 5.847506523132324, + "difficulty_2pl": 0.04769400507211685, + "discrimination_2pl": 0.030528677627444267, + "difficulty_simple": 0.7472144018302211, + "percent_correct": 0.32142857142857145, + "n_responses": 56 + }, + { + "problem_id": 427819, + "difficulty_1pl": -0.8061851859092712, + "difficulty_2pl": 0.03314155712723732, + "discrimination_2pl": 0.17927488684654236, + "difficulty_simple": -0.6664789334777839, + "percent_correct": 0.6607142857142857, + "n_responses": 56 + }, + { + "problem_id": 427946, + "difficulty_1pl": 4.991556644439697, + "difficulty_2pl": 0.08152415603399277, + "discrimination_2pl": 0.03456578031182289, + "difficulty_simple": 0.6664789334777839, + "percent_correct": 0.3392857142857143, + "n_responses": 56 + }, + { + "problem_id": 156936, + "difficulty_1pl": -3.839021921157837, + "difficulty_2pl": -0.19311165809631348, + "discrimination_2pl": 0.6021217703819275, + "difficulty_simple": -1.0325758125347606, + "percent_correct": 0.7374149659863946, + "n_responses": 735 + }, + { + "problem_id": 157262, + "difficulty_1pl": 0.03500756248831749, + "difficulty_2pl": 0.17136061191558838, + "discrimination_2pl": 0.34257060289382935, + "difficulty_simple": -0.6050128388256919, + "percent_correct": 0.6468023255813954, + "n_responses": 688 + }, + { + "problem_id": 157401, + "difficulty_1pl": 0.9189230799674988, + "difficulty_2pl": 0.0967395007610321, + "discrimination_2pl": 0.12350486218929291, + "difficulty_simple": 0.020498521548340753, + "percent_correct": 0.49487554904831627, + "n_responses": 683 + }, + { + "problem_id": 157516, + "difficulty_1pl": -13.741491317749023, + "difficulty_2pl": -0.5183688998222351, + "discrimination_2pl": 0.7311749458312988, + "difficulty_simple": -2.1235913262927655, + "percent_correct": 0.8931750741839762, + "n_responses": 674 + }, + { + "problem_id": 157655, + "difficulty_1pl": -4.971350193023682, + "difficulty_2pl": -0.3562011420726776, + "discrimination_2pl": 0.7033906579017639, + "difficulty_simple": -1.702096742916805, + "percent_correct": 0.8458083832335329, + "n_responses": 668 + }, + { + "problem_id": 158297, + "difficulty_1pl": 0.8282347321510315, + "difficulty_2pl": 0.29329556226730347, + "discrimination_2pl": 0.1418241411447525, + "difficulty_simple": 0.06434968155623397, + "percent_correct": 0.48391812865497075, + "n_responses": 684 + }, + { + "problem_id": 158652, + "difficulty_1pl": 0.2928154766559601, + "difficulty_2pl": 0.21262384951114655, + "discrimination_2pl": 0.285422146320343, + "difficulty_simple": -0.2727629716883895, + "percent_correct": 0.5677710843373494, + "n_responses": 664 + }, + { + "problem_id": 158771, + "difficulty_1pl": 0.2678997814655304, + "difficulty_2pl": 0.06120650842785835, + "discrimination_2pl": 0.29405760765075684, + "difficulty_simple": -0.37707610484547815, + "percent_correct": 0.593167701863354, + "n_responses": 644 + }, + { + "problem_id": 158903, + "difficulty_1pl": -0.03895631805062294, + "difficulty_2pl": -0.028417615219950676, + "discrimination_2pl": 0.37380507588386536, + "difficulty_simple": -0.5737394491765601, + "percent_correct": 0.6396255850234009, + "n_responses": 641 + }, + { + "problem_id": 605230, + "difficulty_1pl": 9.707831382751465, + "difficulty_2pl": 0.08784864097833633, + "discrimination_2pl": 0.025119055062532425, + "difficulty_simple": 1.203972804325936, + "percent_correct": 0.23076923076923078, + "n_responses": 104 + }, + { + "problem_id": 605478, + "difficulty_1pl": 16.04672622680664, + "difficulty_2pl": 0.030624015256762505, + "discrimination_2pl": 0.018725089728832245, + "difficulty_simple": 2.5649493574615367, + "percent_correct": 0.07142857142857142, + "n_responses": 98 + }, + { + "problem_id": 606133, + "difficulty_1pl": 2.190606117248535, + "difficulty_2pl": -0.003877114737406373, + "discrimination_2pl": 0.08430365473031998, + "difficulty_simple": 0.1752040890250906, + "percent_correct": 0.4563106796116505, + "n_responses": 103 + }, + { + "problem_id": 383708, + "difficulty_1pl": -2.5808212757110596, + "difficulty_2pl": -0.016147788614034653, + "discrimination_2pl": 0.27130770683288574, + "difficulty_simple": -0.9162907318741551, + "percent_correct": 0.7142857142857143, + "n_responses": 77 + }, + { + "problem_id": 383830, + "difficulty_1pl": 3.257085084915161, + "difficulty_2pl": 0.00638060737401247, + "discrimination_2pl": 0.11330603808164597, + "difficulty_simple": 0.4054651081081642, + "percent_correct": 0.4, + "n_responses": 75 + }, + { + "problem_id": 383961, + "difficulty_1pl": -1.4081608057022095, + "difficulty_2pl": 0.03234453126788139, + "discrimination_2pl": 0.17944683134555817, + "difficulty_simple": -0.48285177172358473, + "percent_correct": 0.618421052631579, + "n_responses": 76 + }, + { + "problem_id": 383334, + "difficulty_1pl": 4.088212490081787, + "difficulty_2pl": -0.0726224035024643, + "discrimination_2pl": 0.05355984345078468, + "difficulty_simple": 0.4883527679139322, + "percent_correct": 0.38028169014084506, + "n_responses": 71 + }, + { + "problem_id": 383524, + "difficulty_1pl": 2.411989212036133, + "difficulty_2pl": -0.13723255693912506, + "discrimination_2pl": 0.07352852076292038, + "difficulty_simple": -0.0571584138399484, + "percent_correct": 0.5142857142857142, + "n_responses": 70 + }, + { + "problem_id": 576826, + "difficulty_1pl": -4.282647132873535, + "difficulty_2pl": 0.06151033565402031, + "discrimination_2pl": 0.14930503070354462, + "difficulty_simple": -0.8472978603872034, + "percent_correct": 0.7, + "n_responses": 50 + }, + { + "problem_id": 133202, + "difficulty_1pl": -0.5464568138122559, + "difficulty_2pl": -0.09295270591974258, + "discrimination_2pl": 0.10664977133274078, + "difficulty_simple": -0.2876820724517808, + "percent_correct": 0.5714285714285714, + "n_responses": 70 + }, + { + "problem_id": 133338, + "difficulty_1pl": 8.358108520507812, + "difficulty_2pl": -0.03747643530368805, + "discrimination_2pl": 0.01666990853846073, + "difficulty_simple": 1.192138346678933, + "percent_correct": 0.2328767123287671, + "n_responses": 73 + }, + { + "problem_id": 131914, + "difficulty_1pl": 0.03394713252782822, + "difficulty_2pl": 0.02891438826918602, + "discrimination_2pl": 0.04256204515695572, + "difficulty_simple": -0.08961215868968692, + "percent_correct": 0.5223880597014925, + "n_responses": 67 + }, + { + "problem_id": 132213, + "difficulty_1pl": -0.756622850894928, + "difficulty_2pl": 0.018944133073091507, + "discrimination_2pl": 0.06422943621873856, + "difficulty_simple": -0.5108256237659907, + "percent_correct": 0.625, + "n_responses": 64 + }, + { + "problem_id": 133518, + "difficulty_1pl": -2.962740659713745, + "difficulty_2pl": 0.0012965528294444084, + "discrimination_2pl": 0.12062109261751175, + "difficulty_simple": -0.5355182363563621, + "percent_correct": 0.6307692307692307, + "n_responses": 65 + }, + { + "problem_id": 42014, + "difficulty_1pl": -7.508856296539307, + "difficulty_2pl": -0.26347434520721436, + "discrimination_2pl": 0.4561103582382202, + "difficulty_simple": -1.631118978495424, + "percent_correct": 0.8363228699551569, + "n_responses": 446 + }, + { + "problem_id": 42156, + "difficulty_1pl": -0.29662570357322693, + "difficulty_2pl": 0.12701229751110077, + "discrimination_2pl": 0.26753687858581543, + "difficulty_simple": -0.42050298547270504, + "percent_correct": 0.6036036036036037, + "n_responses": 444 + }, + { + "problem_id": 144794, + "difficulty_1pl": -9.946949005126953, + "difficulty_2pl": -0.27299070358276367, + "discrimination_2pl": 0.5711722373962402, + "difficulty_simple": -1.6094379124341005, + "percent_correct": 0.8333333333333334, + "n_responses": 312 + }, + { + "problem_id": 144928, + "difficulty_1pl": -8.381978034973145, + "difficulty_2pl": -0.25279510021209717, + "discrimination_2pl": 0.4885093867778778, + "difficulty_simple": -1.4065790322913965, + "percent_correct": 0.8032258064516129, + "n_responses": 310 + }, + { + "problem_id": 114950, + "difficulty_1pl": -2.567833185195923, + "difficulty_2pl": -0.02510732226073742, + "discrimination_2pl": 0.2814587652683258, + "difficulty_simple": -0.9886113934537809, + "percent_correct": 0.7288135593220338, + "n_responses": 59 + }, + { + "problem_id": 115064, + "difficulty_1pl": -10.004196166992188, + "difficulty_2pl": 0.029651470482349396, + "discrimination_2pl": 0.27089759707450867, + "difficulty_simple": -1.4733057381095207, + "percent_correct": 0.8135593220338984, + "n_responses": 59 + }, + { + "problem_id": 115193, + "difficulty_1pl": -2.8348450660705566, + "difficulty_2pl": -0.07320569455623627, + "discrimination_2pl": 0.2264813631772995, + "difficulty_simple": -0.9650808960435872, + "percent_correct": 0.7241379310344828, + "n_responses": 58 + }, + { + "problem_id": 114344, + "difficulty_1pl": 2.033064365386963, + "difficulty_2pl": -0.07485967874526978, + "discrimination_2pl": 0.11922095715999603, + "difficulty_simple": -0.10536051565782616, + "percent_correct": 0.5263157894736842, + "n_responses": 57 + }, + { + "problem_id": 423450, + "difficulty_1pl": 1.2312235832214355, + "difficulty_2pl": 0.0007822815678082407, + "discrimination_2pl": 0.20352265238761902, + "difficulty_simple": -0.18419246472976636, + "percent_correct": 0.5459183673469388, + "n_responses": 392 + }, + { + "problem_id": 423768, + "difficulty_1pl": -2.953949451446533, + "difficulty_2pl": 0.1275450587272644, + "discrimination_2pl": 0.44410449266433716, + "difficulty_simple": -0.9677726877092986, + "percent_correct": 0.7246753246753247, + "n_responses": 385 + }, + { + "problem_id": 424081, + "difficulty_1pl": -4.346555709838867, + "difficulty_2pl": -0.09271371364593506, + "discrimination_2pl": 0.49819228053092957, + "difficulty_simple": -0.9990446929030674, + "percent_correct": 0.7308707124010554, + "n_responses": 379 + }, + { + "problem_id": 109056, + "difficulty_1pl": -17.426870346069336, + "difficulty_2pl": -0.6606369018554688, + "discrimination_2pl": 0.7039533853530884, + "difficulty_simple": -2.967064378684419, + "percent_correct": 0.951063829787234, + "n_responses": 470 + }, + { + "problem_id": 98785, + "difficulty_1pl": 6.43325138092041, + "difficulty_2pl": -0.04717506468296051, + "discrimination_2pl": 0.024458294734358788, + "difficulty_simple": 1.3470736479666094, + "percent_correct": 0.20634920634920634, + "n_responses": 63 + }, + { + "problem_id": 651306, + "difficulty_1pl": 2.3659305572509766, + "difficulty_2pl": 0.17466196417808533, + "discrimination_2pl": 0.05308762192726135, + "difficulty_simple": 0.48550781578170094, + "percent_correct": 0.38095238095238093, + "n_responses": 63 + }, + { + "problem_id": 651370, + "difficulty_1pl": 8.688729286193848, + "difficulty_2pl": -0.021338000893592834, + "discrimination_2pl": 0.06177270784974098, + "difficulty_simple": 1.5141277326297755, + "percent_correct": 0.18032786885245902, + "n_responses": 61 + }, + { + "problem_id": 455868, + "difficulty_1pl": 0.14417503774166107, + "difficulty_2pl": -0.02940898947417736, + "discrimination_2pl": 0.1481591910123825, + "difficulty_simple": 0.3483066942682158, + "percent_correct": 0.41379310344827586, + "n_responses": 58 + }, + { + "problem_id": 455995, + "difficulty_1pl": 0.9889756441116333, + "difficulty_2pl": -0.10448378324508667, + "discrimination_2pl": 0.0905398353934288, + "difficulty_simple": 0.49247648509779424, + "percent_correct": 0.3793103448275862, + "n_responses": 58 + }, + { + "problem_id": 310779, + "difficulty_1pl": 1.9323214292526245, + "difficulty_2pl": 0.1490825116634369, + "discrimination_2pl": 0.06710267066955566, + "difficulty_simple": 0.1442496088445467, + "percent_correct": 0.464, + "n_responses": 125 + }, + { + "problem_id": 310891, + "difficulty_1pl": 2.454505443572998, + "difficulty_2pl": -0.017550386488437653, + "discrimination_2pl": 0.05041992664337158, + "difficulty_simple": 0.3506568716131695, + "percent_correct": 0.4132231404958678, + "n_responses": 121 + }, + { + "problem_id": 3634, + "difficulty_1pl": -6.326062202453613, + "difficulty_2pl": 0.1073559820652008, + "discrimination_2pl": 0.1335216462612152, + "difficulty_simple": -0.5423242908253616, + "percent_correct": 0.6323529411764706, + "n_responses": 68 + }, + { + "problem_id": 18591, + "difficulty_1pl": 10.450926780700684, + "difficulty_2pl": 0.050064198672771454, + "discrimination_2pl": 0.019941437989473343, + "difficulty_simple": 1.6567840330312986, + "percent_correct": 0.16019417475728157, + "n_responses": 206 + }, + { + "problem_id": 546775, + "difficulty_1pl": -7.426136493682861, + "difficulty_2pl": 0.1796920746564865, + "discrimination_2pl": 0.3786451816558838, + "difficulty_simple": -1.6451559950361798, + "percent_correct": 0.8382352941176471, + "n_responses": 136 + }, + { + "problem_id": 546982, + "difficulty_1pl": -5.378592014312744, + "difficulty_2pl": -0.19929496943950653, + "discrimination_2pl": 0.328639417886734, + "difficulty_simple": -1.2431935174792175, + "percent_correct": 0.7761194029850746, + "n_responses": 134 + }, + { + "problem_id": 96584, + "difficulty_1pl": 3.6701114177703857, + "difficulty_2pl": 0.03143293038010597, + "discrimination_2pl": 0.04337548837065697, + "difficulty_simple": 0.5596157879354227, + "percent_correct": 0.36363636363636365, + "n_responses": 55 + }, + { + "problem_id": 96780, + "difficulty_1pl": -0.6145675182342529, + "difficulty_2pl": 0.06878617405891418, + "discrimination_2pl": 0.09092596918344498, + "difficulty_simple": -0.03774032798284697, + "percent_correct": 0.5094339622641509, + "n_responses": 53 + }, + { + "problem_id": 547291, + "difficulty_1pl": -0.44309496879577637, + "difficulty_2pl": -0.18359798192977905, + "discrimination_2pl": 0.23118582367897034, + "difficulty_simple": -0.7770286645406475, + "percent_correct": 0.6850393700787402, + "n_responses": 127 + }, + { + "problem_id": 547415, + "difficulty_1pl": 3.788681745529175, + "difficulty_2pl": -0.02942376770079136, + "discrimination_2pl": 0.05807234346866608, + "difficulty_simple": 0.5065612249795332, + "percent_correct": 0.376, + "n_responses": 125 + }, + { + "problem_id": 547591, + "difficulty_1pl": -4.651211738586426, + "difficulty_2pl": 0.1087401956319809, + "discrimination_2pl": 0.2791927754878998, + "difficulty_simple": -1.178654996341646, + "percent_correct": 0.7647058823529411, + "n_responses": 119 + }, + { + "problem_id": 547864, + "difficulty_1pl": -5.250344753265381, + "difficulty_2pl": -0.12260156124830246, + "discrimination_2pl": 0.38832101225852966, + "difficulty_simple": -1.6843392206072183, + "percent_correct": 0.8434782608695652, + "n_responses": 115 + }, + { + "problem_id": 275383, + "difficulty_1pl": -6.111355781555176, + "difficulty_2pl": 0.13689804077148438, + "discrimination_2pl": 0.27502357959747314, + "difficulty_simple": -1.3217558399823195, + "percent_correct": 0.7894736842105263, + "n_responses": 57 + }, + { + "problem_id": 275536, + "difficulty_1pl": 6.856084823608398, + "difficulty_2pl": 0.07455168664455414, + "discrimination_2pl": 0.07289054244756699, + "difficulty_simple": 0.6151856390902335, + "percent_correct": 0.3508771929824561, + "n_responses": 57 + }, + { + "problem_id": 24639, + "difficulty_1pl": -0.9184635281562805, + "difficulty_2pl": 0.12383702397346497, + "discrimination_2pl": 0.28882595896720886, + "difficulty_simple": -0.6253245842211844, + "percent_correct": 0.6514285714285715, + "n_responses": 175 + }, + { + "problem_id": 331115, + "difficulty_1pl": -7.494413375854492, + "difficulty_2pl": -0.23100996017456055, + "discrimination_2pl": 0.500575065612793, + "difficulty_simple": -1.3637200390813518, + "percent_correct": 0.7963636363636364, + "n_responses": 275 + }, + { + "problem_id": 330959, + "difficulty_1pl": 1.7268269062042236, + "difficulty_2pl": 0.10508432984352112, + "discrimination_2pl": 0.25486359000205994, + "difficulty_simple": -0.2834715399154374, + "percent_correct": 0.5703971119133574, + "n_responses": 277 + }, + { + "problem_id": 454858, + "difficulty_1pl": -4.075114727020264, + "difficulty_2pl": -0.06941454857587814, + "discrimination_2pl": 0.20535989105701447, + "difficulty_simple": -0.6678293725756556, + "percent_correct": 0.6610169491525424, + "n_responses": 59 + }, + { + "problem_id": 455078, + "difficulty_1pl": -0.9855751991271973, + "difficulty_2pl": -0.013278322294354439, + "discrimination_2pl": 0.1457735300064087, + "difficulty_simple": 0.06899287148695121, + "percent_correct": 0.4827586206896552, + "n_responses": 58 + }, + { + "problem_id": 455397, + "difficulty_1pl": -15.352925300598145, + "difficulty_2pl": 0.048017945140600204, + "discrimination_2pl": 0.16838425397872925, + "difficulty_simple": -2.360854001118022, + "percent_correct": 0.9137931034482759, + "n_responses": 58 + }, + { + "problem_id": 457114, + "difficulty_1pl": -2.569124460220337, + "difficulty_2pl": -0.15693415701389313, + "discrimination_2pl": 0.14978408813476562, + "difficulty_simple": -0.5108256237659907, + "percent_correct": 0.625, + "n_responses": 56 + }, + { + "problem_id": 456745, + "difficulty_1pl": -6.317850112915039, + "difficulty_2pl": -0.03902627155184746, + "discrimination_2pl": 0.2350034862756729, + "difficulty_simple": -0.9162907318741551, + "percent_correct": 0.7142857142857143, + "n_responses": 56 + }, + { + "problem_id": 457262, + "difficulty_1pl": 2.731220006942749, + "difficulty_2pl": 0.05522814020514488, + "discrimination_2pl": 0.07430901378393173, + "difficulty_simple": 0.7731898882334819, + "percent_correct": 0.3157894736842105, + "n_responses": 57 + }, + { + "problem_id": 333811, + "difficulty_1pl": 7.225543022155762, + "difficulty_2pl": 0.19177816808223724, + "discrimination_2pl": 0.029228761792182922, + "difficulty_simple": 1.1526795099383855, + "percent_correct": 0.24, + "n_responses": 50 + }, + { + "problem_id": 278232, + "difficulty_1pl": -7.923713684082031, + "difficulty_2pl": 0.05003808066248894, + "discrimination_2pl": 0.2284655123949051, + "difficulty_simple": -1.4069136483226263, + "percent_correct": 0.8032786885245902, + "n_responses": 61 + }, + { + "problem_id": 278345, + "difficulty_1pl": 0.6445801258087158, + "difficulty_2pl": 0.04838697239756584, + "discrimination_2pl": 0.11709123849868774, + "difficulty_simple": 0.12921173148000625, + "percent_correct": 0.46774193548387094, + "n_responses": 62 + }, + { + "problem_id": 238851, + "difficulty_1pl": -1.8955196142196655, + "difficulty_2pl": 0.01756240800023079, + "discrimination_2pl": 0.34474849700927734, + "difficulty_simple": -0.5835849780484189, + "percent_correct": 0.6418918918918919, + "n_responses": 444 + }, + { + "problem_id": 278455, + "difficulty_1pl": 5.439416885375977, + "difficulty_2pl": -0.05347779765725136, + "discrimination_2pl": 0.04073704034090042, + "difficulty_simple": 1.01160091167848, + "percent_correct": 0.26666666666666666, + "n_responses": 60 + }, + { + "problem_id": 354320, + "difficulty_1pl": 1.7808489799499512, + "difficulty_2pl": 0.18893329799175262, + "discrimination_2pl": 0.12226083874702454, + "difficulty_simple": 0.44802472252696024, + "percent_correct": 0.3898305084745763, + "n_responses": 59 + }, + { + "problem_id": 277925, + "difficulty_1pl": 1.407743215560913, + "difficulty_2pl": -0.011385228484869003, + "discrimination_2pl": 0.07772320508956909, + "difficulty_simple": 0.5389965007326869, + "percent_correct": 0.3684210526315789, + "n_responses": 57 + }, + { + "problem_id": 56477, + "difficulty_1pl": 1.3824232816696167, + "difficulty_2pl": -0.08243925869464874, + "discrimination_2pl": 0.17434267699718475, + "difficulty_simple": 0.0, + "percent_correct": 0.5, + "n_responses": 62 + }, + { + "problem_id": 56614, + "difficulty_1pl": -1.7601643800735474, + "difficulty_2pl": -0.06080106273293495, + "discrimination_2pl": 0.18723924458026886, + "difficulty_simple": -0.578077850775158, + "percent_correct": 0.640625, + "n_responses": 64 + }, + { + "problem_id": 337992, + "difficulty_1pl": 6.051418304443359, + "difficulty_2pl": 0.05880169942975044, + "discrimination_2pl": 0.03370633348822594, + "difficulty_simple": 0.6931471805599455, + "percent_correct": 0.3333333333333333, + "n_responses": 54 + }, + { + "problem_id": 270843, + "difficulty_1pl": 1.6147832870483398, + "difficulty_2pl": 0.048539768904447556, + "discrimination_2pl": 0.09799196571111679, + "difficulty_simple": 0.029852963149681343, + "percent_correct": 0.4925373134328358, + "n_responses": 67 + }, + { + "problem_id": 268402, + "difficulty_1pl": -1.5183217525482178, + "difficulty_2pl": 0.10878027230501175, + "discrimination_2pl": 0.07389363646507263, + "difficulty_simple": -0.49469624183610705, + "percent_correct": 0.6212121212121212, + "n_responses": 66 + }, + { + "problem_id": 270246, + "difficulty_1pl": 7.828474044799805, + "difficulty_2pl": 0.08046261221170425, + "discrimination_2pl": 0.0242158193141222, + "difficulty_simple": 1.1192315758708453, + "percent_correct": 0.24615384615384617, + "n_responses": 65 + }, + { + "problem_id": 311102, + "difficulty_1pl": 0.8387295603752136, + "difficulty_2pl": -0.020633190870285034, + "discrimination_2pl": 0.07417846471071243, + "difficulty_simple": -0.16989903679539747, + "percent_correct": 0.5423728813559322, + "n_responses": 118 + }, + { + "problem_id": 311333, + "difficulty_1pl": -6.875245094299316, + "difficulty_2pl": 0.001665302086621523, + "discrimination_2pl": 0.30112865567207336, + "difficulty_simple": -1.6843392206072183, + "percent_correct": 0.8434782608695652, + "n_responses": 115 + }, + { + "problem_id": 109387, + "difficulty_1pl": -13.040472030639648, + "difficulty_2pl": -0.27756059169769287, + "discrimination_2pl": 0.6118167042732239, + "difficulty_simple": -2.4188855486902066, + "percent_correct": 0.9182561307901907, + "n_responses": 367 + }, + { + "problem_id": 109501, + "difficulty_1pl": -1.9883230924606323, + "difficulty_2pl": -0.055606260895729065, + "discrimination_2pl": 0.32372429966926575, + "difficulty_simple": -0.831733343846092, + "percent_correct": 0.6967213114754098, + "n_responses": 366 + }, + { + "problem_id": 109628, + "difficulty_1pl": 0.6022033095359802, + "difficulty_2pl": -0.06347648799419403, + "discrimination_2pl": 0.20609286427497864, + "difficulty_simple": -0.16430305129127654, + "percent_correct": 0.5409836065573771, + "n_responses": 366 + }, + { + "problem_id": 223087, + "difficulty_1pl": -4.9661946296691895, + "difficulty_2pl": -0.22626130282878876, + "discrimination_2pl": 0.3887888193130493, + "difficulty_simple": -0.7783049889002521, + "percent_correct": 0.6853146853146853, + "n_responses": 286 + }, + { + "problem_id": 56749, + "difficulty_1pl": 7.668437957763672, + "difficulty_2pl": 0.1651095598936081, + "discrimination_2pl": 0.04311712458729744, + "difficulty_simple": 1.366876275262789, + "percent_correct": 0.203125, + "n_responses": 64 + }, + { + "problem_id": 54317, + "difficulty_1pl": -4.442692756652832, + "difficulty_2pl": -0.09154371172189713, + "discrimination_2pl": 0.28822171688079834, + "difficulty_simple": -1.1192315758708453, + "percent_correct": 0.7538461538461538, + "n_responses": 65 + }, + { + "problem_id": 54441, + "difficulty_1pl": -1.6332095861434937, + "difficulty_2pl": 0.02547546476125717, + "discrimination_2pl": 0.3026522397994995, + "difficulty_simple": -0.3794896217049037, + "percent_correct": 0.59375, + "n_responses": 64 + }, + { + "problem_id": 54562, + "difficulty_1pl": 7.325124740600586, + "difficulty_2pl": -0.06613318622112274, + "discrimination_2pl": 0.03986995667219162, + "difficulty_simple": 1.1420974006078486, + "percent_correct": 0.24193548387096775, + "n_responses": 62 + }, + { + "problem_id": 54666, + "difficulty_1pl": 4.7145280838012695, + "difficulty_2pl": 0.03074122965335846, + "discrimination_2pl": 0.07411720603704453, + "difficulty_simple": 0.7419373447293773, + "percent_correct": 0.3225806451612903, + "n_responses": 62 + }, + { + "problem_id": 55067, + "difficulty_1pl": 1.9354026317596436, + "difficulty_2pl": -0.022061053663492203, + "discrimination_2pl": 0.11577311158180237, + "difficulty_simple": 0.20067069546215124, + "percent_correct": 0.45, + "n_responses": 60 + }, + { + "problem_id": 55944, + "difficulty_1pl": -7.407726764678955, + "difficulty_2pl": -0.05963527411222458, + "discrimination_2pl": 0.2611735165119171, + "difficulty_simple": -0.9650808960435872, + "percent_correct": 0.7241379310344828, + "n_responses": 58 + }, + { + "problem_id": 56163, + "difficulty_1pl": -2.6147940158843994, + "difficulty_2pl": 0.08137848228216171, + "discrimination_2pl": 0.23878280818462372, + "difficulty_simple": -0.719122666963206, + "percent_correct": 0.6724137931034483, + "n_responses": 58 + }, + { + "problem_id": 149451, + "difficulty_1pl": 3.9632418155670166, + "difficulty_2pl": 0.054454099386930466, + "discrimination_2pl": 0.07942532747983932, + "difficulty_simple": 0.37021916904648944, + "percent_correct": 0.40848806366047746, + "n_responses": 377 + }, + { + "problem_id": 149829, + "difficulty_1pl": -7.0060858726501465, + "difficulty_2pl": -0.18675662577152252, + "discrimination_2pl": 0.4377502501010895, + "difficulty_simple": -1.1020784966445962, + "percent_correct": 0.7506493506493507, + "n_responses": 385 + }, + { + "problem_id": 150161, + "difficulty_1pl": -4.584158897399902, + "difficulty_2pl": -0.038541264832019806, + "discrimination_2pl": 0.4297028183937073, + "difficulty_simple": -1.306587618509148, + "percent_correct": 0.7869415807560137, + "n_responses": 291 + }, + { + "problem_id": 150514, + "difficulty_1pl": -0.6140995621681213, + "difficulty_2pl": 0.14953294396400452, + "discrimination_2pl": 0.2502169907093048, + "difficulty_simple": -0.522052686359774, + "percent_correct": 0.6276276276276276, + "n_responses": 333 + }, + { + "problem_id": 275670, + "difficulty_1pl": -2.228222608566284, + "difficulty_2pl": -0.015185982920229435, + "discrimination_2pl": 0.26219257712364197, + "difficulty_simple": -0.8109302162163287, + "percent_correct": 0.6923076923076923, + "n_responses": 52 + }, + { + "problem_id": 25576, + "difficulty_1pl": 2.098491907119751, + "difficulty_2pl": -0.014317074790596962, + "discrimination_2pl": 0.14726583659648895, + "difficulty_simple": -0.18746295629437337, + "percent_correct": 0.5467289719626168, + "n_responses": 214 + }, + { + "problem_id": 25682, + "difficulty_1pl": -1.1159172058105469, + "difficulty_2pl": -0.03613528609275818, + "discrimination_2pl": 0.26766353845596313, + "difficulty_simple": -0.8001193001121129, + "percent_correct": 0.69, + "n_responses": 200 + }, + { + "problem_id": 25823, + "difficulty_1pl": -0.17260533571243286, + "difficulty_2pl": -0.08008634299039841, + "discrimination_2pl": 0.2596588432788849, + "difficulty_simple": -0.7755908497710201, + "percent_correct": 0.6847290640394089, + "n_responses": 203 + }, + { + "problem_id": 25949, + "difficulty_1pl": -9.115182876586914, + "difficulty_2pl": -0.1161598265171051, + "discrimination_2pl": 0.4854677617549896, + "difficulty_simple": -1.9227877316344593, + "percent_correct": 0.8724489795918368, + "n_responses": 196 + }, + { + "problem_id": 24929, + "difficulty_1pl": 3.9998133182525635, + "difficulty_2pl": -0.0040166620165109634, + "discrimination_2pl": 0.071989044547081, + "difficulty_simple": 0.3242396681855784, + "percent_correct": 0.41964285714285715, + "n_responses": 112 + }, + { + "problem_id": 30276, + "difficulty_1pl": -0.09069640934467316, + "difficulty_2pl": -0.01624326966702938, + "discrimination_2pl": 0.13735844194889069, + "difficulty_simple": -0.26510775041324197, + "percent_correct": 0.5658914728682171, + "n_responses": 129 + }, + { + "problem_id": 30601, + "difficulty_1pl": -2.2201263904571533, + "difficulty_2pl": -0.05606091022491455, + "discrimination_2pl": 0.2789456844329834, + "difficulty_simple": -0.7770286645406475, + "percent_correct": 0.6850393700787402, + "n_responses": 127 + }, + { + "problem_id": 30898, + "difficulty_1pl": 1.9038347005844116, + "difficulty_2pl": -0.01699667051434517, + "discrimination_2pl": 0.10679139941930771, + "difficulty_simple": 0.03278982282299097, + "percent_correct": 0.4918032786885246, + "n_responses": 122 + }, + { + "problem_id": 33992, + "difficulty_1pl": 5.617793083190918, + "difficulty_2pl": 0.03932906687259674, + "discrimination_2pl": 0.03434668853878975, + "difficulty_simple": 1.0986122886681098, + "percent_correct": 0.25, + "n_responses": 120 + }, + { + "problem_id": 31188, + "difficulty_1pl": 0.8860494494438171, + "difficulty_2pl": 0.11169873178005219, + "discrimination_2pl": 0.09630107879638672, + "difficulty_simple": -0.09015109699429745, + "percent_correct": 0.5225225225225225, + "n_responses": 111 + }, + { + "problem_id": 31433, + "difficulty_1pl": 11.763707160949707, + "difficulty_2pl": 0.05928678810596466, + "discrimination_2pl": 0.016531310975551605, + "difficulty_simple": 1.9042374526547452, + "percent_correct": 0.12962962962962962, + "n_responses": 108 + }, + { + "problem_id": 31856, + "difficulty_1pl": -0.7520017027854919, + "difficulty_2pl": -0.07101329416036606, + "discrimination_2pl": 0.16774119436740875, + "difficulty_simple": -0.551176919289558, + "percent_correct": 0.6344086021505376, + "n_responses": 93 + }, + { + "problem_id": 32069, + "difficulty_1pl": -2.7271602153778076, + "difficulty_2pl": 0.09675005823373795, + "discrimination_2pl": 0.21184247732162476, + "difficulty_simple": -0.9555114450274363, + "percent_correct": 0.7222222222222222, + "n_responses": 90 + }, + { + "problem_id": 32378, + "difficulty_1pl": -1.3619797229766846, + "difficulty_2pl": -0.0797555074095726, + "discrimination_2pl": 0.24152128398418427, + "difficulty_simple": -0.8472978603872034, + "percent_correct": 0.7, + "n_responses": 90 + }, + { + "problem_id": 32696, + "difficulty_1pl": -2.2406702041625977, + "difficulty_2pl": -0.19387541711330414, + "discrimination_2pl": 0.19553296267986298, + "difficulty_simple": -0.9007865453381899, + "percent_correct": 0.7111111111111111, + "n_responses": 90 + }, + { + "problem_id": 33021, + "difficulty_1pl": -5.413778781890869, + "difficulty_2pl": -0.04912230372428894, + "discrimination_2pl": 0.28117313981056213, + "difficulty_simple": -1.0691984034618165, + "percent_correct": 0.7444444444444445, + "n_responses": 90 + }, + { + "problem_id": 33334, + "difficulty_1pl": 2.5048000812530518, + "difficulty_2pl": 0.1046854555606842, + "discrimination_2pl": 0.06297774612903595, + "difficulty_simple": 0.1823215567939546, + "percent_correct": 0.45454545454545453, + "n_responses": 88 + }, + { + "problem_id": 33653, + "difficulty_1pl": 1.9829628467559814, + "difficulty_2pl": -0.06422258913516998, + "discrimination_2pl": 0.06620978564023972, + "difficulty_simple": 0.13976194237515882, + "percent_correct": 0.46511627906976744, + "n_responses": 86 + }, + { + "problem_id": 238558, + "difficulty_1pl": -2.102975606918335, + "difficulty_2pl": -0.05286458879709244, + "discrimination_2pl": 0.46034952998161316, + "difficulty_simple": -1.0481814350412175, + "percent_correct": 0.7404255319148936, + "n_responses": 470 + }, + { + "problem_id": 239163, + "difficulty_1pl": -3.1463494300842285, + "difficulty_2pl": -0.18999090790748596, + "discrimination_2pl": 0.5138332843780518, + "difficulty_simple": -1.2009379006307819, + "percent_correct": 0.7686915887850467, + "n_responses": 428 + }, + { + "problem_id": 223345, + "difficulty_1pl": -3.4333372116088867, + "difficulty_2pl": -0.08206693083047867, + "discrimination_2pl": 0.46979784965515137, + "difficulty_simple": -1.2755429968271876, + "percent_correct": 0.7816901408450704, + "n_responses": 284 + }, + { + "problem_id": 223453, + "difficulty_1pl": -0.2167053371667862, + "difficulty_2pl": 0.10543522983789444, + "discrimination_2pl": 0.20430171489715576, + "difficulty_simple": -0.365113812584597, + "percent_correct": 0.5902777777777778, + "n_responses": 288 + }, + { + "problem_id": 223225, + "difficulty_1pl": -4.833525657653809, + "difficulty_2pl": -0.027850842103362083, + "discrimination_2pl": 0.37016358971595764, + "difficulty_simple": -1.1752047341494933, + "percent_correct": 0.7640845070422535, + "n_responses": 284 + }, + { + "problem_id": 222978, + "difficulty_1pl": -8.842435836791992, + "difficulty_2pl": -0.2905108332633972, + "discrimination_2pl": 0.5076923966407776, + "difficulty_simple": -1.8677453762059766, + "percent_correct": 0.8661971830985915, + "n_responses": 284 + }, + { + "problem_id": 278775, + "difficulty_1pl": -12.42235279083252, + "difficulty_2pl": -0.1786080300807953, + "discrimination_2pl": 0.4808260202407837, + "difficulty_simple": -1.6239660129970097, + "percent_correct": 0.8353413654618473, + "n_responses": 249 + }, + { + "problem_id": 279032, + "difficulty_1pl": -8.022974967956543, + "difficulty_2pl": -0.1227191761136055, + "discrimination_2pl": 0.5047071576118469, + "difficulty_simple": -1.5864483942094016, + "percent_correct": 0.8301158301158301, + "n_responses": 259 + }, + { + "problem_id": 278653, + "difficulty_1pl": -2.6545605659484863, + "difficulty_2pl": 0.015149479731917381, + "discrimination_2pl": 0.42965102195739746, + "difficulty_simple": -0.8919980393051108, + "percent_correct": 0.7093023255813954, + "n_responses": 258 + }, + { + "problem_id": 278908, + "difficulty_1pl": -5.588373184204102, + "difficulty_2pl": -0.15118631720542908, + "discrimination_2pl": 0.3867913484573364, + "difficulty_simple": -1.2125565480173275, + "percent_correct": 0.7707509881422925, + "n_responses": 253 + }, + { + "problem_id": 215013, + "difficulty_1pl": -4.938091278076172, + "difficulty_2pl": -0.08850971609354019, + "discrimination_2pl": 0.2912728786468506, + "difficulty_simple": -1.0775588794702773, + "percent_correct": 0.746031746031746, + "n_responses": 126 + }, + { + "problem_id": 291134, + "difficulty_1pl": 4.602015018463135, + "difficulty_2pl": 0.02671942114830017, + "discrimination_2pl": 0.05582543462514877, + "difficulty_simple": 0.39551477725499645, + "percent_correct": 0.40239043824701193, + "n_responses": 251 + }, + { + "problem_id": 291282, + "difficulty_1pl": 2.2071571350097656, + "difficulty_2pl": -0.057860344648361206, + "discrimination_2pl": 0.11953876912593842, + "difficulty_simple": 0.07290677080808773, + "percent_correct": 0.4817813765182186, + "n_responses": 247 + }, + { + "problem_id": 204595, + "difficulty_1pl": -10.727559089660645, + "difficulty_2pl": -0.13833072781562805, + "discrimination_2pl": 0.5268111824989319, + "difficulty_simple": -1.9131203262323226, + "percent_correct": 0.8713692946058091, + "n_responses": 241 + }, + { + "problem_id": 204768, + "difficulty_1pl": -12.83028793334961, + "difficulty_2pl": -0.21167521178722382, + "discrimination_2pl": 0.5493656396865845, + "difficulty_simple": -1.9600947840472698, + "percent_correct": 0.8765432098765432, + "n_responses": 243 + }, + { + "problem_id": 62644, + "difficulty_1pl": -10.252937316894531, + "difficulty_2pl": -0.16051128506660461, + "discrimination_2pl": 0.5201126933097839, + "difficulty_simple": -1.8182862235614834, + "percent_correct": 0.8603603603603603, + "n_responses": 222 + }, + { + "problem_id": 177985, + "difficulty_1pl": 4.170912265777588, + "difficulty_2pl": 0.003661218099296093, + "discrimination_2pl": 0.028350500389933586, + "difficulty_simple": 0.38441169891033217, + "percent_correct": 0.4050632911392405, + "n_responses": 79 + }, + { + "problem_id": 269908, + "difficulty_1pl": 6.214107990264893, + "difficulty_2pl": 0.09494420140981674, + "discrimination_2pl": 0.03264603391289711, + "difficulty_simple": 0.7396671961948382, + "percent_correct": 0.3230769230769231, + "n_responses": 65 + }, + { + "problem_id": 270027, + "difficulty_1pl": 4.542684555053711, + "difficulty_2pl": -0.02513062208890915, + "discrimination_2pl": 0.04650317505002022, + "difficulty_simple": 0.5355182363563621, + "percent_correct": 0.36923076923076925, + "n_responses": 65 + }, + { + "problem_id": 46285, + "difficulty_1pl": -3.5064218044281006, + "difficulty_2pl": 0.10712259262800217, + "discrimination_2pl": 0.3611336946487427, + "difficulty_simple": -0.8780695190539572, + "percent_correct": 0.7064220183486238, + "n_responses": 109 + }, + { + "problem_id": 46425, + "difficulty_1pl": -2.3463807106018066, + "difficulty_2pl": -0.08275042474269867, + "discrimination_2pl": 0.2904750108718872, + "difficulty_simple": -0.7777045685880085, + "percent_correct": 0.6851851851851852, + "n_responses": 108 + }, + { + "problem_id": 46539, + "difficulty_1pl": -2.4035542011260986, + "difficulty_2pl": -0.045164208859205246, + "discrimination_2pl": 0.2823273241519928, + "difficulty_simple": -0.6109090823229731, + "percent_correct": 0.6481481481481481, + "n_responses": 108 + }, + { + "problem_id": 46683, + "difficulty_1pl": -1.5568740367889404, + "difficulty_2pl": 0.006862752139568329, + "discrimination_2pl": 0.33114224672317505, + "difficulty_simple": -0.651761964397091, + "percent_correct": 0.6574074074074074, + "n_responses": 108 + }, + { + "problem_id": 46811, + "difficulty_1pl": 0.5477814078330994, + "difficulty_2pl": 0.13496732711791992, + "discrimination_2pl": 0.23892661929130554, + "difficulty_simple": -0.33647223662121306, + "percent_correct": 0.5833333333333334, + "n_responses": 108 + }, + { + "problem_id": 46924, + "difficulty_1pl": -1.4621057510375977, + "difficulty_2pl": 0.009220448322594166, + "discrimination_2pl": 0.3214876055717468, + "difficulty_simple": -0.7777045685880085, + "percent_correct": 0.6851851851851852, + "n_responses": 108 + }, + { + "problem_id": 195577, + "difficulty_1pl": -10.54773998260498, + "difficulty_2pl": -0.13788360357284546, + "discrimination_2pl": 0.5757996439933777, + "difficulty_simple": -1.8398278722690773, + "percent_correct": 0.8629283489096573, + "n_responses": 321 + }, + { + "problem_id": 195675, + "difficulty_1pl": -9.519915580749512, + "difficulty_2pl": -0.1793983280658722, + "discrimination_2pl": 0.5810518860816956, + "difficulty_simple": -1.6434676610204118, + "percent_correct": 0.838006230529595, + "n_responses": 321 + }, + { + "problem_id": 497698, + "difficulty_1pl": -1.5713322162628174, + "difficulty_2pl": 0.07855457067489624, + "discrimination_2pl": 0.3095797300338745, + "difficulty_simple": -0.7308875085427925, + "percent_correct": 0.675, + "n_responses": 160 + }, + { + "problem_id": 37999, + "difficulty_1pl": 1.2908968925476074, + "difficulty_2pl": 4.546251147985458e-06, + "discrimination_2pl": 0.13014431297779083, + "difficulty_simple": -0.0714589639821451, + "percent_correct": 0.5178571428571429, + "n_responses": 56 + }, + { + "problem_id": 258280, + "difficulty_1pl": 0.9739120602607727, + "difficulty_2pl": 0.032930221408605576, + "discrimination_2pl": 0.10259401798248291, + "difficulty_simple": 0.1967102942460543, + "percent_correct": 0.45098039215686275, + "n_responses": 51 + }, + { + "problem_id": 350639, + "difficulty_1pl": -1.2885079383850098, + "difficulty_2pl": -0.0441797710955143, + "discrimination_2pl": 0.193203404545784, + "difficulty_simple": -0.7646061445420903, + "percent_correct": 0.6823529411764706, + "n_responses": 85 + }, + { + "problem_id": 63338, + "difficulty_1pl": -2.261414051055908, + "difficulty_2pl": -0.006414035335183144, + "discrimination_2pl": 0.1363787204027176, + "difficulty_simple": -0.6931471805599451, + "percent_correct": 0.6666666666666666, + "n_responses": 66 + }, + { + "problem_id": 1638, + "difficulty_simple": 0.07145896398214485, + "percent_correct": 0.48214285714285715, + "n_responses": 56 + }, + { + "problem_id": 2433, + "difficulty_simple": -0.03509131981127017, + "percent_correct": 0.5087719298245614, + "n_responses": 57 + }, + { + "problem_id": 150654, + "difficulty_simple": -1.252762968495368, + "percent_correct": 0.7777777777777778, + "n_responses": 54 + }, + { + "problem_id": 348832, + "difficulty_simple": -0.32277339226305085, + "percent_correct": 0.58, + "n_responses": 50 + }, + { + "problem_id": 348910, + "difficulty_simple": -0.9808292530117264, + "percent_correct": 0.7272727272727273, + "n_responses": 55 + }, + { + "problem_id": 403293, + "difficulty_simple": -1.0775588794702773, + "percent_correct": 0.746031746031746, + "n_responses": 63 + }, + { + "problem_id": 596384, + "difficulty_simple": 0.3566749439387324, + "percent_correct": 0.4117647058823529, + "n_responses": 51 + } +] \ No newline at end of file diff --git a/Results/pedagogical_grounding/output/irt_parameters.png b/Results/pedagogical_grounding/output/irt_parameters.png new file mode 100644 index 0000000000000000000000000000000000000000..fb663c8a2e168703db0c6dd6957c7fd5b3278285 --- /dev/null +++ b/Results/pedagogical_grounding/output/irt_parameters.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:15c88dec8532ec3c59889075f55d173549c023e4dd84e9eb9b7eb6c500c6bc68 +size 270932 diff --git a/Results/pedagogical_grounding/pedagogical_inference_base.py b/Results/pedagogical_grounding/pedagogical_inference_base.py new file mode 100644 index 0000000000000000000000000000000000000000..5668b371b50fc29120a5ce8511392f845e183f6f --- /dev/null +++ b/Results/pedagogical_grounding/pedagogical_inference_base.py @@ -0,0 +1,1137 @@ +""" +Base module for Pedagogical Grounding LLM Benchmark. + +This module benchmarks LLMs on 4 pedagogical reasoning tasks: +1. Difficulty comparison: Which of two questions has higher IRT difficulty? +2. Discrimination comparison: Which of two questions has higher discrimination? +3. Most common distractor: Which wrong answer is most commonly chosen? +4. Least common distractor: Which wrong answer is least commonly chosen? + +================================================================================ +INPUT FILES (relative to --data-dir): +================================================================================ +- pedagogical_grounding/output/irt_parameters.json + Source: Pre-computed IRT parameters (~2,548 problems) + Used by: difficulty, discrimination tasks + Fields: problem_id, difficulty_2pl, discrimination_2pl, percent_correct + +- pedagogical_grounding/output/distractor_stats.json + Source: Pre-computed distractor analysis (~236 MC problems) + Used by: distractor_most, distractor_least tasks + Fields: problem_id, most_common_distractor, least_common_distractor, distractors + +- foundationalktdataset/Problems.csv + Source: Problem text and answer options + Used by: All tasks (merged by problem_id to get question text) + +================================================================================ +OUTPUT FORMAT (JSONL): +================================================================================ +Each line is a JSON object with: +- prediction_id: Unique identifier (e.g., "difficulty_405080_448452") +- task: Task name ("difficulty", "discrimination", "distractor_most", "distractor_least") +- ground_truth: Correct answer from IRT/distractor data +- predicted_answer: LLM's prediction +- is_correct: Boolean indicating if prediction matches ground truth +- full_response: Raw LLM output text + +Output filename pattern: {model_prefix}_pedagogical_{task}_n{samples}_{mode}_mindiff_dot{X}.jsonl +Example: gptoss120b_pedagogical_difficulty_n1000_stratified_mindiff_dot2.jsonl + +================================================================================ +EVALUATION: +================================================================================ +Run separately after inference: + + python evaluate_pedagogical.py --input + python evaluate_pedagogical.py --input --output metrics.json + +Metrics computed: +- Overall accuracy vs random baseline (50% for comparison, ~33% for distractors) +- Accuracy by stratum (small/medium/large difference) for comparison tasks +- Accuracy by number of distractors for distractor tasks + +================================================================================ +SAMPLING MODES (--sampling-mode): +================================================================================ +For comparison tasks (difficulty, discrimination): + +- "random": Randomly pair any two questions + May include trivial pairs with nearly identical values + +- "stratified" (default): Ensure meaningful differences between pairs + Samples equally from 3 strata: + - Small: 0.2 - 0.5 difference (hard comparisons) + - Medium: 0.5 - 1.0 difference (moderate comparisons) + - Large: > 1.0 difference (easy comparisons) + +================================================================================ +CLI ARGUMENTS: +================================================================================ +Required: + --task, -t Task to run (see below) + +Sampling: + --sampling-mode, -s Pair sampling: "random" or "stratified" (default: stratified) + --num-samples, -n Number of pairs/problems to sample (default: 1000) + --min-difference Min difference for stratified sampling (default: 0.2) + --seed Random seed for reproducibility (default: 42) + +Output: + --output, -o Output JSONL file path (overrides auto-generated name) + --output-dir Output directory for results (default: current directory) + --data-dir, -d Base directory containing data files (default: .) + +vLLM Configuration: + --batch-size, -b Batch size for inference (default: 500) + --num-gpus GPUs for tensor parallelism (default: 1) + --cache-dir, -c Directory for model cache (vLLM download_dir) + --max-num-seqs Max sequences per batch + --max-model-len Max sequence length in tokens + --gpu-memory-utilization Fraction of GPU memory (default: 0.9) + --reasoning-level For models that support it: none/low/medium/high + +================================================================================ +TASK SELECTION (--task, REQUIRED): +================================================================================ +- "difficulty": Compare IRT difficulty between question pairs +- "discrimination": Compare IRT discrimination between question pairs +- "distractor_most": Predict most commonly chosen wrong answer +- "distractor_least": Predict least commonly chosen wrong answer +- "all": Run all 4 tasks sequentially + +================================================================================ +USAGE EXAMPLES: +================================================================================ +# Run from project root directory: + +# Run difficulty comparison with stratified sampling (1000 pairs) +CUDA_VISIBLE_DEVICES=0,1,2,3 python pedagogical_grounding/gptoss120b_pedagogical.py \\ + --task difficulty \\ + --num-samples 1000 \\ + --sampling-mode stratified \\ + --num-gpus 4 + +# Run all tasks with 500 samples each +CUDA_VISIBLE_DEVICES=0,1,2,3 python pedagogical_grounding/gptoss120b_pedagogical.py \\ + --task all \\ + --num-samples 500 \\ + --num-gpus 4 + +# Run distractor task (uses all 236 available MC problems) +CUDA_VISIBLE_DEVICES=0,1,2,3 python pedagogical_grounding/gptoss120b_pedagogical.py \\ + --task distractor_most \\ + --num-gpus 4 + +================================================================================ +CREATING MODEL CONFIGS: +================================================================================ + from pedagogical_inference_base import run_inference + + MODEL_CONFIG = { + "model_id": "model/name", + "gen_configs": { + "temperature": 0.3, + "max_tokens": 1024, + }, + "output_prefix": "prefix", + "system_prompt_prefix": "", # e.g., "Reasoning: medium\\n\\n" for GPT-OSS + } + + if __name__ == "__main__": + run_inference(MODEL_CONFIG) +""" + +import argparse +import contextlib +import os +import sys +import json +import re +import gc +from typing import List, Dict, Optional, Tuple, Set + +import numpy as np +import pandas as pd +import torch +from tqdm import tqdm +from vllm import LLM, SamplingParams +from vllm.distributed.parallel_state import ( + destroy_model_parallel, + destroy_distributed_environment, +) + +# Add parent directory to path for clean_utils import +sys.path.insert(0, os.path.dirname(os.path.dirname(os.path.abspath(__file__)))) +from clean_utils import clean_problem_body + + +class NumpyEncoder(json.JSONEncoder): + """Custom JSON encoder that handles numpy types.""" + def default(self, obj): + if isinstance(obj, np.integer): + return int(obj) + if isinstance(obj, np.floating): + return float(obj) + if isinstance(obj, np.ndarray): + return obj.tolist() + return super().default(obj) + + +# Default configuration +DEFAULT_NUM_SAMPLES = 1000 +DEFAULT_BATCH_SIZE = 500 +DEFAULT_MIN_DIFFERENCE = 0.2 + +# Input file paths (relative to data_dir) +IRT_PARAMS_FILE = "pedagogical_grounding/output/irt_parameters.json" +DISTRACTOR_STATS_FILE = "pedagogical_grounding/output/distractor_stats.json" +PROBLEMS_FILE = "foundationalktdataset/Problems.csv" + +# Task types +TASK_DIFFICULTY = "difficulty" +TASK_DISCRIMINATION = "discrimination" +TASK_DISTRACTOR_MOST = "distractor_most" +TASK_DISTRACTOR_LEAST = "distractor_least" +TASK_ALL = "all" + +COMPARISON_TASKS = [TASK_DIFFICULTY, TASK_DISCRIMINATION] +DISTRACTOR_TASKS = [TASK_DISTRACTOR_MOST, TASK_DISTRACTOR_LEAST] + +# System prompts +SYSTEM_PROMPT_DIFFICULTY = """You are an expert educator evaluating mathematics problems for instructional design. + +Your task is to compare two problems and determine which one is MORE DIFFICULT. + +A problem is MORE DIFFICULT if: +- It requires more prerequisite knowledge or skills +- It involves more complex reasoning steps +- It has higher cognitive load +- Students are more likely to make errors +- It requires synthesizing multiple concepts + +Instructions: +1. Carefully read both Problem A and Problem B +2. Consider factors like conceptual complexity, prerequisite knowledge, cognitive load, and potential for errors +3. Make your judgment based solely on the problem content +4. Respond with exactly "A" or "B" + +Output Format: +Respond with a single JSON object: +{"answer": "A"} or {"answer": "B"} +""" + +SYSTEM_PROMPT_DISCRIMINATION = """You are an expert educator evaluating mathematics problems for instructional design. + +Your task is to compare two problems and determine which one has HIGHER DISCRIMINATION. + +A problem has HIGHER DISCRIMINATION if: +- It better distinguishes between students who understand the material vs. those who don't +- Correct answers strongly indicate mastery +- Incorrect answers are unlikely for knowledgeable students +- The problem tests specific, well-defined skills rather than general guessing +- It avoids ambiguity that could confuse strong students + +Instructions: +1. Carefully read both Problem A and Problem B +2. Consider how well each problem separates students by ability level +3. Make your judgment based solely on the problem content +4. Respond with exactly "A" or "B" + +Output Format: +Respond with a single JSON object: +{"answer": "A"} or {"answer": "B"} +""" + +SYSTEM_PROMPT_DISTRACTOR_MOST = """You are an expert educator analyzing student misconceptions in mathematics. + +Your task is to predict which incorrect answer option (distractor) is MOST COMMONLY CHOSEN by students. + +The MOST COMMON distractor is the wrong answer that students choose most frequently. +Common reasons include: +- It represents a predictable computational error +- It matches a common misconception +- It seems plausible but contains a subtle flaw +- It results from a partial understanding of the concept +- It's what you get if you make a typical arithmetic mistake + +Instructions: +1. Read the problem carefully +2. Identify the correct answer +3. Consider common student misconceptions and errors for this type of problem +4. Analyze each incorrect answer option +5. Predict which distractor students would most often choose +6. Respond with the letter of that distractor (A, B, C, etc.) + +Output Format: +Respond with a single JSON object: +{"answer": "X"} where X is the letter of the most common distractor +""" + +SYSTEM_PROMPT_DISTRACTOR_LEAST = """You are an expert educator analyzing student misconceptions in mathematics. + +Your task is to predict which incorrect answer option (distractor) is LEAST COMMONLY CHOSEN by students. + +The LEAST COMMON distractor is the wrong answer that students rarely choose. +Common reasons include: +- It is obviously incorrect to most students +- It doesn't correspond to any common error pattern +- It requires a very unusual misconception +- It is far from the correct answer conceptually +- It looks implausible compared to other options + +Instructions: +1. Read the problem carefully +2. Identify the correct answer +3. Consider which wrong answer would seem most obviously incorrect +4. Analyze each incorrect answer option +5. Predict which distractor students would rarely choose +6. Respond with the letter of that distractor (A, B, C, etc.) + +Output Format: +Respond with a single JSON object: +{"answer": "X"} where X is the letter of the least common distractor +""" + + +def parse_args(default_output_jsonl: str) -> argparse.Namespace: + """Parse command line arguments.""" + parser = argparse.ArgumentParser( + description="Pedagogical Grounding LLM Benchmark" + ) + + # Task selection + parser.add_argument( + "--task", "-t", + type=str, + required=True, + choices=[TASK_DIFFICULTY, TASK_DISCRIMINATION, + TASK_DISTRACTOR_MOST, TASK_DISTRACTOR_LEAST, TASK_ALL], + help="Task to run: difficulty, discrimination, distractor_most, distractor_least, or all" + ) + + # Sampling configuration + parser.add_argument( + "--sampling-mode", "-s", + type=str, + default="stratified", + choices=["random", "stratified"], + help="Pair sampling mode: random or stratified (default: stratified)" + ) + parser.add_argument( + "--num-samples", "-n", + type=int, + default=DEFAULT_NUM_SAMPLES, + help=f"Number of pairs/problems to sample (default: {DEFAULT_NUM_SAMPLES})" + ) + parser.add_argument( + "--min-difference", + type=float, + default=DEFAULT_MIN_DIFFERENCE, + help=f"Minimum difference for stratified sampling (default: {DEFAULT_MIN_DIFFERENCE})" + ) + + # Output + parser.add_argument( + "--output", "-o", + type=str, + default=None, + help="Output JSONL file path (overrides auto-generated name)" + ) + parser.add_argument( + "--output-dir", + type=str, + default=".", + help="Output directory for results (default: current directory)" + ) + parser.add_argument( + "--data-dir", "-d", + type=str, + default=".", + help="Base directory containing data files (default: current directory)" + ) + + # vLLM configuration + parser.add_argument( + "--batch-size", "-b", + type=int, + default=DEFAULT_BATCH_SIZE, + help=f"Batch size for LLM inference (default: {DEFAULT_BATCH_SIZE})" + ) + parser.add_argument( + "--cache-dir", "-c", + type=str, + default=None, + help="Directory for vLLM model cache" + ) + parser.add_argument( + "--num-gpus", + type=int, + default=1, + help="Number of GPUs for tensor parallelism (default: 1)" + ) + parser.add_argument( + "--max-num-seqs", + type=int, + default=None, + help="Maximum number of sequences to process in a batch" + ) + parser.add_argument( + "--max-model-len", + type=int, + default=None, + help="Maximum sequence length in tokens" + ) + parser.add_argument( + "--gpu-memory-utilization", + type=float, + default=0.9, + help="Fraction of GPU memory to use (default: 0.9)" + ) + parser.add_argument( + "--reasoning-level", + type=str, + choices=["none", "low", "medium", "high"], + default=None, + help="Reasoning level for models that support it" + ) + + # Reproducibility + parser.add_argument( + "--seed", + type=int, + default=42, + help="Random seed for reproducibility (default: 42)" + ) + + return parser.parse_args() + + +def load_irt_parameters(data_dir: str) -> pd.DataFrame: + """Load IRT parameters and merge with problem text.""" + irt_path = os.path.join(data_dir, IRT_PARAMS_FILE) + problems_path = os.path.join(data_dir, PROBLEMS_FILE) + + print(f"Loading IRT parameters from {irt_path}...") + with open(irt_path, 'r') as f: + irt_data = json.load(f) + + print(f"Loading problem text from {problems_path}...") + problems_df = pd.read_csv(problems_path) + problems_df['cleaned_body'] = problems_df['Problem Body'].apply(clean_problem_body) + + # Merge on problem_id + irt_df = pd.DataFrame(irt_data) + merged = irt_df.merge( + problems_df[['problem_id', 'cleaned_body', 'Multiple Choice Options', 'Problem Type']], + on='problem_id', + how='inner' + ) + + # Filter to problems with valid 2PL parameters + merged = merged.dropna(subset=['difficulty_2pl', 'discrimination_2pl']) + + print(f"Loaded {len(merged)} problems with IRT parameters") + return merged + + +def load_distractor_stats(data_dir: str) -> pd.DataFrame: + """Load distractor stats and merge with problem text.""" + distractor_path = os.path.join(data_dir, DISTRACTOR_STATS_FILE) + problems_path = os.path.join(data_dir, PROBLEMS_FILE) + + print(f"Loading distractor stats from {distractor_path}...") + with open(distractor_path, 'r') as f: + distractor_data = json.load(f) + + print(f"Loading problem text from {problems_path}...") + problems_df = pd.read_csv(problems_path) + problems_df['cleaned_body'] = problems_df['Problem Body'].apply(clean_problem_body) + + # Convert to DataFrame and merge + distractor_df = pd.DataFrame(distractor_data) + merged = distractor_df.merge( + problems_df[['problem_id', 'cleaned_body', 'Multiple Choice Options', + 'Multiple Choice Answers']], + on='problem_id', + how='inner' + ) + + print(f"Loaded {len(merged)} problems with distractor stats") + return merged + + +def sample_pairs_random( + df: pd.DataFrame, + param_col: str, + num_samples: int, + seed: int = 42 +) -> List[Dict]: + """Random sampling of problem pairs.""" + np.random.seed(seed) + + problem_ids = df['problem_id'].values + n = len(problem_ids) + + pairs = [] + sampled = set() + max_attempts = num_samples * 10 + attempts = 0 + + while len(pairs) < num_samples and attempts < max_attempts: + attempts += 1 + i, j = np.random.choice(n, size=2, replace=False) + + # Ensure we don't duplicate pairs + pair_key = tuple(sorted([problem_ids[i], problem_ids[j]])) + if pair_key in sampled: + continue + sampled.add(pair_key) + + row_a = df.iloc[i] + row_b = df.iloc[j] + + # Skip if values are too close (tie) + val_a = row_a[param_col] + val_b = row_b[param_col] + if abs(val_a - val_b) < 0.01: + continue + + # Determine ground truth + ground_truth = "A" if val_a > val_b else "B" + + pairs.append({ + 'problem_id_a': int(row_a['problem_id']), + 'problem_id_b': int(row_b['problem_id']), + 'text_a': row_a['cleaned_body'], + 'text_b': row_b['cleaned_body'], + 'value_a': float(val_a), + 'value_b': float(val_b), + 'difference': float(abs(val_a - val_b)), + 'ground_truth': ground_truth, + 'stratum': 'random' + }) + + print(f"Sampled {len(pairs)} random pairs") + return pairs + + +def sample_pairs_stratified( + df: pd.DataFrame, + param_col: str, + num_samples: int, + min_difference: float = 0.2, + seed: int = 42 +) -> List[Dict]: + """Stratified sampling to ensure meaningful differences.""" + np.random.seed(seed) + + values = df[param_col].values + problem_ids = df['problem_id'].values + n = len(problem_ids) + + # Define strata + strata = [ + ('small', min_difference, 0.5), + ('medium', 0.5, 1.0), + ('large', 1.0, float('inf')) + ] + + samples_per_stratum = num_samples // len(strata) + + pairs = [] + sampled = set() + + for stratum_name, low, high in strata: + stratum_pairs = [] + attempts = 0 + max_attempts = samples_per_stratum * 100 + + while len(stratum_pairs) < samples_per_stratum and attempts < max_attempts: + attempts += 1 + i = np.random.randint(0, n) + j = np.random.randint(0, n) + + if i == j: + continue + + diff = abs(values[i] - values[j]) + if not (low <= diff < high): + continue + + pair_key = tuple(sorted([problem_ids[i], problem_ids[j]])) + if pair_key in sampled: + continue + sampled.add(pair_key) + + row_a = df.iloc[i] + row_b = df.iloc[j] + ground_truth = "A" if row_a[param_col] > row_b[param_col] else "B" + + stratum_pairs.append({ + 'problem_id_a': int(row_a['problem_id']), + 'problem_id_b': int(row_b['problem_id']), + 'text_a': row_a['cleaned_body'], + 'text_b': row_b['cleaned_body'], + 'value_a': float(row_a[param_col]), + 'value_b': float(row_b[param_col]), + 'difference': float(diff), + 'ground_truth': ground_truth, + 'stratum': stratum_name + }) + + pairs.extend(stratum_pairs) + print(f" Stratum '{stratum_name}' ({low:.1f}-{high:.1f}): {len(stratum_pairs)} pairs") + + print(f"Total stratified pairs: {len(pairs)}") + return pairs + + +def sample_distractor_problems( + df: pd.DataFrame, + num_samples: Optional[int] = None, + seed: int = 42 +) -> List[Dict]: + """Sample distractor problems (or use all if num_samples > available).""" + np.random.seed(seed) + + if num_samples is None or num_samples >= len(df): + sampled = df + print(f"Using all {len(df)} distractor problems") + else: + sampled = df.sample(n=num_samples, random_state=seed) + print(f"Sampled {num_samples} distractor problems from {len(df)}") + + return sampled.to_dict('records') + + +def format_answer_options(answer_string: str) -> Tuple[str, Dict[str, str]]: + """Format pipe-delimited answers for display. + + Returns: + formatted_text: String like "A) Option1\nB) Option2..." + letter_map: Dict mapping letters to option text + """ + if pd.isna(answer_string) or answer_string == '': + return "", {} + + options = [opt.strip() for opt in answer_string.split('||')] + letters = ['A', 'B', 'C', 'D', 'E', 'F', 'G', 'H'] + + letter_map = {} + lines = [] + for i, opt in enumerate(options): + if i < len(letters): + letter_map[letters[i]] = opt + lines.append(f"{letters[i]}) {opt}") + + return '\n'.join(lines), letter_map + + +def get_correct_letter(correct_answer: str, letter_map: Dict[str, str]) -> Optional[str]: + """Find the letter corresponding to the correct answer.""" + if pd.isna(correct_answer): + return None + + correct_answer = correct_answer.strip() + for letter, text in letter_map.items(): + if text.strip() == correct_answer: + return letter + return None + + +def get_distractor_letter(distractor_text: str, letter_map: Dict[str, str]) -> Optional[str]: + """Find the letter corresponding to a distractor.""" + if pd.isna(distractor_text): + return None + + distractor_text = distractor_text.strip() + for letter, text in letter_map.items(): + if text.strip() == distractor_text: + return letter + return None + + +def create_comparison_prompt(text_a: str, text_b: str, task_type: str) -> str: + """Create user prompt for difficulty/discrimination comparison.""" + if task_type == TASK_DIFFICULTY: + comparison_type = "more difficult" + else: + comparison_type = "more discriminating (better at distinguishing student ability levels)" + + return f"""Compare the following two problems and determine which is {comparison_type}. + +**Problem A:** +{text_a} + +**Problem B:** +{text_b} + +Which problem is {comparison_type}? Respond with {{"answer": "A"}} or {{"answer": "B"}}.""" + + +def create_distractor_prompt( + problem_text: str, + options_formatted: str, + correct_letter: str, + task_type: str +) -> str: + """Create user prompt for distractor prediction.""" + if task_type == TASK_DISTRACTOR_MOST: + distractor_type = "MOST COMMONLY" + behavior = "most often" + else: + distractor_type = "LEAST COMMONLY" + behavior = "least often" + + return f"""Analyze this multiple-choice problem and predict which distractor (wrong answer) is {distractor_type} chosen by students. + +**Problem:** +{problem_text} + +**Answer Options:** +{options_formatted} + +**Correct Answer:** {correct_letter} + +Which incorrect answer option do students choose {behavior}? Respond with {{"answer": "X"}} where X is the letter of the distractor.""" + + +def extract_json_prediction(response_text: str) -> Optional[Dict]: + """Extract the JSON prediction from the model's response.""" + json_matches = re.findall(r'\{[^{}]*\}', response_text) + + if json_matches: + # Take the last JSON object + json_str = json_matches[-1] + try: + return json.loads(json_str) + except json.JSONDecodeError: + pass + return None + + +def extract_answer(response_text: str) -> Optional[str]: + """Extract answer (A/B or letter) from response.""" + prediction = extract_json_prediction(response_text) + if prediction and 'answer' in prediction: + return str(prediction['answer']).strip().upper() + + # Fallback: look for standalone A or B + match = re.search(r'\b([A-H])\b', response_text) + if match: + return match.group(1) + + return None + + +def load_completed_predictions(output_jsonl: str) -> Set[str]: + """Load already-completed prediction IDs from JSONL file.""" + completed = set() + if os.path.exists(output_jsonl): + with open(output_jsonl, 'r') as f: + for line in f: + if line.strip(): + result = json.loads(line) + completed.add(result['prediction_id']) + print(f"Loaded {len(completed)} completed predictions from {output_jsonl}") + return completed + + +def append_results_jsonl(results: List[Dict], output_jsonl: str) -> None: + """Append batch results to JSONL file.""" + with open(output_jsonl, 'a') as f: + for result in results: + f.write(json.dumps(result, cls=NumpyEncoder) + '\n') + + +def prepare_comparison_batch( + samples: List[Dict], + task_type: str, + system_prompt: str, + completed_ids: Set[str] +) -> Tuple[List[str], List[Dict]]: + """Prepare prompts and metadata for comparison task.""" + prompts = [] + metadata = [] + + for i, sample in enumerate(samples): + pred_id = f"{task_type}_{sample['problem_id_a']}_{sample['problem_id_b']}" + + if pred_id in completed_ids: + continue + + user_prompt = create_comparison_prompt( + sample['text_a'], + sample['text_b'], + task_type + ) + full_prompt = system_prompt + "\n\n" + user_prompt + + prompts.append(full_prompt) + metadata.append({ + 'prediction_id': pred_id, + 'task': task_type, + 'problem_id_a': sample['problem_id_a'], + 'problem_id_b': sample['problem_id_b'], + 'value_a': sample['value_a'], + 'value_b': sample['value_b'], + 'difference': sample['difference'], + 'ground_truth': sample['ground_truth'], + 'stratum': sample.get('stratum', 'unknown'), + 'prompt': full_prompt + }) + + return prompts, metadata + + +def prepare_distractor_batch( + samples: List[Dict], + task_type: str, + system_prompt: str, + completed_ids: Set[str] +) -> Tuple[List[str], List[Dict]]: + """Prepare prompts and metadata for distractor task.""" + prompts = [] + metadata = [] + + for sample in samples: + pred_id = f"{task_type}_{sample['problem_id']}" + + if pred_id in completed_ids: + continue + + # Format answer options + options_formatted, letter_map = format_answer_options( + sample['Multiple Choice Options'] + ) + + if not options_formatted: + continue + + # Get correct answer letter + correct_letter = get_correct_letter( + sample.get('Multiple Choice Answers', ''), + letter_map + ) + + if not correct_letter: + # Try to infer from distractor data + distractors = sample.get('distractors', {}) + all_letters = set(letter_map.keys()) + distractor_letters = set() + for d_text in distractors.keys(): + d_letter = get_distractor_letter(d_text, letter_map) + if d_letter: + distractor_letters.add(d_letter) + correct_letters = all_letters - distractor_letters + if len(correct_letters) == 1: + correct_letter = list(correct_letters)[0] + else: + continue # Skip if we can't determine correct answer + + # Get ground truth distractor letter + if task_type == TASK_DISTRACTOR_MOST: + ground_truth_text = sample.get('most_common_distractor', '') + ground_truth_freq = sample.get('most_common_distractor_freq', 0) + else: + ground_truth_text = sample.get('least_common_distractor', '') + ground_truth_freq = sample.get('least_common_distractor_freq', 0) + + ground_truth_letter = get_distractor_letter(ground_truth_text, letter_map) + if not ground_truth_letter: + continue # Skip if we can't map ground truth + + user_prompt = create_distractor_prompt( + sample['cleaned_body'], + options_formatted, + correct_letter, + task_type + ) + full_prompt = system_prompt + "\n\n" + user_prompt + + prompts.append(full_prompt) + metadata.append({ + 'prediction_id': pred_id, + 'task': task_type, + 'problem_id': sample['problem_id'], + 'n_choices': sample.get('n_choices', len(letter_map)), + 'correct_letter': correct_letter, + 'ground_truth_letter': ground_truth_letter, + 'ground_truth_text': ground_truth_text, + 'ground_truth_freq': ground_truth_freq, + 'distractors': sample.get('distractors', {}), + 'letter_map': letter_map, + 'prompt': full_prompt + }) + + return prompts, metadata + + +def process_comparison_results( + metadata: List[Dict], + responses: List[str] +) -> List[Dict]: + """Process comparison task results.""" + results = [] + + for meta, response in zip(metadata, responses): + predicted = extract_answer(response) + is_correct = predicted == meta['ground_truth'] if predicted else False + + results.append({ + 'prediction_id': meta['prediction_id'], + 'task': meta['task'], + 'problem_id_a': meta['problem_id_a'], + 'problem_id_b': meta['problem_id_b'], + 'value_a': meta['value_a'], + 'value_b': meta['value_b'], + 'difference': meta['difference'], + 'stratum': meta['stratum'], + 'ground_truth': meta['ground_truth'], + 'predicted_answer': predicted, + 'is_correct': is_correct, + 'full_response': response + }) + + return results + + +def process_distractor_results( + metadata: List[Dict], + responses: List[str] +) -> List[Dict]: + """Process distractor task results.""" + results = [] + + for meta, response in zip(metadata, responses): + predicted = extract_answer(response) + is_correct = predicted == meta['ground_truth_letter'] if predicted else False + + results.append({ + 'prediction_id': meta['prediction_id'], + 'task': meta['task'], + 'problem_id': meta['problem_id'], + 'n_choices': meta['n_choices'], + 'correct_letter': meta['correct_letter'], + 'ground_truth_letter': meta['ground_truth_letter'], + 'ground_truth_text': meta['ground_truth_text'], + 'ground_truth_freq': meta['ground_truth_freq'], + 'predicted_answer': predicted, + 'is_correct': is_correct, + 'full_response': response + }) + + return results + + +def get_system_prompt(task_type: str, prefix: str = "") -> str: + """Get the system prompt for a task type.""" + prompts = { + TASK_DIFFICULTY: SYSTEM_PROMPT_DIFFICULTY, + TASK_DISCRIMINATION: SYSTEM_PROMPT_DISCRIMINATION, + TASK_DISTRACTOR_MOST: SYSTEM_PROMPT_DISTRACTOR_MOST, + TASK_DISTRACTOR_LEAST: SYSTEM_PROMPT_DISTRACTOR_LEAST, + } + return prefix + prompts[task_type] + + +def run_inference(config: Dict) -> None: + """Main inference function that runs pedagogical grounding benchmark. + + Args: + config: Dict with keys: + - model_id: HuggingFace model ID + - gen_configs: Dict of generation parameters + - output_prefix: Prefix for output filename + - system_prompt_prefix: Optional prefix for system prompt + """ + model_id = config["model_id"] + gen_configs = config["gen_configs"] + output_prefix = config["output_prefix"] + + # Parse arguments + default_output_jsonl = f"{output_prefix}_pedagogical.jsonl" + args = parse_args(default_output_jsonl) + + # Determine system prompt prefix + if args.reasoning_level is not None: + if args.reasoning_level == "none": + system_prompt_prefix = "" + else: + system_prompt_prefix = f"Reasoning: {args.reasoning_level}\n\n" + else: + system_prompt_prefix = config.get("system_prompt_prefix", "") + + # Determine tasks to run + if args.task == TASK_ALL: + tasks = COMPARISON_TASKS + DISTRACTOR_TASKS + else: + tasks = [args.task] + + # Generate output filename + task_str = args.task + # Format min_difference as "dot1" for 0.1, "dot2" for 0.2, etc. + mindiff_str = f"_mindiff_dot{str(args.min_difference).replace('0.', '')}" + params_suffix = f"_{task_str}_n{args.num_samples}_{args.sampling_mode}{mindiff_str}" + + if args.output: + # Use explicit output path + output_jsonl = args.output + else: + # Auto-generate filename in output directory + filename = f"{output_prefix}_pedagogical{params_suffix}.jsonl" + output_jsonl = os.path.join(args.output_dir, filename) + + print(f"Model: {model_id}") + print(f"Tasks: {tasks}") + print(f"Sampling mode: {args.sampling_mode}") + print(f"Num samples: {args.num_samples}") + print(f"Output: {output_jsonl}") + print(f"Data directory: {args.data_dir}") + + # Load data + irt_df = None + distractor_df = None + + if any(t in COMPARISON_TASKS for t in tasks): + irt_df = load_irt_parameters(args.data_dir) + + if any(t in DISTRACTOR_TASKS for t in tasks): + distractor_df = load_distractor_stats(args.data_dir) + + # Load completed predictions for resume support + completed_ids = load_completed_predictions(output_jsonl) + + # Prepare all prompts and metadata + all_prompts = [] + all_metadata = [] + task_info = [] # Track which task each prompt belongs to + + for task_type in tasks: + print(f"\nPreparing {task_type} task...") + + if task_type in COMPARISON_TASKS: + param_col = 'difficulty_2pl' if task_type == TASK_DIFFICULTY else 'discrimination_2pl' + + if args.sampling_mode == 'stratified': + samples = sample_pairs_stratified( + irt_df, param_col, args.num_samples, + args.min_difference, args.seed + ) + else: + samples = sample_pairs_random( + irt_df, param_col, args.num_samples, args.seed + ) + + system_prompt = get_system_prompt(task_type, system_prompt_prefix) + prompts, metadata = prepare_comparison_batch( + samples, task_type, system_prompt, completed_ids + ) + + all_prompts.extend(prompts) + all_metadata.extend(metadata) + task_info.extend([task_type] * len(prompts)) + + else: # Distractor tasks + samples = sample_distractor_problems( + distractor_df, args.num_samples, args.seed + ) + + system_prompt = get_system_prompt(task_type, system_prompt_prefix) + prompts, metadata = prepare_distractor_batch( + samples, task_type, system_prompt, completed_ids + ) + + all_prompts.extend(prompts) + all_metadata.extend(metadata) + task_info.extend([task_type] * len(prompts)) + + print(f"\nTotal predictions to make: {len(all_prompts)}") + print(f"Already completed: {len(completed_ids)}") + + if not all_prompts: + print("All predictions already completed!") + return + + # Initialize vLLM engine + print("\nInitializing vLLM engine...") + sampling_params = SamplingParams(**gen_configs) + llm_kwargs = { + "model": model_id, + "tensor_parallel_size": args.num_gpus, + "trust_remote_code": True, + "gpu_memory_utilization": args.gpu_memory_utilization, + "enable_prefix_caching": True, + } + if args.max_num_seqs is not None: + llm_kwargs["max_num_seqs"] = args.max_num_seqs + if args.max_model_len is not None: + llm_kwargs["max_model_len"] = args.max_model_len + if args.cache_dir: + llm_kwargs["download_dir"] = args.cache_dir + + llm = LLM(**llm_kwargs) + + # Process in batches + batch_size = args.batch_size + num_batches = (len(all_prompts) + batch_size - 1) // batch_size + total_results = 0 + + for batch_idx in range(num_batches): + batch_start = batch_idx * batch_size + batch_end = min(batch_start + batch_size, len(all_prompts)) + + batch_prompts = all_prompts[batch_start:batch_end] + batch_metadata = all_metadata[batch_start:batch_end] + batch_tasks = task_info[batch_start:batch_end] + + print(f"\n{'='*80}") + print(f"Processing batch {batch_idx + 1}/{num_batches}") + print(f"Items: {batch_start} to {batch_end} ({len(batch_prompts)} prompts)") + print(f"{'='*80}") + + try: + outputs = llm.generate(batch_prompts, sampling_params) + response_texts = [o.outputs[0].text.strip() for o in outputs] + + # Process results based on task type + batch_results = [] + for meta, response, task_type in zip(batch_metadata, response_texts, batch_tasks): + if task_type in COMPARISON_TASKS: + result = process_comparison_results([meta], [response])[0] + else: + result = process_distractor_results([meta], [response])[0] + batch_results.append(result) + + # Save results + append_results_jsonl(batch_results, output_jsonl) + total_results += len(batch_results) + + # Print batch summary + correct = sum(1 for r in batch_results if r.get('is_correct', False)) + print(f"Batch accuracy: {correct}/{len(batch_results)} ({100*correct/len(batch_results):.1f}%)") + print(f"Total results so far: {total_results}") + + except Exception as e: + print(f"\nERROR processing batch {batch_idx + 1}: {str(e)}") + print(f"Progress saved in {output_jsonl} - restart to resume") + raise + + print(f"\n{'='*80}") + print("All batches processed successfully!") + print(f"{'='*80}") + print(f"Results saved to: {output_jsonl}") + print(f"Total predictions: {total_results}") + + # Cleanup + print("\nCleaning up...") + destroy_model_parallel() + destroy_distributed_environment() + del llm + with contextlib.suppress(AssertionError): + torch.distributed.destroy_process_group() + gc.collect() + torch.cuda.empty_cache() + + print("\nDone!") diff --git a/Results/pedagogical_grounding/qwen3next80b_instruct_pedagogical.py b/Results/pedagogical_grounding/qwen3next80b_instruct_pedagogical.py new file mode 100644 index 0000000000000000000000000000000000000000..9c7037723d3fe64aa5f0189c9a71e6db5dac3133 --- /dev/null +++ b/Results/pedagogical_grounding/qwen3next80b_instruct_pedagogical.py @@ -0,0 +1,61 @@ +""" +Pedagogical Grounding benchmark with Qwen3-Next-80B-A3B-Instruct model. + +This is the standard instruction-following model (no thinking blocks). +Recommended sampling: temperature=0.7, top_p=0.8, top_k=20, min_p=0 + +Usage: + # Run difficulty comparison task + CUDA_VISIBLE_DEVICES=0,1,2,3 python qwen3next80b_pedagogical.py \ + --task difficulty \ + --data-dir . \ + --num-gpus 4 \ + --num-samples 1000 \ + --sampling-mode stratified \ + --cache-dir /data1/ + + # Run discrimination comparison task + CUDA_VISIBLE_DEVICES=0,1,2,3 python qwen3next80b_pedagogical.py \ + --task discrimination \ + --data-dir . \ + --num-gpus 4 \ + --num-samples 1000 + + # Run most common distractor task + CUDA_VISIBLE_DEVICES=0,1,2,3 python qwen3next80b_pedagogical.py \ + --task distractor_most \ + --data-dir . \ + --num-gpus 4 + + # Run least common distractor task + CUDA_VISIBLE_DEVICES=0,1,2,3 python qwen3next80b_pedagogical.py \ + --task distractor_least \ + --data-dir . \ + --num-gpus 4 + + # Run all tasks + CUDA_VISIBLE_DEVICES=0,1,2,3 python qwen3next80b_pedagogical.py \ + --task all \ + --data-dir . \ + --num-gpus 4 \ + --num-samples 500 +""" + +from pedagogical_inference_base import run_inference + +MODEL_CONFIG = { + "model_id": "Qwen/Qwen3-Next-80B-A3B-Instruct", + "gen_configs": { + "temperature": 0.7, + "top_p": 0.8, + "top_k": 20, + "min_p": 0.0, + "max_tokens": 1024, # Shorter responses expected for this task + "repetition_penalty": 1.0, + }, + "output_prefix": "qwen3next80b", + "system_prompt_prefix": "", # No prefix - standard instruct model +} + +if __name__ == "__main__": + run_inference(MODEL_CONFIG) diff --git a/Results/pedagogical_grounding/qwen3next80b_thinking_pedagogical.py b/Results/pedagogical_grounding/qwen3next80b_thinking_pedagogical.py new file mode 100644 index 0000000000000000000000000000000000000000..7b7d0b817e62f06581d464fe510a9e381621981d --- /dev/null +++ b/Results/pedagogical_grounding/qwen3next80b_thinking_pedagogical.py @@ -0,0 +1,61 @@ +""" +Pedagogical Grounding benchmark with Qwen3-Next-80B-A3B-Thinking model. + +This model has native thinking mode - it automatically generates ... blocks. +Recommended sampling: temperature=0.6, top_p=0.95, top_k=20, min_p=0 + +Usage: + # Run difficulty comparison task + CUDA_VISIBLE_DEVICES=0,1,2,3 python qwen3next80b_thinking_pedagogical.py \ + --task difficulty \ + --data-dir . \ + --num-gpus 4 \ + --num-samples 1000 \ + --sampling-mode stratified \ + --cache-dir /data1/ + + # Run discrimination comparison task + CUDA_VISIBLE_DEVICES=0,1,2,3 python qwen3next80b_thinking_pedagogical.py \ + --task discrimination \ + --data-dir . \ + --num-gpus 4 \ + --num-samples 1000 + + # Run most common distractor task + CUDA_VISIBLE_DEVICES=0,1,2,3 python qwen3next80b_thinking_pedagogical.py \ + --task distractor_most \ + --data-dir . \ + --num-gpus 4 + + # Run least common distractor task + CUDA_VISIBLE_DEVICES=0,1,2,3 python qwen3next80b_thinking_pedagogical.py \ + --task distractor_least \ + --data-dir . \ + --num-gpus 4 + + # Run all tasks + CUDA_VISIBLE_DEVICES=0,1,2,3 python qwen3next80b_thinking_pedagogical.py \ + --task all \ + --data-dir . \ + --num-gpus 4 \ + --num-samples 500 +""" + +from pedagogical_inference_base import run_inference + +MODEL_CONFIG = { + "model_id": "Qwen/Qwen3-Next-80B-A3B-Thinking", + "gen_configs": { + "temperature": 0.6, + "top_p": 0.95, + "top_k": 20, + "min_p": 0.0, + "max_tokens": 4096, # Longer for thinking blocks + response + "repetition_penalty": 1.0, + }, + "output_prefix": "qwen3next80bthinking", + "system_prompt_prefix": "", # No prefix - model has native thinking +} + +if __name__ == "__main__": + run_inference(MODEL_CONFIG) diff --git a/Results/similar_node_code_conflicts.csv b/Results/similar_node_code_conflicts.csv new file mode 100644 index 0000000000000000000000000000000000000000..d46d6ad1d5868f9f1848222381bc3cde5a448dbe --- /dev/null +++ b/Results/similar_node_code_conflicts.csv @@ -0,0 +1,33 @@ +conflict_type,compact_node_code,canonical_node_codes,raw_node_codes,skill_ids,node_names,problem_count,mapping_count,n_skill_ids +normalized_match,8FB4,8.F.B.4,8.F.B.4,"267,268,269,270,271,273,274,275,277",Use Functions to Model Relationships Between Quantities,57,58,9 +normalized_match,5NBTB7,5.NBT.B.7,5.NBT.B.7,"91,1131,1132,1133",Compute Decimal Problems Involving All 4 Operations,34,36,4 +normalized_match,6GA1,6.G.A.1,6.G.A.1,"170,171,172,173","Find the Area of Triangles, Quadrilaterals & Polygons",111,112,4 +normalized_match,6NSB3,6.NS.B.3,6.NS.B.3,"137,138,139,140","Add, Subtract, Multiply & Divide Multi-Digit Decimals",126,136,4 +normalized_match,6SPB5C,6.SP.B.5C,6.SP.B.5c,"188,189,190,191",Give & Describe Quantitative Measures of Center & Variability,62,69,4 +normalized_match,7GB6,7.G.B.6,7.G.B.6,"228,229,230,2281","Find Area, Volume & Surface Area of 2D/3D Objects",64,76,4 +normalized_match,6NSB4,6.NS.B.4,6.NS.B.4,"141,142,144",Find Common Factors & Multiples,29,30,3 +normalized_match,6RPA3C,6.RP.A.3C,6.RP.A.3c,"131,132,133",Solve Problems Involving Percents,147,152,3 +normalized_match,6SPB4,6.SP.B.4,6.SP.B.4,"181,183,2277","Display Numerical Data Using Dot Plots, Histograms & Box Plots",26,30,3 +normalized_match,7GB4,7.G.B.4,7.G.B.4,"222,223,224",Solve Problems Involving Area & Circumference of Circles,105,115,3 +normalized_match,7GB5,7.G.B.5,7.G.B.5,"225,227,2279",Use Facts About Angles to Write & Solve Equations,44,44,3 +normalized_match,7NSA1D,7.NS.A.1D,7.NS.A.1d,"203,204,205",Apply Properties of Operations to Add/Subtract Rational Numbers,41,41,3 +normalized_match,7NSA2C,7.NS.A.2C,7.NS.A.2c,"208,209,210",Apply Properties of Operations to Multiply/Divide Rational Numbers,47,51,3 +normalized_match,8EEA1,8.EE.A.1,8.EE.A.1,"249,250,251",Know & Apply Properties of Exponents,29,31,3 +normalized_match,8GA3,8.G.A.3,8.G.A.3,"284,286,2283",Describe the Effect of Transformations on 2D Figures,14,14,3 +normalized_match,8GA5,8.G.A.5,8.G.A.5,"288,289,2284",Use Informal Arguments to Establish Facts about Angles for Similar Triangles,10,10,3 +normalized_match,8GC9,8.G.C.9,8.G.C.9,"293,294,295",Know & Use Volume Formulas,92,102,3 +normalized_match,4GA1,4.G.A.1,4.G.A.1,"76,77",Draw & Identify Types of Lines and Angles,8,8,2 +normalized_match,4MDA3,4.MD.A.3,4.MD.A.3,"68,69",Apply Area & Perimeter Formulas for Rectangles,12,13,2 +normalized_match,5GB4,5.G.B.4,5.G.B.4,"124,125",Classify 2D Figures Based on Properties,3,3,2 +normalized_match,5NBTA2,5.NBT.A.2,5.NBT.A.2,"84,1129",Explain Patterns when Multiplying & Dividing Powers of 10,2,2,2 +normalized_match,5NFA1,5.NF.A.1,5.NF.A.1,"94,95",Add & Subtract Fractions with Unlike Denominators,3,3,2 +normalized_match,5NFB4A,5.NF.B.4A,5.NF.B.4a,"99,1134",Interpret & Compute Products of Fractions and Whole Numbers,10,10,2 +normalized_match,6EEA2C,6.EE.A.2C,6.EE.A.2c,"160,161",Evaluate Expression in Real-World Context,22,22,2 +normalized_match,6EEC9,6.EE.C.9,6.EE.C.9,"168,169",Write & Analyze Relationships Between Dependent & Independent Variables,18,20,2 +normalized_match,6GA4,6.G.A.4,6.G.A.4,"176,1135",Represent 3D Figures Using Nets to Find Surface Area,43,48,2 +normalized_match,7EEB3,7.EE.B.3,7.EE.B.3,"215,216",Solve Applied Problems Using Numerical and Algebraic Expressions and Equations,25,26,2 +normalized_match,7EEB4A,7.EE.B.4A,7.EE.B.4a,"217,1136",Solve 2-Step Equations,107,108,2 +normalized_match,7EEB4B,7.EE.B.4B,7.EE.B.4b,"218,1137","Solve, Graph & Interpret 2-Step Inequalities",28,28,2 +normalized_match,7SPC8B,7.SP.C.8B,7.SP.C.8b,"243,244",Represent Sample Spaces for Compound Events,21,22,2 +normalized_match,8NSA1,8.NS.A.1,8.NS.A.1,"246,1138",Understand & Approximate Rational & Irrational Numbers,9,9,2 +normalized_match,8NSA2,8.NS.A.2,8.NS.A.2,"247,248",Approximate Irrational Numbers,28,28,2 diff --git a/Results/time_gap_distribution.png b/Results/time_gap_distribution.png new file mode 100644 index 0000000000000000000000000000000000000000..c0a82c8bdbc3e053c8bf842427db78e12a121c50 --- /dev/null +++ b/Results/time_gap_distribution.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a6062e90f5a394191fee6ca17590d532b64d3d6210ebc5c3e386e5c5805a8106 +size 188461 diff --git a/Results/time_gap_distribution_counts.csv b/Results/time_gap_distribution_counts.csv new file mode 100644 index 0000000000000000000000000000000000000000..ac32b811fa7665c8b0e843927561418abebbc880 --- /dev/null +++ b/Results/time_gap_distribution_counts.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2feff101820331bb694802993f859220f8b562885b6fcbb1b109ba54a0f3bd90 +size 12268053 diff --git a/Results/total_time_distribution.png b/Results/total_time_distribution.png new file mode 100644 index 0000000000000000000000000000000000000000..48cb3f6ae136bdb31e83f1814aa2eba8615d92f3 --- /dev/null +++ b/Results/total_time_distribution.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:52e4e9adde102b51d4d8dc97be6e9c66e25e80997e1d27a20d3215b0357a9e17 +size 169658 diff --git a/Results/total_time_distribution_counts.csv b/Results/total_time_distribution_counts.csv new file mode 100644 index 0000000000000000000000000000000000000000..e55ee61c2c5f4d77e502f46af923cdccaa84e95a --- /dev/null +++ b/Results/total_time_distribution_counts.csv @@ -0,0 +1,257 @@ +bin,bin_left_min,bin_right_min,bin_width_min,count,probability,percentage,density_per_min +"[151200, 162000) min",151200.0,162000.0,10800.0,1,0.0002,0.02,1.8518518518518518e-08 +"[162000, 172800) min",162000.0,172800.0,10800.0,1,0.0002,0.02,1.8518518518518518e-08 +"[172800, 183600) min",172800.0,183600.0,10800.0,4,0.0008,0.08,7.407407407407407e-08 +"[183600, 194400) min",183600.0,194400.0,10800.0,16,0.0032,0.32,2.962962962962963e-07 +"[194400, 205200) min",194400.0,205200.0,10800.0,6,0.0012,0.12,1.111111111111111e-07 +"[205200, 216000) min",205200.0,216000.0,10800.0,7,0.0014,0.13999999999999999,1.2962962962962964e-07 +"[216000, 226800) min",216000.0,226800.0,10800.0,14,0.0028,0.27999999999999997,2.592592592592593e-07 +"[226800, 237600) min",226800.0,237600.0,10800.0,6,0.0012,0.12,1.111111111111111e-07 +"[237600, 248400) min",237600.0,248400.0,10800.0,4,0.0008,0.08,7.407407407407407e-08 +"[248400, 259200) min",248400.0,259200.0,10800.0,9,0.0018,0.18,1.6666666666666665e-07 +"[259200, 270000) min",259200.0,270000.0,10800.0,14,0.0028,0.27999999999999997,2.592592592592593e-07 +"[270000, 280800) min",270000.0,280800.0,10800.0,107,0.0214,2.1399999999999997,1.9814814814814815e-06 +"[280800, 291600) min",280800.0,291600.0,10800.0,72,0.0144,1.44,1.3333333333333332e-06 +"[291600, 302400) min",291600.0,302400.0,10800.0,61,0.0122,1.22,1.1296296296296296e-06 +"[302400, 313200) min",302400.0,313200.0,10800.0,132,0.0264,2.64,2.4444444444444442e-06 +"[313200, 324000) min",313200.0,324000.0,10800.0,146,0.0292,2.92,2.7037037037037036e-06 +"[324000, 334800) min",324000.0,334800.0,10800.0,90,0.018,1.7999999999999998,1.6666666666666665e-06 +"[334800, 345600) min",334800.0,345600.0,10800.0,146,0.0292,2.92,2.7037037037037036e-06 +"[345600, 356400) min",345600.0,356400.0,10800.0,480,0.096,9.6,8.888888888888888e-06 +"[356400, 367200) min",356400.0,367200.0,10800.0,296,0.0592,5.92,5.4814814814814815e-06 +"[367200, 378000) min",367200.0,378000.0,10800.0,306,0.0612,6.12,5.666666666666666e-06 +"[378000, 388800) min",378000.0,388800.0,10800.0,489,0.0978,9.78,9.055555555555556e-06 +"[388800, 399600) min",388800.0,399600.0,10800.0,415,0.083,8.3,7.685185185185185e-06 +"[399600, 410400) min",399600.0,410400.0,10800.0,166,0.0332,3.32,3.074074074074074e-06 +"[410400, 421200) min",410400.0,421200.0,10800.0,83,0.0166,1.66,1.537037037037037e-06 +"[421200, 432000) min",421200.0,432000.0,10800.0,2,0.0004,0.04,3.7037037037037036e-08 +"[432000, 442800) min",432000.0,442800.0,10800.0,1,0.0002,0.02,1.8518518518518518e-08 +"[442800, 453600) min",442800.0,453600.0,10800.0,3,0.0006,0.06,5.555555555555555e-08 +"[453600, 464400) min",453600.0,464400.0,10800.0,2,0.0004,0.04,3.7037037037037036e-08 +"[464400, 475200) min",464400.0,475200.0,10800.0,2,0.0004,0.04,3.7037037037037036e-08 +"[475200, 486000) min",475200.0,486000.0,10800.0,0,0.0,0.0,0.0 +"[486000, 496800) min",486000.0,496800.0,10800.0,0,0.0,0.0,0.0 +"[496800, 507600) min",496800.0,507600.0,10800.0,5,0.001,0.1,9.259259259259259e-08 +"[507600, 518400) min",507600.0,518400.0,10800.0,10,0.002,0.2,1.8518518518518518e-07 +"[518400, 529200) min",518400.0,529200.0,10800.0,48,0.0096,0.96,8.888888888888888e-07 +"[529200, 540000) min",529200.0,540000.0,10800.0,14,0.0028,0.27999999999999997,2.592592592592593e-07 +"[540000, 550800) min",540000.0,550800.0,10800.0,19,0.0038,0.38,3.5185185185185183e-07 +"[550800, 561600) min",550800.0,561600.0,10800.0,21,0.0042,0.42,3.8888888888888884e-07 +"[561600, 572400) min",561600.0,572400.0,10800.0,61,0.0122,1.22,1.1296296296296296e-06 +"[572400, 583200) min",572400.0,583200.0,10800.0,41,0.0082,0.8200000000000001,7.592592592592593e-07 +"[583200, 594000) min",583200.0,594000.0,10800.0,67,0.0134,1.34,1.2407407407407407e-06 +"[594000, 604800) min",594000.0,604800.0,10800.0,35,0.007,0.7000000000000001,6.481481481481481e-07 +"[604800, 615600) min",604800.0,615600.0,10800.0,13,0.0026,0.26,2.4074074074074075e-07 +"[615600, 626400) min",615600.0,626400.0,10800.0,64,0.0128,1.28,1.1851851851851852e-06 +"[626400, 637200) min",626400.0,637200.0,10800.0,56,0.0112,1.1199999999999999,1.0370370370370371e-06 +"[637200, 648000) min",637200.0,648000.0,10800.0,11,0.0022,0.22,2.037037037037037e-07 +"[648000, 658800) min",648000.0,658800.0,10800.0,17,0.0034,0.33999999999999997,3.148148148148148e-07 +"[658800, 669600) min",658800.0,669600.0,10800.0,31,0.0062,0.62,5.740740740740741e-07 +"[669600, 680400) min",669600.0,680400.0,10800.0,5,0.001,0.1,9.259259259259259e-08 +"[680400, 691200) min",680400.0,691200.0,10800.0,17,0.0034,0.33999999999999997,3.148148148148148e-07 +"[691200, 702000) min",691200.0,702000.0,10800.0,11,0.0022,0.22,2.037037037037037e-07 +"[702000, 712800) min",702000.0,712800.0,10800.0,54,0.0108,1.08,1e-06 +"[712800, 723600) min",712800.0,723600.0,10800.0,25,0.005,0.5,4.6296296296296297e-07 +"[723600, 734400) min",723600.0,734400.0,10800.0,51,0.0102,1.02,9.444444444444445e-07 +"[734400, 745200) min",734400.0,745200.0,10800.0,64,0.0128,1.28,1.1851851851851852e-06 +"[745200, 756000) min",745200.0,756000.0,10800.0,41,0.0082,0.8200000000000001,7.592592592592593e-07 +"[756000, 766800) min",756000.0,766800.0,10800.0,54,0.0108,1.08,1e-06 +"[766800, 777600) min",766800.0,777600.0,10800.0,29,0.0058,0.58,5.37037037037037e-07 +"[777600, 788400) min",777600.0,788400.0,10800.0,34,0.0068,0.6799999999999999,6.296296296296296e-07 +"[788400, 799200) min",788400.0,799200.0,10800.0,30,0.006,0.6,5.555555555555555e-07 +"[799200, 810000) min",799200.0,810000.0,10800.0,38,0.0076,0.76,7.037037037037037e-07 +"[810000, 820800) min",810000.0,820800.0,10800.0,51,0.0102,1.02,9.444444444444445e-07 +"[820800, 831600) min",820800.0,831600.0,10800.0,65,0.013,1.3,1.2037037037037037e-06 +"[831600, 842400) min",831600.0,842400.0,10800.0,43,0.0086,0.86,7.962962962962963e-07 +"[842400, 853200) min",842400.0,853200.0,10800.0,40,0.008,0.8,7.407407407407407e-07 +"[853200, 864000) min",853200.0,864000.0,10800.0,56,0.0112,1.1199999999999999,1.0370370370370371e-06 +"[864000, 874800) min",864000.0,874800.0,10800.0,54,0.0108,1.08,1e-06 +"[874800, 885600) min",874800.0,885600.0,10800.0,58,0.0116,1.16,1.074074074074074e-06 +"[885600, 896400) min",885600.0,896400.0,10800.0,111,0.0222,2.22,2.0555555555555555e-06 +"[896400, 907200) min",896400.0,907200.0,10800.0,156,0.0312,3.1199999999999997,2.8888888888888886e-06 +"[907200, 918000) min",907200.0,918000.0,10800.0,27,0.0054,0.54,5e-07 +"[918000, 928800) min",918000.0,928800.0,10800.0,30,0.006,0.6,5.555555555555555e-07 +"[928800, 939600) min",928800.0,939600.0,10800.0,12,0.0024,0.24,2.222222222222222e-07 +"[939600, 950400) min",939600.0,950400.0,10800.0,4,0.0008,0.08,7.407407407407407e-08 +"[950400, 961200) min",950400.0,961200.0,10800.0,2,0.0004,0.04,3.7037037037037036e-08 +"[961200, 972000) min",961200.0,972000.0,10800.0,0,0.0,0.0,0.0 +"[972000, 982800) min",972000.0,982800.0,10800.0,1,0.0002,0.02,1.8518518518518518e-08 +"[982800, 993600) min",982800.0,993600.0,10800.0,1,0.0002,0.02,1.8518518518518518e-08 +"[993600, 1004400) min",993600.0,1004400.0,10800.0,4,0.0008,0.08,7.407407407407407e-08 +"[1004400, 1015200) min",1004400.0,1015200.0,10800.0,0,0.0,0.0,0.0 +"[1015200, 1026000) min",1015200.0,1026000.0,10800.0,4,0.0008,0.08,7.407407407407407e-08 +"[1026000, 1036800) min",1026000.0,1036800.0,10800.0,3,0.0006,0.06,5.555555555555555e-08 +"[1036800, 1047600) min",1036800.0,1047600.0,10800.0,4,0.0008,0.08,7.407407407407407e-08 +"[1047600, 1058400) min",1047600.0,1058400.0,10800.0,17,0.0034,0.33999999999999997,3.148148148148148e-07 +"[1058400, 1069200) min",1058400.0,1069200.0,10800.0,3,0.0006,0.06,5.555555555555555e-08 +"[1069200, 1080000) min",1069200.0,1080000.0,10800.0,1,0.0002,0.02,1.8518518518518518e-08 +"[1080000, 1090800) min",1080000.0,1090800.0,10800.0,8,0.0016,0.16,1.4814814814814815e-07 +"[1090800, 1101600) min",1090800.0,1101600.0,10800.0,7,0.0014,0.13999999999999999,1.2962962962962964e-07 +"[1101600, 1112400) min",1101600.0,1112400.0,10800.0,20,0.004,0.4,3.7037037037037036e-07 +"[1112400, 1123200) min",1112400.0,1123200.0,10800.0,16,0.0032,0.32,2.962962962962963e-07 +"[1123200, 1134000) min",1123200.0,1134000.0,10800.0,11,0.0022,0.22,2.037037037037037e-07 +"[1134000, 1144800) min",1134000.0,1144800.0,10800.0,5,0.001,0.1,9.259259259259259e-08 +"[1144800, 1155600) min",1144800.0,1155600.0,10800.0,3,0.0006,0.06,5.555555555555555e-08 +"[1155600, 1166400) min",1155600.0,1166400.0,10800.0,29,0.0058,0.58,5.37037037037037e-07 +"[1166400, 1177200) min",1166400.0,1177200.0,10800.0,2,0.0004,0.04,3.7037037037037036e-08 +"[1177200, 1188000) min",1177200.0,1188000.0,10800.0,0,0.0,0.0,0.0 +"[1188000, 1198800) min",1188000.0,1198800.0,10800.0,0,0.0,0.0,0.0 +"[1198800, 1209600) min",1198800.0,1209600.0,10800.0,3,0.0006,0.06,5.555555555555555e-08 +"[1209600, 1220400) min",1209600.0,1220400.0,10800.0,1,0.0002,0.02,1.8518518518518518e-08 +"[1220400, 1231200) min",1220400.0,1231200.0,10800.0,3,0.0006,0.06,5.555555555555555e-08 +"[1231200, 1242000) min",1231200.0,1242000.0,10800.0,2,0.0004,0.04,3.7037037037037036e-08 +"[1242000, 1252800) min",1242000.0,1252800.0,10800.0,4,0.0008,0.08,7.407407407407407e-08 +"[1252800, 1263600) min",1252800.0,1263600.0,10800.0,1,0.0002,0.02,1.8518518518518518e-08 +"[1263600, 1274400) min",1263600.0,1274400.0,10800.0,1,0.0002,0.02,1.8518518518518518e-08 +"[1274400, 1285200) min",1274400.0,1285200.0,10800.0,6,0.0012,0.12,1.111111111111111e-07 +"[1285200, 1296000) min",1285200.0,1296000.0,10800.0,1,0.0002,0.02,1.8518518518518518e-08 +"[1296000, 1306800) min",1296000.0,1306800.0,10800.0,1,0.0002,0.02,1.8518518518518518e-08 +"[1306800, 1317600) min",1306800.0,1317600.0,10800.0,0,0.0,0.0,0.0 +"[1317600, 1328400) min",1317600.0,1328400.0,10800.0,1,0.0002,0.02,1.8518518518518518e-08 +"[1328400, 1339200) min",1328400.0,1339200.0,10800.0,0,0.0,0.0,0.0 +"[1339200, 1350000) min",1339200.0,1350000.0,10800.0,5,0.001,0.1,9.259259259259259e-08 +"[1350000, 1360800) min",1350000.0,1360800.0,10800.0,2,0.0004,0.04,3.7037037037037036e-08 +"[1360800, 1371600) min",1360800.0,1371600.0,10800.0,5,0.001,0.1,9.259259259259259e-08 +"[1371600, 1382400) min",1371600.0,1382400.0,10800.0,4,0.0008,0.08,7.407407407407407e-08 +"[1382400, 1393200) min",1382400.0,1393200.0,10800.0,9,0.0018,0.18,1.6666666666666665e-07 +"[1393200, 1404000) min",1393200.0,1404000.0,10800.0,7,0.0014,0.13999999999999999,1.2962962962962964e-07 +"[1404000, 1414800) min",1404000.0,1414800.0,10800.0,4,0.0008,0.08,7.407407407407407e-08 +"[1414800, 1425600) min",1414800.0,1425600.0,10800.0,16,0.0032,0.32,2.962962962962963e-07 +"[1425600, 1436400) min",1425600.0,1436400.0,10800.0,15,0.003,0.3,2.7777777777777776e-07 +"[1436400, 1447200) min",1436400.0,1447200.0,10800.0,12,0.0024,0.24,2.222222222222222e-07 +"[1447200, 1458000) min",1447200.0,1458000.0,10800.0,0,0.0,0.0,0.0 +"[1458000, 1468800) min",1458000.0,1468800.0,10800.0,0,0.0,0.0,0.0 +"[1468800, 1479600) min",1468800.0,1479600.0,10800.0,0,0.0,0.0,0.0 +"[1479600, 1490400) min",1479600.0,1490400.0,10800.0,0,0.0,0.0,0.0 +"[1490400, 1501200) min",1490400.0,1501200.0,10800.0,0,0.0,0.0,0.0 +"[1501200, 1512000) min",1501200.0,1512000.0,10800.0,0,0.0,0.0,0.0 +"[1512000, 1522800) min",1512000.0,1522800.0,10800.0,0,0.0,0.0,0.0 +"[1522800, 1533600) min",1522800.0,1533600.0,10800.0,0,0.0,0.0,0.0 +"[1533600, 1544400) min",1533600.0,1544400.0,10800.0,0,0.0,0.0,0.0 +"[1544400, 1555200) min",1544400.0,1555200.0,10800.0,1,0.0002,0.02,1.8518518518518518e-08 +"[1555200, 1566000) min",1555200.0,1566000.0,10800.0,0,0.0,0.0,0.0 +"[1566000, 1576800) min",1566000.0,1576800.0,10800.0,0,0.0,0.0,0.0 +"[1576800, 1587600) min",1576800.0,1587600.0,10800.0,0,0.0,0.0,0.0 +"[1587600, 1598400) min",1587600.0,1598400.0,10800.0,0,0.0,0.0,0.0 +"[1598400, 1609200) min",1598400.0,1609200.0,10800.0,0,0.0,0.0,0.0 +"[1609200, 1620000) min",1609200.0,1620000.0,10800.0,0,0.0,0.0,0.0 +"[1620000, 1630800) min",1620000.0,1630800.0,10800.0,0,0.0,0.0,0.0 +"[1630800, 1641600) min",1630800.0,1641600.0,10800.0,0,0.0,0.0,0.0 +"[1641600, 1652400) min",1641600.0,1652400.0,10800.0,0,0.0,0.0,0.0 +"[1652400, 1663200) min",1652400.0,1663200.0,10800.0,0,0.0,0.0,0.0 +"[1663200, 1674000) min",1663200.0,1674000.0,10800.0,0,0.0,0.0,0.0 +"[1674000, 1684800) min",1674000.0,1684800.0,10800.0,0,0.0,0.0,0.0 +"[1684800, 1695600) min",1684800.0,1695600.0,10800.0,0,0.0,0.0,0.0 +"[1695600, 1706400) min",1695600.0,1706400.0,10800.0,0,0.0,0.0,0.0 +"[1706400, 1717200) min",1706400.0,1717200.0,10800.0,0,0.0,0.0,0.0 +"[1717200, 1728000) min",1717200.0,1728000.0,10800.0,0,0.0,0.0,0.0 +"[1728000, 1738800) min",1728000.0,1738800.0,10800.0,0,0.0,0.0,0.0 +"[1738800, 1749600) min",1738800.0,1749600.0,10800.0,0,0.0,0.0,0.0 +"[1749600, 1760400) min",1749600.0,1760400.0,10800.0,0,0.0,0.0,0.0 +"[1760400, 1771200) min",1760400.0,1771200.0,10800.0,0,0.0,0.0,0.0 +"[1771200, 1782000) min",1771200.0,1782000.0,10800.0,0,0.0,0.0,0.0 +"[1782000, 1792800) min",1782000.0,1792800.0,10800.0,0,0.0,0.0,0.0 +"[1792800, 1803600) min",1792800.0,1803600.0,10800.0,0,0.0,0.0,0.0 +"[1803600, 1814400) min",1803600.0,1814400.0,10800.0,0,0.0,0.0,0.0 +"[1814400, 1825200) min",1814400.0,1825200.0,10800.0,0,0.0,0.0,0.0 +"[1825200, 1836000) min",1825200.0,1836000.0,10800.0,0,0.0,0.0,0.0 +"[1836000, 1846800) min",1836000.0,1846800.0,10800.0,0,0.0,0.0,0.0 +"[1846800, 1857600) min",1846800.0,1857600.0,10800.0,0,0.0,0.0,0.0 +"[1857600, 1868400) min",1857600.0,1868400.0,10800.0,0,0.0,0.0,0.0 +"[1868400, 1879200) min",1868400.0,1879200.0,10800.0,0,0.0,0.0,0.0 +"[1879200, 1890000) min",1879200.0,1890000.0,10800.0,0,0.0,0.0,0.0 +"[1890000, 1900800) min",1890000.0,1900800.0,10800.0,0,0.0,0.0,0.0 +"[1900800, 1911600) min",1900800.0,1911600.0,10800.0,0,0.0,0.0,0.0 +"[1911600, 1922400) min",1911600.0,1922400.0,10800.0,0,0.0,0.0,0.0 +"[1922400, 1933200) min",1922400.0,1933200.0,10800.0,0,0.0,0.0,0.0 +"[1933200, 1944000) min",1933200.0,1944000.0,10800.0,0,0.0,0.0,0.0 +"[1944000, 1954800) min",1944000.0,1954800.0,10800.0,0,0.0,0.0,0.0 +"[1954800, 1965600) min",1954800.0,1965600.0,10800.0,0,0.0,0.0,0.0 +"[1965600, 1976400) min",1965600.0,1976400.0,10800.0,0,0.0,0.0,0.0 +"[1976400, 1987200) min",1976400.0,1987200.0,10800.0,0,0.0,0.0,0.0 +"[1987200, 1998000) min",1987200.0,1998000.0,10800.0,0,0.0,0.0,0.0 +"[1998000, 2008800) min",1998000.0,2008800.0,10800.0,0,0.0,0.0,0.0 +"[2008800, 2019600) min",2008800.0,2019600.0,10800.0,0,0.0,0.0,0.0 +"[2019600, 2030400) min",2019600.0,2030400.0,10800.0,0,0.0,0.0,0.0 +"[2030400, 2041200) min",2030400.0,2041200.0,10800.0,0,0.0,0.0,0.0 +"[2041200, 2052000) min",2041200.0,2052000.0,10800.0,0,0.0,0.0,0.0 +"[2052000, 2062800) min",2052000.0,2062800.0,10800.0,0,0.0,0.0,0.0 +"[2062800, 2073600) min",2062800.0,2073600.0,10800.0,0,0.0,0.0,0.0 +"[2073600, 2084400) min",2073600.0,2084400.0,10800.0,0,0.0,0.0,0.0 +"[2084400, 2095200) min",2084400.0,2095200.0,10800.0,0,0.0,0.0,0.0 +"[2095200, 2106000) min",2095200.0,2106000.0,10800.0,0,0.0,0.0,0.0 +"[2106000, 2116800) min",2106000.0,2116800.0,10800.0,0,0.0,0.0,0.0 +"[2116800, 2127600) min",2116800.0,2127600.0,10800.0,0,0.0,0.0,0.0 +"[2127600, 2138400) min",2127600.0,2138400.0,10800.0,0,0.0,0.0,0.0 +"[2138400, 2149200) min",2138400.0,2149200.0,10800.0,0,0.0,0.0,0.0 +"[2149200, 2160000) min",2149200.0,2160000.0,10800.0,0,0.0,0.0,0.0 +"[2160000, 2170800) min",2160000.0,2170800.0,10800.0,0,0.0,0.0,0.0 +"[2170800, 2181600) min",2170800.0,2181600.0,10800.0,0,0.0,0.0,0.0 +"[2181600, 2192400) min",2181600.0,2192400.0,10800.0,0,0.0,0.0,0.0 +"[2192400, 2203200) min",2192400.0,2203200.0,10800.0,0,0.0,0.0,0.0 +"[2203200, 2214000) min",2203200.0,2214000.0,10800.0,0,0.0,0.0,0.0 +"[2214000, 2224800) min",2214000.0,2224800.0,10800.0,0,0.0,0.0,0.0 +"[2224800, 2235600) min",2224800.0,2235600.0,10800.0,0,0.0,0.0,0.0 +"[2235600, 2246400) min",2235600.0,2246400.0,10800.0,0,0.0,0.0,0.0 +"[2246400, 2257200) min",2246400.0,2257200.0,10800.0,0,0.0,0.0,0.0 +"[2257200, 2268000) min",2257200.0,2268000.0,10800.0,0,0.0,0.0,0.0 +"[2268000, 2278800) min",2268000.0,2278800.0,10800.0,0,0.0,0.0,0.0 +"[2278800, 2289600) min",2278800.0,2289600.0,10800.0,0,0.0,0.0,0.0 +"[2289600, 2300400) min",2289600.0,2300400.0,10800.0,0,0.0,0.0,0.0 +"[2300400, 2311200) min",2300400.0,2311200.0,10800.0,0,0.0,0.0,0.0 +"[2311200, 2322000) min",2311200.0,2322000.0,10800.0,0,0.0,0.0,0.0 +"[2322000, 2332800) min",2322000.0,2332800.0,10800.0,0,0.0,0.0,0.0 +"[2332800, 2343600) min",2332800.0,2343600.0,10800.0,0,0.0,0.0,0.0 +"[2343600, 2354400) min",2343600.0,2354400.0,10800.0,0,0.0,0.0,0.0 +"[2354400, 2365200) min",2354400.0,2365200.0,10800.0,0,0.0,0.0,0.0 +"[2365200, 2376000) min",2365200.0,2376000.0,10800.0,0,0.0,0.0,0.0 +"[2376000, 2386800) min",2376000.0,2386800.0,10800.0,0,0.0,0.0,0.0 +"[2386800, 2397600) min",2386800.0,2397600.0,10800.0,0,0.0,0.0,0.0 +"[2397600, 2408400) min",2397600.0,2408400.0,10800.0,0,0.0,0.0,0.0 +"[2408400, 2419200) min",2408400.0,2419200.0,10800.0,0,0.0,0.0,0.0 +"[2419200, 2430000) min",2419200.0,2430000.0,10800.0,0,0.0,0.0,0.0 +"[2430000, 2440800) min",2430000.0,2440800.0,10800.0,0,0.0,0.0,0.0 +"[2440800, 2451600) min",2440800.0,2451600.0,10800.0,0,0.0,0.0,0.0 +"[2451600, 2462400) min",2451600.0,2462400.0,10800.0,0,0.0,0.0,0.0 +"[2462400, 2473200) min",2462400.0,2473200.0,10800.0,0,0.0,0.0,0.0 +"[2473200, 2484000) min",2473200.0,2484000.0,10800.0,0,0.0,0.0,0.0 +"[2484000, 2494800) min",2484000.0,2494800.0,10800.0,0,0.0,0.0,0.0 +"[2494800, 2505600) min",2494800.0,2505600.0,10800.0,0,0.0,0.0,0.0 +"[2505600, 2516400) min",2505600.0,2516400.0,10800.0,0,0.0,0.0,0.0 +"[2516400, 2527200) min",2516400.0,2527200.0,10800.0,0,0.0,0.0,0.0 +"[2527200, 2538000) min",2527200.0,2538000.0,10800.0,0,0.0,0.0,0.0 +"[2538000, 2548800) min",2538000.0,2548800.0,10800.0,0,0.0,0.0,0.0 +"[2548800, 2559600) min",2548800.0,2559600.0,10800.0,0,0.0,0.0,0.0 +"[2559600, 2570400) min",2559600.0,2570400.0,10800.0,0,0.0,0.0,0.0 +"[2570400, 2581200) min",2570400.0,2581200.0,10800.0,0,0.0,0.0,0.0 +"[2581200, 2592000) min",2581200.0,2592000.0,10800.0,0,0.0,0.0,0.0 +"[2592000, 2602800) min",2592000.0,2602800.0,10800.0,0,0.0,0.0,0.0 +"[2602800, 2613600) min",2602800.0,2613600.0,10800.0,0,0.0,0.0,0.0 +"[2613600, 2624400) min",2613600.0,2624400.0,10800.0,0,0.0,0.0,0.0 +"[2624400, 2635200) min",2624400.0,2635200.0,10800.0,0,0.0,0.0,0.0 +"[2635200, 2646000) min",2635200.0,2646000.0,10800.0,0,0.0,0.0,0.0 +"[2646000, 2656800) min",2646000.0,2656800.0,10800.0,0,0.0,0.0,0.0 +"[2656800, 2667600) min",2656800.0,2667600.0,10800.0,0,0.0,0.0,0.0 +"[2667600, 2678400) min",2667600.0,2678400.0,10800.0,0,0.0,0.0,0.0 +"[2678400, 2689200) min",2678400.0,2689200.0,10800.0,0,0.0,0.0,0.0 +"[2689200, 2700000) min",2689200.0,2700000.0,10800.0,0,0.0,0.0,0.0 +"[2700000, 2710800) min",2700000.0,2710800.0,10800.0,0,0.0,0.0,0.0 +"[2710800, 2721600) min",2710800.0,2721600.0,10800.0,0,0.0,0.0,0.0 +"[2721600, 2732400) min",2721600.0,2732400.0,10800.0,0,0.0,0.0,0.0 +"[2732400, 2743200) min",2732400.0,2743200.0,10800.0,0,0.0,0.0,0.0 +"[2743200, 2754000) min",2743200.0,2754000.0,10800.0,0,0.0,0.0,0.0 +"[2754000, 2764800) min",2754000.0,2764800.0,10800.0,0,0.0,0.0,0.0 +"[2764800, 2775600) min",2764800.0,2775600.0,10800.0,0,0.0,0.0,0.0 +"[2775600, 2786400) min",2775600.0,2786400.0,10800.0,0,0.0,0.0,0.0 +"[2786400, 2797200) min",2786400.0,2797200.0,10800.0,0,0.0,0.0,0.0 +"[2797200, 2808000) min",2797200.0,2808000.0,10800.0,0,0.0,0.0,0.0 +"[2808000, 2818800) min",2808000.0,2818800.0,10800.0,0,0.0,0.0,0.0 +"[2818800, 2829600) min",2818800.0,2829600.0,10800.0,0,0.0,0.0,0.0 +"[2829600, 2840400) min",2829600.0,2840400.0,10800.0,0,0.0,0.0,0.0 +"[2840400, 2851200) min",2840400.0,2851200.0,10800.0,0,0.0,0.0,0.0 +"[2851200, 2862000) min",2851200.0,2862000.0,10800.0,0,0.0,0.0,0.0 +"[2862000, 2872800) min",2862000.0,2872800.0,10800.0,0,0.0,0.0,0.0 +"[2872800, 2883600) min",2872800.0,2883600.0,10800.0,0,0.0,0.0,0.0 +"[2883600, 2894400) min",2883600.0,2894400.0,10800.0,0,0.0,0.0,0.0 +"[2894400, 2905200) min",2894400.0,2905200.0,10800.0,0,0.0,0.0,0.0 +"[2905200, 2916000) min",2905200.0,2916000.0,10800.0,1,0.0002,0.02,1.8518518518518518e-08 diff --git a/Results/week_student_attempt_distribution.png b/Results/week_student_attempt_distribution.png new file mode 100644 index 0000000000000000000000000000000000000000..bfcb4fad71fca5417222b5ad7f0c513f10c399f7 --- /dev/null +++ b/Results/week_student_attempt_distribution.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b9a9140904686fa49d9a965dc35f9649fcbef465e603e228b9c8b748bcaa0082 +size 185880 diff --git a/Results/week_student_attempt_distribution_00173df52c65a9c13b45978c5a56ea2db67b17deded674486f7af64f7c5fd9ac.png b/Results/week_student_attempt_distribution_00173df52c65a9c13b45978c5a56ea2db67b17deded674486f7af64f7c5fd9ac.png new file mode 100644 index 0000000000000000000000000000000000000000..b48597bcf5f12d254b0ff5bc979037d707fc43d3 --- /dev/null +++ b/Results/week_student_attempt_distribution_00173df52c65a9c13b45978c5a56ea2db67b17deded674486f7af64f7c5fd9ac.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a6305fd76922900f394b4078614dc8f7ee127a9fc082fb565a557961f6a9042d +size 194022 diff --git a/Results/week_student_attempt_distribution_001849d40d6bf1e2ed5826e4420e291e54655a2b6b77a9ab701faaeb4e899abe.png b/Results/week_student_attempt_distribution_001849d40d6bf1e2ed5826e4420e291e54655a2b6b77a9ab701faaeb4e899abe.png new file mode 100644 index 0000000000000000000000000000000000000000..437092bb4d2ca8ce4b66914cdf5c24027df41e2e --- /dev/null +++ b/Results/week_student_attempt_distribution_001849d40d6bf1e2ed5826e4420e291e54655a2b6b77a9ab701faaeb4e899abe.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:22c06b5e60702ef1528f134c9148ec9caae43e0f28f7a41275a41a9bcf9ccdf4 +size 199374 diff --git a/Results/week_student_attempt_distribution_counts.csv b/Results/week_student_attempt_distribution_counts.csv new file mode 100644 index 0000000000000000000000000000000000000000..4de1a8a1242cb66e403e10c3e97c42e13efd6f55 --- /dev/null +++ b/Results/week_student_attempt_distribution_counts.csv @@ -0,0 +1,271 @@ +bin_left_min,bin_right_min,bin_width_min,attempt_count,probability,percentage +0.0,10800.0,10800.0,65138,0.03726025203210177,3.7260252032101775 +10800.0,21600.0,10800.0,51363,0.029380673725395982,2.938067372539598 +21600.0,32400.0,10800.0,48164,0.027550781093588224,2.7550781093588226 +32400.0,43200.0,10800.0,44796,0.02562421704734611,2.562421704734611 +43200.0,54000.0,10800.0,44813,0.025633941390809923,2.5633941390809922 +54000.0,64800.0,10800.0,46836,0.026791138263003448,2.6791138263003447 +64800.0,75600.0,10800.0,42946,0.024565979670401958,2.456597967040196 +75600.0,86400.0,10800.0,42950,0.024568267751216972,2.456826775121697 +86400.0,97200.0,10800.0,45228,0.025871329775367664,2.5871329775367666 +97200.0,108000.0,10800.0,46722,0.02672592795977554,2.672592795977554 +108000.0,118800.0,10800.0,42511,0.024317150881769143,2.4317150881769143 +118800.0,129600.0,10800.0,41669,0.023835509870208615,2.3835509870208615 +129600.0,140400.0,10800.0,53511,0.030609373123058708,3.060937312305871 +140400.0,151200.0,10800.0,41857,0.023943049668514294,2.394304966851429 +151200.0,162000.0,10800.0,36825,0.021064644003226194,2.1064644003226194 +162000.0,172800.0,10800.0,35483,0.020296992889788867,2.029699288978887 +172800.0,183600.0,10800.0,34387,0.019670058746474924,1.9670058746474923 +183600.0,194400.0,10800.0,36777,0.021037187033446023,2.1037187033446023 +194400.0,205200.0,10800.0,41311,0.02363072663726483,2.363072663726483 +205200.0,216000.0,10800.0,42640,0.024390941488053357,2.439094148805336 +216000.0,226800.0,10800.0,44290,0.025334774824246793,2.5334774824246793 +226800.0,237600.0,10800.0,42764,0.024461871993318805,2.4461871993318804 +237600.0,248400.0,10800.0,40439,0.02313192501959169,2.3131925019591693 +248400.0,259200.0,10800.0,47092,0.02693757543516437,2.6937575435164374 +259200.0,270000.0,10800.0,55890,0.03197020918778851,3.1970209187788514 +270000.0,280800.0,10800.0,53385,0.030537298577385755,3.0537298577385754 +280800.0,291600.0,10800.0,46791,0.026765397353834538,2.6765397353834537 +291600.0,302400.0,10800.0,33345,0.01907401369416368,1.9074013694163678 +302400.0,313200.0,10800.0,30958,0.01770860146780384,1.7708601467803842 +313200.0,324000.0,10800.0,31714,0.01814104874184156,1.8141048741841561 +324000.0,334800.0,10800.0,32390,0.018527734399578992,1.8527734399578992 +334800.0,345600.0,10800.0,30908,0.01768000045761616,1.768000045761616 +345600.0,356400.0,10800.0,33141,0.018957321572597944,1.8957321572597945 +356400.0,367200.0,10800.0,24497,0.014012778931351855,1.4012778931351855 +367200.0,378000.0,10800.0,22085,0.01263306619989818,1.263306619989818 +378000.0,388800.0,10800.0,17289,0.00988965730269593,0.988965730269593 +388800.0,399600.0,10800.0,12130,0.006938605071531126,0.6938605071531126 +399600.0,410400.0,10800.0,7246,0.004144858396398561,0.4144858396398561 +410400.0,421200.0,10800.0,4840,0.0027685777861674076,0.27685777861674077 +421200.0,432000.0,10800.0,4090,0.00233956263335221,0.233956263335221 +432000.0,442800.0,10800.0,4161,0.0023801760678187154,0.23801760678187153 +442800.0,453600.0,10800.0,4067,0.0023264061686658773,0.23264061686658774 +453600.0,464400.0,10800.0,4677,0.002675338492955571,0.2675338492955571 +464400.0,475200.0,10800.0,5669,0.003242782535079139,0.3242782535079139 +475200.0,486000.0,10800.0,6935,0.003966960113031192,0.3966960113031192 +486000.0,496800.0,10800.0,4355,0.002491147987346913,0.2491147987346913 +496800.0,507600.0,10800.0,6323,0.003616883748333991,0.3616883748333991 +507600.0,518400.0,10800.0,6917,0.003956663749363628,0.39566637493636275 +518400.0,529200.0,10800.0,8626,0.004934246277578524,0.4934246277578524 +529200.0,540000.0,10800.0,6944,0.003972108294864975,0.39721082948649744 +540000.0,550800.0,10800.0,7639,0.004369662336473725,0.43696623364737247 +550800.0,561600.0,10800.0,5872,0.003358902636441119,0.3358902636441119 +561600.0,572400.0,10800.0,6943,0.003971536274661221,0.3971536274661221 +572400.0,583200.0,10800.0,6258,0.0035797024350900076,0.35797024350900075 +583200.0,594000.0,10800.0,8445,0.004830710620699123,0.48307106206991235 +594000.0,604800.0,10800.0,7410,0.004238669709814151,0.42386697098141507 +604800.0,615600.0,10800.0,5689,0.0032542229391542108,0.3254222939154211 +615600.0,626400.0,10800.0,5488,0.003139246878199738,0.3139246878199738 +626400.0,637200.0,10800.0,6956,0.0039789725373100176,0.39789725373100177 +637200.0,648000.0,10800.0,5324,0.0030454355647841483,0.3045435564784148 +648000.0,658800.0,10800.0,8597,0.00491765769166967,0.491765769166967 +658800.0,669600.0,10800.0,5241,0.0029979578878725995,0.29979578878725993 +669600.0,680400.0,10800.0,4076,0.0023315543504996597,0.23315543504996597 +680400.0,691200.0,10800.0,5262,0.003009970312151425,0.30099703121514254 +691200.0,702000.0,10800.0,5310,0.003037427281931598,0.3037427281931598 +702000.0,712800.0,10800.0,5803,0.003319433242382121,0.3319433242382121 +712800.0,723600.0,10800.0,4658,0.002664470109084253,0.26644701090842526 +723600.0,734400.0,10800.0,5313,0.0030391433425428585,0.3039143342542858 +734400.0,745200.0,10800.0,7184,0.004109393143765838,0.4109393143765838 +745200.0,756000.0,10800.0,4367,0.0024980122297919563,0.24980122297919563 +756000.0,766800.0,10800.0,5466,0.003126662433717159,0.3126662433717159 +766800.0,777600.0,10800.0,4198,0.0024013408153575984,0.24013408153575982 +777600.0,788400.0,10800.0,5758,0.003293692333213209,0.3293692333213209 +788400.0,799200.0,10800.0,5917,0.003384643545610031,0.3384643545610031 +799200.0,810000.0,10800.0,4356,0.0024917200075506665,0.24917200075506665 +810000.0,820800.0,10800.0,4890,0.0027971787963550873,0.27971787963550876 +820800.0,831600.0,10800.0,4921,0.002814911422671449,0.2814911422671449 +831600.0,842400.0,10800.0,2893,0.0016548544494591549,0.1654854449459155 +842400.0,853200.0,10800.0,2825,0.0016159570756039104,0.16159570756039104 +853200.0,864000.0,10800.0,2953,0.0016891756616843707,0.16891756616843706 +864000.0,874800.0,10800.0,2340,0.001338527276783416,0.1338527276783416 +874800.0,885600.0,10800.0,2823,0.0016148130351964032,0.16148130351964032 +885600.0,896400.0,10800.0,3345,0.0019134075815557805,0.19134075815557805 +896400.0,907200.0,10800.0,1599,0.0009146603058020009,0.09146603058020009 +907200.0,918000.0,10800.0,466,0.000266561414949176,0.0266561414949176 +918000.0,928800.0,10800.0,444,0.0002539769704665969,0.02539769704665969 +928800.0,939600.0,10800.0,193,0.00011039989932444414,0.011039989932444413 +939600.0,950400.0,10800.0,170,9.724343463811142e-05,0.009724343463811142 +950400.0,961200.0,10800.0,181,0.00010353565687940097,0.010353565687940098 +961200.0,972000.0,10800.0,337,0.00019277080866496205,0.019277080866496203 +972000.0,982800.0,10800.0,294,0.00016817393990355739,0.01681739399035574 +982800.0,993600.0,10800.0,274,0.00015673353582848547,0.015673353582848548 +993600.0,1004400.0,10800.0,351,0.0002007790915175124,0.020077909151751238 +1004400.0,1015200.0,10800.0,295,0.000168745960107311,0.0168745960107311 +1015200.0,1026000.0,10800.0,256,0.0001464371721609207,0.014643717216092072 +1026000.0,1036800.0,10800.0,253,0.00014472111154965994,0.014472111154965994 +1036800.0,1047600.0,10800.0,215,0.00012298434380702327,0.012298434380702328 +1047600.0,1058400.0,10800.0,378,0.00021622363701885952,0.02162236370188595 +1058400.0,1069200.0,10800.0,394,0.00022537596027891706,0.022537596027891706 +1069200.0,1080000.0,10800.0,279,0.00015959363684725345,0.015959363684725347 +1080000.0,1090800.0,10800.0,265,0.0001515853539947031,0.01515853539947031 +1090800.0,1101600.0,10800.0,352,0.000201351111721266,0.020135111172126602 +1101600.0,1112400.0,10800.0,412,0.00023567232394648178,0.02356723239464818 +1112400.0,1123200.0,10800.0,465,0.0002659893947454224,0.026598939474542237 +1123200.0,1134000.0,10800.0,311,0.00017789828336736853,0.017789828336736854 +1134000.0,1144800.0,10800.0,269,0.00015387343480971748,0.015387343480971748 +1144800.0,1155600.0,10800.0,79,4.518959609653413e-05,0.004518959609653413 +1155600.0,1166400.0,10800.0,151,8.637505076679308e-05,0.008637505076679309 +1166400.0,1177200.0,10800.0,110,6.292222241289563e-05,0.006292222241289563 +1177200.0,1188000.0,10800.0,95,5.4341919356591676e-05,0.005434191935659168 +1188000.0,1198800.0,10800.0,231,0.0001321366670670808,0.013213666706708082 +1198800.0,1209600.0,10800.0,294,0.00016817393990355739,0.01681739399035574 +1209600.0,1220400.0,10800.0,101,5.777404057911326e-05,0.005777404057911326 +1220400.0,1231200.0,10800.0,73,4.175747487401255e-05,0.004175747487401255 +1231200.0,1242000.0,10800.0,59,3.37491920214622e-05,0.00337491920214622 +1242000.0,1252800.0,10800.0,129,7.379060628421396e-05,0.007379060628421396 +1252800.0,1263600.0,10800.0,236,0.0001349967680858488,0.01349967680858488 +1263600.0,1274400.0,10800.0,362,0.00020707131375880195,0.020707131375880195 +1274400.0,1285200.0,10800.0,202,0.00011554808115822651,0.011554808115822652 +1285200.0,1296000.0,10800.0,275,0.00015730555603223905,0.015730555603223905 +1296000.0,1306800.0,10800.0,297,0.00016989000051481818,0.01698900005148182 +1306800.0,1317600.0,10800.0,103,5.8918080986620446e-05,0.005891808098662045 +1317600.0,1328400.0,10800.0,177,0.0001012475760643866,0.01012475760643866 +1328400.0,1339200.0,10800.0,139,7.951080832174992e-05,0.007951080832174993 +1339200.0,1350000.0,10800.0,233,0.000133280707474588,0.0133280707474588 +1350000.0,1360800.0,10800.0,143,8.179888913676432e-05,0.008179888913676431 +1360800.0,1371600.0,10800.0,240,0.00013728484890086317,0.013728484890086318 +1371600.0,1382400.0,10800.0,356,0.00020363919253628038,0.02036391925362804 +1382400.0,1393200.0,10800.0,226,0.00012927656604831282,0.012927656604831281 +1393200.0,1404000.0,10800.0,134,7.665070730298194e-05,0.007665070730298194 +1404000.0,1414800.0,10800.0,233,0.000133280707474588,0.0133280707474588 +1414800.0,1425600.0,10800.0,224,0.00012813252564080563,0.012813252564080564 +1425600.0,1436400.0,10800.0,139,7.951080832174992e-05,0.007951080832174993 +1436400.0,1447200.0,10800.0,118,6.74983840429244e-05,0.00674983840429244 +1447200.0,1458000.0,10800.0,1,5.720202037535965e-07,5.7202020375359656e-05 +1458000.0,1468800.0,10800.0,0,0.0,0.0 +1468800.0,1479600.0,10800.0,4,2.288080815014386e-06,0.00022880808150143862 +1479600.0,1490400.0,10800.0,0,0.0,0.0 +1490400.0,1501200.0,10800.0,0,0.0,0.0 +1501200.0,1512000.0,10800.0,0,0.0,0.0 +1512000.0,1522800.0,10800.0,0,0.0,0.0 +1522800.0,1533600.0,10800.0,0,0.0,0.0 +1533600.0,1544400.0,10800.0,3,1.7160606112607897e-06,0.00017160606112607898 +1544400.0,1555200.0,10800.0,2,1.144040407507193e-06,0.00011440404075071931 +1555200.0,1566000.0,10800.0,0,0.0,0.0 +1566000.0,1576800.0,10800.0,0,0.0,0.0 +1576800.0,1587600.0,10800.0,0,0.0,0.0 +1587600.0,1598400.0,10800.0,0,0.0,0.0 +1598400.0,1609200.0,10800.0,0,0.0,0.0 +1609200.0,1620000.0,10800.0,0,0.0,0.0 +1620000.0,1630800.0,10800.0,0,0.0,0.0 +1630800.0,1641600.0,10800.0,0,0.0,0.0 +1641600.0,1652400.0,10800.0,3,1.7160606112607897e-06,0.00017160606112607898 +1652400.0,1663200.0,10800.0,5,2.8601010187679828e-06,0.0002860101018767983 +1663200.0,1674000.0,10800.0,2,1.144040407507193e-06,0.00011440404075071931 +1674000.0,1684800.0,10800.0,0,0.0,0.0 +1684800.0,1695600.0,10800.0,0,0.0,0.0 +1695600.0,1706400.0,10800.0,0,0.0,0.0 +1706400.0,1717200.0,10800.0,0,0.0,0.0 +1717200.0,1728000.0,10800.0,1,5.720202037535965e-07,5.7202020375359656e-05 +1728000.0,1738800.0,10800.0,0,0.0,0.0 +1738800.0,1749600.0,10800.0,0,0.0,0.0 +1749600.0,1760400.0,10800.0,0,0.0,0.0 +1760400.0,1771200.0,10800.0,0,0.0,0.0 +1771200.0,1782000.0,10800.0,3,1.7160606112607897e-06,0.00017160606112607898 +1782000.0,1792800.0,10800.0,0,0.0,0.0 +1792800.0,1803600.0,10800.0,0,0.0,0.0 +1803600.0,1814400.0,10800.0,0,0.0,0.0 +1814400.0,1825200.0,10800.0,0,0.0,0.0 +1825200.0,1836000.0,10800.0,0,0.0,0.0 +1836000.0,1846800.0,10800.0,0,0.0,0.0 +1846800.0,1857600.0,10800.0,0,0.0,0.0 +1857600.0,1868400.0,10800.0,0,0.0,0.0 +1868400.0,1879200.0,10800.0,0,0.0,0.0 +1879200.0,1890000.0,10800.0,0,0.0,0.0 +1890000.0,1900800.0,10800.0,0,0.0,0.0 +1900800.0,1911600.0,10800.0,0,0.0,0.0 +1911600.0,1922400.0,10800.0,0,0.0,0.0 +1922400.0,1933200.0,10800.0,0,0.0,0.0 +1933200.0,1944000.0,10800.0,0,0.0,0.0 +1944000.0,1954800.0,10800.0,0,0.0,0.0 +1954800.0,1965600.0,10800.0,0,0.0,0.0 +1965600.0,1976400.0,10800.0,0,0.0,0.0 +1976400.0,1987200.0,10800.0,0,0.0,0.0 +1987200.0,1998000.0,10800.0,0,0.0,0.0 +1998000.0,2008800.0,10800.0,0,0.0,0.0 +2008800.0,2019600.0,10800.0,0,0.0,0.0 +2019600.0,2030400.0,10800.0,0,0.0,0.0 +2030400.0,2041200.0,10800.0,0,0.0,0.0 +2041200.0,2052000.0,10800.0,0,0.0,0.0 +2052000.0,2062800.0,10800.0,0,0.0,0.0 +2062800.0,2073600.0,10800.0,0,0.0,0.0 +2073600.0,2084400.0,10800.0,1,5.720202037535965e-07,5.7202020375359656e-05 +2084400.0,2095200.0,10800.0,0,0.0,0.0 +2095200.0,2106000.0,10800.0,0,0.0,0.0 +2106000.0,2116800.0,10800.0,1,5.720202037535965e-07,5.7202020375359656e-05 +2116800.0,2127600.0,10800.0,0,0.0,0.0 +2127600.0,2138400.0,10800.0,3,1.7160606112607897e-06,0.00017160606112607898 +2138400.0,2149200.0,10800.0,0,0.0,0.0 +2149200.0,2160000.0,10800.0,0,0.0,0.0 +2160000.0,2170800.0,10800.0,0,0.0,0.0 +2170800.0,2181600.0,10800.0,0,0.0,0.0 +2181600.0,2192400.0,10800.0,0,0.0,0.0 +2192400.0,2203200.0,10800.0,5,2.8601010187679828e-06,0.0002860101018767983 +2203200.0,2214000.0,10800.0,4,2.288080815014386e-06,0.00022880808150143862 +2214000.0,2224800.0,10800.0,4,2.288080815014386e-06,0.00022880808150143862 +2224800.0,2235600.0,10800.0,0,0.0,0.0 +2235600.0,2246400.0,10800.0,3,1.7160606112607897e-06,0.00017160606112607898 +2246400.0,2257200.0,10800.0,5,2.8601010187679828e-06,0.0002860101018767983 +2257200.0,2268000.0,10800.0,2,1.144040407507193e-06,0.00011440404075071931 +2268000.0,2278800.0,10800.0,1,5.720202037535965e-07,5.7202020375359656e-05 +2278800.0,2289600.0,10800.0,11,6.292222241289563e-06,0.0006292222241289563 +2289600.0,2300400.0,10800.0,4,2.288080815014386e-06,0.00022880808150143862 +2300400.0,2311200.0,10800.0,0,0.0,0.0 +2311200.0,2322000.0,10800.0,1,5.720202037535965e-07,5.7202020375359656e-05 +2322000.0,2332800.0,10800.0,0,0.0,0.0 +2332800.0,2343600.0,10800.0,0,0.0,0.0 +2343600.0,2354400.0,10800.0,0,0.0,0.0 +2354400.0,2365200.0,10800.0,0,0.0,0.0 +2365200.0,2376000.0,10800.0,12,6.864242445043159e-06,0.0006864242445043159 +2376000.0,2386800.0,10800.0,0,0.0,0.0 +2386800.0,2397600.0,10800.0,6,3.4321212225215794e-06,0.00034321212225215796 +2397600.0,2408400.0,10800.0,0,0.0,0.0 +2408400.0,2419200.0,10800.0,5,2.8601010187679828e-06,0.0002860101018767983 +2419200.0,2430000.0,10800.0,0,0.0,0.0 +2430000.0,2440800.0,10800.0,1,5.720202037535965e-07,5.7202020375359656e-05 +2440800.0,2451600.0,10800.0,8,4.576161630028772e-06,0.00045761616300287725 +2451600.0,2462400.0,10800.0,0,0.0,0.0 +2462400.0,2473200.0,10800.0,4,2.288080815014386e-06,0.00022880808150143862 +2473200.0,2484000.0,10800.0,0,0.0,0.0 +2484000.0,2494800.0,10800.0,0,0.0,0.0 +2494800.0,2505600.0,10800.0,0,0.0,0.0 +2505600.0,2516400.0,10800.0,0,0.0,0.0 +2516400.0,2527200.0,10800.0,0,0.0,0.0 +2527200.0,2538000.0,10800.0,0,0.0,0.0 +2538000.0,2548800.0,10800.0,0,0.0,0.0 +2548800.0,2559600.0,10800.0,0,0.0,0.0 +2559600.0,2570400.0,10800.0,0,0.0,0.0 +2570400.0,2581200.0,10800.0,8,4.576161630028772e-06,0.00045761616300287725 +2581200.0,2592000.0,10800.0,0,0.0,0.0 +2592000.0,2602800.0,10800.0,4,2.288080815014386e-06,0.00022880808150143862 +2602800.0,2613600.0,10800.0,12,6.864242445043159e-06,0.0006864242445043159 +2613600.0,2624400.0,10800.0,0,0.0,0.0 +2624400.0,2635200.0,10800.0,2,1.144040407507193e-06,0.00011440404075071931 +2635200.0,2646000.0,10800.0,7,4.004141426275176e-06,0.00040041414262751763 +2646000.0,2656800.0,10800.0,0,0.0,0.0 +2656800.0,2667600.0,10800.0,0,0.0,0.0 +2667600.0,2678400.0,10800.0,6,3.4321212225215794e-06,0.00034321212225215796 +2678400.0,2689200.0,10800.0,3,1.7160606112607897e-06,0.00017160606112607898 +2689200.0,2700000.0,10800.0,0,0.0,0.0 +2700000.0,2710800.0,10800.0,0,0.0,0.0 +2710800.0,2721600.0,10800.0,8,4.576161630028772e-06,0.00045761616300287725 +2721600.0,2732400.0,10800.0,0,0.0,0.0 +2732400.0,2743200.0,10800.0,0,0.0,0.0 +2743200.0,2754000.0,10800.0,0,0.0,0.0 +2754000.0,2764800.0,10800.0,0,0.0,0.0 +2764800.0,2775600.0,10800.0,0,0.0,0.0 +2775600.0,2786400.0,10800.0,0,0.0,0.0 +2786400.0,2797200.0,10800.0,0,0.0,0.0 +2797200.0,2808000.0,10800.0,0,0.0,0.0 +2808000.0,2818800.0,10800.0,1,5.720202037535965e-07,5.7202020375359656e-05 +2818800.0,2829600.0,10800.0,3,1.7160606112607897e-06,0.00017160606112607898 +2829600.0,2840400.0,10800.0,0,0.0,0.0 +2840400.0,2851200.0,10800.0,0,0.0,0.0 +2851200.0,2862000.0,10800.0,0,0.0,0.0 +2862000.0,2872800.0,10800.0,3,1.7160606112607897e-06,0.00017160606112607898 +2872800.0,2883600.0,10800.0,0,0.0,0.0 +2883600.0,2894400.0,10800.0,0,0.0,0.0 +2894400.0,2905200.0,10800.0,3,1.7160606112607897e-06,0.00017160606112607898 +2905200.0,2916000.0,10800.0,8,4.576161630028772e-06,0.00045761616300287725 diff --git a/Results/week_student_attempt_distribution_counts_00173df52c65a9c13b45978c5a56ea2db67b17deded674486f7af64f7c5fd9ac.csv b/Results/week_student_attempt_distribution_counts_00173df52c65a9c13b45978c5a56ea2db67b17deded674486f7af64f7c5fd9ac.csv new file mode 100644 index 0000000000000000000000000000000000000000..7c763401095eb2c837f94c90cad7ce4a6fb754a9 --- /dev/null +++ b/Results/week_student_attempt_distribution_counts_00173df52c65a9c13b45978c5a56ea2db67b17deded674486f7af64f7c5fd9ac.csv @@ -0,0 +1,39 @@ +bin_left_min,bin_right_min,bin_width_min,attempt_count,probability,percentage +0.0,10080.0,10080.0,4,0.010471204188481676,1.0471204188481675 +10080.0,20160.0,10080.0,9,0.02356020942408377,2.356020942408377 +20160.0,30240.0,10080.0,13,0.034031413612565446,3.4031413612565444 +30240.0,40320.0,10080.0,7,0.01832460732984293,1.832460732984293 +40320.0,50400.0,10080.0,1,0.002617801047120419,0.2617801047120419 +50400.0,60480.0,10080.0,9,0.02356020942408377,2.356020942408377 +60480.0,70560.0,10080.0,27,0.07068062827225131,7.068062827225131 +70560.0,80640.0,10080.0,30,0.07853403141361257,7.853403141361256 +80640.0,90720.0,10080.0,0,0.0,0.0 +90720.0,100800.0,10080.0,3,0.007853403141361256,0.7853403141361256 +100800.0,110880.0,10080.0,14,0.03664921465968586,3.664921465968586 +110880.0,120960.0,10080.0,8,0.020942408376963352,2.094240837696335 +120960.0,131040.0,10080.0,21,0.0549738219895288,5.49738219895288 +131040.0,141120.0,10080.0,20,0.05235602094240838,5.2356020942408374 +141120.0,151200.0,10080.0,1,0.002617801047120419,0.2617801047120419 +151200.0,161280.0,10080.0,0,0.0,0.0 +161280.0,171360.0,10080.0,18,0.04712041884816754,4.712041884816754 +171360.0,181440.0,10080.0,17,0.04450261780104712,4.450261780104712 +181440.0,191520.0,10080.0,11,0.028795811518324606,2.8795811518324608 +191520.0,201600.0,10080.0,0,0.0,0.0 +201600.0,211680.0,10080.0,0,0.0,0.0 +211680.0,221760.0,10080.0,19,0.049738219895287955,4.973821989528796 +221760.0,231840.0,10080.0,7,0.01832460732984293,1.832460732984293 +231840.0,241920.0,10080.0,19,0.049738219895287955,4.973821989528796 +241920.0,252000.0,10080.0,13,0.034031413612565446,3.4031413612565444 +252000.0,262080.0,10080.0,8,0.020942408376963352,2.094240837696335 +262080.0,272160.0,10080.0,15,0.03926701570680628,3.926701570680628 +272160.0,282240.0,10080.0,4,0.010471204188481676,1.0471204188481675 +282240.0,292320.0,10080.0,11,0.028795811518324606,2.8795811518324608 +292320.0,302400.0,10080.0,23,0.060209424083769635,6.020942408376963 +302400.0,312480.0,10080.0,31,0.08115183246073299,8.115183246073299 +312480.0,322560.0,10080.0,0,0.0,0.0 +322560.0,332640.0,10080.0,9,0.02356020942408377,2.356020942408377 +332640.0,342720.0,10080.0,0,0.0,0.0 +342720.0,352800.0,10080.0,0,0.0,0.0 +352800.0,362880.0,10080.0,5,0.013089005235602094,1.3089005235602094 +362880.0,372960.0,10080.0,2,0.005235602094240838,0.5235602094240838 +372960.0,383040.0,10080.0,3,0.007853403141361256,0.7853403141361256 diff --git a/Results/week_student_attempt_distribution_counts_001849d40d6bf1e2ed5826e4420e291e54655a2b6b77a9ab701faaeb4e899abe.csv b/Results/week_student_attempt_distribution_counts_001849d40d6bf1e2ed5826e4420e291e54655a2b6b77a9ab701faaeb4e899abe.csv new file mode 100644 index 0000000000000000000000000000000000000000..eab81ea7b38de7926f320d5f7d26b1185da45bf2 --- /dev/null +++ b/Results/week_student_attempt_distribution_counts_001849d40d6bf1e2ed5826e4420e291e54655a2b6b77a9ab701faaeb4e899abe.csv @@ -0,0 +1,38 @@ +bin_left_min,bin_right_min,bin_width_min,attempt_count,probability,percentage +0.0,10080.0,10080.0,15,0.0410958904109589,4.10958904109589 +10080.0,20160.0,10080.0,19,0.052054794520547946,5.205479452054795 +20160.0,30240.0,10080.0,13,0.03561643835616438,3.5616438356164384 +30240.0,40320.0,10080.0,18,0.049315068493150684,4.931506849315069 +40320.0,50400.0,10080.0,7,0.019178082191780823,1.9178082191780823 +50400.0,60480.0,10080.0,7,0.019178082191780823,1.9178082191780823 +60480.0,70560.0,10080.0,4,0.010958904109589041,1.095890410958904 +70560.0,80640.0,10080.0,18,0.049315068493150684,4.931506849315069 +80640.0,90720.0,10080.0,18,0.049315068493150684,4.931506849315069 +90720.0,100800.0,10080.0,10,0.0273972602739726,2.73972602739726 +100800.0,110880.0,10080.0,13,0.03561643835616438,3.5616438356164384 +110880.0,120960.0,10080.0,1,0.0027397260273972603,0.273972602739726 +120960.0,131040.0,10080.0,21,0.057534246575342465,5.7534246575342465 +131040.0,141120.0,10080.0,19,0.052054794520547946,5.205479452054795 +141120.0,151200.0,10080.0,0,0.0,0.0 +151200.0,161280.0,10080.0,0,0.0,0.0 +161280.0,171360.0,10080.0,0,0.0,0.0 +171360.0,181440.0,10080.0,3,0.00821917808219178,0.821917808219178 +181440.0,191520.0,10080.0,20,0.0547945205479452,5.47945205479452 +191520.0,201600.0,10080.0,8,0.021917808219178082,2.191780821917808 +201600.0,211680.0,10080.0,15,0.0410958904109589,4.10958904109589 +211680.0,221760.0,10080.0,14,0.038356164383561646,3.8356164383561646 +221760.0,231840.0,10080.0,11,0.030136986301369864,3.0136986301369864 +231840.0,241920.0,10080.0,5,0.0136986301369863,1.36986301369863 +241920.0,252000.0,10080.0,11,0.030136986301369864,3.0136986301369864 +252000.0,262080.0,10080.0,5,0.0136986301369863,1.36986301369863 +262080.0,272160.0,10080.0,12,0.03287671232876712,3.287671232876712 +272160.0,282240.0,10080.0,9,0.024657534246575342,2.4657534246575343 +282240.0,292320.0,10080.0,0,0.0,0.0 +292320.0,302400.0,10080.0,3,0.00821917808219178,0.821917808219178 +302400.0,312480.0,10080.0,19,0.052054794520547946,5.205479452054795 +312480.0,322560.0,10080.0,10,0.0273972602739726,2.73972602739726 +322560.0,332640.0,10080.0,6,0.01643835616438356,1.643835616438356 +332640.0,342720.0,10080.0,8,0.021917808219178082,2.191780821917808 +342720.0,352800.0,10080.0,14,0.038356164383561646,3.8356164383561646 +352800.0,362880.0,10080.0,3,0.00821917808219178,0.821917808219178 +362880.0,372960.0,10080.0,6,0.01643835616438356,1.643835616438356