File size: 144,014 Bytes
59854ea | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 2311 2312 2313 2314 2315 2316 2317 2318 2319 2320 2321 2322 2323 2324 2325 2326 2327 2328 2329 2330 2331 2332 2333 2334 2335 2336 2337 2338 2339 2340 2341 2342 2343 2344 2345 2346 2347 2348 2349 2350 2351 2352 2353 2354 2355 2356 2357 2358 2359 2360 2361 2362 2363 2364 2365 2366 2367 2368 2369 2370 2371 2372 2373 2374 2375 2376 2377 2378 2379 2380 2381 2382 2383 2384 2385 2386 2387 2388 2389 2390 2391 2392 2393 2394 2395 2396 2397 2398 2399 2400 2401 2402 2403 2404 2405 2406 2407 2408 2409 2410 2411 2412 2413 2414 2415 2416 2417 2418 2419 2420 2421 2422 2423 2424 2425 2426 2427 2428 2429 2430 2431 2432 2433 2434 2435 2436 2437 2438 2439 2440 2441 2442 2443 2444 2445 2446 2447 2448 2449 2450 2451 2452 2453 2454 2455 2456 2457 2458 2459 2460 2461 2462 2463 2464 2465 2466 2467 2468 2469 2470 2471 2472 2473 2474 2475 2476 2477 2478 2479 2480 2481 2482 2483 2484 2485 2486 2487 2488 2489 2490 2491 2492 2493 2494 2495 2496 2497 2498 2499 2500 2501 2502 2503 2504 2505 2506 2507 2508 2509 2510 2511 2512 2513 2514 2515 2516 2517 2518 2519 2520 2521 2522 2523 2524 2525 2526 2527 2528 2529 2530 2531 2532 2533 2534 2535 2536 2537 2538 2539 2540 2541 2542 2543 2544 2545 2546 2547 2548 2549 2550 2551 2552 2553 2554 2555 2556 2557 2558 2559 2560 2561 2562 2563 2564 2565 2566 2567 2568 2569 2570 2571 2572 2573 2574 2575 2576 2577 2578 2579 2580 2581 2582 2583 2584 2585 2586 2587 2588 2589 2590 2591 2592 2593 2594 2595 2596 2597 2598 2599 2600 2601 2602 2603 2604 2605 2606 2607 2608 2609 2610 2611 2612 2613 2614 2615 2616 2617 2618 2619 2620 2621 2622 2623 2624 2625 2626 2627 2628 2629 2630 2631 2632 2633 2634 2635 2636 2637 2638 2639 2640 2641 2642 2643 2644 2645 2646 2647 2648 2649 2650 2651 2652 2653 2654 2655 2656 2657 2658 2659 2660 2661 2662 2663 2664 2665 2666 2667 2668 2669 2670 2671 2672 2673 2674 2675 2676 2677 2678 2679 2680 2681 2682 2683 2684 2685 2686 2687 2688 2689 2690 2691 2692 2693 2694 2695 2696 2697 2698 2699 2700 2701 2702 2703 2704 2705 2706 2707 2708 2709 2710 2711 2712 2713 2714 2715 2716 2717 2718 2719 2720 2721 2722 2723 2724 2725 2726 2727 2728 2729 2730 2731 2732 2733 2734 2735 2736 2737 2738 2739 2740 2741 2742 2743 2744 2745 2746 2747 2748 2749 2750 2751 2752 2753 2754 2755 2756 2757 2758 2759 2760 2761 2762 2763 2764 2765 2766 2767 2768 2769 2770 2771 2772 2773 2774 2775 2776 2777 2778 2779 2780 2781 2782 2783 2784 2785 2786 2787 2788 2789 2790 2791 2792 2793 2794 2795 2796 2797 2798 2799 2800 2801 2802 2803 2804 2805 2806 2807 2808 2809 2810 2811 2812 2813 2814 2815 2816 2817 2818 2819 2820 2821 2822 2823 2824 2825 2826 2827 2828 2829 2830 2831 2832 2833 2834 2835 2836 2837 2838 2839 2840 2841 2842 2843 2844 2845 2846 2847 2848 2849 2850 2851 2852 2853 2854 2855 2856 2857 2858 2859 2860 2861 2862 2863 2864 2865 2866 2867 2868 2869 2870 2871 2872 2873 2874 2875 2876 2877 2878 2879 2880 2881 2882 2883 2884 2885 2886 2887 2888 2889 2890 2891 2892 2893 2894 2895 2896 2897 2898 2899 2900 2901 2902 2903 2904 2905 2906 2907 2908 2909 2910 2911 2912 2913 2914 2915 2916 2917 2918 2919 2920 2921 2922 2923 2924 2925 2926 2927 2928 2929 2930 2931 2932 2933 2934 2935 2936 2937 2938 2939 2940 2941 2942 2943 2944 2945 2946 2947 2948 2949 2950 2951 2952 2953 2954 2955 2956 2957 2958 2959 2960 2961 2962 2963 2964 2965 2966 2967 2968 2969 2970 2971 2972 2973 2974 2975 2976 2977 2978 2979 2980 2981 2982 2983 2984 2985 2986 2987 2988 2989 2990 2991 2992 2993 2994 2995 2996 2997 2998 2999 3000 3001 3002 3003 3004 3005 3006 3007 3008 3009 3010 3011 3012 3013 3014 3015 3016 3017 3018 3019 3020 3021 3022 3023 3024 3025 3026 3027 3028 3029 3030 3031 3032 3033 3034 3035 3036 3037 3038 3039 3040 3041 3042 3043 3044 3045 3046 3047 3048 3049 3050 3051 3052 3053 3054 3055 3056 3057 3058 3059 3060 3061 3062 3063 3064 3065 3066 3067 3068 3069 3070 3071 3072 3073 3074 3075 3076 3077 3078 3079 3080 3081 3082 3083 3084 3085 3086 3087 3088 3089 3090 3091 3092 3093 3094 3095 3096 3097 3098 3099 3100 3101 3102 3103 3104 3105 3106 3107 3108 3109 3110 3111 3112 3113 3114 3115 3116 3117 3118 3119 3120 3121 3122 3123 3124 3125 3126 3127 3128 3129 3130 3131 3132 3133 3134 3135 3136 3137 3138 3139 3140 3141 3142 3143 3144 3145 3146 3147 3148 3149 3150 3151 3152 3153 3154 3155 3156 3157 3158 3159 3160 3161 3162 3163 3164 3165 3166 3167 3168 3169 3170 3171 3172 3173 3174 3175 3176 3177 3178 3179 3180 3181 3182 3183 3184 3185 3186 3187 3188 3189 3190 3191 3192 3193 3194 3195 3196 3197 3198 3199 3200 3201 3202 3203 3204 3205 3206 3207 3208 3209 3210 3211 3212 3213 3214 3215 3216 3217 3218 3219 3220 3221 3222 3223 3224 3225 3226 3227 3228 3229 3230 3231 3232 3233 3234 3235 3236 3237 3238 3239 3240 3241 3242 3243 3244 3245 3246 3247 3248 3249 3250 3251 3252 3253 3254 3255 3256 3257 3258 3259 3260 3261 3262 3263 3264 3265 3266 3267 3268 3269 3270 3271 3272 3273 3274 3275 3276 3277 3278 3279 3280 3281 3282 3283 3284 3285 3286 3287 3288 3289 3290 3291 3292 3293 3294 3295 3296 3297 3298 3299 3300 3301 3302 3303 3304 3305 3306 3307 3308 3309 3310 3311 3312 3313 3314 3315 3316 3317 3318 3319 3320 3321 3322 3323 3324 3325 3326 3327 3328 3329 3330 3331 3332 3333 3334 3335 3336 3337 3338 3339 3340 3341 3342 3343 3344 3345 3346 3347 3348 3349 3350 3351 3352 3353 3354 3355 3356 3357 3358 3359 3360 3361 3362 3363 3364 3365 3366 3367 3368 3369 3370 3371 3372 3373 3374 3375 3376 3377 3378 3379 3380 3381 3382 3383 3384 3385 3386 3387 3388 3389 3390 3391 3392 3393 3394 3395 3396 3397 3398 3399 3400 3401 3402 3403 3404 3405 3406 3407 3408 3409 3410 3411 3412 3413 3414 3415 | {
"exam_metadata": {
"branch": "Matematik",
"stage": 1,
"type": "question_and_solution",
"year": 2025,
"level": "middle_school",
"format_id": "FMT_MATH_MID_1_QS",
"total_questions_found": 33,
"language": "TR",
"source_mmd": "/content/drive/MyDrive/TUBİTAK/ortaokulmat/Ortaokul Matematik_1_Birinci_Asama_2025/Ortaokul Matematik_1_Birinci_Asama_2025.mmd",
"source_pdf": "/content/drive/MyDrive/TUBİTAK/ortaokulmat/Ortaokul Matematik_1_Birinci_Asama_2025/2025.pdf",
"source_folder": "Ortaokul Matematik_1_Birinci_Asama_2025",
"page_count": 13
},
"global_parameters": {
"constants": {},
"formulas": [],
"rules": [],
"raw_text": "<!-- Sayfa 1 -->\n\nTÜRKİYE BİLİMSEL VE TEKNOLOJİK ARAŞTIRMA KURUMU BİLİM İNSANI DESTEK PROGRAMLARI BAŞKANLIĞI \n\n\n\n\nSoru Kitapçığı Türü \n\n [IMAGE] \n\n\n\n17 Mayıs 2025 Cumartesi, 09.30-12.30 \n\n\nÇÖZÜMLER\n\n---"
},
"questions": [
{
"question_id": "2025-MATM-1-Q1",
"format_id": "FMT_MATH_MID_1_QS",
"question_number": 1,
"day_index": null,
"char_start": 0,
"char_end": 765,
"status": "active",
"cancellation_reason": null,
"parent_context": null,
"language_pairing": null,
"question_stem": "Bir ABC üçgeninin [BC], [AC], [AB] kenarları üzerinde sırasıyla K, L, M noktaları |BK| = |BM| ve |CK| = |CL| olacak şekilde alınıyor. \\(s(\\widehat{BAC}) = 50^\\circ\\) ise, \\(s(LKM)\\) kaçtır? \n\n\na) \\(25^\\circ\\) b) \\(40^\\circ\\) c) \\(50^\\circ\\) d) \\(65^\\circ\\) e) \\(80^\\circ\\) \n\n\nCevap: \\(65^\\circ\\). \\(s(\\widehat{BKM}) = s(\\widehat{BMK}) = \\alpha\\) ve \\(s(\\widehat{CKL}) = s(\\widehat{CLK}) = \\beta\\) olsun. Bu durumda \\(s(\\widehat{ABC}) = 180^\\circ - 2\\alpha\\) ve \\(s(\\widehat{ACB}) = 180^\\circ - 2\\beta\\) olur. ABC üçgeninin iç açıları toplamı \\(180^\\circ\\) olduğundan \\((180^\\circ - 2\\alpha) + (180^\\circ - 2\\beta) + 50^\\circ = 180^\\circ\\) bulunur. Buradan \\(\\alpha + \\beta = 115^\\circ\\) ve \\(s(\\widehat{LKM}) = 180^\\circ - (\\alpha + \\beta) = 65^\\circ\\) bulunur.",
"options": [],
"sub_questions": [
{
"label": "A",
"points": null,
"text": "\\(25^\\circ\\) b) \\(40^\\circ\\) c) \\(50^\\circ\\) d) \\(65^\\circ\\) e) \\(80^\\circ\\) \n\n\nCevap: \\(65^\\circ\\). \\(s(\\widehat{BKM}) = s(\\widehat{BMK}) = \\alpha\\) ve \\(s(\\widehat{CKL}) = s(\\widehat{CLK}) = \\beta\\) olsun. Bu durumda \\(s(\\widehat{ABC}) = 180^\\circ - 2\\alpha\\) ve \\(s(\\widehat{ACB}) = 180^\\circ - 2\\beta\\) olur. ABC üçgeninin iç açıları toplamı \\(180^\\circ\\) olduğundan \\((180^\\circ - 2\\alpha) + (180^\\circ - 2\\beta) + 50^\\circ = 180^\\circ\\) bulunur. Buradan \\(\\alpha + \\beta = 115^\\circ\\) ve \\(s(\\widehat{LKM}) = 180^\\circ - (\\alpha + \\beta) = 65^\\circ\\) bulunur."
}
],
"premises": [],
"has_figure": false,
"has_choices": false,
"visual_references": [
{
"tag": "text",
"bbox": [
150,
163,
841,
195
],
"char_start": 17,
"char_end": 73,
"type": "ref_det"
},
{
"tag": "text",
"bbox": [
260,
207,
732,
255
],
"char_start": 167,
"char_end": 223,
"type": "ref_det"
},
{
"tag": "text",
"bbox": [
395,
268,
600,
283
],
"char_start": 304,
"char_end": 360,
"type": "ref_det"
}
],
"code_blocks": [],
"latex_blocks": [],
"data_tables": [],
"competitive_programming": null,
"solution": null,
"answer": {
"answer_key": null,
"short_answer": null,
"symbolic_answer": null,
"answer_frame_guidelines": null
},
"scoring": {
"scoring_weight": null,
"scoring_logic": null,
"subtask_points": []
},
"topic_metadata": {
"t_code": null,
"discipline": "Geometri",
"section_title": null,
"keywords": [],
"topic_tags": [
"Geometri"
]
},
"provenance": {
"source_pdf": "/content/drive/MyDrive/TUBİTAK/ortaokulmat/Ortaokul Matematik_1_Birinci_Asama_2025/2025.pdf",
"source_mmd": "/content/drive/MyDrive/TUBİTAK/ortaokulmat/Ortaokul Matematik_1_Birinci_Asama_2025/Ortaokul Matematik_1_Birinci_Asama_2025.mmd",
"ocr_engine": "Mathpix-mmd",
"is_source": "combined_booklet"
},
"raw_text": "Bir ABC üçgeninin [BC], [AC], [AB] kenarları üzerinde sırasıyla K, L, M noktaları |BK| = |BM| ve |CK| = |CL| olacak şekilde alınıyor. \\(s(\\widehat{BAC}) = 50^\\circ\\) ise, \\(s(LKM)\\) kaçtır? \n\n\na) \\(25^\\circ\\) b) \\(40^\\circ\\) c) \\(50^\\circ\\) d) \\(65^\\circ\\) e) \\(80^\\circ\\) \n\n\nCevap: \\(65^\\circ\\). \\(s(\\widehat{BKM}) = s(\\widehat{BMK}) = \\alpha\\) ve \\(s(\\widehat{CKL}) = s(\\widehat{CLK}) = \\beta\\) olsun. Bu durumda \\(s(\\widehat{ABC}) = 180^\\circ - 2\\alpha\\) ve \\(s(\\widehat{ACB}) = 180^\\circ - 2\\beta\\) olur. ABC üçgeninin iç açıları toplamı \\(180^\\circ\\) olduğundan \\((180^\\circ - 2\\alpha) + (180^\\circ - 2\\beta) + 50^\\circ = 180^\\circ\\) bulunur. Buradan \\(\\alpha + \\beta = 115^\\circ\\) ve \\(s(\\widehat{LKM}) = 180^\\circ - (\\alpha + \\beta) = 65^\\circ\\) bulunur.",
"question_image_path": "/content/drive/MyDrive/TUBİTAK_output/parsed_output/cropped_images/Ortaokul Matematik_1_Birinci_Asama_2025/q1_question.png",
"solution_image_path": null,
"inline_image_paths": [
"/content/drive/MyDrive/TUBİTAK_output/parsed_output/cropped_images/Ortaokul Matematik_1_Birinci_Asama_2025/q1_inline_1.png",
"/content/drive/MyDrive/TUBİTAK_output/parsed_output/cropped_images/Ortaokul Matematik_1_Birinci_Asama_2025/q1_inline_2.png",
"/content/drive/MyDrive/TUBİTAK_output/parsed_output/cropped_images/Ortaokul Matematik_1_Birinci_Asama_2025/q1_inline_3.png"
]
},
{
"question_id": "2025-MATM-1-Q2",
"format_id": "FMT_MATH_MID_1_QS",
"question_number": 2,
"day_index": null,
"char_start": 767,
"char_end": 1234,
"status": "active",
"cancellation_reason": null,
"parent_context": null,
"language_pairing": null,
"question_stem": "\\(2025^3\\) sayısının pozitif bölenlerinin kaç tanesi 375 sayısının bir katı değildir?",
"options": [
{
"label": "A",
"text": "43"
},
{
"label": "B",
"text": "48"
},
{
"label": "C",
"text": "58"
},
{
"label": "D",
"text": "72"
},
{
"label": "E",
"text": "91"
}
],
"sub_questions": [],
"premises": [],
"has_figure": false,
"has_choices": true,
"visual_references": [
{
"tag": "text",
"bbox": [
181,
202,
833,
225
],
"char_start": 880,
"char_end": 936,
"type": "ref_det"
},
{
"tag": "text",
"bbox": [
181,
234,
833,
330
],
"char_start": 1019,
"char_end": 1075,
"type": "ref_det"
}
],
"code_blocks": [],
"latex_blocks": [],
"data_tables": [],
"competitive_programming": null,
"solution": null,
"answer": {
"answer_key": null,
"short_answer": null,
"symbolic_answer": null,
"answer_frame_guidelines": null
},
"scoring": {
"scoring_weight": null,
"scoring_logic": null,
"subtask_points": []
},
"topic_metadata": {
"t_code": null,
"discipline": null,
"section_title": null,
"keywords": [],
"topic_tags": []
},
"provenance": {
"source_pdf": "/content/drive/MyDrive/TUBİTAK/ortaokulmat/Ortaokul Matematik_1_Birinci_Asama_2025/2025.pdf",
"source_mmd": "/content/drive/MyDrive/TUBİTAK/ortaokulmat/Ortaokul Matematik_1_Birinci_Asama_2025/Ortaokul Matematik_1_Birinci_Asama_2025.mmd",
"ocr_engine": "Mathpix-mmd",
"is_source": "combined_booklet"
},
"raw_text": "\\(2025^3\\) sayısının pozitif bölenlerinin kaç tanesi 375 sayısının bir katı değildir? \n\n\na) 43 b) 48 c) 58 d) 72 e) 91 \n\n\nCevap: \\(43\\). \\(2025^3 = 3^{12} \\times 5^6\\) olduğu için bu sayının \\(13 \\times 7 = 91\\) böleni vardır. Bunların arasında 375 ile bölünenlerin sayısı ise, \\(375 = 3^1 \\times 5^3\\) olduğu için \\(2025^3/375 = 3^{11} \\times 5^3\\) sayısının bölenlerinin sayısına eşittir, bu da \\(12 \\times 4 = 48\\) dir. Buna göre, cevap \\(91 - 48 = 43\\) olur.",
"question_image_path": "/content/drive/MyDrive/TUBİTAK_output/parsed_output/cropped_images/Ortaokul Matematik_1_Birinci_Asama_2025/q2_question.png",
"solution_image_path": null,
"inline_image_paths": [
"/content/drive/MyDrive/TUBİTAK_output/parsed_output/cropped_images/Ortaokul Matematik_1_Birinci_Asama_2025/q2_inline_1.png",
"/content/drive/MyDrive/TUBİTAK_output/parsed_output/cropped_images/Ortaokul Matematik_1_Birinci_Asama_2025/q2_inline_2.png"
]
},
{
"question_id": "2025-MATM-1-Q3",
"format_id": "FMT_MATH_MID_1_QS",
"question_number": 3,
"day_index": null,
"char_start": 1236,
"char_end": 2133,
"status": "active",
"cancellation_reason": null,
"parent_context": null,
"language_pairing": null,
"question_stem": "Bir kutudaki topların her biri kırmızı, beyaz, siyah ve mavi renklerinden birine boyalıdır. Bu kutuya, kutudaki kırmızı top sayısı kadar kırmızı top ekleniyor ve bunun sonucunda kutudaki toplam top sayısı %20 artıyor. Bundan sonra, kutuya kutudaki beyaz top sayısı kadar beyaz top ekleniyor ve bunun sonucunda kutudaki toplam top sayısi %25 artıyor. Son olarak, kutuya kutudaki siyah top sayısı kadar siyah top ekleniyor ve bunun sonucunda kutudaki toplam top sayışı %30 artıyor. Buna göre, başlangıçta kutuda bulunan topların yüzde kaçı mavidir?",
"options": [
{
"label": "A",
"text": "5"
},
{
"label": "B",
"text": "10"
},
{
"label": "C",
"text": "15"
},
{
"label": "D",
"text": "20"
},
{
"label": "E",
"text": "25"
}
],
"sub_questions": [],
"premises": [],
"has_figure": false,
"has_choices": true,
"visual_references": [
{
"tag": "text",
"bbox": [
155,
344,
835,
366
],
"char_start": 1564,
"char_end": 1620,
"type": "ref_det"
},
{
"tag": "text",
"bbox": [
181,
377,
833,
398
],
"char_start": 1712,
"char_end": 1768,
"type": "ref_det"
},
{
"tag": "text",
"bbox": [
181,
410,
833,
480
],
"char_start": 1801,
"char_end": 1857,
"type": "ref_det"
}
],
"code_blocks": [],
"latex_blocks": [],
"data_tables": [],
"competitive_programming": null,
"solution": null,
"answer": {
"answer_key": null,
"short_answer": null,
"symbolic_answer": null,
"answer_frame_guidelines": null
},
"scoring": {
"scoring_weight": null,
"scoring_logic": null,
"subtask_points": []
},
"topic_metadata": {
"t_code": null,
"discipline": null,
"section_title": null,
"keywords": [],
"topic_tags": []
},
"provenance": {
"source_pdf": "/content/drive/MyDrive/TUBİTAK/ortaokulmat/Ortaokul Matematik_1_Birinci_Asama_2025/2025.pdf",
"source_mmd": "/content/drive/MyDrive/TUBİTAK/ortaokulmat/Ortaokul Matematik_1_Birinci_Asama_2025/Ortaokul Matematik_1_Birinci_Asama_2025.mmd",
"ocr_engine": "Mathpix-mmd",
"is_source": "combined_booklet"
},
"raw_text": "Bir kutudaki topların her biri kırmızı, beyaz, siyah ve mavi renklerinden birine boyalıdır. Bu kutuya, kutudaki kırmızı top sayısı kadar kırmızı top ekleniyor ve bunun sonucunda kutudaki toplam top sayısı %20 artıyor. Bundan sonra, kutuya kutudaki beyaz top sayısı kadar beyaz top ekleniyor ve bunun sonucunda kutudaki toplam top sayısi %25 artıyor. Son olarak, kutuya kutudaki siyah top sayısı kadar siyah top ekleniyor ve bunun sonucunda kutudaki toplam top sayışı %30 artıyor. Buna göre, başlangıçta kutuda bulunan topların yüzde kaçı mavidir? \n\n\na) 5 b) 10 c) 15 d) 20 e) 25 \n\n\nCevap: %5. Kutuda en başta 100a top olduğunu varsayalım. İlk koşula göre, kırmızı topların sayısı 20a'dır. İkinci koşula göre, beyaz topların sayısı 120a topun %25'i olan 30a'dır. Son koşula göre, siyah topların sayısı 150a topun %30'u olan 45a'dır. Böylece en başta kutudaki mavi top sayısı 5a olarak bulunur.",
"question_image_path": "/content/drive/MyDrive/TUBİTAK_output/parsed_output/cropped_images/Ortaokul Matematik_1_Birinci_Asama_2025/q3_question.png",
"solution_image_path": null,
"inline_image_paths": [
"/content/drive/MyDrive/TUBİTAK_output/parsed_output/cropped_images/Ortaokul Matematik_1_Birinci_Asama_2025/q3_inline_1.png",
"/content/drive/MyDrive/TUBİTAK_output/parsed_output/cropped_images/Ortaokul Matematik_1_Birinci_Asama_2025/q3_inline_2.png",
"/content/drive/MyDrive/TUBİTAK_output/parsed_output/cropped_images/Ortaokul Matematik_1_Birinci_Asama_2025/q3_inline_3.png"
]
},
{
"question_id": "2025-MATM-1-Q4",
"format_id": "FMT_MATH_MID_1_QS",
"question_number": 4,
"day_index": null,
"char_start": 2135,
"char_end": 2722,
"status": "active",
"cancellation_reason": null,
"parent_context": null,
"language_pairing": null,
"question_stem": "Herhangi ikisinin boyutu birbirinden farklı olan 8 topun her biri kırmızı, beyaz ve mavi renklerinden birine, en az bir top kırmızı ve en az bir top\n\n---\nbeyaz olmak koşuluyla kaç farklı şekilde boyanabilir?",
"options": [
{
"label": "A",
"text": "5896"
},
{
"label": "B",
"text": "5924"
},
{
"label": "C",
"text": "5986"
},
{
"label": "D",
"text": "6050"
},
{
"label": "E",
"text": "6102"
}
],
"sub_questions": [],
"premises": [],
"has_figure": false,
"has_choices": true,
"visual_references": [
{
"tag": "text",
"bbox": [
155,
494,
833,
631
],
"char_start": 2201,
"char_end": 2257,
"type": "ref_det"
}
],
"code_blocks": [],
"latex_blocks": [],
"data_tables": [],
"competitive_programming": null,
"solution": null,
"answer": {
"answer_key": null,
"short_answer": "6050.",
"symbolic_answer": null,
"answer_frame_guidelines": null
},
"scoring": {
"scoring_weight": null,
"scoring_logic": null,
"subtask_points": []
},
"topic_metadata": {
"t_code": null,
"discipline": null,
"section_title": null,
"keywords": [],
"topic_tags": []
},
"provenance": {
"source_pdf": "/content/drive/MyDrive/TUBİTAK/ortaokulmat/Ortaokul Matematik_1_Birinci_Asama_2025/2025.pdf",
"source_mmd": "/content/drive/MyDrive/TUBİTAK/ortaokulmat/Ortaokul Matematik_1_Birinci_Asama_2025/Ortaokul Matematik_1_Birinci_Asama_2025.mmd",
"ocr_engine": "Mathpix-mmd",
"is_source": "combined_booklet"
},
"raw_text": "Herhangi ikisinin boyutu birbirinden farklı olan 8 topun her biri kırmızı, beyaz ve mavi renklerinden birine, en az bir top kırmızı ve en az bir top\n\n---\nbeyaz olmak koşuluyla kaç farklı şekilde boyanabilir? \n\n\na) 5896 b) 5924 c) 5986 d) 6050 e) 6102 \n\n\nCevap: 6050. Toplar herhangi bir koşul olmadan 3 renge \\(3^8\\) farklı şekilde boyanabilir. Kırmızı rengi kullanmadan \\(2^8\\) farklı şekilde ve beyaz rengi kullanmadan \\(2^8\\) farklı şekilde boyanabilir. Kırmızı ve beyaz renkleri kullanmadan ise 1 farklı şekilde boyanabilir. Buna göre, cevap \\(3^8 - 2^8 - 2^8 + 1 = 6050\\) olur.",
"question_image_path": "/content/drive/MyDrive/TUBİTAK_output/parsed_output/cropped_images/Ortaokul Matematik_1_Birinci_Asama_2025/q4_question.png",
"solution_image_path": null,
"inline_image_paths": [
"/content/drive/MyDrive/TUBİTAK_output/parsed_output/cropped_images/Ortaokul Matematik_1_Birinci_Asama_2025/q4_inline_1.png"
]
},
{
"question_id": "2025-MATM-1-Q5",
"format_id": "FMT_MATH_MID_1_QS",
"question_number": 5,
"day_index": null,
"char_start": 2724,
"char_end": 3198,
"status": "active",
"cancellation_reason": null,
"parent_context": null,
"language_pairing": null,
"question_stem": "AB || CD olan bir ABCD yamuğu verilmiştir. [AB] kenarı üzerinde K ve L noktaları, K noktası A ve L noktaları arasında yer alacak ve \\(2|CD| = 3|BL| = 4|AK|\\) olacak şekilde alınıyor. Alan(ABCD) = 40 ve Alan(BCD) = 12 ise, Alan(KLC) kaçtır?",
"options": [
{
"label": "A",
"text": "10"
},
{
"label": "B",
"text": "12"
},
{
"label": "C",
"text": "14"
},
{
"label": "D",
"text": "16"
},
{
"label": "E",
"text": "18"
}
],
"sub_questions": [],
"premises": [],
"has_figure": false,
"has_choices": true,
"visual_references": [
{
"tag": "text",
"bbox": [
181,
644,
833,
665
],
"char_start": 2810,
"char_end": 2866,
"type": "ref_det"
},
{
"tag": "text",
"bbox": [
181,
677,
835,
764
],
"char_start": 2898,
"char_end": 2954,
"type": "ref_det"
}
],
"code_blocks": [],
"latex_blocks": [],
"data_tables": [],
"competitive_programming": null,
"solution": null,
"answer": {
"answer_key": null,
"short_answer": "14.",
"symbolic_answer": null,
"answer_frame_guidelines": null
},
"scoring": {
"scoring_weight": null,
"scoring_logic": null,
"subtask_points": []
},
"topic_metadata": {
"t_code": null,
"discipline": null,
"section_title": null,
"keywords": [],
"topic_tags": []
},
"provenance": {
"source_pdf": "/content/drive/MyDrive/TUBİTAK/ortaokulmat/Ortaokul Matematik_1_Birinci_Asama_2025/2025.pdf",
"source_mmd": "/content/drive/MyDrive/TUBİTAK/ortaokulmat/Ortaokul Matematik_1_Birinci_Asama_2025/Ortaokul Matematik_1_Birinci_Asama_2025.mmd",
"ocr_engine": "Mathpix-mmd",
"is_source": "combined_booklet"
},
"raw_text": "AB || CD olan bir ABCD yamuğu verilmiştir. [AB] kenarı üzerinde K ve L noktaları, K noktası A ve L noktaları arasında yer alacak ve \\(2|CD| = 3|BL| = 4|AK|\\) olacak şekilde alınıyor. Alan(ABCD) = 40 ve Alan(BCD) = 12 ise, Alan(KLC) kaçtır? \n\n\na) 10 b) 12 c) 14 d) 16 e) 18 \n\n\nCevap: 14. \\(|CD| = 6k\\), \\(|AK| = 3k\\), \\(|BL| = 4k\\) verilmiştir. Alan(ADB) = Alan(ACB) = Alan(ABCD) - A(BCD) = 28 olur. A(AKC) = 6 ve A(BLC) = 8 olduğu için A(KLC) = 28 - 6 - 8 = 14 bulunur.",
"question_image_path": "/content/drive/MyDrive/TUBİTAK_output/parsed_output/cropped_images/Ortaokul Matematik_1_Birinci_Asama_2025/q5_question.png",
"solution_image_path": null,
"inline_image_paths": [
"/content/drive/MyDrive/TUBİTAK_output/parsed_output/cropped_images/Ortaokul Matematik_1_Birinci_Asama_2025/q5_inline_1.png",
"/content/drive/MyDrive/TUBİTAK_output/parsed_output/cropped_images/Ortaokul Matematik_1_Birinci_Asama_2025/q5_inline_2.png"
]
},
{
"question_id": "2025-MATM-1-Q6",
"format_id": "FMT_MATH_MID_1_QS",
"question_number": 6,
"day_index": null,
"char_start": 3200,
"char_end": 3680,
"status": "active",
"cancellation_reason": null,
"parent_context": null,
"language_pairing": null,
"question_stem": "Kaç n tam sayısı için \\(\\frac{n^2 - 111^2}{n + 11}\\) ifadesi bir tam sayıdır?",
"options": [
{
"label": "A",
"text": "20"
},
{
"label": "B",
"text": "30"
},
{
"label": "C",
"text": "36"
},
{
"label": "D",
"text": "48"
},
{
"label": "E",
"text": "66"
}
],
"sub_questions": [],
"premises": [],
"has_figure": false,
"has_choices": true,
"visual_references": [
{
"tag": "text",
"bbox": [
155,
778,
835,
815
],
"char_start": 3268,
"char_end": 3324,
"type": "ref_det"
},
{
"tag": "text",
"bbox": [
179,
135,
644,
153
],
"char_start": 3500,
"char_end": 3556,
"type": "ref_det"
},
{
"tag": "text",
"bbox": [
179,
167,
833,
186
],
"char_start": 3613,
"char_end": 3669,
"type": "ref_det"
}
],
"code_blocks": [],
"latex_blocks": [],
"data_tables": [],
"competitive_programming": null,
"solution": null,
"answer": {
"answer_key": null,
"short_answer": "48.",
"symbolic_answer": null,
"answer_frame_guidelines": null
},
"scoring": {
"scoring_weight": null,
"scoring_logic": null,
"subtask_points": []
},
"topic_metadata": {
"t_code": null,
"discipline": null,
"section_title": null,
"keywords": [],
"topic_tags": []
},
"provenance": {
"source_pdf": "/content/drive/MyDrive/TUBİTAK/ortaokulmat/Ortaokul Matematik_1_Birinci_Asama_2025/2025.pdf",
"source_mmd": "/content/drive/MyDrive/TUBİTAK/ortaokulmat/Ortaokul Matematik_1_Birinci_Asama_2025/Ortaokul Matematik_1_Birinci_Asama_2025.mmd",
"ocr_engine": "Mathpix-mmd",
"is_source": "combined_booklet"
},
"raw_text": "Kaç n tam sayısı için \\(\\frac{n^2 - 111^2}{n + 11}\\) ifadesi bir tam sayıdır? \n\n\na) 20 b) 30 c) 36 d) 48 e) 66 \n\n\nCevap: 48. \\(\\frac{n^2 - 111^2}{n + 11} = n - 11 - \\frac{111^2 - 111^2}{n + 11}\\) ifadesi bir tam sayısı eşittir. Dolayısıyla \\(n + 11\\) sayısı \\(111^2 - 111^2 = 100 \\cdot 122 = 2^3 \\cdot 5^2 \\cdot 61\\) sayısının bölenlerinden birisi olmalıdır. Bu sayının da \\(2 \\cdot 4 \\cdot 3 \\cdot 2 = 48\\) böleni olduğu için n sayısının alabileceği 48 farklı değer bulunur.",
"question_image_path": "/content/drive/MyDrive/TUBİTAK_output/parsed_output/cropped_images/Ortaokul Matematik_1_Birinci_Asama_2025/q6_question.png",
"solution_image_path": null,
"inline_image_paths": [
"/content/drive/MyDrive/TUBİTAK_output/parsed_output/cropped_images/Ortaokul Matematik_1_Birinci_Asama_2025/q6_inline_1.png",
"/content/drive/MyDrive/TUBİTAK_output/parsed_output/cropped_images/Ortaokul Matematik_1_Birinci_Asama_2025/q6_inline_2.png",
"/content/drive/MyDrive/TUBİTAK_output/parsed_output/cropped_images/Ortaokul Matematik_1_Birinci_Asama_2025/q6_inline_3.png"
]
},
{
"question_id": "2025-MATM-1-Q7",
"format_id": "FMT_MATH_MID_1_QS",
"question_number": 7,
"day_index": null,
"char_start": 3682,
"char_end": 4225,
"status": "active",
"cancellation_reason": null,
"parent_context": null,
"language_pairing": null,
"question_stem": "a ve b verilmiş gerçel sayılar olsun. \\(x_1, x_2, \\dots\\) dizisi her n pozitif tam sayısı için \\(x_n = (a + n)^2 + (b + n)^2\\) olarak tanımlanıyor. \\(x_5 - x_1 = 100\\) ise \\(x_9 - x_5\\) kaçtır?",
"options": [
{
"label": "A",
"text": "100"
},
{
"label": "B",
"text": "108"
},
{
"label": "C",
"text": "124"
},
{
"label": "D",
"text": "148"
},
{
"label": "E",
"text": "164"
}
],
"sub_questions": [],
"premises": [],
"has_figure": false,
"has_choices": true,
"visual_references": [
{
"tag": "text",
"bbox": [
179,
200,
833,
285
],
"char_start": 3712,
"char_end": 3768,
"type": "ref_det"
},
{
"tag": "text",
"bbox": [
154,
300,
835,
370
],
"char_start": 4100,
"char_end": 4156,
"type": "ref_det"
}
],
"code_blocks": [],
"latex_blocks": [],
"data_tables": [],
"competitive_programming": null,
"solution": null,
"answer": {
"answer_key": null,
"short_answer": "164.",
"symbolic_answer": null,
"answer_frame_guidelines": null
},
"scoring": {
"scoring_weight": null,
"scoring_logic": null,
"subtask_points": []
},
"topic_metadata": {
"t_code": null,
"discipline": null,
"section_title": null,
"keywords": [],
"topic_tags": []
},
"provenance": {
"source_pdf": "/content/drive/MyDrive/TUBİTAK/ortaokulmat/Ortaokul Matematik_1_Birinci_Asama_2025/2025.pdf",
"source_mmd": "/content/drive/MyDrive/TUBİTAK/ortaokulmat/Ortaokul Matematik_1_Birinci_Asama_2025/Ortaokul Matematik_1_Birinci_Asama_2025.mmd",
"ocr_engine": "Mathpix-mmd",
"is_source": "combined_booklet"
},
"raw_text": "a ve b verilmiş gerçel sayılar olsun. \\(x_1, x_2, \\dots\\) dizisi her n pozitif tam sayısı için \\(x_n = (a + n)^2 + (b + n)^2\\) olarak tanımlanıyor. \\(x_5 - x_1 = 100\\) ise \\(x_9 - x_5\\) kaçtır? \n\n\na) 100 b) 108 c) 124 d) 148 e) 164 \n\n\nCevap: 164. \\(x_n = a^2 + b^2 + 2n^2 + 2n(a + b)\\) olduğuna göre \\(x_n - x_m = 2n^2 - 2m^2 + 2(n - m)(a + b)\\) olur. Buradan \\(x_5 - x_1 = 48 + 8(a + b)\\) ve \\(x_9 - x_5 = 112 + 8(a + b)\\) bulunur. \\(48 + 8(a + b) = 100\\) olduğu için \\(8(a + b) = 52\\) ve böylece \\(x_9 - x_5 = 52 + 112 = 164\\) olur.\n\n---",
"question_image_path": "/content/drive/MyDrive/TUBİTAK_output/parsed_output/cropped_images/Ortaokul Matematik_1_Birinci_Asama_2025/q7_question.png",
"solution_image_path": null,
"inline_image_paths": [
"/content/drive/MyDrive/TUBİTAK_output/parsed_output/cropped_images/Ortaokul Matematik_1_Birinci_Asama_2025/q7_inline_1.png",
"/content/drive/MyDrive/TUBİTAK_output/parsed_output/cropped_images/Ortaokul Matematik_1_Birinci_Asama_2025/q7_inline_2.png"
]
},
{
"question_id": "2025-MATM-1-Q8",
"format_id": "FMT_MATH_MID_1_QS",
"question_number": 8,
"day_index": null,
"char_start": 4225,
"char_end": 5495,
"status": "active",
"cancellation_reason": null,
"parent_context": null,
"language_pairing": null,
"question_stem": "Bir doğru üzerine birkaç bilye dizilmiştir. Her bilye ya kırmızı ya da beyaz renktedir. Herhangi 12 ardışık bilyeden kırmızı ve beyaz olanların sayıları birbirine eşittir, fakat herhangi 14 ardışık bilyeden kırmızı ve beyaz olanların sayılırı birbirinden farklıdır. Buna göre, doğru üzerindeki toplam bilye sayısı en fazla kaç olabilir?",
"options": [
{
"label": "A",
"text": "14"
},
{
"label": "B",
"text": "18"
},
{
"label": "C",
"text": "20"
},
{
"label": "D",
"text": "24"
},
{
"label": "E",
"text": "Hiçbiri"
}
],
"sub_questions": [],
"premises": [],
"has_figure": false,
"has_choices": true,
"visual_references": [
{
"tag": "text",
"bbox": [
179,
383,
833,
403
],
"char_start": 4402,
"char_end": 4458,
"type": "ref_det"
},
{
"tag": "text",
"bbox": [
179,
416,
833,
469
],
"char_start": 4491,
"char_end": 4547,
"type": "ref_det"
},
{
"tag": "text",
"bbox": [
154,
483,
666,
521
],
"char_start": 4744,
"char_end": 4800,
"type": "ref_det"
}
],
"code_blocks": [],
"latex_blocks": [],
"data_tables": [],
"competitive_programming": null,
"solution": null,
"answer": {
"answer_key": null,
"short_answer": "18.",
"symbolic_answer": null,
"answer_frame_guidelines": null
},
"scoring": {
"scoring_weight": null,
"scoring_logic": null,
"subtask_points": []
},
"topic_metadata": {
"t_code": null,
"discipline": "Kombinatorik",
"section_title": null,
"keywords": [],
"topic_tags": [
"Kombinatorik"
]
},
"provenance": {
"source_pdf": "/content/drive/MyDrive/TUBİTAK/ortaokulmat/Ortaokul Matematik_1_Birinci_Asama_2025/2025.pdf",
"source_mmd": "/content/drive/MyDrive/TUBİTAK/ortaokulmat/Ortaokul Matematik_1_Birinci_Asama_2025/Ortaokul Matematik_1_Birinci_Asama_2025.mmd",
"ocr_engine": "Mathpix-mmd",
"is_source": "combined_booklet"
},
"raw_text": "Bir doğru üzerine birkaç bilye dizilmiştir. Her bilye ya kırmızı ya da beyaz renktedir. Herhangi 12 ardışık bilyeden kırmızı ve beyaz olanların sayıları birbirine eşittir, fakat herhangi 14 ardışık bilyeden kırmızı ve beyaz olanların sayılırı birbirinden farklıdır. Buna göre, doğru üzerindeki toplam bilye sayısı en fazla kaç olabilir? \n\n\na) 14 b) 18 c) 20 d) 24 e) Hiçbiri \n\n\nCevap: 18. İlk 6 bilye kırmızı, sonraki 6 bilye beyaz ve son 6 bilye kırmızı olursa koşullar sağlanır. Şimdi de toplam bilye sayısının en fazla 18 olabileceğini gösterelim. Bilye sayısının en az 19 olduğunu varsayalım. Bilyeleri soldan sağa doğru numaralandıralım. *i* ve *i* + 12 numaralı bilyelerin renkleri aynı olmak zorundadır, aksi takdirde *i* numaralı bilye ile başlayan 12 bilyenin arasındaki kırmızı bilye sayısı ile *i* + 1 numaralı bilye ile başlayan 12 bilyenin arasında kırmızı bilye sayısı aynı olmaz. Genelliği bozmadan 1 numaralı bilye kırmızı olsun. O zaman 13 numaralı bilye de kırmızı renktedir. 14 numaralı bilye beyaz olursa koşullar sağlanmaz. O zaman 14 numaralı bilye ve dolayısıyla 2 numaralı bilye kırmızı renktedir. Benzer şekilde ilerleyerek ilk 7 bilyenin kırmızı renkte olduğunu elde ederiz. O zaman ilk 12 bilyeden kırmızı olanların sayısı 6 olmayacaktır.",
"question_image_path": "/content/drive/MyDrive/TUBİTAK_output/parsed_output/cropped_images/Ortaokul Matematik_1_Birinci_Asama_2025/q8_question.png",
"solution_image_path": null,
"inline_image_paths": [
"/content/drive/MyDrive/TUBİTAK_output/parsed_output/cropped_images/Ortaokul Matematik_1_Birinci_Asama_2025/q8_inline_1.png",
"/content/drive/MyDrive/TUBİTAK_output/parsed_output/cropped_images/Ortaokul Matematik_1_Birinci_Asama_2025/q8_inline_2.png",
"/content/drive/MyDrive/TUBİTAK_output/parsed_output/cropped_images/Ortaokul Matematik_1_Birinci_Asama_2025/q8_inline_3.png"
]
},
{
"question_id": "2025-MATM-1-Q9",
"format_id": "FMT_MATH_MID_1_QS",
"question_number": 9,
"day_index": null,
"char_start": 5497,
"char_end": 6084,
"status": "active",
"cancellation_reason": null,
"parent_context": null,
"language_pairing": null,
"question_stem": "Kenar uzunluğu 8 olan bir *ABCD* karesinin köşegenlerinin kesişim noktası *O* olsun. [AB] kenarı üzerinde yer alan *K* ve *L* noktaları |BK| - |AL| = 4 koşulunu sağlıyor. [KL] doğru parçasının orta noktası *M* olmak üzere, |OM| kaçtır?",
"options": [
{
"label": "A",
"text": "4"
},
{
"label": "B",
"text": "\\(2\\sqrt{5}\\)"
},
{
"label": "C",
"text": "5"
},
{
"label": "D",
"text": "\\(4\\sqrt{2}\\)"
},
{
"label": "E",
"text": "6"
}
],
"sub_questions": [],
"premises": [],
"has_figure": false,
"has_choices": true,
"visual_references": [
{
"tag": "text",
"bbox": [
179,
721,
833,
741
],
"char_start": 5650,
"char_end": 5706,
"type": "ref_det"
},
{
"tag": "text",
"bbox": [
179,
755,
833,
824
],
"char_start": 5744,
"char_end": 5800,
"type": "ref_det"
}
],
"code_blocks": [],
"latex_blocks": [],
"data_tables": [],
"competitive_programming": null,
"solution": null,
"answer": {
"answer_key": null,
"short_answer": null,
"symbolic_answer": null,
"answer_frame_guidelines": null
},
"scoring": {
"scoring_weight": null,
"scoring_logic": null,
"subtask_points": []
},
"topic_metadata": {
"t_code": null,
"discipline": "Geometri",
"section_title": null,
"keywords": [],
"topic_tags": [
"Geometri"
]
},
"provenance": {
"source_pdf": "/content/drive/MyDrive/TUBİTAK/ortaokulmat/Ortaokul Matematik_1_Birinci_Asama_2025/2025.pdf",
"source_mmd": "/content/drive/MyDrive/TUBİTAK/ortaokulmat/Ortaokul Matematik_1_Birinci_Asama_2025/Ortaokul Matematik_1_Birinci_Asama_2025.mmd",
"ocr_engine": "Mathpix-mmd",
"is_source": "combined_booklet"
},
"raw_text": "Kenar uzunluğu 8 olan bir *ABCD* karesinin köşegenlerinin kesişim noktası *O* olsun. [AB] kenarı üzerinde yer alan *K* ve *L* noktaları |BK| - |AL| = 4 koşulunu sağlıyor. [KL] doğru parçasının orta noktası *M* olmak üzere, |OM| kaçtır? \n\n\na) 4 b) \\(2\\sqrt{5}\\) c) 5 d) \\(4\\sqrt{2}\\) e) 6 \n\n\nCevap: \\(2\\sqrt{5}\\). *O* noktasından *AB* doğrusuna inilen dikmenin ayağı *N* olsun. |BK| - |CL| = |BL| - |CK| = 4 olduğundan, |AL| = *a* dersek |KL| = \\(8 - a - (a + 4)\\) ve |KM| = |ML| = \\(2 - a\\) bulunur. Yani |MN| = \\(2\\) ve |ON| = \\(4\\) olduğu için Pisagordan cevap \\(2\\sqrt{5}\\) olur.",
"question_image_path": "/content/drive/MyDrive/TUBİTAK_output/parsed_output/cropped_images/Ortaokul Matematik_1_Birinci_Asama_2025/q9_question.png",
"solution_image_path": null,
"inline_image_paths": [
"/content/drive/MyDrive/TUBİTAK_output/parsed_output/cropped_images/Ortaokul Matematik_1_Birinci_Asama_2025/q9_inline_1.png",
"/content/drive/MyDrive/TUBİTAK_output/parsed_output/cropped_images/Ortaokul Matematik_1_Birinci_Asama_2025/q9_inline_2.png"
]
},
{
"question_id": "2025-MATM-1-Q10",
"format_id": "FMT_MATH_MID_1_QS",
"question_number": 10,
"day_index": null,
"char_start": 6086,
"char_end": 6853,
"status": "active",
"cancellation_reason": null,
"parent_context": null,
"language_pairing": null,
"question_stem": "Bir masa üzerindeki taşların bazıları kırmızı, bazıları beyaz renktedir ve kırmızı taşların sayısı beyaz taşların sayısından bir fazladır. Her taşın ağırlığı 1, 15 veya 50 gramdır. Beyaz taşların toplam ağırlığı *B* ve kırmızı taşların toplam ağırlığı *K* olsun. *B* > *K* ise, *B* - *K* sayısının alabileceği en küçük değer kaçtır?",
"options": [
{
"label": "A",
"text": "1"
},
{
"label": "B",
"text": "2"
},
{
"label": "C",
"text": "4"
},
{
"label": "D",
"text": "5"
},
{
"label": "E",
"text": "6"
}
],
"sub_questions": [],
"premises": [],
"has_figure": false,
"has_choices": true,
"visual_references": [
{
"tag": "text",
"bbox": [
153,
134,
835,
220
],
"char_start": 6124,
"char_end": 6180,
"type": "ref_det"
},
{
"tag": "text",
"bbox": [
183,
234,
833,
253
],
"char_start": 6523,
"char_end": 6579,
"type": "ref_det"
},
{
"tag": "text",
"bbox": [
183,
266,
833,
469
],
"char_start": 6617,
"char_end": 6673,
"type": "ref_det"
}
],
"code_blocks": [],
"latex_blocks": [],
"data_tables": [],
"competitive_programming": null,
"solution": null,
"answer": {
"answer_key": null,
"short_answer": "6.",
"symbolic_answer": null,
"answer_frame_guidelines": null
},
"scoring": {
"scoring_weight": null,
"scoring_logic": null,
"subtask_points": []
},
"topic_metadata": {
"t_code": null,
"discipline": "Sayılar Teorisi",
"section_title": null,
"keywords": [],
"topic_tags": [
"Sayılar Teorisi"
]
},
"provenance": {
"source_pdf": "/content/drive/MyDrive/TUBİTAK/ortaokulmat/Ortaokul Matematik_1_Birinci_Asama_2025/2025.pdf",
"source_mmd": "/content/drive/MyDrive/TUBİTAK/ortaokulmat/Ortaokul Matematik_1_Birinci_Asama_2025/Ortaokul Matematik_1_Birinci_Asama_2025.mmd",
"ocr_engine": "Mathpix-mmd",
"is_source": "combined_booklet"
},
"raw_text": "Bir masa üzerindeki taşların bazıları kırmızı, bazıları beyaz renktedir ve kırmızı taşların sayısı beyaz taşların sayısından bir fazladır. Her taşın ağırlığı 1, 15 veya 50 gramdır. Beyaz taşların toplam ağırlığı *B* ve kırmızı taşların toplam ağırlığı *K* olsun. *B* > *K* ise, *B* - *K* sayısının alabileceği en küçük değer kaçtır? \n\n\na) 1 b) 2 c) 4 d) 5 e) 6\n\n---\nCevap: 6. Her taşın ağırlığı (mod 7) de 1 sayısına eşittir. Masa üzerindeki beyaz taş sayısı n olsun. O zaman kırmızı taşların toplam ağırlığı \\(K \\equiv n + 1 \\pmod{7}\\) ve beyaz taşların toplam ağırlığı \\(B \\equiv n \\pmod{7}\\) olur. Demek ki, \\(B - K \\equiv 6 \\pmod{7}\\) dir. Masa üzerinde 15 gram ağırlığında üç kırmızı ile 1 ve 50 gram ağırlığında birer beyaz taş olursa 6 sayısına ulaşılır.",
"question_image_path": "/content/drive/MyDrive/TUBİTAK_output/parsed_output/cropped_images/Ortaokul Matematik_1_Birinci_Asama_2025/q10_question.png",
"solution_image_path": null,
"inline_image_paths": [
"/content/drive/MyDrive/TUBİTAK_output/parsed_output/cropped_images/Ortaokul Matematik_1_Birinci_Asama_2025/q10_inline_1.png",
"/content/drive/MyDrive/TUBİTAK_output/parsed_output/cropped_images/Ortaokul Matematik_1_Birinci_Asama_2025/q10_inline_2.png",
"/content/drive/MyDrive/TUBİTAK_output/parsed_output/cropped_images/Ortaokul Matematik_1_Birinci_Asama_2025/q10_inline_3.png"
]
},
{
"question_id": "2025-MATM-1-Q11",
"format_id": "FMT_MATH_MID_1_QS",
"question_number": 11,
"day_index": null,
"char_start": 6855,
"char_end": 7342,
"status": "active",
"cancellation_reason": null,
"parent_context": null,
"language_pairing": null,
"question_stem": "a, b, c pozitif gerçel sayılar olmak üzere, \\(a^2 + 4b^2 + c^2 = 2ab + ac + 2bc\\) eşitliği sağlanıyorsa \\(\\frac{a+b}{c}\\) kaçtır? \n\n\na) \\(\\frac{1}{2}\\) b) 1 c) \\(\\frac{3}{2}\\) d) 2 e) \\(\\frac{5}{2}\\) \n\n\nCevap: \\(\\frac{3}{2}\\). Verilen eşitliğin iki tarafı da 2 ile çarpılıp düzenlenirse \\(2a^2 + 8b^2 + 2c^2 - 4ab - 2ac - 4bc = 0\\) elde edilir. Bu eşitlik \\((a-2b)^2 + (c-2b)^2 + (a-c)^2 = 0\\) şeklinde yazılabilir. Buradan \\(a = c = 2b\\) elde edilir ve cevap \\(\\frac{3}{2}\\) olur.",
"options": [],
"sub_questions": [
{
"label": "A",
"points": null,
"text": "\\(\\frac{1}{2}\\) b) 1 c) \\(\\frac{3}{2}\\) d) 2 e) \\(\\frac{5}{2}\\) \n\n\nCevap: \\(\\frac{3}{2}\\). Verilen eşitliğin iki tarafı da 2 ile çarpılıp düzenlenirse \\(2a^2 + 8b^2 + 2c^2 - 4ab - 2ac - 4bc = 0\\) elde edilir. Bu eşitlik \\((a-2b)^2 + (c-2b)^2 + (a-c)^2 = 0\\) şeklinde yazılabilir. Buradan \\(a = c = 2b\\) elde edilir ve cevap \\(\\frac{3}{2}\\) olur."
}
],
"premises": [],
"has_figure": false,
"has_choices": false,
"visual_references": [],
"code_blocks": [],
"latex_blocks": [],
"data_tables": [],
"competitive_programming": null,
"solution": null,
"answer": {
"answer_key": null,
"short_answer": null,
"symbolic_answer": null,
"answer_frame_guidelines": null
},
"scoring": {
"scoring_weight": null,
"scoring_logic": null,
"subtask_points": []
},
"topic_metadata": {
"t_code": null,
"discipline": null,
"section_title": null,
"keywords": [],
"topic_tags": []
},
"provenance": {
"source_pdf": "/content/drive/MyDrive/TUBİTAK/ortaokulmat/Ortaokul Matematik_1_Birinci_Asama_2025/2025.pdf",
"source_mmd": "/content/drive/MyDrive/TUBİTAK/ortaokulmat/Ortaokul Matematik_1_Birinci_Asama_2025/Ortaokul Matematik_1_Birinci_Asama_2025.mmd",
"ocr_engine": "Mathpix-mmd",
"is_source": "combined_booklet"
},
"raw_text": "a, b, c pozitif gerçel sayılar olmak üzere, \\(a^2 + 4b^2 + c^2 = 2ab + ac + 2bc\\) eşitliği sağlanıyorsa \\(\\frac{a+b}{c}\\) kaçtır? \n\n\na) \\(\\frac{1}{2}\\) b) 1 c) \\(\\frac{3}{2}\\) d) 2 e) \\(\\frac{5}{2}\\) \n\n\nCevap: \\(\\frac{3}{2}\\). Verilen eşitliğin iki tarafı da 2 ile çarpılıp düzenlenirse \\(2a^2 + 8b^2 + 2c^2 - 4ab - 2ac - 4bc = 0\\) elde edilir. Bu eşitlik \\((a-2b)^2 + (c-2b)^2 + (a-c)^2 = 0\\) şeklinde yazılabilir. Buradan \\(a = c = 2b\\) elde edilir ve cevap \\(\\frac{3}{2}\\) olur.",
"question_image_path": "/content/drive/MyDrive/TUBİTAK_output/parsed_output/cropped_images/Ortaokul Matematik_1_Birinci_Asama_2025/q11_question.png",
"solution_image_path": null,
"inline_image_paths": []
},
{
"question_id": "2025-MATM-1-Q12",
"format_id": "FMT_MATH_MID_1_QS",
"question_number": 12,
"day_index": null,
"char_start": 7344,
"char_end": 8376,
"status": "active",
"cancellation_reason": null,
"parent_context": null,
"language_pairing": null,
"question_stem": "Bir masa üzerinde \\(m\\) ve \\(n\\) bilye içeren iki öbek bulunuyor. İki oyuncu sırayla hamle yaparak bir oyun oynuyorlar. Sırası gelen oyuncu ya her iki öbekten birer bilye alıyor, ya sadece istediği bir öbekten bir bilye alıyor ya da istediği bir öbekten diğer öbeğe bir bilye aktarıyor. Hamle yapamayan oyuncu oyunu kaybediyor. Bu oyun \\((m, n) = (9, 21)\\), \\((11, 11)\\), \\((10, 33)\\), \\((16, 24)\\) ve \\((25, 26)\\) için birer kez oynanırsa, oyuna başlayan oyuncu bu oyunlardan kaçını kazanmayı garantileyebilir?",
"options": [
{
"label": "A",
"text": "1"
},
{
"label": "B",
"text": "2"
},
{
"label": "C",
"text": "3"
},
{
"label": "D",
"text": "4"
},
{
"label": "E",
"text": "5"
}
],
"sub_questions": [],
"premises": [],
"has_figure": false,
"has_choices": true,
"visual_references": [
{
"tag": "text",
"bbox": [
153,
483,
833,
554
],
"char_start": 7564,
"char_end": 7620,
"type": "ref_det"
},
{
"tag": "text",
"bbox": [
183,
567,
833,
586
],
"char_start": 7862,
"char_end": 7918,
"type": "ref_det"
},
{
"tag": "text",
"bbox": [
183,
600,
833,
671
],
"char_start": 7970,
"char_end": 8026,
"type": "ref_det"
}
],
"code_blocks": [],
"latex_blocks": [],
"data_tables": [],
"competitive_programming": null,
"solution": null,
"answer": {
"answer_key": null,
"short_answer": "4.",
"symbolic_answer": null,
"answer_frame_guidelines": null
},
"scoring": {
"scoring_weight": null,
"scoring_logic": null,
"subtask_points": []
},
"topic_metadata": {
"t_code": null,
"discipline": "Kombinatorik",
"section_title": null,
"keywords": [],
"topic_tags": [
"Kombinatorik"
]
},
"provenance": {
"source_pdf": "/content/drive/MyDrive/TUBİTAK/ortaokulmat/Ortaokul Matematik_1_Birinci_Asama_2025/2025.pdf",
"source_mmd": "/content/drive/MyDrive/TUBİTAK/ortaokulmat/Ortaokul Matematik_1_Birinci_Asama_2025/Ortaokul Matematik_1_Birinci_Asama_2025.mmd",
"ocr_engine": "Mathpix-mmd",
"is_source": "combined_booklet"
},
"raw_text": "Bir masa üzerinde \\(m\\) ve \\(n\\) bilye içeren iki öbek bulunuyor. İki oyuncu sırayla hamle yaparak bir oyun oynuyorlar. Sırası gelen oyuncu ya her iki öbekten birer bilye alıyor, ya sadece istediği bir öbekten bir bilye alıyor ya da istediği bir öbekten diğer öbeğe bir bilye aktarıyor. Hamle yapamayan oyuncu oyunu kaybediyor. Bu oyun \\((m, n) = (9, 21)\\), \\((11, 11)\\), \\((10, 33)\\), \\((16, 24)\\) ve \\((25, 26)\\) için birer kez oynanırsa, oyuna başlayan oyuncu bu oyunlardan kaçını kazanmayı garantileyebilir? \n\n\na) 1 b) 2 c) 3 d) 4 e) 5 \n\n\nCevap: 4. Öbeklerin en az birinde tek sayıda bilye varsa sırası gelen oyuncu tek sayıda taş içeren her öbekten bir taş alarak hamle yapabilir ve oyunu kaybetmez. Ayrıca, bu hamleden sonra her iki öbekte çift sayıda bilye kalır ve toplam taş sayısı azalır, böylece rakibinin hamlesinden sonra yine en az bir öbekte tek sayıda bilye olması garantilenir. Buna göre, başlangıçta her iki öbekte de çift sayıda bilye varsa oyunu ikinci, kalan durumlarda ise oyunu birinci oyuncu kazanıyor.",
"question_image_path": "/content/drive/MyDrive/TUBİTAK_output/parsed_output/cropped_images/Ortaokul Matematik_1_Birinci_Asama_2025/q12_question.png",
"solution_image_path": null,
"inline_image_paths": [
"/content/drive/MyDrive/TUBİTAK_output/parsed_output/cropped_images/Ortaokul Matematik_1_Birinci_Asama_2025/q12_inline_1.png",
"/content/drive/MyDrive/TUBİTAK_output/parsed_output/cropped_images/Ortaokul Matematik_1_Birinci_Asama_2025/q12_inline_2.png",
"/content/drive/MyDrive/TUBİTAK_output/parsed_output/cropped_images/Ortaokul Matematik_1_Birinci_Asama_2025/q12_inline_3.png"
]
},
{
"question_id": "2025-MATM-1-Q13",
"format_id": "FMT_MATH_MID_1_QS",
"question_number": 13,
"day_index": null,
"char_start": 8378,
"char_end": 9013,
"status": "active",
"cancellation_reason": null,
"parent_context": null,
"language_pairing": null,
"question_stem": "Bir *ABCDEFGH* düzgün sekizgeninin iç bölgesinde \\(K\\) ve \\(L\\) noktaları ile dış bölgesinde bir \\(S\\) noktası, \\(ABKL\\) bir kare ve \\(ABS\\) bir eşkenar üçgen olacak şekilde alınıyor. Buna göre, \\(s(\\overline{CKS})\\) kaçtır? \n\n\na) \\(60^\\circ\\) b) \\(67.5^\\circ\\) c) \\(75^\\circ\\) d) \\(82.5^\\circ\\) e) \\(90^\\circ\\)\n\n---\nCevap: 82.5°. Düzgün sekizgenin bir iç açısı 135° dir. |BC| = |BK| = |BS| olduğu için B merkezli bir çember C, K, S noktalarından geçer. Bu çemberde merkez çevre açıdan \\(2s(\\overline{CKS}) = s(CBS) = 360° - s(CBA) - s(ABS) = 360° - 135° - 60° = 165°\\) elde edilir. Buradan \\(s(\\overline{CKS}) = 82.5°\\) bulunur.",
"options": [],
"sub_questions": [
{
"label": "A",
"points": null,
"text": "\\(60^\\circ\\) b) \\(67.5^\\circ\\) c) \\(75^\\circ\\) d) \\(82.5^\\circ\\) e) \\(90^\\circ\\)\n\n---\nCevap: 82.5°. Düzgün sekizgenin bir iç açısı 135° dir. |BC| = |BK| = |BS| olduğu için B merkezli bir çember C, K, S noktalarından geçer. Bu çemberde merkez çevre açıdan \\(2s(\\overline{CKS}) = s(CBS) = 360° - s(CBA) - s(ABS) = 360° - 135° - 60° = 165°\\) elde edilir. Buradan \\(s(\\overline{CKS}) = 82.5°\\) bulunur."
}
],
"premises": [],
"has_figure": false,
"has_choices": false,
"visual_references": [
{
"tag": "text",
"bbox": [
183,
785,
833,
804
],
"char_start": 8717,
"char_end": 8773,
"type": "ref_det"
},
{
"tag": "text",
"bbox": [
179,
135,
833,
220
],
"char_start": 8822,
"char_end": 8878,
"type": "ref_det"
}
],
"code_blocks": [],
"latex_blocks": [],
"data_tables": [],
"competitive_programming": null,
"solution": null,
"answer": {
"answer_key": null,
"short_answer": "82.5",
"symbolic_answer": null,
"answer_frame_guidelines": null
},
"scoring": {
"scoring_weight": null,
"scoring_logic": null,
"subtask_points": []
},
"topic_metadata": {
"t_code": null,
"discipline": "Geometri",
"section_title": null,
"keywords": [],
"topic_tags": [
"Geometri"
]
},
"provenance": {
"source_pdf": "/content/drive/MyDrive/TUBİTAK/ortaokulmat/Ortaokul Matematik_1_Birinci_Asama_2025/2025.pdf",
"source_mmd": "/content/drive/MyDrive/TUBİTAK/ortaokulmat/Ortaokul Matematik_1_Birinci_Asama_2025/Ortaokul Matematik_1_Birinci_Asama_2025.mmd",
"ocr_engine": "Mathpix-mmd",
"is_source": "combined_booklet"
},
"raw_text": "Bir *ABCDEFGH* düzgün sekizgeninin iç bölgesinde \\(K\\) ve \\(L\\) noktaları ile dış bölgesinde bir \\(S\\) noktası, \\(ABKL\\) bir kare ve \\(ABS\\) bir eşkenar üçgen olacak şekilde alınıyor. Buna göre, \\(s(\\overline{CKS})\\) kaçtır? \n\n\na) \\(60^\\circ\\) b) \\(67.5^\\circ\\) c) \\(75^\\circ\\) d) \\(82.5^\\circ\\) e) \\(90^\\circ\\)\n\n---\nCevap: 82.5°. Düzgün sekizgenin bir iç açısı 135° dir. |BC| = |BK| = |BS| olduğu için B merkezli bir çember C, K, S noktalarından geçer. Bu çemberde merkez çevre açıdan \\(2s(\\overline{CKS}) = s(CBS) = 360° - s(CBA) - s(ABS) = 360° - 135° - 60° = 165°\\) elde edilir. Buradan \\(s(\\overline{CKS}) = 82.5°\\) bulunur.",
"question_image_path": "/content/drive/MyDrive/TUBİTAK_output/parsed_output/cropped_images/Ortaokul Matematik_1_Birinci_Asama_2025/q13_question.png",
"solution_image_path": null,
"inline_image_paths": [
"/content/drive/MyDrive/TUBİTAK_output/parsed_output/cropped_images/Ortaokul Matematik_1_Birinci_Asama_2025/q13_inline_1.png",
"/content/drive/MyDrive/TUBİTAK_output/parsed_output/cropped_images/Ortaokul Matematik_1_Birinci_Asama_2025/q13_inline_2.png"
]
},
{
"question_id": "2025-MATM-1-Q14",
"format_id": "FMT_MATH_MID_1_QS",
"question_number": 14,
"day_index": null,
"char_start": 9015,
"char_end": 10088,
"status": "active",
"cancellation_reason": null,
"parent_context": null,
"language_pairing": null,
"question_stem": "\\(\\overline{AB}\\) ve \\(\\overline{CD}\\) iki basamaklı sayılar olmak üzere, dört basamaklı \\(\\overline{ABCD}\\) sayısı \\(\\overline{AB} \\cdot \\overline{CD}\\) sayısı ile tam bölünmektedir. Buna göre, \\(\\overline{ABCD}\\) sayısı kaç farklı değer alabilir?",
"options": [
{
"label": "A",
"text": "1"
},
{
"label": "B",
"text": "2"
},
{
"label": "C",
"text": "3"
},
{
"label": "D",
"text": "6"
},
{
"label": "E",
"text": "8"
}
],
"sub_questions": [],
"premises": [],
"has_figure": false,
"has_choices": true,
"visual_references": [
{
"tag": "text",
"bbox": [
145,
234,
833,
280
],
"char_start": 9277,
"char_end": 9333,
"type": "ref_det"
},
{
"tag": "text",
"bbox": [
179,
284,
833,
323
],
"char_start": 9470,
"char_end": 9526,
"type": "ref_det"
},
{
"tag": "text",
"bbox": [
179,
323,
833,
401
],
"char_start": 9596,
"char_end": 9652,
"type": "ref_det"
}
],
"code_blocks": [],
"latex_blocks": [],
"data_tables": [],
"competitive_programming": null,
"solution": null,
"answer": {
"answer_key": null,
"short_answer": "2.",
"symbolic_answer": null,
"answer_frame_guidelines": null
},
"scoring": {
"scoring_weight": null,
"scoring_logic": null,
"subtask_points": []
},
"topic_metadata": {
"t_code": null,
"discipline": null,
"section_title": null,
"keywords": [],
"topic_tags": []
},
"provenance": {
"source_pdf": "/content/drive/MyDrive/TUBİTAK/ortaokulmat/Ortaokul Matematik_1_Birinci_Asama_2025/2025.pdf",
"source_mmd": "/content/drive/MyDrive/TUBİTAK/ortaokulmat/Ortaokul Matematik_1_Birinci_Asama_2025/Ortaokul Matematik_1_Birinci_Asama_2025.mmd",
"ocr_engine": "Mathpix-mmd",
"is_source": "combined_booklet"
},
"raw_text": "\\(\\overline{AB}\\) ve \\(\\overline{CD}\\) iki basamaklı sayılar olmak üzere, dört basamaklı \\(\\overline{ABCD}\\) sayısı \\(\\overline{AB} \\cdot \\overline{CD}\\) sayısı ile tam bölünmektedir. Buna göre, \\(\\overline{ABCD}\\) sayısı kaç farklı değer alabilir? \n\n\na) 1 b) 2 c) 3 d) 6 e) 8 \n\n\nCevap: 2. \\(x = \\overline{AB}\\) ve \\(y = \\overline{CD}\\) olsun. Sorudaki koşuldan dolayı \\(xy | 100x+y\\) bulunur. Buradan da \\(x | y\\) ve \\(y | 100x\\) elde edilir. Bir \\(k\\) pozitif tam sayısı için \\(y = xk\\) olsun. \\(xk | 100x\\) olduğu için \\(k | 100\\) bulunur. \\(x\\) ve \\(y\\) iki basamaklı tam sayılar oldukları için \\(k \\ge 10\\) olamaz, tüm olası değerler \\(k = 1, 2, 4, 5\\) olarak bulunur. Öte yandan, \\(xy | 100x+y\\) olduğu için \\(kx^2 | (100+k)x\\) ve böylece \\(x | \\frac{100+k}{k}\\) bulunur. \\(k = 1, 2, 4, 5\\) durumlarını incelersek, \\(x\\) ve \\(y\\) sayıları iki basamaklı olacak şekildeki tek çözümlerin \\(k = 2, x = 17, y = 34\\) ve \\(k = 4, x = 13, y = 52\\) olduğu görülür. Dolayısıyla \\(\\overline{ABCD} = 1734\\) ve \\(\\overline{ABCD} = 1352\\) olmak üzere iki farklı çözüm vardır.",
"question_image_path": "/content/drive/MyDrive/TUBİTAK_output/parsed_output/cropped_images/Ortaokul Matematik_1_Birinci_Asama_2025/q14_question.png",
"solution_image_path": null,
"inline_image_paths": [
"/content/drive/MyDrive/TUBİTAK_output/parsed_output/cropped_images/Ortaokul Matematik_1_Birinci_Asama_2025/q14_inline_1.png",
"/content/drive/MyDrive/TUBİTAK_output/parsed_output/cropped_images/Ortaokul Matematik_1_Birinci_Asama_2025/q14_inline_2.png",
"/content/drive/MyDrive/TUBİTAK_output/parsed_output/cropped_images/Ortaokul Matematik_1_Birinci_Asama_2025/q14_inline_3.png"
]
},
{
"question_id": "2025-MATM-1-Q15",
"format_id": "FMT_MATH_MID_1_QS",
"question_number": 15,
"day_index": null,
"char_start": 10090,
"char_end": 11037,
"status": "active",
"cancellation_reason": null,
"parent_context": null,
"language_pairing": null,
"question_stem": "Bir masa üzerinde her biri 10 toptan oluşan 3 öbek bulunuyor. Bu 30 topun her biri kırmızı veya beyaz renktedir. Aynı renkli topların ağırlıkları birbirine eşit olup bir kırmızı top bir beyaz toptan daha ağırdır. Bu öbeklerdeki topların toplam ağırlıkları 12, 116 ve 129 ise, bu 3 öbekte toplam kaç tane kırmızı top vardır?",
"options": [
{
"label": "A",
"text": "15"
},
{
"label": "B",
"text": "16"
},
{
"label": "C",
"text": "17"
},
{
"label": "D",
"text": "18"
},
{
"label": "E",
"text": "19"
}
],
"sub_questions": [],
"premises": [],
"has_figure": false,
"has_choices": true,
"visual_references": [
{
"tag": "text",
"bbox": [
179,
551,
833,
572
],
"char_start": 10509,
"char_end": 10565,
"type": "ref_det"
},
{
"tag": "text",
"bbox": [
179,
584,
833,
704
],
"char_start": 10593,
"char_end": 10649,
"type": "ref_det"
}
],
"code_blocks": [],
"latex_blocks": [],
"data_tables": [],
"competitive_programming": null,
"solution": null,
"answer": {
"answer_key": null,
"short_answer": "17.",
"symbolic_answer": null,
"answer_frame_guidelines": null
},
"scoring": {
"scoring_weight": null,
"scoring_logic": null,
"subtask_points": []
},
"topic_metadata": {
"t_code": null,
"discipline": null,
"section_title": null,
"keywords": [],
"topic_tags": []
},
"provenance": {
"source_pdf": "/content/drive/MyDrive/TUBİTAK/ortaokulmat/Ortaokul Matematik_1_Birinci_Asama_2025/2025.pdf",
"source_mmd": "/content/drive/MyDrive/TUBİTAK/ortaokulmat/Ortaokul Matematik_1_Birinci_Asama_2025/Ortaokul Matematik_1_Birinci_Asama_2025.mmd",
"ocr_engine": "Mathpix-mmd",
"is_source": "combined_booklet"
},
"raw_text": "Bir masa üzerinde her biri 10 toptan oluşan 3 öbek bulunuyor. Bu 30 topun her biri kırmızı veya beyaz renktedir. Aynı renkli topların ağırlıkları birbirine eşit olup bir kırmızı top bir beyaz toptan daha ağırdır. Bu öbeklerdeki topların toplam ağırlıkları 12, 116 ve 129 ise, bu 3 öbekte toplam kaç tane kırmızı top vardır? \n\n\na) 15 b) 16 c) 17 d) 18 e) 19 \n\n\nCevap: 17. Kırmızı ve beyaz topun ağırlıklarının farkı \\(x\\) olsun. \\(\\frac{129-12}{10} = 11.7\\) olduğundan \\(x \\ge 11.7\\) dir. \\(11.7 < 129 - 116 < 2 \\cdot 11.7\\) olduğundan ağırlığı 129 olan öbekteki kırmızı top sayısı, ağırlığı 116 olan öbekteki kırmızı top sayısından 1 fazladır ve dolayısıyla \\(x = 13\\) bulunur. \\(12 < 13\\) olduğundan ağırlığı 12 olan öbekteki tüm toplar beyazdır ve sonuç olarak beyaz topun ağırlığı \\(\\frac{12}{10} = 1.2\\) ve kırmızı topun ağırlığı \\(\\frac{12}{10} + 13 = 14.2\\) dir. Dolayısıyla öbeklerde 0, 8 ve 9 tane kırmızı top vardır ve cevap 17 dir.",
"question_image_path": "/content/drive/MyDrive/TUBİTAK_output/parsed_output/cropped_images/Ortaokul Matematik_1_Birinci_Asama_2025/q15_question.png",
"solution_image_path": null,
"inline_image_paths": [
"/content/drive/MyDrive/TUBİTAK_output/parsed_output/cropped_images/Ortaokul Matematik_1_Birinci_Asama_2025/q15_inline_1.png",
"/content/drive/MyDrive/TUBİTAK_output/parsed_output/cropped_images/Ortaokul Matematik_1_Birinci_Asama_2025/q15_inline_2.png"
]
},
{
"question_id": "2025-MATM-1-Q16",
"format_id": "FMT_MATH_MID_1_QS",
"question_number": 16,
"day_index": null,
"char_start": 11039,
"char_end": 11341,
"status": "active",
"cancellation_reason": null,
"parent_context": null,
"language_pairing": null,
"question_stem": "Bir tahtaya başlangıçta 1, 2, ..., 2025 sayıları yazılmıştır. Her işlemde tahtada yazılı bulunan iki sayı silinip tahtaya bu iki sayının toplamı yazılıyor. \\(N\\) işlem sonucunda tahtada toplamları 2025 olan bir veya birkaç sayı bulunmuyorsa, \\(N\\) sayısının alabileceği en küçük değer kaçtır?\n\n---",
"options": [],
"sub_questions": [],
"premises": [],
"has_figure": false,
"has_choices": false,
"visual_references": [
{
"tag": "text",
"bbox": [
145,
718,
833,
774
],
"char_start": 11136,
"char_end": 11192,
"type": "ref_det"
}
],
"code_blocks": [],
"latex_blocks": [],
"data_tables": [],
"competitive_programming": null,
"solution": null,
"answer": {
"answer_key": null,
"short_answer": null,
"symbolic_answer": null,
"answer_frame_guidelines": null
},
"scoring": {
"scoring_weight": null,
"scoring_logic": null,
"subtask_points": []
},
"topic_metadata": {
"t_code": null,
"discipline": null,
"section_title": null,
"keywords": [],
"topic_tags": []
},
"provenance": {
"source_pdf": "/content/drive/MyDrive/TUBİTAK/ortaokulmat/Ortaokul Matematik_1_Birinci_Asama_2025/2025.pdf",
"source_mmd": "/content/drive/MyDrive/TUBİTAK/ortaokulmat/Ortaokul Matematik_1_Birinci_Asama_2025/Ortaokul Matematik_1_Birinci_Asama_2025.mmd",
"ocr_engine": "Mathpix-mmd",
"is_source": "combined_booklet"
},
"raw_text": "Bir tahtaya başlangıçta 1, 2, ..., 2025 sayıları yazılmıştır. Her işlemde tahtada yazılı bulunan iki sayı silinip tahtaya bu iki sayının toplamı yazılıyor. \\(N\\) işlem sonucunda tahtada toplamları 2025 olan bir veya birkaç sayı bulunmuyorsa, \\(N\\) sayısının alabileceği en küçük değer kaçtır?\n\n---",
"question_image_path": "/content/drive/MyDrive/TUBİTAK_output/parsed_output/cropped_images/Ortaokul Matematik_1_Birinci_Asama_2025/q16_question.png",
"solution_image_path": null,
"inline_image_paths": [
"/content/drive/MyDrive/TUBİTAK_output/parsed_output/cropped_images/Ortaokul Matematik_1_Birinci_Asama_2025/q16_inline_1.png"
]
},
{
"question_id": "2025-MATM-1-Q33",
"format_id": "FMT_MATH_MID_1_QS",
"question_number": 33,
"day_index": null,
"char_start": 11341,
"char_end": 11976,
"status": "active",
"cancellation_reason": null,
"parent_context": null,
"language_pairing": null,
"question_stem": "Bilim Olimpiyatları Birinci Aşama Sınavı - Öğrenci - Ortaokul Matematik A",
"options": [
{
"label": "A",
"text": "405"
},
{
"label": "B",
"text": "498"
},
{
"label": "C",
"text": "507"
},
{
"label": "D",
"text": "582"
},
{
"label": "E",
"text": "Hiçbiri"
}
],
"sub_questions": [],
"premises": [],
"has_figure": false,
"has_choices": true,
"visual_references": [
{
"tag": "text",
"bbox": [
179,
787,
833,
807
],
"char_start": 11424,
"char_end": 11480,
"type": "ref_det"
},
{
"tag": "text",
"bbox": [
179,
133,
833,
209
],
"char_start": 11588,
"char_end": 11644,
"type": "ref_det"
}
],
"code_blocks": [],
"latex_blocks": [],
"data_tables": [],
"competitive_programming": null,
"solution": null,
"answer": {
"answer_key": null,
"short_answer": "507.",
"symbolic_answer": null,
"answer_frame_guidelines": null
},
"scoring": {
"scoring_weight": null,
"scoring_logic": null,
"subtask_points": []
},
"topic_metadata": {
"t_code": null,
"discipline": null,
"section_title": null,
"keywords": [],
"topic_tags": []
},
"provenance": {
"source_pdf": "/content/drive/MyDrive/TUBİTAK/ortaokulmat/Ortaokul Matematik_1_Birinci_Asama_2025/2025.pdf",
"source_mmd": "/content/drive/MyDrive/TUBİTAK/ortaokulmat/Ortaokul Matematik_1_Birinci_Asama_2025/Ortaokul Matematik_1_Birinci_Asama_2025.mmd",
"ocr_engine": "Mathpix-mmd",
"is_source": "combined_booklet"
},
"raw_text": "Bilim Olimpiyatları Birinci Aşama Sınavı - Öğrenci - Ortaokul Matematik A \n\n\na) 405 b) 498 c) 507 d) 582 e) Hiçbiri \n\n\nCevap: 507. N işlem sonucunda tahtada (1, 2024), (2, 2023), ..., (1012, 1013) ikililerinden hiçbiri ve 2025 sayısı bulunmamalıdır. İkili sayısı 1012 olduğuna göre, toplamda en az 1013 sayı silmek ve dolayısıyla en az 507 işlem gereklidir. Öte yandan, 507 işlem yeterlidir: 506 işlemi tahtada bulunan 2025'ten küçük tek sayıları herhangi bir şekilde ikili gruplara ayırıp uygulayalım ve son işlemi de (2, 2025) ikilisine uygulayalım. Tahtada 2027 dışında tüm sayılar çift olur ve böylece istenen koşul sağlanır.",
"question_image_path": "/content/drive/MyDrive/TUBİTAK_output/parsed_output/cropped_images/Ortaokul Matematik_1_Birinci_Asama_2025/q33_question.png",
"solution_image_path": null,
"inline_image_paths": [
"/content/drive/MyDrive/TUBİTAK_output/parsed_output/cropped_images/Ortaokul Matematik_1_Birinci_Asama_2025/q33_inline_1.png",
"/content/drive/MyDrive/TUBİTAK_output/parsed_output/cropped_images/Ortaokul Matematik_1_Birinci_Asama_2025/q33_inline_2.png"
]
},
{
"question_id": "2025-MATM-1-Q17",
"format_id": "FMT_MATH_MID_1_QS",
"question_number": 17,
"day_index": null,
"char_start": 11978,
"char_end": 13123,
"status": "active",
"cancellation_reason": null,
"parent_context": null,
"language_pairing": null,
"question_stem": "\\(l_1\\) ve \\(l_2\\) birbirlerine paralel olan iki farklı doğru olsun. \\(l_1\\) doğrusu üzerinde \\(P\\), \\(R\\), \\(S\\), \\(T\\) noktaları bu sırayla yer alan noktalar olsun. \\(l_2\\) doğrusu üzerindeki \\(L\\) ve \\(K\\) noktaları \\(|LP| = |LR|\\), \\(|KL| = |KR|\\), \\(|SR| = |SK|\\), \\(|TS| = |TK|\\) ve \\(PL \\parallel KT\\) koşullarını sağlamaktadır. Buna göre, \\(s(\\overline{LRS})\\) kaçtır? \n\n\na) \\(100^\\circ\\) b) \\(110^\\circ\\) c) \\(120^\\circ\\) d) \\(130^\\circ\\) e) \\(140^\\circ\\) \n\n\nCevap: 100. \\(s(\\overline{PLR}) = 2\\alpha\\) olsun. \\(|LP| = |LR|\\) olduğu için \\(s(\\overline{LPR}) = s(\\overline{LRP}) = 90^\\circ - \\alpha\\) olur. \\(|KL| = |KR|\\) olduğu için \\(s(\\overline{RLK}) = s(\\overline{LRK}) = 90^\\circ - \\alpha\\) ve \\(s(\\overline{RKL}) = 2\\alpha\\) olur. \\(|SR| = |SK|\\) olduğu için \\(s(\\overline{SRK}) = s(\\overline{SKR}) = 2\\alpha\\) olur. \\(|TS| = |TK|\\) olduğu için \\(s(\\overline{TSK}) = s(\\overline{TKS}) = 4\\alpha\\) olur. \\(PL \\parallel KT\\) olduğu için \\(s(\\overline{PLK}) + s(\\overline{TKL}) = (90^\\circ + \\alpha) + 8\\alpha = 180^\\circ\\) olur ve buradan \\(\\alpha = 10^\\circ\\) ve \\(s(\\overline{LRS}) = 90^\\circ + \\alpha = 100^\\circ\\) bulunur.",
"options": [],
"sub_questions": [
{
"label": "A",
"points": null,
"text": "\\(100^\\circ\\) b) \\(110^\\circ\\) c) \\(120^\\circ\\) d) \\(130^\\circ\\) e) \\(140^\\circ\\) \n\n\nCevap: 100. \\(s(\\overline{PLR}) = 2\\alpha\\) olsun. \\(|LP| = |LR|\\) olduğu için \\(s(\\overline{LPR}) = s(\\overline{LRP}) = 90^\\circ - \\alpha\\) olur. \\(|KL| = |KR|\\) olduğu için \\(s(\\overline{RLK}) = s(\\overline{LRK}) = 90^\\circ - \\alpha\\) ve \\(s(\\overline{RKL}) = 2\\alpha\\) olur. \\(|SR| = |SK|\\) olduğu için \\(s(\\overline{SRK}) = s(\\overline{SKR}) = 2\\alpha\\) olur. \\(|TS| = |TK|\\) olduğu için \\(s(\\overline{TSK}) = s(\\overline{TKS}) = 4\\alpha\\) olur. \\(PL \\parallel KT\\) olduğu için \\(s(\\overline{PLK}) + s(\\overline{TKL}) = (90^\\circ + \\alpha) + 8\\alpha = 180^\\circ\\) olur ve buradan \\(\\alpha = 10^\\circ\\) ve \\(s(\\overline{LRS}) = 90^\\circ + \\alpha = 100^\\circ\\) bulunur."
}
],
"premises": [],
"has_figure": false,
"has_choices": false,
"visual_references": [
{
"tag": "text",
"bbox": [
179,
291,
833,
312
],
"char_start": 12272,
"char_end": 12328,
"type": "ref_det"
},
{
"tag": "text",
"bbox": [
179,
323,
833,
477
],
"char_start": 12356,
"char_end": 12412,
"type": "ref_det"
}
],
"code_blocks": [],
"latex_blocks": [],
"data_tables": [],
"competitive_programming": null,
"solution": null,
"answer": {
"answer_key": null,
"short_answer": "100.",
"symbolic_answer": null,
"answer_frame_guidelines": null
},
"scoring": {
"scoring_weight": null,
"scoring_logic": null,
"subtask_points": []
},
"topic_metadata": {
"t_code": null,
"discipline": null,
"section_title": null,
"keywords": [],
"topic_tags": []
},
"provenance": {
"source_pdf": "/content/drive/MyDrive/TUBİTAK/ortaokulmat/Ortaokul Matematik_1_Birinci_Asama_2025/2025.pdf",
"source_mmd": "/content/drive/MyDrive/TUBİTAK/ortaokulmat/Ortaokul Matematik_1_Birinci_Asama_2025/Ortaokul Matematik_1_Birinci_Asama_2025.mmd",
"ocr_engine": "Mathpix-mmd",
"is_source": "combined_booklet"
},
"raw_text": "\\(l_1\\) ve \\(l_2\\) birbirlerine paralel olan iki farklı doğru olsun. \\(l_1\\) doğrusu üzerinde \\(P\\), \\(R\\), \\(S\\), \\(T\\) noktaları bu sırayla yer alan noktalar olsun. \\(l_2\\) doğrusu üzerindeki \\(L\\) ve \\(K\\) noktaları \\(|LP| = |LR|\\), \\(|KL| = |KR|\\), \\(|SR| = |SK|\\), \\(|TS| = |TK|\\) ve \\(PL \\parallel KT\\) koşullarını sağlamaktadır. Buna göre, \\(s(\\overline{LRS})\\) kaçtır? \n\n\na) \\(100^\\circ\\) b) \\(110^\\circ\\) c) \\(120^\\circ\\) d) \\(130^\\circ\\) e) \\(140^\\circ\\) \n\n\nCevap: 100. \\(s(\\overline{PLR}) = 2\\alpha\\) olsun. \\(|LP| = |LR|\\) olduğu için \\(s(\\overline{LPR}) = s(\\overline{LRP}) = 90^\\circ - \\alpha\\) olur. \\(|KL| = |KR|\\) olduğu için \\(s(\\overline{RLK}) = s(\\overline{LRK}) = 90^\\circ - \\alpha\\) ve \\(s(\\overline{RKL}) = 2\\alpha\\) olur. \\(|SR| = |SK|\\) olduğu için \\(s(\\overline{SRK}) = s(\\overline{SKR}) = 2\\alpha\\) olur. \\(|TS| = |TK|\\) olduğu için \\(s(\\overline{TSK}) = s(\\overline{TKS}) = 4\\alpha\\) olur. \\(PL \\parallel KT\\) olduğu için \\(s(\\overline{PLK}) + s(\\overline{TKL}) = (90^\\circ + \\alpha) + 8\\alpha = 180^\\circ\\) olur ve buradan \\(\\alpha = 10^\\circ\\) ve \\(s(\\overline{LRS}) = 90^\\circ + \\alpha = 100^\\circ\\) bulunur.",
"question_image_path": "/content/drive/MyDrive/TUBİTAK_output/parsed_output/cropped_images/Ortaokul Matematik_1_Birinci_Asama_2025/q17_question.png",
"solution_image_path": null,
"inline_image_paths": [
"/content/drive/MyDrive/TUBİTAK_output/parsed_output/cropped_images/Ortaokul Matematik_1_Birinci_Asama_2025/q17_inline_1.png",
"/content/drive/MyDrive/TUBİTAK_output/parsed_output/cropped_images/Ortaokul Matematik_1_Birinci_Asama_2025/q17_inline_2.png"
]
},
{
"question_id": "2025-MATM-1-Q18",
"format_id": "FMT_MATH_MID_1_QS",
"question_number": 18,
"day_index": null,
"char_start": 13125,
"char_end": 13726,
"status": "active",
"cancellation_reason": null,
"parent_context": null,
"language_pairing": null,
"question_stem": "Bir tahtada hiçbiri 2025 ten büyük olmayan \\(N\\) farklı pozitif tam sayı vardır. Tahtadaki birbirinden farklı herhangi \\(a\\) ve \\(b\\) sayıları için \\(a - b\\) sayısı \\(a + b\\) sayısını bölmüyorsa, \\(N\\) en fazla kaç olabilir?",
"options": [
{
"label": "A",
"text": "405"
},
{
"label": "B",
"text": "506"
},
{
"label": "C",
"text": "675"
},
{
"label": "D",
"text": "836"
},
{
"label": "E",
"text": "1024"
}
],
"sub_questions": [],
"premises": [],
"has_figure": false,
"has_choices": true,
"visual_references": [
{
"tag": "text",
"bbox": [
145,
490,
833,
578
],
"char_start": 13203,
"char_end": 13259,
"type": "ref_det"
},
{
"tag": "text",
"bbox": [
179,
590,
833,
611
],
"char_start": 13590,
"char_end": 13646,
"type": "ref_det"
}
],
"code_blocks": [],
"latex_blocks": [],
"data_tables": [],
"competitive_programming": null,
"solution": null,
"answer": {
"answer_key": null,
"short_answer": "675.",
"symbolic_answer": null,
"answer_frame_guidelines": null
},
"scoring": {
"scoring_weight": null,
"scoring_logic": null,
"subtask_points": []
},
"topic_metadata": {
"t_code": null,
"discipline": null,
"section_title": null,
"keywords": [],
"topic_tags": []
},
"provenance": {
"source_pdf": "/content/drive/MyDrive/TUBİTAK/ortaokulmat/Ortaokul Matematik_1_Birinci_Asama_2025/2025.pdf",
"source_mmd": "/content/drive/MyDrive/TUBİTAK/ortaokulmat/Ortaokul Matematik_1_Birinci_Asama_2025/Ortaokul Matematik_1_Birinci_Asama_2025.mmd",
"ocr_engine": "Mathpix-mmd",
"is_source": "combined_booklet"
},
"raw_text": "Bir tahtada hiçbiri 2025 ten büyük olmayan \\(N\\) farklı pozitif tam sayı vardır. Tahtadaki birbirinden farklı herhangi \\(a\\) ve \\(b\\) sayıları için \\(a - b\\) sayısı \\(a + b\\) sayısını bölmüyorsa, \\(N\\) en fazla kaç olabilir? \n\n\na) 405 b) 506 c) 675 d) 836 e) 1024 \n\n\nCevap: 675. Koşullara göre, tahtaya \\(a, a+1, a+2\\) sayılarından en fazla biri yazılabilir. Buna göre, \\(N \\le 2025/3 = 675\\) olur. Diğer taraftan tahtaya \\(1, 4, 7, \\dots, 2023\\) sayıları yazılırsa koşullar sağlanır: \\(a = 3m+1\\) ve \\(b = 3n+1\\) ise \\(a - b\\) sayısı 3 ün bir katıdır ve \\(a + b\\) sayısı 3 ün bir katı değildir.",
"question_image_path": "/content/drive/MyDrive/TUBİTAK_output/parsed_output/cropped_images/Ortaokul Matematik_1_Birinci_Asama_2025/q18_question.png",
"solution_image_path": null,
"inline_image_paths": [
"/content/drive/MyDrive/TUBİTAK_output/parsed_output/cropped_images/Ortaokul Matematik_1_Birinci_Asama_2025/q18_inline_1.png",
"/content/drive/MyDrive/TUBİTAK_output/parsed_output/cropped_images/Ortaokul Matematik_1_Birinci_Asama_2025/q18_inline_2.png"
]
},
{
"question_id": "2025-MATM-1-Q19",
"format_id": "FMT_MATH_MID_1_QS",
"question_number": 19,
"day_index": null,
"char_start": 13728,
"char_end": 14299,
"status": "active",
"cancellation_reason": null,
"parent_context": null,
"language_pairing": null,
"question_stem": "\\(x = \\sqrt{2} + \\sqrt{9 + 4\\sqrt{2}}\\) olmak üzere, \\(\\frac{x^3 - 3x^2 + x - 2}{x^2 - 2x + 2}\\) kaçtır?",
"options": [
{
"label": "A",
"text": "\\(-\\sqrt{2}\\)"
},
{
"label": "B",
"text": "\\(-1\\)"
},
{
"label": "C",
"text": "0"
},
{
"label": "D",
"text": "1"
},
{
"label": "E",
"text": "\\(\\sqrt{2}\\)"
}
],
"sub_questions": [],
"premises": [],
"has_figure": false,
"has_choices": true,
"visual_references": [],
"code_blocks": [],
"latex_blocks": [],
"data_tables": [],
"competitive_programming": null,
"solution": null,
"answer": {
"answer_key": null,
"short_answer": null,
"symbolic_answer": null,
"answer_frame_guidelines": null
},
"scoring": {
"scoring_weight": null,
"scoring_logic": null,
"subtask_points": []
},
"topic_metadata": {
"t_code": null,
"discipline": null,
"section_title": null,
"keywords": [],
"topic_tags": []
},
"provenance": {
"source_pdf": "/content/drive/MyDrive/TUBİTAK/ortaokulmat/Ortaokul Matematik_1_Birinci_Asama_2025/2025.pdf",
"source_mmd": "/content/drive/MyDrive/TUBİTAK/ortaokulmat/Ortaokul Matematik_1_Birinci_Asama_2025/Ortaokul Matematik_1_Birinci_Asama_2025.mmd",
"ocr_engine": "Mathpix-mmd",
"is_source": "combined_booklet"
},
"raw_text": "\\(x = \\sqrt{2} + \\sqrt{9 + 4\\sqrt{2}}\\) olmak üzere, \\(\\frac{x^3 - 3x^2 + x - 2}{x^2 - 2x + 2}\\) kaçtır? \n\n\na) \\(-\\sqrt{2}\\) b) \\(-1\\) c) 0 d) 1 e) \\(\\sqrt{2}\\)\n\n---\nCevap: \\(-1\\). \\(9+4\\sqrt{2} = (1+2\\sqrt{2})^2\\) olduğu için \\(x = \\sqrt{3} + 2\\sqrt{2}\\) olur. \\(3+2\\sqrt{2} = (1+\\sqrt{2})^2\\) olduğu için \\(x = 1+\\sqrt{2}\\) bulunur. Buna göre, \\((x-1)^2 = x^2-2x+1 = 2\\), yani \\(x^2 - 2x = 1\\) bulunur. \\(x^3 - 3x^2 + x - 2 = x(x^2 - 2x) - x^2 + x - 2 = -x^2 + 2x - 2 = -3\\) bulunur. \\(x^2 - 2x + 2 = 3\\) bulunur. Bu durumda istenilen ifade \\(-1\\) olarak bulunur.",
"question_image_path": "/content/drive/MyDrive/TUBİTAK_output/parsed_output/cropped_images/Ortaokul Matematik_1_Birinci_Asama_2025/q19_question.png",
"solution_image_path": null,
"inline_image_paths": []
},
{
"question_id": "2025-MATM-1-Q20",
"format_id": "FMT_MATH_MID_1_QS",
"question_number": 20,
"day_index": null,
"char_start": 14301,
"char_end": 15369,
"status": "active",
"cancellation_reason": null,
"parent_context": null,
"language_pairing": null,
"question_stem": "\\(4 \\times 4\\) satranç tahtasının her birim karesine bir sayı, \\(2 \\times 2\\) boyutlarındaki her karede birbirine eşit iki sayı bulunacak şekilde yazılmıştır. Buna göre, bu satranç tahtasında en fazla kaç farklı sayı bulunabilir?",
"options": [
{
"label": "A",
"text": "9"
},
{
"label": "B",
"text": "10"
},
{
"label": "C",
"text": "11"
},
{
"label": "D",
"text": "12"
},
{
"label": "E",
"text": "13"
}
],
"sub_questions": [],
"premises": [],
"has_figure": false,
"has_choices": true,
"visual_references": [
{
"tag": "text",
"bbox": [
145,
757,
833,
828
],
"char_start": 14320,
"char_end": 14376,
"type": "ref_det"
},
{
"tag": "text",
"bbox": [
177,
99,
780,
120
],
"char_start": 14697,
"char_end": 14752,
"type": "ref_det"
},
{
"tag": "text",
"bbox": [
177,
135,
833,
156
],
"char_start": 14833,
"char_end": 14889,
"type": "ref_det"
}
],
"code_blocks": [],
"latex_blocks": [],
"data_tables": [],
"competitive_programming": null,
"solution": null,
"answer": {
"answer_key": null,
"short_answer": "11.",
"symbolic_answer": null,
"answer_frame_guidelines": null
},
"scoring": {
"scoring_weight": null,
"scoring_logic": null,
"subtask_points": []
},
"topic_metadata": {
"t_code": null,
"discipline": null,
"section_title": null,
"keywords": [],
"topic_tags": []
},
"provenance": {
"source_pdf": "/content/drive/MyDrive/TUBİTAK/ortaokulmat/Ortaokul Matematik_1_Birinci_Asama_2025/2025.pdf",
"source_mmd": "/content/drive/MyDrive/TUBİTAK/ortaokulmat/Ortaokul Matematik_1_Birinci_Asama_2025/Ortaokul Matematik_1_Birinci_Asama_2025.mmd",
"ocr_engine": "Mathpix-mmd",
"is_source": "combined_booklet"
},
"raw_text": "\\(4 \\times 4\\) satranç tahtasının her birim karesine bir sayı, \\(2 \\times 2\\) boyutlarındaki her karede birbirine eşit iki sayı bulunacak şekilde yazılmıştır. Buna göre, bu satranç tahtasında en fazla kaç farklı sayı bulunabilir? \n\n\na) 9 b) 10 c) 11 d) 12 e) 13 \n\n\nCevap: 11. Sorudaki koşulu sağlayan ve \\(N\\) farklı sayı içeren bir tahta bulunduğunu varsayalım. Sol üst birim kareyi, sağ üst birim kareyi, sol alt birim kareyi ve sağ alt birim kareyi içeren dört tane ayrık \\(2 \\times 2\\) boyutlarındaki karenin her birinde en fazla üç farklı sayı vardır, böylece \\(N \\le 12\\) olmalıdır. \\(N = 12\\) olması için bu dört karenin her birinde üç farklı sayı olmalıdır ve herhangi ikisinin içerdiği ortak bir sayı olmamalıdır. Fakat bu durumda merkezde bulunan \\(2 \\times 2\\) boyutlarındaki karede birbirine eşit olan iki sayı bulunamaz. Buna göre, \\(N \\le 11\\) olur. \\(N = 11\\) için koşulu sağlayan bir örnek bulunur: Soldan sağa doğru ilk satıra 1,2,3,4; ikinci satıra 5,5,5,5; üçüncü satıra 6,7,8,9; dördüncü satıra 10,7,8,11 sayıları yazılırsa koşullar sağlanır.",
"question_image_path": "/content/drive/MyDrive/TUBİTAK_output/parsed_output/cropped_images/Ortaokul Matematik_1_Birinci_Asama_2025/q20_question.png",
"solution_image_path": null,
"inline_image_paths": [
"/content/drive/MyDrive/TUBİTAK_output/parsed_output/cropped_images/Ortaokul Matematik_1_Birinci_Asama_2025/q20_inline_1.png",
"/content/drive/MyDrive/TUBİTAK_output/parsed_output/cropped_images/Ortaokul Matematik_1_Birinci_Asama_2025/q20_inline_2.png",
"/content/drive/MyDrive/TUBİTAK_output/parsed_output/cropped_images/Ortaokul Matematik_1_Birinci_Asama_2025/q20_inline_3.png"
]
},
{
"question_id": "2025-MATM-1-Q21",
"format_id": "FMT_MATH_MID_1_QS",
"question_number": 21,
"day_index": null,
"char_start": 15371,
"char_end": 16283,
"status": "active",
"cancellation_reason": null,
"parent_context": null,
"language_pairing": null,
"question_stem": "Bir \\(ABC\\) üçgeninin \\([AC]\\) kenarı üzerinde bir \\(D\\) noktası veriliyor. \\(|AB| = |AD| = 13\\), \\(|BD| = 10\\) ve \\(C\\) köşesinden \\([AB]\\) kenarına inilen yüksekliğin uzunluğu 16 ise, \\([CD]\\) kaçtır? \n\n\na) 7 b) 8 c) \\(\\frac{13}{2}\\) d) \\(\\frac{76}{9}\\) e) Hiçbiri \n\n\nCevap: \\(\\frac{143}{15}\\). \\(ABC\\) üçgeninin bir kenarının uzunluğu 13 ve o kenara inilen yüksekliğinin uzunluğu 16 olduğu için alanı 104 olur. Öte yandan, \\(ADB\\) bir ikizkenar üçgen olduğu için, \\([BD]\\) kenarının orta noktasına \\(E\\) dersen \\(AE \\perp BD\\) olur. Ayrıca \\(|BE| = |DE| = 5\\) ve \\(|AB| = 13\\) olduğu için \\(|AE| = 12\\) bulunur. Buradan \\(ADB\\) üçgeninin alanı 60 olarak hesaplanır ve \\(ABC\\) nin alanı 104 olduğu için \\(BCD\\) nin alanı 44 bulunur. \\(ADB\\) ve \\(BCD\\) üçgenlerinin alanlarının oranı tabanlarının uzunluklarının oranına eşit olacağı için \\(\\frac{x}{13} = \\frac{44}{60}\\) ve \\(x = \\frac{143}{15}\\) bulunur.",
"options": [],
"sub_questions": [
{
"label": "A",
"points": null,
"text": "7 b) 8 c) \\(\\frac{13}{2}\\) d) \\(\\frac{76}{9}\\) e) Hiçbiri \n\n\nCevap: \\(\\frac{143}{15}\\). \\(ABC\\) üçgeninin bir kenarının uzunluğu 13 ve o kenara inilen yüksekliğinin uzunluğu 16 olduğu için alanı 104 olur. Öte yandan, \\(ADB\\) bir ikizkenar üçgen olduğu için, \\([BD]\\) kenarının orta noktasına \\(E\\) dersen \\(AE \\perp BD\\) olur. Ayrıca \\(|BE| = |DE| = 5\\) ve \\(|AB| = 13\\) olduğu için \\(|AE| = 12\\) bulunur. Buradan \\(ADB\\) üçgeninin alanı 60 olarak hesaplanır ve \\(ABC\\) nin alanı 104 olduğu için \\(BCD\\) nin alanı 44 bulunur. \\(ADB\\) ve \\(BCD\\) üçgenlerinin alanlarının oranı tabanlarının uzunluklarının oranına eşit olacağı için \\(\\frac{x}{13} = \\frac{44}{60}\\) ve \\(x = \\frac{143}{15}\\) bulunur."
}
],
"premises": [],
"has_figure": false,
"has_choices": false,
"visual_references": [
{
"tag": "text",
"bbox": [
144,
302,
833,
376
],
"char_start": 15501,
"char_end": 15557,
"type": "ref_det"
},
{
"tag": "text",
"bbox": [
177,
387,
833,
409
],
"char_start": 15941,
"char_end": 15997,
"type": "ref_det"
},
{
"tag": "text",
"bbox": [
177,
419,
833,
541
],
"char_start": 16085,
"char_end": 16141,
"type": "ref_det"
}
],
"code_blocks": [],
"latex_blocks": [],
"data_tables": [],
"competitive_programming": null,
"solution": null,
"answer": {
"answer_key": null,
"short_answer": null,
"symbolic_answer": null,
"answer_frame_guidelines": null
},
"scoring": {
"scoring_weight": null,
"scoring_logic": null,
"subtask_points": []
},
"topic_metadata": {
"t_code": null,
"discipline": "Geometri",
"section_title": null,
"keywords": [],
"topic_tags": [
"Geometri"
]
},
"provenance": {
"source_pdf": "/content/drive/MyDrive/TUBİTAK/ortaokulmat/Ortaokul Matematik_1_Birinci_Asama_2025/2025.pdf",
"source_mmd": "/content/drive/MyDrive/TUBİTAK/ortaokulmat/Ortaokul Matematik_1_Birinci_Asama_2025/Ortaokul Matematik_1_Birinci_Asama_2025.mmd",
"ocr_engine": "Mathpix-mmd",
"is_source": "combined_booklet"
},
"raw_text": "Bir \\(ABC\\) üçgeninin \\([AC]\\) kenarı üzerinde bir \\(D\\) noktası veriliyor. \\(|AB| = |AD| = 13\\), \\(|BD| = 10\\) ve \\(C\\) köşesinden \\([AB]\\) kenarına inilen yüksekliğin uzunluğu 16 ise, \\([CD]\\) kaçtır? \n\n\na) 7 b) 8 c) \\(\\frac{13}{2}\\) d) \\(\\frac{76}{9}\\) e) Hiçbiri \n\n\nCevap: \\(\\frac{143}{15}\\). \\(ABC\\) üçgeninin bir kenarının uzunluğu 13 ve o kenara inilen yüksekliğinin uzunluğu 16 olduğu için alanı 104 olur. Öte yandan, \\(ADB\\) bir ikizkenar üçgen olduğu için, \\([BD]\\) kenarının orta noktasına \\(E\\) dersen \\(AE \\perp BD\\) olur. Ayrıca \\(|BE| = |DE| = 5\\) ve \\(|AB| = 13\\) olduğu için \\(|AE| = 12\\) bulunur. Buradan \\(ADB\\) üçgeninin alanı 60 olarak hesaplanır ve \\(ABC\\) nin alanı 104 olduğu için \\(BCD\\) nin alanı 44 bulunur. \\(ADB\\) ve \\(BCD\\) üçgenlerinin alanlarının oranı tabanlarının uzunluklarının oranına eşit olacağı için \\(\\frac{x}{13} = \\frac{44}{60}\\) ve \\(x = \\frac{143}{15}\\) bulunur.",
"question_image_path": "/content/drive/MyDrive/TUBİTAK_output/parsed_output/cropped_images/Ortaokul Matematik_1_Birinci_Asama_2025/q21_question.png",
"solution_image_path": null,
"inline_image_paths": [
"/content/drive/MyDrive/TUBİTAK_output/parsed_output/cropped_images/Ortaokul Matematik_1_Birinci_Asama_2025/q21_inline_1.png",
"/content/drive/MyDrive/TUBİTAK_output/parsed_output/cropped_images/Ortaokul Matematik_1_Birinci_Asama_2025/q21_inline_2.png",
"/content/drive/MyDrive/TUBİTAK_output/parsed_output/cropped_images/Ortaokul Matematik_1_Birinci_Asama_2025/q21_inline_3.png"
]
},
{
"question_id": "2025-MATM-1-Q22",
"format_id": "FMT_MATH_MID_1_QS",
"question_number": 22,
"day_index": null,
"char_start": 16285,
"char_end": 17144,
"status": "active",
"cancellation_reason": null,
"parent_context": null,
"language_pairing": null,
"question_stem": "Bir \\(a\\) pozitif tam sayısı için, hem \\(a = m + n + ebo b(m,n) + ekok(m,n)\\) olacak şekilde \\(m\\) ve \\(n\\) pozitif tam sayıları, hem de \\(a = p^k\\) olacak şekilde\n\n---\np asal sayısı ve k pozitif tam sayısı bulunuyorsa a sayısına güzel diyelim. 2025 ten küçük kaç güzel sayı vardır?",
"options": [
{
"label": "A",
"text": "9"
},
{
"label": "B",
"text": "11"
},
{
"label": "C",
"text": "13"
},
{
"label": "D",
"text": "15"
},
{
"label": "E",
"text": "Hiçbiri"
}
],
"sub_questions": [],
"premises": [],
"has_figure": false,
"has_choices": true,
"visual_references": [
{
"tag": "text",
"bbox": [
144,
554,
833,
608
],
"char_start": 16816,
"char_end": 16872,
"type": "ref_det"
}
],
"code_blocks": [],
"latex_blocks": [],
"data_tables": [],
"competitive_programming": null,
"solution": null,
"answer": {
"answer_key": null,
"short_answer": "9.",
"symbolic_answer": null,
"answer_frame_guidelines": null
},
"scoring": {
"scoring_weight": null,
"scoring_logic": null,
"subtask_points": []
},
"topic_metadata": {
"t_code": null,
"discipline": "Sayılar Teorisi",
"section_title": null,
"keywords": [],
"topic_tags": [
"Sayılar Teorisi"
]
},
"provenance": {
"source_pdf": "/content/drive/MyDrive/TUBİTAK/ortaokulmat/Ortaokul Matematik_1_Birinci_Asama_2025/2025.pdf",
"source_mmd": "/content/drive/MyDrive/TUBİTAK/ortaokulmat/Ortaokul Matematik_1_Birinci_Asama_2025/Ortaokul Matematik_1_Birinci_Asama_2025.mmd",
"ocr_engine": "Mathpix-mmd",
"is_source": "combined_booklet"
},
"raw_text": "Bir \\(a\\) pozitif tam sayısı için, hem \\(a = m + n + ebo b(m,n) + ekok(m,n)\\) olacak şekilde \\(m\\) ve \\(n\\) pozitif tam sayıları, hem de \\(a = p^k\\) olacak şekilde\n\n---\np asal sayısı ve k pozitif tam sayısı bulunuyorsa a sayısına güzel diyelim. 2025 ten küçük kaç güzel sayı vardır? \n\n\na) 9 b) 11 c) 13 d) 15 e) Hiçbiri \n\n\nCevap: 9. \\(m = dx\\), \\(n = dy\\) ve \\(ebob(x, y) = 1\\) dersek ifade \\(p^k = d(x+1)(y+1)\\), haline gelir. \\(x\\) ve \\(y\\) aralarında asal oldukları için ikisi aynı anda çift olamaz ve en az biri çift olmalıdır, böylece \\(p^k\\) ifadesinin çift olduğunu ve \\(p = 2\\) olduğu bulunur. \\(x, y\\) en az 1 oldukları için de \\(2^k \\ge 4\\) ve \\(k \\ge 2\\) bulunur. Bu durumda ise \\(m = n = 2^{k-2}\\) verilirse tüm \\(2^k\\) sayıları için örnek kurulabilir. Böylece, 2025'ten küçük güzel sayılar \\(2^2, 2^3, \\dots, 2^{10}\\) olmak üzere 9 tanedir.",
"question_image_path": "/content/drive/MyDrive/TUBİTAK_output/parsed_output/cropped_images/Ortaokul Matematik_1_Birinci_Asama_2025/q22_question.png",
"solution_image_path": null,
"inline_image_paths": [
"/content/drive/MyDrive/TUBİTAK_output/parsed_output/cropped_images/Ortaokul Matematik_1_Birinci_Asama_2025/q22_inline_1.png"
]
},
{
"question_id": "2025-MATM-1-Q23",
"format_id": "FMT_MATH_MID_1_QS",
"question_number": 23,
"day_index": null,
"char_start": 17146,
"char_end": 17770,
"status": "active",
"cancellation_reason": null,
"parent_context": null,
"language_pairing": null,
"question_stem": "\\(P(x) = 2x^2 - 3ax + a - 10\\) ve \\(Q(x) = x^2 - 2ax + a^2 - 5\\) polinomlarının her ikisinin de kökü olan bir gerçel sayı bulunmasını sağlayan a gerçel sayılarının toplamı kaçtır?",
"options": [
{
"label": "A",
"text": "\\(-2\\)"
},
{
"label": "B",
"text": "\\(-1\\)"
},
{
"label": "C",
"text": "\\(0\\)"
},
{
"label": "D",
"text": "\\(1\\)"
},
{
"label": "E",
"text": "\\(2\\)"
}
],
"sub_questions": [],
"premises": [],
"has_figure": false,
"has_choices": true,
"visual_references": [
{
"tag": "text",
"bbox": [
177,
654,
833,
725
],
"char_start": 17199,
"char_end": 17255,
"type": "ref_det"
},
{
"tag": "text",
"bbox": [
144,
737,
702,
775
],
"char_start": 17587,
"char_end": 17643,
"type": "ref_det"
}
],
"code_blocks": [],
"latex_blocks": [],
"data_tables": [],
"competitive_programming": null,
"solution": null,
"answer": {
"answer_key": null,
"short_answer": "2.",
"symbolic_answer": null,
"answer_frame_guidelines": null
},
"scoring": {
"scoring_weight": null,
"scoring_logic": null,
"subtask_points": []
},
"topic_metadata": {
"t_code": null,
"discipline": "Cebir",
"section_title": null,
"keywords": [],
"topic_tags": [
"Cebir"
]
},
"provenance": {
"source_pdf": "/content/drive/MyDrive/TUBİTAK/ortaokulmat/Ortaokul Matematik_1_Birinci_Asama_2025/2025.pdf",
"source_mmd": "/content/drive/MyDrive/TUBİTAK/ortaokulmat/Ortaokul Matematik_1_Birinci_Asama_2025/Ortaokul Matematik_1_Birinci_Asama_2025.mmd",
"ocr_engine": "Mathpix-mmd",
"is_source": "combined_booklet"
},
"raw_text": "\\(P(x) = 2x^2 - 3ax + a - 10\\) ve \\(Q(x) = x^2 - 2ax + a^2 - 5\\) polinomlarının her ikisinin de kökü olan bir gerçel sayı bulunmasını sağlayan a gerçel sayılarının toplamı kaçtır? \n\n\na) \\(-2\\) b) \\(-1\\) c) \\(0\\) d) \\(1\\) e) \\(2\\) \n\n\nCevap: 2. Bu iki polinomun ortak kökü \\(t\\) olsun. \\(P(t) - 2Q(t) = at - 2a^2 + a = 0\\) olacağı için ya \\(a = 0\\) ya da \\(t = 2a - 1\\) bulunur. \\(t = 2a - 1\\) ise, \\(Q(2a - 1) = a^2 - 2a - 4 = 0\\) olduğu için de \\(a\\) sayısının olası değerleri \\(1 + \\sqrt{5}\\) ve \\(1 - \\sqrt{5}\\) olarak bulunur ve koşulları sağlayan tüm değerlerin toplamı \\(0 + 1 + \\sqrt{5} + 1 - \\sqrt{5} = 2\\)'dir.",
"question_image_path": "/content/drive/MyDrive/TUBİTAK_output/parsed_output/cropped_images/Ortaokul Matematik_1_Birinci_Asama_2025/q23_question.png",
"solution_image_path": null,
"inline_image_paths": [
"/content/drive/MyDrive/TUBİTAK_output/parsed_output/cropped_images/Ortaokul Matematik_1_Birinci_Asama_2025/q23_inline_1.png",
"/content/drive/MyDrive/TUBİTAK_output/parsed_output/cropped_images/Ortaokul Matematik_1_Birinci_Asama_2025/q23_inline_2.png"
]
},
{
"question_id": "2025-MATM-1-Q24",
"format_id": "FMT_MATH_MID_1_QS",
"question_number": 24,
"day_index": null,
"char_start": 17772,
"char_end": 18883,
"status": "active",
"cancellation_reason": null,
"parent_context": null,
"language_pairing": null,
"question_stem": "Bir masa üzerinde sırasıyla 55, 60, 65, 70, 75, 80 bilye içeren 6 kutu vardır. Her işlemde en az 5 bilye içeren bir kutu seçiliyor ve bu kutudan 5 bilye alınıp diğer kutuların her birine birer bilye dağıtılıyor. Birkaç işlem sonucunda \\(N\\) bilye içeren bir kutu elde edilebiliyorsa \\(N\\) sayısının alabileceği en büyük değer kaçtır?",
"options": [
{
"label": "A",
"text": "385"
},
{
"label": "B",
"text": "390"
},
{
"label": "C",
"text": "395"
},
{
"label": "D",
"text": "400"
},
{
"label": "E",
"text": "405"
}
],
"sub_questions": [],
"premises": [],
"has_figure": false,
"has_choices": true,
"visual_references": [
{
"tag": "text",
"bbox": [
179,
135,
833,
223
],
"char_start": 17888,
"char_end": 17944,
"type": "ref_det"
},
{
"tag": "text",
"bbox": [
144,
238,
833,
291
],
"char_start": 18347,
"char_end": 18403,
"type": "ref_det"
},
{
"tag": "text",
"bbox": [
179,
305,
833,
325
],
"char_start": 18640,
"char_end": 18696,
"type": "ref_det"
}
],
"code_blocks": [],
"latex_blocks": [],
"data_tables": [],
"competitive_programming": null,
"solution": null,
"answer": {
"answer_key": null,
"short_answer": "395.",
"symbolic_answer": null,
"answer_frame_guidelines": null
},
"scoring": {
"scoring_weight": null,
"scoring_logic": null,
"subtask_points": []
},
"topic_metadata": {
"t_code": null,
"discipline": "Sayılar Teorisi",
"section_title": null,
"keywords": [],
"topic_tags": [
"Sayılar Teorisi",
"Kombinatorik"
]
},
"provenance": {
"source_pdf": "/content/drive/MyDrive/TUBİTAK/ortaokulmat/Ortaokul Matematik_1_Birinci_Asama_2025/2025.pdf",
"source_mmd": "/content/drive/MyDrive/TUBİTAK/ortaokulmat/Ortaokul Matematik_1_Birinci_Asama_2025/Ortaokul Matematik_1_Birinci_Asama_2025.mmd",
"ocr_engine": "Mathpix-mmd",
"is_source": "combined_booklet"
},
"raw_text": "Bir masa üzerinde sırasıyla 55, 60, 65, 70, 75, 80 bilye içeren 6 kutu vardır. Her işlemde en az 5 bilye içeren bir kutu seçiliyor ve bu kutudan 5 bilye alınıp diğer kutuların her birine birer bilye dağıtılıyor. Birkaç işlem sonucunda \\(N\\) bilye içeren bir kutu elde edilebiliyorsa \\(N\\) sayısının alabileceği en büyük değer kaçtır? \n\n\na) 385 b) 390 c) 395 d) 400 e) 405 \n\n\nCevap: 395. Başlangıçta herhangi iki kutudaki bilye sayısı (mod 6)'da birbirlerinden farklıdır. Her işlemde herhangi bir kutudaki top sayısı ya 5 azalıp ya da 1 arttığı için, herhangi bir işlemden sonra tüm kutulardaki bilye sayıları (mod 6)'da birbirlerinden farklı olacaktır. Buna göre, herhangi 5 farklı kutudaki bilye sayısı en az \\(0+1+2+3+4 = 10\\) olabilir ve bu sebeple bir kutudaki bilye sayısı en fazla \\(55 + 60 + 65 + 70 + 75 + 80 - 10 = 395\\) olabilir. Şimdi de bir kutuda 395 bilye olabileceğini gösterelim. Herhangi bir kutudan hiç bilye almayıp her defa en az 5 bilye içeren herhangi bir kutudan 5 bilye alıp diğerlerine dağıtırsak sonlu işlem sonucunda bu 5 kutuda en fazla \\(0+1+2+3+4 = 10\\) bilye kalacaktır.\n\n---",
"question_image_path": "/content/drive/MyDrive/TUBİTAK_output/parsed_output/cropped_images/Ortaokul Matematik_1_Birinci_Asama_2025/q24_question.png",
"solution_image_path": null,
"inline_image_paths": [
"/content/drive/MyDrive/TUBİTAK_output/parsed_output/cropped_images/Ortaokul Matematik_1_Birinci_Asama_2025/q24_inline_1.png",
"/content/drive/MyDrive/TUBİTAK_output/parsed_output/cropped_images/Ortaokul Matematik_1_Birinci_Asama_2025/q24_inline_2.png",
"/content/drive/MyDrive/TUBİTAK_output/parsed_output/cropped_images/Ortaokul Matematik_1_Birinci_Asama_2025/q24_inline_3.png"
]
},
{
"question_id": "2025-MATM-1-Q25",
"format_id": "FMT_MATH_MID_1_QS",
"question_number": 25,
"day_index": null,
"char_start": 18883,
"char_end": 19737,
"status": "active",
"cancellation_reason": null,
"parent_context": null,
"language_pairing": null,
"question_stem": "Bir \\(ABC\\) üçgeninde \\(|AB| = |BC| = 8\\) ve \\(|AC| = 12\\) olsun. Bu üçgenin \\(s(\\widehat{BAC})\\) açısının dış açıortayı ile \\(C\\) noktası ve \\([AB]\\) kenarının orta noktasından geçen doğrunun kesişim noktası \\(D\\) ise, \\(|AD|\\) kaçtır?",
"options": [
{
"label": "A",
"text": "\\(\\frac{9\\sqrt{2}}{4}\\)"
},
{
"label": "B",
"text": "\\(3\\sqrt{2}\\)"
},
{
"label": "C",
"text": "\\(4\\sqrt{2}\\)"
},
{
"label": "D",
"text": "\\(2\\sqrt{3}\\)"
},
{
"label": "E",
"text": "\\(4\\sqrt{3}\\)"
}
],
"sub_questions": [],
"premises": [],
"has_figure": false,
"has_choices": true,
"visual_references": [
{
"tag": "text",
"bbox": [
144,
521,
833,
575
],
"char_start": 19585,
"char_end": 19641,
"type": "ref_det"
}
],
"code_blocks": [],
"latex_blocks": [],
"data_tables": [],
"competitive_programming": null,
"solution": null,
"answer": {
"answer_key": null,
"short_answer": null,
"symbolic_answer": null,
"answer_frame_guidelines": null
},
"scoring": {
"scoring_weight": null,
"scoring_logic": null,
"subtask_points": []
},
"topic_metadata": {
"t_code": null,
"discipline": "Geometri",
"section_title": null,
"keywords": [],
"topic_tags": [
"Geometri"
]
},
"provenance": {
"source_pdf": "/content/drive/MyDrive/TUBİTAK/ortaokulmat/Ortaokul Matematik_1_Birinci_Asama_2025/2025.pdf",
"source_mmd": "/content/drive/MyDrive/TUBİTAK/ortaokulmat/Ortaokul Matematik_1_Birinci_Asama_2025/Ortaokul Matematik_1_Birinci_Asama_2025.mmd",
"ocr_engine": "Mathpix-mmd",
"is_source": "combined_booklet"
},
"raw_text": "Bir \\(ABC\\) üçgeninde \\(|AB| = |BC| = 8\\) ve \\(|AC| = 12\\) olsun. Bu üçgenin \\(s(\\widehat{BAC})\\) açısının dış açıortayı ile \\(C\\) noktası ve \\([AB]\\) kenarının orta noktasından geçen doğrunun kesişim noktası \\(D\\) ise, \\(|AD|\\) kaçtır? \n\n\na) \\(\\frac{9\\sqrt{2}}{4}\\) b) \\(3\\sqrt{2}\\) c) \\(4\\sqrt{2}\\) d) \\(2\\sqrt{3}\\) e) \\(4\\sqrt{3}\\) \n\n\nCevap: \\(3\\sqrt{2}\\). \\(A\\) köşesine ait dış açıortayın \\(BC\\) yi kestiği nokta \\(E\\), ve \\(AB\\) kenarının orta noktası \\(N\\) olsun. Dış açıortay teoreminden \\(\\frac{|EB|}{|EC|} = \\frac{|AB|}{|AC|}\\) ve \\(|EA|^2 = |EB| \\cdot |EC| - |AB| \\cdot |AC|\\) olduğu için \\(|EB| = 16\\) ve \\(|AE| = 12\\sqrt{2}\\) bulunur. Menelaş teoreminden \\(\\frac{|CB|}{|CE|} \\cdot \\frac{|ED|}{|DA|} \\cdot \\frac{|AN|}{|NB|} = 1\\) olduğu için \\(\\frac{|ED|}{|DA|} = 3\\) gelir. Buna göre, \\(|ED| = 9\\sqrt{2}\\) ve \\(|AD| = 3\\sqrt{2}\\) olur.",
"question_image_path": "/content/drive/MyDrive/TUBİTAK_output/parsed_output/cropped_images/Ortaokul Matematik_1_Birinci_Asama_2025/q25_question.png",
"solution_image_path": null,
"inline_image_paths": [
"/content/drive/MyDrive/TUBİTAK_output/parsed_output/cropped_images/Ortaokul Matematik_1_Birinci_Asama_2025/q25_inline_1.png"
]
},
{
"question_id": "2025-MATM-1-Q26",
"format_id": "FMT_MATH_MID_1_QS",
"question_number": 26,
"day_index": null,
"char_start": 19739,
"char_end": 20720,
"status": "active",
"cancellation_reason": null,
"parent_context": null,
"language_pairing": null,
"question_stem": "\\(a_1, a_2, \\dots, a_{2025}\\) pozitif bileşik sayılar olmak üzere, \\(a_1 + a_2 + \\dots + a_{2025}\\) şeklinde gösterilemeyen en büyük tam sayı kaçtır?",
"options": [
{
"label": "A",
"text": "8096"
},
{
"label": "B",
"text": "8101"
},
{
"label": "C",
"text": "8103"
},
{
"label": "D",
"text": "8112"
},
{
"label": "E",
"text": "8115"
}
],
"sub_questions": [],
"premises": [],
"has_figure": false,
"has_choices": true,
"visual_references": [
{
"tag": "text",
"bbox": [
179,
583,
833,
618
],
"char_start": 19851,
"char_end": 19907,
"type": "ref_det"
},
{
"tag": "text",
"bbox": [
179,
618,
833,
785
],
"char_start": 19971,
"char_end": 20027,
"type": "ref_det"
}
],
"code_blocks": [],
"latex_blocks": [],
"data_tables": [],
"competitive_programming": null,
"solution": null,
"answer": {
"answer_key": null,
"short_answer": "8103.",
"symbolic_answer": null,
"answer_frame_guidelines": null
},
"scoring": {
"scoring_weight": null,
"scoring_logic": null,
"subtask_points": []
},
"topic_metadata": {
"t_code": null,
"discipline": null,
"section_title": null,
"keywords": [],
"topic_tags": []
},
"provenance": {
"source_pdf": "/content/drive/MyDrive/TUBİTAK/ortaokulmat/Ortaokul Matematik_1_Birinci_Asama_2025/2025.pdf",
"source_mmd": "/content/drive/MyDrive/TUBİTAK/ortaokulmat/Ortaokul Matematik_1_Birinci_Asama_2025/Ortaokul Matematik_1_Birinci_Asama_2025.mmd",
"ocr_engine": "Mathpix-mmd",
"is_source": "combined_booklet"
},
"raw_text": "\\(a_1, a_2, \\dots, a_{2025}\\) pozitif bileşik sayılar olmak üzere, \\(a_1 + a_2 + \\dots + a_{2025}\\) şeklinde gösterilemeyen en büyük tam sayı kaçtır? \n\n\na) 8096 b) 8101 c) 8103 d) 8112 e) 8115 \n\n\nCevap: 8103. \\(n\\) pozitif bileşik sayının toplamı şeklinde gösterilemeyen en büyük tam sayının \\(4n + 3\\) olduğunu gösterelim. En küçük bileşik çift sayı 4, en küçük bileşik tek sayı ise 9 dur. \\(4n + 3 = a_1 + a_2 + \\dots + a_n\\) ise, \\(4n + 3\\) bir tek sayı olduğundan terimlerin en az bir tanesi 9 olmak zorundadır. Bu durumda \\(9 + 4(n - 1) > 4n + 3\\) olduğu için çelişki elde ederiz. \\(M > 4n + 3\\) bir çift sayı ise, \\(a \\ge 8\\) bir çift sayı olmak üzere, \\(M\\) sayısı \\(a\\) ve \\(n - 1\\) tane 4 sayısının toplamı şeklinde gösterilebilir. \\(M > 4n + 3\\) bir tek sayı ise, \\(b \\ge 4\\) bir çift sayı olmak üzere, \\(M\\) sayısı 9, \\(b\\) ve \\(n - 2\\) tane 4 sayısının toplamı şeklinde gösterilebiliyor. Sonuç olarak \\(n = 2025\\) durumunda cevap \\(4 \\cdot 2025 + 3 = 8103\\) olur.",
"question_image_path": "/content/drive/MyDrive/TUBİTAK_output/parsed_output/cropped_images/Ortaokul Matematik_1_Birinci_Asama_2025/q26_question.png",
"solution_image_path": null,
"inline_image_paths": [
"/content/drive/MyDrive/TUBİTAK_output/parsed_output/cropped_images/Ortaokul Matematik_1_Birinci_Asama_2025/q26_inline_1.png",
"/content/drive/MyDrive/TUBİTAK_output/parsed_output/cropped_images/Ortaokul Matematik_1_Birinci_Asama_2025/q26_inline_2.png"
]
},
{
"question_id": "2025-MATM-1-Q27",
"format_id": "FMT_MATH_MID_1_QS",
"question_number": 27,
"day_index": null,
"char_start": 20722,
"char_end": 21579,
"status": "active",
"cancellation_reason": null,
"parent_context": null,
"language_pairing": null,
"question_stem": "\\(x, y, z\\) gerçel sayıları \n\nequation\n\\[(x - 1)(y - 2) = 3\\]\n\nequation\n\\[(y - 1)(z - 2) = 3\\]\n\nequation\n\\[(z - 1)(x - 2) = 1\\]\n\n\ndenklem sistemini sağlıyorsa, \\(x + y + z\\) ifadesinin alabileceği en büyük değer kaçtır? \n\n\na) \\(\\frac{19}{2}\\) b) 11 c) \\(\\frac{14}{3}\\) d) 0 e) Hiçbiri\n\n---\nCevap: \\(\\frac{19}{2}\\). İlk iki denklemden sırasıyla \\(x = \\frac{3}{y-2} + 1\\) ve \\(z = \\frac{3}{y-1} + 2\\) bulunur. Bunlar üçüncü denklemde yerine koyulursa \n\nequation\n\\[ (z-1)(x-2) = \\left(\\frac{3}{y-1} + 1\\right) \\left(\\frac{3}{y-2} - 2\\right) = 0 \\]\n\n\nelde edilir. Bu denklem sadeleştirilirse \\(y^2 - 3y - 4 = 0\\) bulunur. Dolayısıyla \\(y = -1\\) veya \\(y = 4\\) olabilir. Böylece \\(x = 0\\), \\(y = -1\\), \\(z = -1/2\\) ve \\(x = 5/2\\), \\(y = 4\\), \\(z = 3\\) çözümleri bulunur. Buna göre, \\(x + y + z\\) ifadesinin alabileceği en büyük değer \\(\\frac{19}{2}\\) olur.",
"options": [],
"sub_questions": [
{
"label": "A",
"points": null,
"text": "\\(\\frac{19}{2}\\) b) 11 c) \\(\\frac{14}{3}\\) d) 0 e) Hiçbiri\n\n---\nCevap: \\(\\frac{19}{2}\\). İlk iki denklemden sırasıyla \\(x = \\frac{3}{y-2} + 1\\) ve \\(z = \\frac{3}{y-1} + 2\\) bulunur. Bunlar üçüncü denklemde yerine koyulursa \n\nequation\n\\[ (z-1)(x-2) = \\left(\\frac{3}{y-1} + 1\\right) \\left(\\frac{3}{y-2} - 2\\right) = 0 \\]\n\n\nelde edilir. Bu denklem sadeleştirilirse \\(y^2 - 3y - 4 = 0\\) bulunur. Dolayısıyla \\(y = -1\\) veya \\(y = 4\\) olabilir. Böylece \\(x = 0\\), \\(y = -1\\), \\(z = -1/2\\) ve \\(x = 5/2\\), \\(y = 4\\), \\(z = 3\\) çözümleri bulunur. Buna göre, \\(x + y + z\\) ifadesinin alabileceği en büyük değer \\(\\frac{19}{2}\\) olur."
}
],
"premises": [],
"has_figure": false,
"has_choices": false,
"visual_references": [
{
"tag": "text",
"bbox": [
179,
135,
833,
170
],
"char_start": 20915,
"char_end": 20971,
"type": "ref_det"
},
{
"tag": "text",
"bbox": [
179,
184,
835,
204
],
"char_start": 21088,
"char_end": 21144,
"type": "ref_det"
},
{
"tag": "text",
"bbox": [
179,
216,
835,
320
],
"char_start": 21181,
"char_end": 21237,
"type": "ref_det"
}
],
"code_blocks": [],
"latex_blocks": [
{
"mode": "display",
"content": "\\[(x - 1)(y - 2) = 3\\]",
"immutable": true,
"sanity_issues": []
},
{
"mode": "display",
"content": "\\[(y - 1)(z - 2) = 3\\]",
"immutable": true,
"sanity_issues": []
},
{
"mode": "display",
"content": "\\[(z - 1)(x - 2) = 1\\]",
"immutable": true,
"sanity_issues": []
},
{
"mode": "display",
"content": "\\[ (z-1)(x-2) = \\left(\\frac{3}{y-1} + 1\\right) \\left(\\frac{3}{y-2} - 2\\right) = 0 \\]",
"immutable": true,
"sanity_issues": []
}
],
"data_tables": [],
"competitive_programming": null,
"solution": null,
"answer": {
"answer_key": null,
"short_answer": null,
"symbolic_answer": null,
"answer_frame_guidelines": null
},
"scoring": {
"scoring_weight": null,
"scoring_logic": null,
"subtask_points": []
},
"topic_metadata": {
"t_code": null,
"discipline": "Cebir",
"section_title": null,
"keywords": [],
"topic_tags": [
"Cebir"
]
},
"provenance": {
"source_pdf": "/content/drive/MyDrive/TUBİTAK/ortaokulmat/Ortaokul Matematik_1_Birinci_Asama_2025/2025.pdf",
"source_mmd": "/content/drive/MyDrive/TUBİTAK/ortaokulmat/Ortaokul Matematik_1_Birinci_Asama_2025/Ortaokul Matematik_1_Birinci_Asama_2025.mmd",
"ocr_engine": "Mathpix-mmd",
"is_source": "combined_booklet"
},
"raw_text": "\\(x, y, z\\) gerçel sayıları \n\nequation\n\\[(x - 1)(y - 2) = 3\\]\n\nequation\n\\[(y - 1)(z - 2) = 3\\]\n\nequation\n\\[(z - 1)(x - 2) = 1\\]\n\n\ndenklem sistemini sağlıyorsa, \\(x + y + z\\) ifadesinin alabileceği en büyük değer kaçtır? \n\n\na) \\(\\frac{19}{2}\\) b) 11 c) \\(\\frac{14}{3}\\) d) 0 e) Hiçbiri\n\n---\nCevap: \\(\\frac{19}{2}\\). İlk iki denklemden sırasıyla \\(x = \\frac{3}{y-2} + 1\\) ve \\(z = \\frac{3}{y-1} + 2\\) bulunur. Bunlar üçüncü denklemde yerine koyulursa \n\nequation\n\\[ (z-1)(x-2) = \\left(\\frac{3}{y-1} + 1\\right) \\left(\\frac{3}{y-2} - 2\\right) = 0 \\]\n\n\nelde edilir. Bu denklem sadeleştirilirse \\(y^2 - 3y - 4 = 0\\) bulunur. Dolayısıyla \\(y = -1\\) veya \\(y = 4\\) olabilir. Böylece \\(x = 0\\), \\(y = -1\\), \\(z = -1/2\\) ve \\(x = 5/2\\), \\(y = 4\\), \\(z = 3\\) çözümleri bulunur. Buna göre, \\(x + y + z\\) ifadesinin alabileceği en büyük değer \\(\\frac{19}{2}\\) olur.",
"question_image_path": "/content/drive/MyDrive/TUBİTAK_output/parsed_output/cropped_images/Ortaokul Matematik_1_Birinci_Asama_2025/q27_question.png",
"solution_image_path": null,
"inline_image_paths": [
"/content/drive/MyDrive/TUBİTAK_output/parsed_output/cropped_images/Ortaokul Matematik_1_Birinci_Asama_2025/q27_inline_1.png",
"/content/drive/MyDrive/TUBİTAK_output/parsed_output/cropped_images/Ortaokul Matematik_1_Birinci_Asama_2025/q27_inline_2.png",
"/content/drive/MyDrive/TUBİTAK_output/parsed_output/cropped_images/Ortaokul Matematik_1_Birinci_Asama_2025/q27_inline_3.png"
]
},
{
"question_id": "2025-MATM-1-Q28",
"format_id": "FMT_MATH_MID_1_QS",
"question_number": 28,
"day_index": null,
"char_start": 21581,
"char_end": 22395,
"status": "active",
"cancellation_reason": null,
"parent_context": null,
"language_pairing": null,
"question_stem": "33 öğrencinin katıldığı bir satranç turnuvasında her öğrenci ikilisi arasında tam olarak bir maç yapılmıştır. Her maçta kazanana 1, kaybedene 0, berabere kalanların her birine 1/2 puan veriliyorsa, turnuvada tam olarak 7 puan toplayan öğrenci sayısı en fazla kaç olabilir?",
"options": [
{
"label": "A",
"text": "14"
},
{
"label": "B",
"text": "15"
},
{
"label": "C",
"text": "16"
},
{
"label": "D",
"text": "17"
},
{
"label": "E",
"text": "18"
}
],
"sub_questions": [],
"premises": [],
"has_figure": false,
"has_choices": true,
"visual_references": [
{
"tag": "text",
"bbox": [
144,
333,
833,
387
],
"char_start": 21771,
"char_end": 21827,
"type": "ref_det"
},
{
"tag": "text",
"bbox": [
179,
400,
835,
420
],
"char_start": 22014,
"char_end": 22070,
"type": "ref_det"
},
{
"tag": "text",
"bbox": [
179,
433,
833,
520
],
"char_start": 22120,
"char_end": 22176,
"type": "ref_det"
}
],
"code_blocks": [],
"latex_blocks": [],
"data_tables": [],
"competitive_programming": null,
"solution": null,
"answer": {
"answer_key": null,
"short_answer": "15.",
"symbolic_answer": null,
"answer_frame_guidelines": null
},
"scoring": {
"scoring_weight": null,
"scoring_logic": null,
"subtask_points": []
},
"topic_metadata": {
"t_code": null,
"discipline": null,
"section_title": null,
"keywords": [],
"topic_tags": []
},
"provenance": {
"source_pdf": "/content/drive/MyDrive/TUBİTAK/ortaokulmat/Ortaokul Matematik_1_Birinci_Asama_2025/2025.pdf",
"source_mmd": "/content/drive/MyDrive/TUBİTAK/ortaokulmat/Ortaokul Matematik_1_Birinci_Asama_2025/Ortaokul Matematik_1_Birinci_Asama_2025.mmd",
"ocr_engine": "Mathpix-mmd",
"is_source": "combined_booklet"
},
"raw_text": "33 öğrencinin katıldığı bir satranç turnuvasında her öğrenci ikilisi arasında tam olarak bir maç yapılmıştır. Her maçta kazanana 1, kaybedene 0, berabere kalanların her birine 1/2 puan veriliyorsa, turnuvada tam olarak 7 puan toplayan öğrenci sayısı en fazla kaç olabilir? \n\n\na) 14 b) 15 c) 16 d) 17 e) 18 \n\n\nCevap: 15. Turnuvada 7 puan toplayan öğrenci sayısı \\(n\\) olsun. Bu \\(n\\) öğrenci kendi aralarında \\(\\frac{n(n-1)}{2}\\) maç yaptığına ve her maçta toplam 1 puan dağıtıldığına göre, \\(\\frac{n(n-1)}{2} \\le 7n\\) ve buradan \\(n \\le 15\\) elde edilir. \\(n = 15\\) durumu mümkündür: Öğrencileri 15 ve 18 öğrenciden oluşan iki gruba ayıralım. 15 kişilik gruptaki her öğrenci kendisiyle aynı grupta olan tüm öğrencilerle berabere kalıp kalan tüm maçlarını kaybederse bu 15 kişinin tamamı 7 puan toplamış olur.",
"question_image_path": "/content/drive/MyDrive/TUBİTAK_output/parsed_output/cropped_images/Ortaokul Matematik_1_Birinci_Asama_2025/q28_question.png",
"solution_image_path": null,
"inline_image_paths": [
"/content/drive/MyDrive/TUBİTAK_output/parsed_output/cropped_images/Ortaokul Matematik_1_Birinci_Asama_2025/q28_inline_1.png",
"/content/drive/MyDrive/TUBİTAK_output/parsed_output/cropped_images/Ortaokul Matematik_1_Birinci_Asama_2025/q28_inline_2.png",
"/content/drive/MyDrive/TUBİTAK_output/parsed_output/cropped_images/Ortaokul Matematik_1_Birinci_Asama_2025/q28_inline_3.png"
]
},
{
"question_id": "2025-MATM-1-Q29",
"format_id": "FMT_MATH_MID_1_QS",
"question_number": 29,
"day_index": null,
"char_start": 22397,
"char_end": 23075,
"status": "active",
"cancellation_reason": null,
"parent_context": null,
"language_pairing": null,
"question_stem": "Dar açılı bir \\(ABC\\) üçgeninde \\(A\\) köşesinden \\([BC]\\) kenarına inilen yüksekliğin ayağı \\(D\\) olsun. \\(D\\) noktasından \\(AB\\) doğrusuna inilen dikmenin ayağı \\(E\\) olsun. \\(CE\\) ve \\(AD\\) doğrularının kesişim noktası \\(F\\) olmak üzere, \\(|BE| = 9\\), \\(|AE| = 16\\) ve \\(|CD| = 12\\) ise, \\(|AF|\\) kaçtır?",
"options": [
{
"label": "A",
"text": "10"
},
{
"label": "B",
"text": "12"
},
{
"label": "C",
"text": "15"
},
{
"label": "D",
"text": "16"
},
{
"label": "E",
"text": "18"
}
],
"sub_questions": [],
"premises": [],
"has_figure": false,
"has_choices": true,
"visual_references": [
{
"tag": "text",
"bbox": [
144,
535,
835,
622
],
"char_start": 22565,
"char_end": 22621,
"type": "ref_det"
},
{
"tag": "text",
"bbox": [
179,
635,
835,
655
],
"char_start": 22962,
"char_end": 23018,
"type": "ref_det"
}
],
"code_blocks": [],
"latex_blocks": [],
"data_tables": [],
"competitive_programming": null,
"solution": null,
"answer": {
"answer_key": null,
"short_answer": "16.",
"symbolic_answer": null,
"answer_frame_guidelines": null
},
"scoring": {
"scoring_weight": null,
"scoring_logic": null,
"subtask_points": []
},
"topic_metadata": {
"t_code": null,
"discipline": "Geometri",
"section_title": null,
"keywords": [],
"topic_tags": [
"Geometri"
]
},
"provenance": {
"source_pdf": "/content/drive/MyDrive/TUBİTAK/ortaokulmat/Ortaokul Matematik_1_Birinci_Asama_2025/2025.pdf",
"source_mmd": "/content/drive/MyDrive/TUBİTAK/ortaokulmat/Ortaokul Matematik_1_Birinci_Asama_2025/Ortaokul Matematik_1_Birinci_Asama_2025.mmd",
"ocr_engine": "Mathpix-mmd",
"is_source": "combined_booklet"
},
"raw_text": "Dar açılı bir \\(ABC\\) üçgeninde \\(A\\) köşesinden \\([BC]\\) kenarına inilen yüksekliğin ayağı \\(D\\) olsun. \\(D\\) noktasından \\(AB\\) doğrusuna inilen dikmenin ayağı \\(E\\) olsun. \\(CE\\) ve \\(AD\\) doğrularının kesişim noktası \\(F\\) olmak üzere, \\(|BE| = 9\\), \\(|AE| = 16\\) ve \\(|CD| = 12\\) ise, \\(|AF|\\) kaçtır? \n\n\na) 10 b) 12 c) 15 d) 16 e) 18 \n\n\nCevap: 16. \\(AB\\) çap olduğu için \\(BE \\perp AC\\) olur. Öklid teoreminden \\(|BC| = 15\\) ve Pisagor teoreminden \\(|AB| = 20\\) bulunur. Menelaus teoreminden \\(\\frac{|DB|}{|DC|}\\). \\(|CE| \\cdot \\frac{|AF|}{|FB|} = 1\\) olur ve buradan \\(\\frac{|AF|}{|FB|} = 4\\) elde edilir. \\(|AF| + |FB| = 20\\) olduğu için \\(|AF| = 16\\) bulunur.\n\n---",
"question_image_path": "/content/drive/MyDrive/TUBİTAK_output/parsed_output/cropped_images/Ortaokul Matematik_1_Birinci_Asama_2025/q29_question.png",
"solution_image_path": null,
"inline_image_paths": [
"/content/drive/MyDrive/TUBİTAK_output/parsed_output/cropped_images/Ortaokul Matematik_1_Birinci_Asama_2025/q29_inline_1.png",
"/content/drive/MyDrive/TUBİTAK_output/parsed_output/cropped_images/Ortaokul Matematik_1_Birinci_Asama_2025/q29_inline_2.png"
]
},
{
"question_id": "2025-MATM-1-Q30",
"format_id": "FMT_MATH_MID_1_QS",
"question_number": 30,
"day_index": null,
"char_start": 23075,
"char_end": 23775,
"status": "active",
"cancellation_reason": null,
"parent_context": null,
"language_pairing": null,
"question_stem": "\\(33^{33}\\) sayısının, a 8 ile bölümünden kalanı 3 olan kaç tane pozitif böleni vardır?",
"options": [
{
"label": "A",
"text": "289"
},
{
"label": "B",
"text": "306"
},
{
"label": "C",
"text": "450"
},
{
"label": "D",
"text": "510"
},
{
"label": "E",
"text": "578 \n\n\nCevap: 578. \\(33^{33} = 33^{33}11^{33}\\) olduğu için bu sayının herhangi bir pozitif böleni \\(3^{x}11^{y}\\) formundadır. \\(11 \\equiv 3 \\pmod{8}\\) olduğu için, bu sayı \\((\\text{mod } 8)'\\)da \\(3^{x+y}\\) sayısına denktir. 3 sayısının kuvvetleri \\((\\text{mod } 8)'\\)da \\(3,1,3,1,...\\) olarak ilerlediği için \\(x+y\\) tek olmalıdır. Bu durumda ya \\(x\\) çift \\(y\\) tek, ya da \\(x\\) tek \\(y\\) çift olacaktır. \\(x\\) ve \\(y\\) sayıları \\(0,1,...,33\\) değerlerini alabilir, bunların arasında da 17 çift ve 17 tek sayı olduğu için cevap \\(2 \\cdot 17^2 = 578\\) olur."
}
],
"sub_questions": [],
"premises": [],
"has_figure": false,
"has_choices": true,
"visual_references": [],
"code_blocks": [],
"latex_blocks": [],
"data_tables": [],
"competitive_programming": null,
"solution": null,
"answer": {
"answer_key": null,
"short_answer": "578.",
"symbolic_answer": null,
"answer_frame_guidelines": null
},
"scoring": {
"scoring_weight": null,
"scoring_logic": null,
"subtask_points": []
},
"topic_metadata": {
"t_code": null,
"discipline": null,
"section_title": null,
"keywords": [],
"topic_tags": []
},
"provenance": {
"source_pdf": "/content/drive/MyDrive/TUBİTAK/ortaokulmat/Ortaokul Matematik_1_Birinci_Asama_2025/2025.pdf",
"source_mmd": "/content/drive/MyDrive/TUBİTAK/ortaokulmat/Ortaokul Matematik_1_Birinci_Asama_2025/Ortaokul Matematik_1_Birinci_Asama_2025.mmd",
"ocr_engine": "Mathpix-mmd",
"is_source": "combined_booklet"
},
"raw_text": "\\(33^{33}\\) sayısının, a 8 ile bölümünden kalanı 3 olan kaç tane pozitif böleni vardır? \n\n\na) 289 \n\n\nb) 306 \n\n\nc) 450 \n\n\nd) 510 \n\n\ne) 578 \n\n\nCevap: 578. \\(33^{33} = 33^{33}11^{33}\\) olduğu için bu sayının herhangi bir pozitif böleni \\(3^{x}11^{y}\\) formundadır. \\(11 \\equiv 3 \\pmod{8}\\) olduğu için, bu sayı \\((\\text{mod } 8)'\\)da \\(3^{x+y}\\) sayısına denktir. 3 sayısının kuvvetleri \\((\\text{mod } 8)'\\)da \\(3,1,3,1,...\\) olarak ilerlediği için \\(x+y\\) tek olmalıdır. Bu durumda ya \\(x\\) çift \\(y\\) tek, ya da \\(x\\) tek \\(y\\) çift olacaktır. \\(x\\) ve \\(y\\) sayıları \\(0,1,...,33\\) değerlerini alabilir, bunların arasında da 17 çift ve 17 tek sayı olduğu için cevap \\(2 \\cdot 17^2 = 578\\) olur.",
"question_image_path": "/content/drive/MyDrive/TUBİTAK_output/parsed_output/cropped_images/Ortaokul Matematik_1_Birinci_Asama_2025/q30_question.png",
"solution_image_path": null,
"inline_image_paths": []
},
{
"question_id": "2025-MATM-1-Q31",
"format_id": "FMT_MATH_MID_1_QS",
"question_number": 31,
"day_index": null,
"char_start": 23777,
"char_end": 24507,
"status": "active",
"cancellation_reason": null,
"parent_context": null,
"language_pairing": null,
"question_stem": "\\(a\\) ve \\(b\\) pozitif gerçel sayılar olmak üzere, \\(\\frac{(a^2 + 3)(b^3 + 2)(a^4 + 9b^4)}{a^3b^3}\\) ifadesinin alabileceği en küçük değer kaçtır?",
"options": [
{
"label": "A",
"text": "48"
},
{
"label": "B",
"text": "\\(36\\sqrt{3}\\)"
},
{
"label": "C",
"text": "\\(48\\sqrt{2}\\)"
},
{
"label": "D",
"text": "120"
},
{
"label": "E",
"text": "Hiçbiri \n\n\nCevap: \\(36\\sqrt{3}\\). Aritmetik-Geometrik ortalama eşitsizliğinden \n\nequation\n\\[ \n\\begin{aligned}\na^2 + 3 &\\ge 2\\sqrt{3}a \\\\\nb^3 + 1 + 1 &\\ge 3b \\\\\na^4 + 9b^4 &\\ge 6a^2b^2\n\\end{aligned}\n \\]\n\n\nbulunur. Bu eşitsizlikler taraf tarafa çarpılırsa \\((a^2 + 3)(b^3 + 2)(a^4 + 96^4) \\ge 36\\sqrt{3}a^3b^3\\) bulunur. Dolayısıyla \\(\\frac{(a^2 + 3)(b^3 + 2)(a^3 + 96^4)}{a^3b^3}\\) ifadesinin alabileceği en küşük değer \\(36\\sqrt{3}\\) olur. \\(a = \\sqrt{3}\\) ve \\(b = 1\\) olduğunda ise eşitlik durumunu sağlanır."
}
],
"sub_questions": [],
"premises": [],
"has_figure": false,
"has_choices": true,
"visual_references": [
{
"tag": "text",
"bbox": [
144,
133,
835,
191
],
"char_start": 23864,
"char_end": 23920,
"type": "ref_det"
},
{
"tag": "text",
"bbox": [
181,
199,
835,
238
],
"char_start": 24164,
"char_end": 24220,
"type": "ref_det"
},
{
"tag": "text",
"bbox": [
181,
243,
835,
369
],
"char_start": 24318,
"char_end": 24374,
"type": "ref_det"
}
],
"code_blocks": [],
"latex_blocks": [
{
"mode": "display",
"content": "\\[ \n\\begin{aligned}\na^2 + 3 &\\ge 2\\sqrt{3}a \\\\\nb^3 + 1 + 1 &\\ge 3b \\\\\na^4 + 9b^4 &\\ge 6a^2b^2\n\\end{aligned}\n \\]",
"immutable": true,
"sanity_issues": []
}
],
"data_tables": [],
"competitive_programming": null,
"solution": null,
"answer": {
"answer_key": null,
"short_answer": null,
"symbolic_answer": null,
"answer_frame_guidelines": null
},
"scoring": {
"scoring_weight": null,
"scoring_logic": null,
"subtask_points": []
},
"topic_metadata": {
"t_code": null,
"discipline": "Cebir",
"section_title": null,
"keywords": [],
"topic_tags": [
"Cebir"
]
},
"provenance": {
"source_pdf": "/content/drive/MyDrive/TUBİTAK/ortaokulmat/Ortaokul Matematik_1_Birinci_Asama_2025/2025.pdf",
"source_mmd": "/content/drive/MyDrive/TUBİTAK/ortaokulmat/Ortaokul Matematik_1_Birinci_Asama_2025/Ortaokul Matematik_1_Birinci_Asama_2025.mmd",
"ocr_engine": "Mathpix-mmd",
"is_source": "combined_booklet"
},
"raw_text": "\\(a\\) ve \\(b\\) pozitif gerçel sayılar olmak üzere, \\(\\frac{(a^2 + 3)(b^3 + 2)(a^4 + 9b^4)}{a^3b^3}\\) ifadesinin alabileceği en küçük değer kaçtır? \n\n\na) 48 \n\n\nb) \\(36\\sqrt{3}\\) \n\n\nc) \\(48\\sqrt{2}\\) \n\n\nd) 120 \n\n\ne) Hiçbiri \n\n\nCevap: \\(36\\sqrt{3}\\). Aritmetik-Geometrik ortalama eşitsizliğinden \n\nequation\n\\[ \n\\begin{aligned}\na^2 + 3 &\\ge 2\\sqrt{3}a \\\\\nb^3 + 1 + 1 &\\ge 3b \\\\\na^4 + 9b^4 &\\ge 6a^2b^2\n\\end{aligned}\n \\]\n\n\nbulunur. Bu eşitsizlikler taraf tarafa çarpılırsa \\((a^2 + 3)(b^3 + 2)(a^4 + 96^4) \\ge 36\\sqrt{3}a^3b^3\\) bulunur. Dolayısıyla \\(\\frac{(a^2 + 3)(b^3 + 2)(a^3 + 96^4)}{a^3b^3}\\) ifadesinin alabileceği en küşük değer \\(36\\sqrt{3}\\) olur. \\(a = \\sqrt{3}\\) ve \\(b = 1\\) olduğunda ise eşitlik durumunu sağlanır.",
"question_image_path": "/content/drive/MyDrive/TUBİTAK_output/parsed_output/cropped_images/Ortaokul Matematik_1_Birinci_Asama_2025/q31_question.png",
"solution_image_path": null,
"inline_image_paths": [
"/content/drive/MyDrive/TUBİTAK_output/parsed_output/cropped_images/Ortaokul Matematik_1_Birinci_Asama_2025/q31_inline_1.png",
"/content/drive/MyDrive/TUBİTAK_output/parsed_output/cropped_images/Ortaokul Matematik_1_Birinci_Asama_2025/q31_inline_2.png",
"/content/drive/MyDrive/TUBİTAK_output/parsed_output/cropped_images/Ortaokul Matematik_1_Birinci_Asama_2025/q31_inline_3.png"
]
},
{
"question_id": "2025-MATM-1-Q32",
"format_id": "FMT_MATH_MID_1_QS",
"question_number": 32,
"day_index": null,
"char_start": 24509,
"char_end": 25453,
"status": "active",
"cancellation_reason": null,
"parent_context": null,
"language_pairing": null,
"question_stem": "\\(50 \\times 50\\) satranç tahtasının her birim karesi kırmızı ve mavi renklerinden birine boyanmıştır. En az 26 birim karesi kırmızı renkte olan satır sayısı ile en az 26 birim karesi mavi olan sütun sayısının toplamı en fazla kaç olabilir?",
"options": [
{
"label": "A",
"text": "93"
},
{
"label": "B",
"text": "94"
},
{
"label": "C",
"text": "95"
},
{
"label": "D",
"text": "96"
},
{
"label": "E",
"text": "98 \n\n\nCevap: 96. En az 26 birim karesi kırmızı renkte olan sırt sayısı \\(x\\), en az 26 birim karesi mavi renkte olan sütun sayısı \\(y\\) olsun. O zaman tahtada en az \\(26x\\) tane kırmızı ve \\(26y\\) tane mavi birim kare vardır. Buna göre \\(26x + 26y \\le 50^2\\) olmalıdır ve buradan \\(x + y \\le 96\\) bulunur. \\(x + y = 96\\) olacak şekilde örnek bulunur: Satranç tahtasının en sağ iki sütunun tüm birim kareleri kırmızıya boyayalım ve en üst iki satırının kırmızıya boyanmamış tüm birim karelerini maviye boyayalım. Kalan birim kareleri ise satranç tahtası kuralında olduğu\n\n---\ngibi kırmızı ve mavi renklere boyayalım. Bu durumda \\(x + y = 48 + 48 = 96\\) olur."
}
],
"sub_questions": [],
"premises": [],
"has_figure": false,
"has_choices": true,
"visual_references": [
{
"tag": "text",
"bbox": [
144,
383,
833,
419
],
"char_start": 24888,
"char_end": 24944,
"type": "ref_det"
},
{
"tag": "text",
"bbox": [
181,
430,
835,
451
],
"char_start": 25101,
"char_end": 25157,
"type": "ref_det"
},
{
"tag": "text",
"bbox": [
181,
465,
833,
634
],
"char_start": 25200,
"char_end": 25256,
"type": "ref_det"
}
],
"code_blocks": [],
"latex_blocks": [],
"data_tables": [],
"competitive_programming": null,
"solution": null,
"answer": {
"answer_key": null,
"short_answer": "96.",
"symbolic_answer": null,
"answer_frame_guidelines": null
},
"scoring": {
"scoring_weight": null,
"scoring_logic": null,
"subtask_points": []
},
"topic_metadata": {
"t_code": null,
"discipline": null,
"section_title": null,
"keywords": [],
"topic_tags": []
},
"provenance": {
"source_pdf": "/content/drive/MyDrive/TUBİTAK/ortaokulmat/Ortaokul Matematik_1_Birinci_Asama_2025/2025.pdf",
"source_mmd": "/content/drive/MyDrive/TUBİTAK/ortaokulmat/Ortaokul Matematik_1_Birinci_Asama_2025/Ortaokul Matematik_1_Birinci_Asama_2025.mmd",
"ocr_engine": "Mathpix-mmd",
"is_source": "combined_booklet"
},
"raw_text": "\\(50 \\times 50\\) satranç tahtasının her birim karesi kırmızı ve mavi renklerinden birine boyanmıştır. En az 26 birim karesi kırmızı renkte olan satır sayısı ile en az 26 birim karesi mavi olan sütun sayısının toplamı en fazla kaç olabilir? \n\n\na) 93 \n\n\nb) 94 \n\n\nc) 95 \n\n\nd) 96 \n\n\ne) 98 \n\n\nCevap: 96. En az 26 birim karesi kırmızı renkte olan sırt sayısı \\(x\\), en az 26 birim karesi mavi renkte olan sütun sayısı \\(y\\) olsun. O zaman tahtada en az \\(26x\\) tane kırmızı ve \\(26y\\) tane mavi birim kare vardır. Buna göre \\(26x + 26y \\le 50^2\\) olmalıdır ve buradan \\(x + y \\le 96\\) bulunur. \\(x + y = 96\\) olacak şekilde örnek bulunur: Satranç tahtasının en sağ iki sütunun tüm birim kareleri kırmızıya boyayalım ve en üst iki satırının kırmızıya boyanmamış tüm birim karelerini maviye boyayalım. Kalan birim kareleri ise satranç tahtası kuralında olduğu\n\n---\ngibi kırmızı ve mavi renklere boyayalım. Bu durumda \\(x + y = 48 + 48 = 96\\) olur.",
"question_image_path": "/content/drive/MyDrive/TUBİTAK_output/parsed_output/cropped_images/Ortaokul Matematik_1_Birinci_Asama_2025/q32_question.png",
"solution_image_path": null,
"inline_image_paths": [
"/content/drive/MyDrive/TUBİTAK_output/parsed_output/cropped_images/Ortaokul Matematik_1_Birinci_Asama_2025/q32_inline_1.png",
"/content/drive/MyDrive/TUBİTAK_output/parsed_output/cropped_images/Ortaokul Matematik_1_Birinci_Asama_2025/q32_inline_2.png",
"/content/drive/MyDrive/TUBİTAK_output/parsed_output/cropped_images/Ortaokul Matematik_1_Birinci_Asama_2025/q32_inline_3.png"
]
}
],
"global_answer_key": {},
"parent_contexts": [],
"page_images": [
{
"page_index": 0,
"image_path": "/content/drive/MyDrive/TUBİTAK/ortaokulmat/Ortaokul Matematik_1_Birinci_Asama_2025/page_0000/result_with_boxes.jpg"
},
{
"page_index": 1,
"image_path": "/content/drive/MyDrive/TUBİTAK/ortaokulmat/Ortaokul Matematik_1_Birinci_Asama_2025/page_0001/result_with_boxes.jpg"
},
{
"page_index": 2,
"image_path": "/content/drive/MyDrive/TUBİTAK/ortaokulmat/Ortaokul Matematik_1_Birinci_Asama_2025/page_0002/result_with_boxes.jpg"
},
{
"page_index": 3,
"image_path": "/content/drive/MyDrive/TUBİTAK/ortaokulmat/Ortaokul Matematik_1_Birinci_Asama_2025/page_0003/result_with_boxes.jpg"
},
{
"page_index": 4,
"image_path": "/content/drive/MyDrive/TUBİTAK/ortaokulmat/Ortaokul Matematik_1_Birinci_Asama_2025/page_0004/result_with_boxes.jpg"
},
{
"page_index": 5,
"image_path": "/content/drive/MyDrive/TUBİTAK/ortaokulmat/Ortaokul Matematik_1_Birinci_Asama_2025/page_0005/result_with_boxes.jpg"
},
{
"page_index": 6,
"image_path": "/content/drive/MyDrive/TUBİTAK/ortaokulmat/Ortaokul Matematik_1_Birinci_Asama_2025/page_0006/result_with_boxes.jpg"
},
{
"page_index": 7,
"image_path": "/content/drive/MyDrive/TUBİTAK/ortaokulmat/Ortaokul Matematik_1_Birinci_Asama_2025/page_0007/result_with_boxes.jpg"
},
{
"page_index": 8,
"image_path": "/content/drive/MyDrive/TUBİTAK/ortaokulmat/Ortaokul Matematik_1_Birinci_Asama_2025/page_0008/result_with_boxes.jpg"
},
{
"page_index": 9,
"image_path": "/content/drive/MyDrive/TUBİTAK/ortaokulmat/Ortaokul Matematik_1_Birinci_Asama_2025/page_0009/result_with_boxes.jpg"
},
{
"page_index": 10,
"image_path": "/content/drive/MyDrive/TUBİTAK/ortaokulmat/Ortaokul Matematik_1_Birinci_Asama_2025/page_0010/result_with_boxes.jpg"
},
{
"page_index": 11,
"image_path": "/content/drive/MyDrive/TUBİTAK/ortaokulmat/Ortaokul Matematik_1_Birinci_Asama_2025/page_0011/result_with_boxes.jpg"
},
{
"page_index": 12,
"image_path": "/content/drive/MyDrive/TUBİTAK/ortaokulmat/Ortaokul Matematik_1_Birinci_Asama_2025/page_0012/result_with_boxes.jpg"
}
],
"provenance": {
"source_pdf": "/content/drive/MyDrive/TUBİTAK/ortaokulmat/Ortaokul Matematik_1_Birinci_Asama_2025/2025.pdf",
"source_mmd": "/content/drive/MyDrive/TUBİTAK/ortaokulmat/Ortaokul Matematik_1_Birinci_Asama_2025/Ortaokul Matematik_1_Birinci_Asama_2025.mmd",
"ocr_engine": "Mathpix-mmd",
"is_source": "combined_booklet"
}
} |