Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
给定区间 [1 .. 6] 中的整数 x,我正在寻找两个数学函数y1,y2因此:
y1
y2
我试过了y1(x) = 7-x,余数或模运算y2(x) = (1+x)%6在哪里。%
y1(x) = 7-x
y2(x) = (1+x)%6
%
该解决方案不适用于x=6. 我得到y1(x) = y2(x) = 1,它不满足条件 2。既不是x=3和x=5。
x=6
y1(x) = y2(x) = 1
x=3
x=5
有没有人看到一个可行的解决方案?
您可以使用例如:
y1=(x % 6) +1 y2=((x+1) % 6) +1
表格功能:
x y1 y2 1 2 3 2 3 4 3 4 5 4 5 6 5 6 1 6 1 2
从技术上讲, y1=1+((x+1) %6) 和 y2=(1+(x+2) %6) 都满足您的要求。
我想虽然你正在考虑某种统一分布的东西(这通常是这种尝试的动机......)。