X



風俗嬢ですが再起して頑張り医学部に合格しました [転載禁止]©2ch.net
レス数が900を超えています。1000を超えると表示できなくなるよ。
0001卵の名無しさん
垢版 |
2015/04/06(月) 10:00:54.93ID:oOKEFOzJ0
風俗板にて


風俗辞めた後に医学部に合格したと嘘をついて袋叩きにされてる様子
http://aoi.bbspink.com/test/read.cgi/club/1424999821/724
760 :名無しさん@ピンキー:2015/04/03(金) 17:34:23.58 ID:hEZXryQ10
>>724
アホか、お前
>医者になった嬢も居る、
そんなの絶対いないわ、ボケ。
お前は医者と看護師の区別もつかんのか(大笑)
0895卵の名無しさん
垢版 |
2017/08/12(土) 08:44:18.41ID:8RvqV9tp
> LR2snsp = function(pLR,nLR){
+ c(sensitivity=pLR*(1-nLR)/(pLR-nLR),specificity=(pLR-1)/(pLR-nLR))
+ }
> LR2snsp(3.6,0.6)
sensitivity specificity
0.4800000 0.8666667
0896卵の名無しさん
垢版 |
2017/08/12(土) 11:03:25.31ID:8RvqV9tp
imply <- function(x,y) !x || y
imply2 <- function(xy) !(x&&!y)

eqv <- function(x,y) (!x||y)&&(!y||x)
eqv2 <- function(x,y) imply(x,y)&&imply(y,x)
0897卵の名無しさん
垢版 |
2017/08/12(土) 19:40:38.53ID:aQY88bgj
> library('gtools')
> imply <- function(x,y) !x || y
> f1 <- function(P,Q) imply(imply(P,Q)&&P,Q)
> f1_1 <- function(pm) f1(pm[1],pm[2])
> pm2=permutations(2,2,v=c(T,F),re=TRUE) ; pm2
[,1] [,2]
[1,] FALSE FALSE
[2,] FALSE TRUE
[3,] TRUE FALSE
[4,] TRUE TRUE
> for(i in 1:4) print(f1_1(pm2[i,]))
[1] TRUE
[1] TRUE
[1] TRUE
[1] TRUE
0899卵の名無しさん
垢版 |
2017/08/14(月) 04:36:06.94ID:e8So+UKW
# Lukasiewicz

library('gtools')
pm2=permutations(2,2,v=c(T,F),re=TRUE) ; pm2
pm3=permutations(2,3,v=c(T,F),re=TRUE) ; pm3

imply <- function(x,y) !x || y

# L1 : A->(B->A)
f <- function(A,B) imply(A,imply(B,A))
f1 <- function(pm) f(pm[1],pm[2])
for(i in 1:4) print(f1(pm2[i,]))

# L2 : (A->(B->C))->((A->B)->(A->C))
f <- function(A,B,C) imply(imply(A,imply(B,C)),imply(imply(A,B),imply(A,C)))
f1 <- function(pm) f(pm[1],pm[2],pm[3])
for(i in 1:8) print(f1(pm3[i,]))

# L3 : (!B->!A) -> (A->B)
f <- function(A,B,C) imply(imply(!B,!A),imply(A,B))
f1 <- function(pm) f(pm[1],pm[2],pm[3])
for(i in 1:8) print(f1(pm3[i,]))

# modus ponens A & (A->B) -> B
f <- function(A,B) imply(A && imply(A,B),B)
f1 <- function(pm) f(pm[1],pm[2])
for(i in 1:4) print(f1(pm2[i,]))
0900卵の名無しさん
垢版 |
2017/08/14(月) 05:04:21.09ID:e8So+UKW
> # L1 : A->(B->A)
> f <- function(A,B) imply(A,imply(B,A))
> f1 <- function(pm) f(pm[1],pm[2])
> for(i in 1:4) print(f1(pm2[i,]))
[1] TRUE
[1] TRUE
[1] TRUE
[1] TRUE
>
> # L2 : (A->(B->C))->((A->B)->(A->C))
> f <- function(A,B,C) imply(imply(A,imply(B,C)),imply(imply(A,B),imply(A,C)))
> f1 <- function(pm) f(pm[1],pm[2],pm[3])
> for(i in 1:8) print(f1(pm3[i,]))
[1] TRUE
[1] TRUE
[1] TRUE
[1] TRUE
[1] TRUE
[1] TRUE
[1] TRUE
[1] TRUE
>
0901卵の名無しさん
垢版 |
2017/08/14(月) 05:04:38.12ID:e8So+UKW
> # L3 : (!B->!A) -> (A->B)
> f <- function(A,B,C) imply(imply(!B,!A),imply(A,B))
> f1 <- function(pm) f(pm[1],pm[2],pm[3])
> for(i in 1:8) print(f1(pm3[i,]))
[1] TRUE
[1] TRUE
[1] TRUE
[1] TRUE
[1] TRUE
[1] TRUE
[1] TRUE
[1] TRUE
>
> # modus ponens A & (A->B) -> B
> f <- function(A,B) imply(A && imply(A,B),B)
> f1 <- function(pm) f(pm[1],pm[2])
> for(i in 1:4) print(f1(pm2[i,]))
[1] TRUE
[1] TRUE
[1] TRUE
[1] TRUE
>
0903卵の名無しさん
垢版 |
2017/08/14(月) 18:12:27.32ID:0P+G5Pt+
L1 : p→(q→p)
L2 : (p→(q→r))→((p→q)→(p→r))
L3 : (¬q→¬p) → (p→q)

x→xの証明
L1,L2でp=x,q=x→x,r=xとすれば
x→((x→x)→x)
(x→((x→x)→x)) → ((x→(x→x))→(x→x))
ゆえに
((x→(x→x))→(x→x))
L1により(x→(x→x)は常に成り立つからx→x

¬a→(a→b)の証明
L1にp=¬a,q=¬bとして
¬a→(¬b→¬a)
¬aを仮定して
¬b→¬a
L3によりこれはa→b
ゆえに¬a→(a→b)

a=¬A, b=¬¬¬Aとすると
¬¬A→(¬A→¬¬¬A)
L3から
(¬A→¬¬¬A)→(¬¬A→A)
ゆえに
¬¬A→(¬¬A→A)
L2でp=¬¬A,q=¬¬A,r=Aとすれば
(¬¬A→(¬¬A→A))→((¬¬A→¬¬A)→(¬¬A→A))
なので
(¬¬A→¬¬A)→(¬¬A→A)
¬¬A→¬¬Aも証明済み
¬¬A→A
0904卵の名無しさん
垢版 |
2017/08/15(火) 19:15:41.28ID:wxy3tol0
L1 : p→(q→p)
L2 : (p→(q→r))→((p→q)→(p→r))
L3 : (¬q→¬p) → (p→q)

x→xの証明
L1,L2でp=x,q=x→x,r=xとすれば
x→((x→x)→x)
(x→((x→x)→x)) → ((x→(x→x))→(x→x))
ゆえに
((x→(x→x))→(x→x))
L1により(x→(x→x)は常に成り立つからx→x (1)

¬a→(a→b)の証明
L1にp=¬a,q=¬bとして
¬a→(¬b→¬a)
¬aを仮定して
¬b→¬a
L3によりこれはa→b
ゆえに¬a→(a→b) (2)

(2)に a=¬A, b=¬¬¬Aとすると
¬¬A→(¬A→¬¬¬A)
L3にp=¬¬A, q=Aとすると
(¬A→¬¬¬A)→(¬¬A→A)
ゆえに
¬¬A→(¬¬A→A)
L2でp=¬¬A,q=¬¬A,r=Aとすれば
(¬¬A→(¬¬A→A))→((¬¬A→¬¬A)→(¬¬A→A))
なので
(¬¬A→¬¬A)→(¬¬A→A)
¬¬A→¬¬A ∵ (1) x=¬¬A
¬¬A→A
0906卵の名無しさん
垢版 |
2017/08/16(水) 22:41:08.82ID:YpUilfDc
fw=3 fb=7 mw=6 mb=1

f>m : fw+fb=10 > mw+mb=7
w> b : fw+mw=9> fb+mb=8

fb>mw>fw>mb
0907卵の名無しさん
垢版 |
2017/08/18(金) 08:26:03.16ID:mpC3PWF+
シンプソンのパラドックス

ある疾患の治癒率

     軽症  重症
A療法  10/10  10/90
B療法  70/90  0/10

A療法の方が軽症・重症とも成績がよいが
総数ではB療法の方が成績がよい。
0908卵の名無しさん
垢版 |
2017/08/18(金) 14:30:16.04ID:mpC3PWF+
# P->(Q->R) |- Q->(P->R)
pm3=matrix(c(T,T,T,
T,T,F,
T,F,T,
T,F,F,
F,T,T,
F,T,F,
F,F,T,
F,F,F),ncol=3)

colnames(pm3)=c('P','Q','R'); pm3
imply <- function(x,y) !(x&&!y)

f <- function(P,Q,R) imply(imply(P,imply(Q,R)),imply(Q,imply(P,R)))
f1 <- function(pm) f(pm[1],pm[2],pm[3])
result=logical(8)
for(i in 1:8) result[i]=f1(pm3[i,])
cbind(pm3,result)
0909卵の名無しさん
垢版 |
2017/08/21(月) 20:09:52.08ID:uqi12/Ec
# 馬鹿は死ななきゃ治らない から 馬鹿は死ねば治る と演繹できるか?
# P->(!Q->!R) |- P->(Q->R) は 恒真式か?

pm3=matrix(c(T,T,T,
T,T,F,
T,F,T,
T,F,F,
F,T,T,
F,T,F,
F,F,T,
F,F,F),ncol=3)

colnames(pm3)=c('P','Q','R'); pm3

imply <- function(x,y) !(x&&!y)

f <- function(P,Q,R) imply(imply(P,imply(!Q,!R)),imply(P,imply(Q,R)))
f1 <- function(pm) f(pm[1],pm[2],pm[3])
result=logical(8)
for(i in 1:8) result[i]=f1(pm3[i,])
cbind(pm3,result)
0910卵の名無しさん
垢版 |
2017/08/21(月) 20:27:27.65ID:uqi12/Ec
# 馬鹿は死ななきゃ治らない から 馬鹿は死ねば治る と演繹できるか?
# P->(!Q->!R) |- P->(Q->R) は 恒真式か?

pm3=matrix(c(T,T,T,
T,T,F,
T,F,T,
T,F,F,
F,T,T,
F,T,F,
F,F,T,
F,F,F),byrow=TRUE,ncol=3)

colnames(pm3)=c('P','Q','R'); pm3
imply <- function(x,y) !(x&&!y)

f <- function(P,Q,R) imply(imply(P,imply(!Q,!R)),imply(P,imply(Q,R)))
f1 <- function(pm) f(pm[1],pm[2],pm[3])
result=logical(8)
for(i in 1:8) result[i]=f1(pm3[i,])
cbind(pm3,result)

> cbind(pm3,result)
P Q R result
[1,] TRUE TRUE TRUE TRUE
[2,] TRUE TRUE FALSE FALSE
[3,] TRUE FALSE TRUE TRUE
[4,] TRUE FALSE FALSE TRUE
[5,] FALSE TRUE TRUE TRUE
[6,] FALSE TRUE FALSE TRUE
[7,] FALSE FALSE TRUE TRUE
[8,] FALSE FALSE FALSE TRUE
0911卵の名無しさん
垢版 |
2017/08/22(火) 07:20:25.27ID:puYXwZ/J
d=3000*12
n=10
P=numeric(n)
for(I in 1:n) P[i+1]=P[i]+d
sum(P)
0912卵の名無しさん
垢版 |
2017/08/22(火) 07:22:47.54ID:puYXwZ/J
d=3000*12
n=10
P=numeric(n)
for(i in 2:n) P[i]=P[i-1]+d
sum(P)
0913卵の名無しさん
垢版 |
2017/08/22(火) 19:53:39.66ID:puYXwZ/J
> log(0.5)/log(0.9)
[1] 6.578813
> -log(0.9)
[1] 0.1053605
0914卵の名無しさん
垢版 |
2017/08/23(水) 12:08:10.12ID:wXDeHTEL
N0=3
N1=2
T1=3

-log((N1/N0)/T1)

N <- function(t) exp(-t*log(T1/(N1/N0)))
N(3)
N=1
-log(N)/log(T1/(N1/N0))
0915卵の名無しさん
垢版 |
2017/08/24(木) 18:57:45.92ID:9Lrl89sj
¬¬A→Aの証明
公理L1 : p→(q→p)
公理L2 : (p→(q→r))→((p→q)→(p→r))
公理L3 : (¬q→¬p) → (p→q)
modus ponens(推論規則) A, A->B ⇒ B
(1)x→xの証明
L1,L2でp=x,q=x→x,r=xとすれば
x→((x→x)→x)
(x→((x→x)→x)) → ((x→(x→x))→(x→x))
ゆえに
((x→(x→x))→(x→x))
L1により(x→(x→x)は常に成り立つからx→x (1*)
(2)¬a→(a→b)の証明
L1にp=¬a,q=¬bとして
¬a→(¬b→¬a)
¬aを仮定して
¬b→¬a
L3によりこれはa→b
ゆえに¬a→(a→b) (2*)
(2*)に a=¬A, b=¬¬¬Aとすると
¬¬A→(¬A→¬¬¬A)
L3にp=¬¬A, q=Aとすると
(¬A→¬¬¬A)→(¬¬A→A)
ゆえに
¬¬A→(¬¬A→A)
L2でp=¬¬A,q=¬¬A,r=Aとすれば
(¬¬A→(¬¬A→A))→((¬¬A→¬¬A)→(¬¬A→A))
なので
(¬¬A→¬¬A)→(¬¬A→A)
¬¬A→¬¬A ∵ (1*) x=¬¬A
¬¬A→A
0916卵の名無しさん
垢版 |
2017/08/26(土) 15:06:02.46ID:nVCGhxGf
公理系Kにおいてある論理式Aとその否定¬AがいずれもKで証明可能であるときKは矛盾するといい、そうしたAが存在しないときにKは無矛盾であるという。

Kが無矛盾であるならば、Kに証明可能でない論理式が存在する。
Kに証明可能でない論理式が存在するならばKは無矛盾である

¬A→(A→B)がKで証明可能であることが前提。
0918卵の名無しさん
垢版 |
2017/09/05(火) 19:42:13.24ID:HIjIfV04
## N*A0*r*(1+r)^N/((1+r)^N-1)
.A0=3*10^8
.M=10^6
.N=35*12
Total <- function(r,A0=.A0,N=.N) N*A0*r*(1+r)^N/((1+r)^N-1)
rr=seq(0,0.04,by=0.001)
options(scipen = 10)
plot(rr,sapply(rr,function(r) Total(r/12,A0,N)),type='l',lwd=2, ann=FALSE)
abline(h=.M*.N,lty=3)
uniroot(function(x) Total(x/12,.A0,.N)-.M*.N, c(0.001,0.1))
0919卵の名無しさん
垢版 |
2017/09/18(月) 14:05:02.10ID:uHJ1bOWI
N=11 # 元数
I=1:N
.Y=sample(I,N) ; .Y # 1,2,..,Nを.Y[1],Y.[2],..,.Y[N]に置換

tikan <- function(X,Y=.Y){ # X:置換される配列
n=length(X)
Z=rep(NA,n)
I=1:n
for(i in 1:n){
j <- which(I==X[i])
Z[i] <- Y[j]
}
return(Z) # 置換後の配列を返す
}

## 循環したらやめる
z=matrix(1:N,nrow=1)
z[1,]=tikan(I)
for(i in 1:N^2){
if(!prod(z[i,]==I)){
z=rbind(z,tikan(z[i,]))
}
}
z
0920卵の名無しさん
垢版 |
2017/09/18(月) 14:34:55.61ID:uHJ1bOWI
tikan2 <- function(X,Y){ # Y→Xの順に置換
n=length(X)
Z=rep(NA,n)
I=1:n
for(i in 1:n){
j <- which(I==X[i])
Z[i] <- Y[j]
}
return(Z)
}
## 可換則は不成立
tikan2(c(3,2,1,4),c(1,3,2,4))
tikan2(c(1,3,2,4),c(3,2,1,4))

## 結合則は成立
N=11
I=1:N

y1=sample(I,N) ; y1
y2=sample(I,N) ; y2
y3=sample(I,N) ; y3

tikan2(y3,tikan2(y2,y1))
tikan2(tikan2(y3,y2),y1)
0921卵の名無しさん
垢版 |
2017/09/18(月) 22:34:49.91ID:uHJ1bOWI
ユークリッドの互除法

a, b は自然数で a ≠ 0 とする。 b を a で割った商を q、剰余を r とすると

b = qa + r

今、d0 を a と r の両方を割り切る自然数とする。
a=d0*a0 r=d0*r0
b=q*d0*a0+d0*r0=d0*(q*a0+r0)
a と r の公約数はすべてb と aの公約数である。

逆に、d1 を b と a の両方を割り切る自然数とする。
b=d1*b1 a=d1*a1
d1*b1=q*d1*a1+r
r=d1*b1-q*d1*a1=d1*(b1-q*a1)
b と a の公約数はすべてa と r の公約数である。
したがって、b と a の公約数全体の集合は a と r の公約数全体の集合に等しい。
ゆえに b と a の最大公約数は a と r の最大公約数。
0922卵の名無しさん
垢版 |
2017/09/18(月) 23:04:28.11ID:uHJ1bOWI
8x+11y=1 の解を求める。
ユークリッドの互除法
11=8?1+3
8=3?2+2
3=2?1+1

1=3-2*1
=3-(8-3*2)*1
=(11-8*1)-(8-3*2)*1
=(11-8*1)-(8-(11-8*1)*2)*1 (∵3=11-8*1)
=(b-a*1)-(a-(b-a*1)*2)*1 where a=8,b=11
=(b-a)-(a-2(b-a))
=b-a-(a-2b+2a)
=b-a-a+2b-2a
=3b-4a
=-4a+3b
=8*(-4)+11*(3)
0923卵の名無しさん
垢版 |
2017/09/19(火) 20:48:26.81ID:qmlK0AOE
遠くへ行くぞ、寒い僻地だ 19×19=361
360=20*18=(19+1)*(19-1)=19^2-1
嫌々A V、ミニシアター 18×18=324
9*2*9*2=81*4
嫌だ特訓、最初がつらい 18×19=342
18*(20-1)=360-18
いないぞいないぞ、通訳、いない 17×17=289
100+140+49
田舎は、嫌じゃ、去れど虚しい 17×18=306
100+150+56
田舎は、特別、ミニ、短い 17×19=323
(18-1)*(18+1)=18^2-1=324-1
いろいろあります、肉体ごろり 16×16=256
2 4 8 16 32 64 128 256
ひろいな海原、船乗り、にやり 16×17=272
100+130+42
ヒーロー、嫌がる、ツッパリ野郎 16×18=288
(4^2)*(3^2*2)=(3*4)^2*2=12^2*2=144*2
彩り特注、されど失敗 16×19=304
100+150+54
いい子だ、いい子だ、夫婦で拷問 15×15=225
(10*x+ a)*(10*x+10-a)=100*x*(x+1) +a*(10-a),200+5*5
いい子の色気、強まる性欲 15×16=240
(30/2)*2*8=30*8
いい子が、いいな、富豪が強奪 15×17=255
(16-1)*(16+1)=256-1
いい子も嫌がる、不慣れな先生 15×18=270
(30/2)*2*9
いい子が得意、ニヤリでゴックン 15×19=285
15*(20-1)=300-15
年寄り、一緒でひと苦労 14×14=196
(10+4)^2=100+2*40+16
0924卵の名無しさん
垢版 |
2017/09/19(火) 20:49:09.86ID:qmlK0AOE
歳よりいい子だ、不当な評価 14×15=210
7*2*(30/2)=7*30
年寄り、色ぼけ、夫婦で夜這い 14×16=224
(10*x+ a)*(10*x+10-a)=100*x*(x+1) +a*(10-a), 200+4*6
年寄り、田舎は、風俗さっぱり 14×17=238
100+10*(4+7)+28
年寄り嫌がり、都合が、つかん 14×18=252
(16-2)*(16+2)=16^2-2^2=256-4
年寄りが逝く、風呂は向かいへ 14×19=266
14*(20-1)=280-14, 100+(4+9)*10+4*9
悲惨だ倒産、一旦、無給 13×13=169
(10+3)^2=100+2*3*10+3^2=100+60+9
父さん、投資が、一夜でつぶれる 13×14=182
100+10*(3+4)+12=100+70+12
倒産以後、特段ごねる 13×15=195
(14-1)*(14+1)=14^2-1=256-1, 100+80+15
父さん 色キチ、庭で果てる 13×16=208
100+90+18
父さん い ない が、普通の一家 13×17=221
(10*x+ a)*(10*x+10-a)=100*x*(x+1) +a*(10-a), 200+3*7
倒産嫌がり、兄さん死んだ 13×18=234
100+110+24
父さん特急で、西へ長旅 13×19=247
13*(20-1)=260-13
いつもいつも、医師が呼ばれる 12×12=144
100+40+4
いつもの意味で 一人でゴスロリ 12×13=156
(10+2)*(10+3)=100+(2+3)*10+2*3
いつも年明け、いろはカルタ 12×14=168
(13-1)*(13+1)=169-1
いつもいい子だ、否応なし 12×15=180
6*2*(30/2)
0925卵の名無しさん
垢版 |
2017/09/19(火) 20:49:35.05ID:qmlK0AOE
いつもの色が、一気に変わる 12×16=192
100+80+16, (14-2)*(14+2)=14^2-2^2=196-4
いつもいないぞ、庭で呼び出し 12×17=204
(10+2)*(10+7)=100+(2+7)*10+14=100+90+14
いつも嫌がる、ツインの娘 12×18=216
(10*x+ a)*(10*x+10-a)=100*x*(x+1) +a*(10-a), 200+2*8
いつも特だし、不二家のペコちゃん 12×19=228
12*(20-1)=240-12, 100+110+18

> outer(11:19,11:19,'*')
[,1] [,2] [,3] [,4] [,5] [,6] [,7] [,8] [,9]
[1,] 121 132 143 154 165 176 187 198 209
[2,] 132 144 156 168 180 192 204 216 228
[3,] 143 156 169 182 195 208 221 234 247
[4,] 154 168 182 196 210 224 238 252 266
[5,] 165 180 195 210 225 240 255 270 285
[6,] 176 192 208 224 240 256 272 288 304
[7,] 187 204 221 238 255 272 289 306 323
[8,] 198 216 234 252 270 288 306 324 342
[9,] 209 228 247 266 285 304 323 342 361
0926卵の名無しさん
垢版 |
2017/09/24(日) 09:42:14.05ID:vQO8g+Lx
f=c(198,29,19,12,9,7,7,6,5,6,6,7,7,7,8,9,11,12,13,14,16,19,22,24,25,25,25,25,25,26,28,29,31,34,37,41,45,48,50,54,59,66,72,78,84,92,101,112,123,136,149,162,175,186,196,207,220,237,256,275,294,313,334,360,
389,423,463,504,547,595,649,707,776,855,940,1043,1164,1308,1479,1667,1874,2102,2363,2651,2955,3265,3567,3874,4186,4484,4731,4908,5039,5067,4936,4635,4209,3697,3139,2574,2037,1554,1141,805,545,846)
m=c(194,31,21,14,10,9,9,8,7,7,7,7,8,10,13,17,21,26,31,38,44,48,50,51,51,51,53,53,54,56,57,58,60,63,66,70,74,79,83,89,97,106,116,127,140,155,171,190,211,233,255,278,302,328,359,395,434,478,525,572,622,
678,741,813,890,973,1062,1148,1233,1323,1419,1522,1633,1752,1874,2014,2176,2357,2553,2762,2985,3221,3459,3680,3875,4031,4123,4156,4123,4023,3874,3643,3349,3006,2629,2235,1843,1470,1131,837,593,401,258,157,89,90)
LE <-function(ndx,Y,N0=10^5){
n=length(ndx)
lx=numeric(n)
lx[1]=N0
for(i in 1:(n-1))
lx[i+1] <- lx[i] - ndx[i]
nqx=ndx/lx
nLx=numeric(n)
for(i in 1:n)
nLx[i] <- mean(c(lx[i],lx[i+1]))
nLx[n]=0
Tx=rev(cumsum(rev(nLx)))
le=Tx/lx
return(round(le[Y+1],1))
}
LE(f,96)
LE(m,100)
0927卵の名無しさん
垢版 |
2017/10/02(月) 15:49:54.52ID:vjZYWRsF
拡散希望!

ド底辺特殊シリツ医大卒が裏口入学の存在を肯定しております。
やはり母校の事情に詳しいんだねw

http://imagizer.imageshack.com/img923/7955/w1bWeN.jpg

>ガチの裏?なんて噂されてたけど、1回生から留年繰り返して、ついていけず、 
>自ら辞めていったのが何人かいたってよ    👀
Rock54: Caution(BBR-MD5:f70dfdc711a7c6ae6accccb939f27fbf)
0928innuendo ◆kCkk5BVA12
垢版 |
2017/10/06(金) 20:24:30.06ID:SvcmNQwz
http://imagizer.imageshack.com/img923/7955/w1bWeN.jpg
を題材にごく普通の人間に質問してみよう。

Xの先輩Yは医師である。
Yは真正の裏口入学(ガチの裏)と評価される学生Zを知っている。
Zの入学した大学をガチ裏医大と呼ぶことにする。
Zが1回生から留年を繰り返すことを知っているのでYとZは同期入学であると思われる。

ここで問題:Xの入学した大学はどこか?
0929innuendo ◆kCkk5BVA12
垢版 |
2017/10/12(木) 20:48:29.90ID:IVfk5sKl
pay = function(income86_172,u0=0) income86_172 - (320900 + 0.4084*(income86_172-860000)) - u0
salary=function(x) uniroot(pay,u0=x,c(860000,1720000))$root
0931innuendo ◆kCkk5BVA12
垢版 |
2017/10/18(水) 08:45:25.87ID:88awxqLG
It is common knowledge among doctors and patients,

Do-Teihen(exclusively bottom-leveled medical school) graduates mean morons who bought their way to Gachi'Ura medical school.

http://imagizer.imageshack.com/img922/4879/9NeDhL.jpg


Three laws of Do-Teihen Medical School, currently called Gachi'Ura by its graduates.

1: It is not the bottom medical school but its enrollee that is despicable, which deserves to be called a bona fide moron beyond redemption.

2: The graduates of Do-Teihen are so ashamed that none of them dare to mention their own alma mater.

3: The Do-Teihen graduates are so ashamed of having bought their way into the exclusively bottom-leveled medical school
that they tend to call a genuine doctor a charlatan who elucidates their imbecility.
0932卵の名無しさん
垢版 |
2017/10/18(水) 21:15:09.07ID:r7jfJx+N
>>94
(revised)

I tried to translate the core portion of the historical message,
any revisional advice to this tentative translation is welcome.

http://imagizer.imageshack.com/img922/4879/9NeDhL.jpg

There had been NOT a single classmate who chose willingly against his/her common sense to go to the Do-Teihen(exclusively bottom-leveled medical school, currently also known as Gachi'Ura),
which would have cost outrageous money and its graduates are destined to be called Uraguchi morons who bought thier way into the Do-Teihen, by thier colleagues and even by thier own clients,
0933卵の名無しさん
垢版 |
2017/10/18(水) 22:30:05.42ID:r7jfJx+N
ド底辺特殊シリツ医大卒=裏口バカは医師の共通認識。
It is common knowledge among doctors
Do-Teihen(exclusively bottom-leveled medical school) graduates mean morons who bought their way to Gachi'Ura(currently called by themselves)

私は昭和の時代に大学受験したけど、昔は今よりも差別感が凄く、慶応以外の私立医は特殊民のための特殊学校というイメージで開業医のバカ息子以外は誰も受験しようとすらしなかった。
According to my experience of entrance exam to medical school in the era of Showa,
all the privately-founded medical schools but for Keiko had been so compared to some specialized institution for educable mentally retarded kids that nobody but imbecile successors of town physicians had applied for admission.

常識的に考えて、数千万という法外な金を払って、しかも同業者からも患者からもバカだの裏口だのと散々罵られるのをわかって好き好んで私立医に行く同級生は一人もいませんでした。
There had been NOT a single classmate who chose willingly against his/her common sense to go to the Do-Teihen(exclusively bottom-leveled medical school, currently also known as Gachi'Ura),
which would have cost outrageous money and its graduates are destined to be called Uraguchi morons who bought thier way into the Do-Teihen, by thier colleagues and even by thier own clients.


本人には面と向かっては言わないけれど、俺くらいの年代の人間は、おそらくは8−9割は私立卒を今でも「何偉そうなこと抜かしてるんだ、この裏口バカが」と心の底で軽蔑し、嘲笑しているよ。当の本人には面と向かっては絶対にそんなことは言わないけどね。

Although people won't call them names to their face,
certain 80-90% people of about my age yet scorn and sneer at Uraguchi graduates, speaking in the back of our mind,
" Uraguchi morons shall not behave like somebody.
Actually we never speak out face to face.
0934卵の名無しさん
垢版 |
2017/10/19(木) 06:22:42.43ID:ZZphLwM2
ド底辺特殊シリツ医大卒=裏口バカは医師・患者の共通認識。
It is common knowledge among doctors
Do-Teihen(exclusively bottom-leveled medical school) graduates mean morons who bought their way to Gachi'Ura(currently called by themselves)

私は昭和の時代に大学受験したけど、昔は今よりも差別感が凄く、慶応以外の私立医は特殊民のための特殊学校というイメージで開業医のバカ息子以外は誰も受験しようとすらしなかった。
According to my experience of entrance exam to medical school in the era of Showa, when the sense of discrimination against
privately-founded medical schools were more intense than it is now,
all such schools but for Keiko had been so compared to some specialized institution for educable mentally retarded kids that nobody but imbecile successors of town physicians had applied for admission.

常識的に考えて、数千万という法外な金を払って、しかも同業者からも患者からもバカだの裏口だのと散々罵られるのをわかって好き好んで私立医に行く同級生は一人もいませんでした。
There had been NOT a single classmate who chose willingly against his/her common sense to go to the Do-Teihen(exclusively bottom-leveled medical school, currently also known as Gachi'Ura),
which would have cost outrageous money and its graduates are destined to be called Uraguchi morons who bought thier way into the Do-Teihen, by thier colleagues and even by thier own clients.


本人には面と向かっては言わないけれど、俺くらいの年代の人間は、おそらくは8−9割は私立卒を今でも「何偉そうなこと抜かしてるんだ、この裏口バカが」と心の底で軽蔑し、嘲笑しているよ。当の本人には面と向かっては絶対にそんなことは言わないけどね。

Although people won't call them names to their face,
certain 80-90% people of about my age yet scorn and sneer at Uraguchi graduates, speaking in the back of our mind,
" Uraguchi morons shall not behave like somebody.
Actually we never speak out face to face.
0935卵の名無しさん
垢版 |
2017/10/19(木) 06:39:57.32ID:ZZphLwM2
ド底辺特殊シリツ医大卒=裏口バカは医師・患者の共通認識。

私は昭和の時代に大学受験したけど、昔は今よりも差別感が凄く、慶応以外の私立医は特殊民のための特殊学校というイメージで開業医のバカ息子以外は誰も受験しようとすらしなかった。

常識的に考えて、数千万という法外な金を払って、しかも同業者からも患者からもバカだの裏口だのと散々罵られるのをわかって好き好んで私立医に行く同級生は一人もいませんでした。

本人には面と向かっては言わないけれど、俺くらいの年代の人間は、おそらくは8−9割は私立卒を今でも「何偉そうなこと抜かしてるんだ、この裏口バカが」と心の底で軽蔑し、嘲笑しているよ。当の本人には面と向かっては絶対にそんなことは言わないけどね。

(ver.0.02)

It is common knowledge among doctors and patients that Do-Teihen(exclusively bottom-leveled medical school) graduates mean morons who bought their way to Gachi'Ura(currently called by themselves)

According to my experience of entrance exam to medical school in the era of Showa, when the sense of discrimination against
privately-founded medical schools were more intense than it is now,
all such schools but for Keiko had been so compared to some specialized institution for educable mentally retarded kids that nobody but imbecile successors of town physicians had applied for admission.

There had been NOT a single classmate who chose willingly against his/her common sense to go to the Do-Teihen(exclusively bottom-leveled medical school, currently also known as Gachi'Ura),
which would have cost outrageous money and its graduates are destined to be called Uraguchi morons who bought thier way into the Do-Teihen, by thier colleagues and even by thier own clients.

Although people won't call them names to their face,
certain 80-90% people of about my age have been yet scorning and sneering at Uraguchi graduates, speaking in the back of our mind,
" Uraguchi morons shall not behave like somebody.
We never speak out face to face in real life.
0936卵の名無しさん
垢版 |
2017/10/21(土) 20:16:19.79ID:TcIT7+c6
##
a=t(combn(1:(2*n),m))
RES=numeric(nrow(a))
for(ii in 1:nrow(a)){
H=list() # H=list(G[[a[ii,1]]],G[[a[ii,2]]],G[[a[ii,3]]])
for(jj in 1:m){
H[[jj]]=G[[a[ii,jj]]]
}
M=matrix(NA,m,2*n)
for(i in 1:m){
for(j in 1:(2*n)){
M[i,j] = g12(G[[j]],H[[i]])
}
}
re=matrix(NA,m,2*n)
for(i1 in 1:(2*n)){
re[,i1]=sort(M[,i1])
}
RES[ii] =nrow(unique(t(re)))
}
idx=which(RES==(2*n/m)) # Lagrangea's theorem
(b=a[idx,])
print(matrix(names[b],ncol=m),quote=FALSE)
0937innuendo ◆kCkk5BVA12
垢版 |
2017/10/25(水) 17:57:19.28ID:nTDNW+TM
These are the very benificial laws for not only doctors but also everyone who has common sense,

Three laws of Do-Teihen Medical School, currently called Gachi'Ura by its graduates.

1: It is not bottom medical school but its enrollee that is despicable, which deserves to be called a bona fide moron beyond redemption.

2: The graduates of Do-Teihen are so ashamed that none of them dare to mention their own alma mater they have gone through.

3: The Do-Teihen graduates are so ashamed of having bought their way into the privately-founded exclusively bottom-leveled medical school that they tend to call a genuine doctor a charlatan who elucidates their imbecility.

Glossary for better understanding

bona fide : neither specious nor counterfeit : genuine

despicable : very bad or unpleasant : deserving to be despised

matriculation : the formal process of entering a university, or of becoming eligible to enter by fulfilling certain academic requirements such as a matriculation examination.

alma nater : a school, college, or university which one has attended or from which one has graduated

charlatan : someone who professes knowledge or expertise, esp in medicine, that he or she does not have; quack
0938卵の名無しさん
垢版 |
2017/11/02(木) 06:02:46.17ID:HB2zyNaD
ド底辺特殊シリツ医大卒=裏口バカは医師・患者の共通認識。

私は昭和の時代に大学受験したけど、昔は今よりも差別感が凄く、慶応以外の私立医は特殊民のための特殊学校というイメージで開業医のバカ息子以外は誰も受験しようとすらしなかった。

常識的に考えて、数千万という法外な金を払って、しかも同業者からも患者からもバカだの裏口だのと散々罵られるのをわかって好き好んで私立医に行く同級生は一人もいませんでした。

本人には面と向かっては言わないけれど、俺くらいの年代の人間は、おそらくは8−9割は私立卒を今でも「何偉そうなこと抜かしてるんだ、この裏口バカが」と心の底で軽蔑し、嘲笑しているよ。当の本人には面と向かっては絶対にそんなことは言わないけどね。

(ver.0.03)

It is common knowledge among doctors and patients that Do-Teihen(exclusively bottom-leveled medical school) graduates mean morons who bought their way to Gachi'Ura(currently called by themselves)

According to my experience of entrance exam to medical school in the era of Showa, when the sense of discrimination against
privately-founded medical schools were more intense than it is now,
all such schools but for Keio had been so compared to some specialized institution for educable mentally retarded kids that nobody but imbecile successors of town physicians had applied for admission.

There had been NOT a single classmate who chose willingly against his/her common sense to go to the Do-Teihen(exclusively bottom-leveled medical school, currently also known as Gachi'Ura),
which would have cost outrageous money and its graduates are destined to be called Uraguchi morons who bought thier way into the Do-Teihen, by thier colleagues and even by thier own clients.

Although people won't call them names to their face,
certain 80-90% people of about my age have been yet scorning and sneering at Uraguchi graduates, speaking in the back of our mind,
" Uraguchi morons shall not behave like somebody."
We never speak out face to face in real life.
0939innuendo ◆kCkk5BVA12
垢版 |
2017/11/04(土) 08:08:27.20ID:ZROPRlAC
(revised to ver.0.04)

It is common knowledge among doctors and patients that Do-Teihen(exclusively bottom-leveled medical school) graduates mean morons who bought their way to Gachi'Ura(currently called by themselves)

According to the experience of entrance exam to medical school in the era of Showa, when the sense of discrimination against
privately-founded medical schools were more intense than it is now,
all such schools but for Keio had been so compared to some specialized institution for educable mentally retarded kids that nobody but imbecile successors of physicians in private practice had applied for admission.

There had been NOT a single classmate who chose willingly against his/her common sense to go to the Do-Teihen(exclusively bottom-leveled medical school, currently also known as Gachi'Ura),
which would have cost outrageous money and its graduates are destined to be called Uraguchi morons who bought thier way into the Do-Teihen, by thier colleagues and even by thier own clients.

Although people won't call them names to their face,
certain 80-90% people of about my age have been yet scorning and sneering at Uraguchi graduates, speaking in the back of our mind,
" Uraguchi morons shall not behave like somebody."
We never speak out face to face in real life.
0940卵の名無しさん
垢版 |
2017/11/21(火) 17:48:49.57ID:2TRHGWnu
嘘付け
0941卵の名無しさん
垢版 |
2017/11/21(火) 18:00:53.09ID:/YQIEdkd
0013 週2回風俗小屋が楽しみの●本英二っす 2017/11/19 03:32:13

「彼女、発達障害があると思うんです」

と俺のセフレ女の乳首真っ黒ブス女が言ってた。
この女は「1週間に複数の男とSEXするのが趣味なの」と俺に言い寄ってきて、先週も俺とSEXさせてくれたが、あそこがマジ臭かった。

しかも家事や料理が下手糞な女で、自分が発達障害のキモブサ女でデパ地下惣菜を皿や弁当箱に盛り付けて「自分で作った」と俺にタッパーとかで持ってくるブス女で、3Pもした。

まぁ、「肉便器扱いの俺のセフレ」の不細工女が「彼女、発達障害だと思うんです」と自分が発達障害でSEX依存症なのに面白いこと言ってうけたwSEXとコンパだけが趣味のブス女って面白いw
0942卵の名無しさん
垢版 |
2017/11/21(火) 18:01:17.97ID:/YQIEdkd
0113 俺のセフレ女が「来年、結婚発表しまーす」 2017/11/03(金) 23:59:13  

9月「二ヶ月遅れて結婚発表しまーす」「これからは堂々と会えるね」

と言ってた女は男が仕事で忙しい時は、俺や俺の友達に電話してはよくセックスさせてくれた。

不細工女でたれ乳だが、セックス依存症だから仕方ない

9月から2ヵ月後の11月 は

11月「金曜日に結婚届けを出しました」「来年、結婚発表しまーす」
「いっぱいセックスもしたよ」「他の男ともセックスしたけど、男には内緒」

と俺に言ってきた。しかも「男は仕事で忙しくて忘れ物取りに帰ったり、不審な行動多いから、私が結婚してもたまに会って、また私とHしようね」とそのブスなヤリマン女に言われた。

11月5日「金曜日に婚姻届け出しました」「来年、結婚発表しまーす」
と言ってた女が妊娠したら、ちゃんとDNA鑑定した方がいいぜ。妊娠してなくても「できちゃった」とか「死産」とか大嘘つく女で有名人だ

ついでに調査会社で違法に浮気調査をし、「24時間、男を監視してください」「男のPCと携帯は毎回チェックしている」「男が見ているSNSも調べてください」とベッドで俺とSEXした後に言ってたんだがw

自分が一番じゃないと気がすまないブスは9月に「2ヶ月遅れて結婚発表します」「これからは堂々と会えるね」と言いふらし、「やっぱり来年、結婚発表します」と色んな人に言いふらしているぜw

しかも自分たちがしていたことを棚に上げて、ある女性に嫌がらせストーカーしている女。車にまでGPSをつけて「24時間、あの女も監視してください」と嫌がらせストーカーした証拠もある

怖い女だぜw自分は1週間に3人の男とセックスしてるのに男を浮気調査で24時間監視する女だしなw

↑この書き込み、色んなとこに書いてあるけど、このSEX依存症の「発達障害」の「うつ病」女は誰ですか?
0943卵の名無しさん
垢版 |
2017/11/21(火) 18:01:51.47ID:/YQIEdkd
心神耗弱状態の女は化粧ばっかして、別れたがってる男にすがるヤリマンビッチが多い
男依存症の「うつ病」女の発言
「私のこと、一番好きって言ったの嘘だったの?」
「私のこと、肉便器扱いだったの?」
「あなたとは別れるけど、この女とくっついたら許さないから」
別れた男を監視するストーカー行為をしてますがwこれ、ストーカーの「うつ病」女の発言だしw
0944卵の名無しさん
垢版 |
2017/11/21(火) 18:03:03.16ID:/YQIEdkd
0113 9月「2ヶ月遅れて結婚発表します」「これからは堂々と会えるね」 2017/11/19 03:13:21

11月3日〔金〕に「結婚届け」ほのめかしのアホな不細工バカップルは不幸のゲート

113〔金〕=世界で「1番」不幸な「13」日の「金曜日」に婚姻届け提出

「金曜日に婚姻届けを提出しました」「来年結婚発表しまーす」
「男が仕事で忙しい時は他の男とセックスしちゃいました」
「本当は1週間に3人の男とセックスしたけど『私、1週間に3人の男とセックスしてない』と泣いて演技したら男を騙せたよ。男の前で泣くのが趣味で色んな男を騙すのが得意分野です」

↑このバカップルは周囲のみんなの笑いもの。一同、みんな大笑いw

9月「二ヶ月遅れて結婚発表しまーす」「これからは堂々と会えるね」
と言ってたバカで不細工なヤリマ●女は9月から2ヵ月後の11月

11月「金曜日に結婚発表しました」「来年、結婚発表しまーす」
「いっぱいセックスもしたよ」「他の男ともセックスしたけど、男には内緒」

色んな人に暴露しまくるアホで不細工な嫁に、職場のみんな全員、大爆笑w
この新婚のアホ嫁は「自分が一番」じゃないと気が済まない「うつ病」発狂のメンヘラブス女で有名人。男がいない時は寂しくて他の男とセックス、コンパが趣味のアホなブス嫁のことです。

このアホな不細工嫁って「自分が一番可愛いの」と言いふらしてて、影では皆で「バカな女」と大笑いしたんだw

不細工でバカなアンポンタン嫁が暴露しまくりで、みんなで大爆笑しちゃった!

♪真っ赤のお鼻のトナカイよりも、みんなの笑いもの&#12316;♪アンポンタン嫁&#12316;♪
0945卵の名無しさん
垢版 |
2017/11/21(火) 18:03:33.52ID:/YQIEdkd
開業医の息子(30代の男医師)とSEXしまくった女です

813 男医師と部屋でSEXした女です   2017/04/25

開業医の息子と交際している20代のナースです。30代の男医師とsexしてます。医者は忙しいので1人で寂しい時は他の男ともSEXしました。 彼とは現在このような状況です。

・デートは基本的に彼からのお誘いで、月に2度ぐらい。部屋でSEXします。とりあえず色んな人に自慢したくて
→私から誘ってもOKしてくれます。日程は彼に合わせています。
・夕方以降に会うことが多く、場所は殆ど彼の自宅
→当直や医師のバイト、休日の出勤のない時です。でも寂しくて他の男ともSEXしました。彼には「私は処女っぽく見える」ようで他の男とSEXしたことは内緒です。
・デートではお互いの趣味の話をする
→彼のサイト履歴を無断で調べたら、ある女性のSNSを見ていたので、その女性の趣味ややっていることを真似して話を合わせています。
・私との交際は彼の友人も知らない
→彼は誰にも伝えていないとのこと。私の職業に加え、職場に同期の友人や後輩が多いから?でも私は色んな人に「男医師と部屋でSEXした」と喋りました。自慢したくて
・小さな事でも毎日1回は連絡をくれる
→私のことが好きみたいで毎日、1回は必ず連絡をくれるけど、彼の性癖が特殊なので会えない日は他の男とSEXしたりします。彼にはばれないようにしています。
・毎回きちんとsexで避妊してくれる。でもコンドームに穴をあけたことがあります。部屋でSEXすることが多いので
→彼は結婚後に於いても身体の相性は大切と考えているようです。

「私は彼が初体験」と言ったけど、本当は大嘘で血のりを用意しました。

彼の実家は開業されており、父親が医師、母親は専業主婦。
ご子息は彼1人ですが、彼はお父様の後を継ぐ気はなく、勤務医でやっていくと言っていました。
一方の私は一般家庭の育ちで、母がナースをしています。親族に医師は1人もいません。

学歴としては公立の4大を出たし、私の学歴は患者や元患者と違って自信を持って自慢できるので男医師と結婚します。
同じ職場です。
医師の彼とのことは同僚や患者にも話しました。だって自宅デートが多いしsexばっかだから

男医師と部屋でsexしてることを色んな人に自慢しまくりたくて。
レス数が900を超えています。1000を超えると表示できなくなるよ。

ニューススポーツなんでも実況