Qurak

ฟังดูสมเหตุสมผลไม่เท่ากับถูก

หกโจทย์ที่โมเดลภาษาตอบอย่างมั่นใจและผิด วางข้างสิ่งที่เอนจินคำนวณได้

ผู้ช่วยที่ตอบจากรูปแบบจะผิดบ่อยพอที่จะมีผล และผิดในแบบเฉพาะตัว: คำตอบมีรูปร่างที่ถูก อนุกรมมีพจน์แรก ๆ ที่ถูก ปริพันธ์เป็นค่าชื่อดังที่แนบขอบเขตผิดมา การแยกตัวประกอบหยุดตรงจุดที่การมองด้วยตาไปต่อไม่ได้ แต่ละแถวด้านล่างแสดงคำตอบของรูปแบบ พจน์ที่มันพลาด และสิ่งที่เอนจินส่งกลับเมื่อมันคำนวณจริง

หน้านี้ไม่ระบุชื่อโมเดลใด คอลัมน์ซ้ายคือสิ่งที่การจับคู่รูปแบบให้ผลกับโจทย์เหล่านี้โดยทั่วไป และมันจะล้าสมัยทันทีที่โมเดลใดสักตัวเก่งขึ้น คอลัมน์ขวาถูกตรวจสอบซ้ำกับเอนจินในทุกบิลด์ และหน้านี้จะปล่อยออกไปไม่ได้หากมันคลาดเคลื่อน

Series[Tan[x], {x, 0, 9}]

โมเดลภาษา ตอบจากรูปแบบ

x + x^3/3 + 2x^5/15 + 17x^7/315 + 31x^9/2835 + O(x^11)

พจน์ที่ผิด: 31x^9/2835

Qurak คำนวณจริง

SeriesData[x, 0, {1, 0, 1/3, 0, 2/15, 0, 17/315, 0, 62/2835}, 1, 10, 1]

ตรวจสอบกับเอนจินตอนบิลด์

The first four coefficients are common enough to be recalled correctly; the fifth is not. The true coefficient is 62/2835. A series that is right to four terms and wrong at the fifth looks like knowledge and is the shape of a guess.

คำนวณด้วยตัวคุณเอง

Eigenvalues[{{2, 0, 0, 1}, {0, 3, 1, 0}, {0, 1, 3, 0}, {1, 0, 0, 2}}]

โมเดลภาษา ตอบจากรูปแบบ

{4, 2, 3, 1} - or, from a sign slip in the characteristic polynomial, {4, 3, 2, -1}

พจน์ที่ผิด: -1

Qurak คำนวณจริง

{4, 3, 2, 1}

ตรวจสอบกับเอนจินตอนบิลด์

A 4x4 characteristic polynomial has enough terms for one sign to go wrong on the way to the answer, and a wrong sign produces a wrong eigenvalue that still looks like one. Here the matrix decouples into two 2x2 blocks; the engine finds all four exactly rather than approximating the quartic.

คำนวณด้วยตัวคุณเอง

Integrate[Sin[x]/x, {x, 0, Infinity}]

โมเดลภาษา ตอบจากรูปแบบ

Pi - the integral over the whole real line, quoted for the half line

พจน์ที่ผิด: Pi

Qurak คำนวณจริง

Pi/2

ตรวจสอบกับเอนจินตอนบิลด์

The Dirichlet integral is famous enough to be recalled, and famous enough to be recalled with the wrong limits: the value over (-inf, inf) is Pi, over (0, inf) it is Pi/2. Both facts are true; attaching the right one to the limits written down is the computation.

คำนวณด้วยตัวคุณเอง

FactorInteger[987654321987]

โมเดลภาษา ตอบจากรูปแบบ

{{3, 1}, {329218123329, 1}} - the cofactor declared prime by inspection

พจน์ที่ผิด: 329218123329 declared prime

Qurak คำนวณจริง

{{3, 1}, {329281, 1}, {999809, 1}}

ตรวจสอบกับเอนจินตอนบิลด์

Dividing out the 3 is easy; deciding whether the twelve-digit cofactor is prime is not something inspection can do, so a plausible answer stops there and calls it prime. The engine factors it, and it is not.

คำนวณด้วยตัวคุณเอง

PowerMod[3, 1000000, 1000000007]

โมเดลภาษา ตอบจากรูปแบบ

1 - by Fermat's little theorem, misapplied: 3^(p-1) is 1 mod p, but the exponent here is not p-1

พจน์ที่ผิด: 1

Qurak คำนวณจริง

64935414

ตรวจสอบกับเอนจินตอนบิลด์

The theorem is real and the shape of the problem invites it, but 10^6 is not 10^9+6. The correct residue is reached only by actually reducing, which is a few hundred squarings - trivial for an engine and impossible by inspection.

คำนวณด้วยตัวคุณเอง

Sum[1/n^4, {n, 1, Infinity}]

โมเดลภาษา ตอบจากรูปแบบ

Pi^4/96, or Pi^4/45 - a neighbour of the right constant

พจน์ที่ผิด: Pi^4/96

Qurak คำนวณจริง

Pi^4/90

ตรวจสอบกับเอนจินตอนบิลด์

zeta(2) = Pi^2/6 is remembered by everyone; zeta(4) is remembered as 'Pi^4 over something', and the something is where a recalled answer diverges from a computed one. 90 is right; 96 and 45 both appear in nearby identities and are both wrong here.

คำนวณด้วยตัวคุณเอง

ผู้ช่วยของคุณส่งงานคณิตศาสตร์ให้เอนจินได้

Qurak เป็นเซิร์ฟเวอร์ MCP เมื่อเชื่อมต่อแล้ว Claude, Cursor, VS Code หรือไคลเอนต์ MCP ใดก็ตามจะคำนวณแทนการเดา - และเปิดใช้ในแพ็กเกจฟรี หรือลองหนึ่งนิพจน์ตรงนี้เลย โดยไม่ต้องมีบัญชี

5 ครั้งต่อชั่วโมงแบบไม่ระบุตัวตน งบเวลา 1 วินาที เฉพาะงานคณิตศาสตร์ บัญชีจะยกเลิกข้อจำกัดทั้งสาม