数学検定 過去問題 準1級(高校3年程度) 問題1. 不等式を解く
https://www.su-gaku.net/suken/support/past_questions/
〔準1級〕1次:計算技能検定
問題1. 次の不等式を解きなさい。
using SymPy
@syms x
eq1 = log(1/2, 2x)
eq2 = log(1/2, x^2-2x+3)
solve(Eq(eq1, eq2)) # [1, 3]
以下はエラーになる。
solve(Ge(eq1, eq2))
図を描いて確定する。
using Plots
plot(eq1, xlims=(0.0, 3.5), ylims=(-3, 5), size=(300, 300), label="eq1")
plot!(eq2, label="eq2")
0 < x < 1, 3 < x