INTERVIEW PREP

数学与非代码面试题

覆盖数学、概率、统计、脑筋急转弯、机器学习和金融。这里负责筛选和进入单题;编程题使用独立的 LeetCode 式 coding lab。

题目
4169
领域
8
当前筛选
87

1 / 5

非代码面试题

显示 20 / 87 道匹配题目

答题状态:未尝试未正确已正确
2046One Newton Step for a Log-Balance Equation 1A smooth calibration map mixes a linear term and a logarithmic correction. Apply one Newton step to solve x + 2 ln x = 3 starting from x 0 = 1.数学简单数值题未尝试免费2047Derive the Newton Update for x + a ln x = b 2Derive the Newton iteration for solving x + a ln x = b on x>0.数学简单derivation未尝试免费2048One Newton Step for a Reciprocal Balance Equation 3The desk solves a positive-state equation with both direct and reciprocal terms. Apply one Newton step to solve x + 2/x = 4 starting from x 0 = 2.数学中等数值题未尝试免费2049Why the Reciprocal Equation Needs x_0^2 != a 4For Newton on x + a/x = b, why must the current iterate satisfy x n 2 != a?数学中等derivation未尝试免费2050Derive the Newton Update for x + a/x = b 5Derive the Newton iteration for solving x + a/x = b.数学困难derivation未尝试免费2051One Newton Step for an Exponential Calibration Equation 6A smooth model combines an exponential term and a linear correction. Apply one Newton step to solve exp(x) + 1x = 3 starting from x 0 = 0.数学简单数值题未尝试免费2052Derive the Newton Update for exp(x) + cx = d 7Derive the Newton iteration for solving exp(x) + cx = d.数学中等derivation未尝试免费2053When the Exponential Equation Is Safe for Newton 8If c>0 in exp(x)+cx=d, why is the Newton denominator never zero?数学中等derivation未尝试免费2054Derive the Newton Update for a Two-Cashflow Yield Equation 9For f(y)=A/(1+y)+B/(1+y) 2-P, derive one Newton update.数学中等derivation未尝试免费2055Why the Bond-Yield Newton Denominator Looks Like a Duration Term 10Why does the derivative in a bond-yield Newton step come with negative discounted cash-flow terms?数学困难derivation未尝试免费2056One Newton Step for a Two-Cashflow Yield 11A simple bond equation is solved through one Newton iteration rather than repeated trial and error. Solve 4/(1+y) + 104/(1+y) 2 = 100 by one Newton step starting from y 0 = 0.05.数学简单数值题未尝试免费2057If Newton Starts at the Exact Root 12What happens to one Newton step if the current iterate x n already satisfies f(x n)=0?数学简单derivation未尝试免费2058Second Log-Balance Newton Step 13The starting guess is already positive and somewhat close, so a single Newton step is informative. Apply one Newton step to solve x + 1 ln x = 2 starting from x 0 = 2.数学中等数值题未尝试免费2059Newton Convergence Check From a Nonzero Derivative 14Near a simple root r with f'(r) != 0, what local rate does Newton's method typically enjoy?数学困难derivation未尝试免费2060Newton Versus Fixed-Point Iteration 15Why does Newton usually converge in fewer iterations than a naive fixed-point map when both behave well near the same root?数学困难derivation未尝试免费2061Why a Damped Newton Step Can Help 16Why might a desk replace the full Newton step by x n+1 =x n - alpha f(x n)/f'(x n) with 0<alpha<1?数学简单derivation未尝试免费2062Why Positive Starting Yields Matter 17In a bond-yield Newton solve with terms 1/(1+y) k, why do desks usually insist on starting from y>-1?数学中等derivation未尝试免费2063What the Newton Residual Measures 18What does a small value of |f(x n)| tell you in a Newton solve?数学中等derivation未尝试免费2064What the Newton Step Size Measures 19What does a small correction |x n+1 -x n| suggest in a Newton iteration?数学困难derivation未尝试免费2065Why Damping Matters in Practice 20Why can a full Newton step be dangerous in production calibration even if the local theory is excellent near the root?数学困难essay未尝试面试订阅